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

backend2.traceevents 1.6MB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316
  1. { "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } }
  2. ,{ "pid":12345, "tid":0, "ts":1718093442091249, "dur":91150, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }}
  3. ,{ "pid":12345, "tid":0, "ts":1718093442182410, "dur":1262, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }}
  4. ,{ "pid":12345, "tid":0, "ts":1718093442183895, "dur":311, "ph":"X", "name": "Tundra", "args": { "detail":"PrepareNodes" }}
  5. ,{ "pid":12345, "tid":0, "ts":1718093442184206, "dur":192, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }}
  6. ,{ "pid":12345, "tid":0, "ts":1718093442184578, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/globalgamemanagers.assets" }}
  7. ,{ "pid":12345, "tid":0, "ts":1718093442184640, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/globalgamemanagers.assets.resS" }}
  8. ,{ "pid":12345, "tid":0, "ts":1718093442184806, "dur":72, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/resources.assets" }}
  9. ,{ "pid":12345, "tid":0, "ts":1718093442184940, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Resources/unity_builtin_extra" }}
  10. ,{ "pid":12345, "tid":0, "ts":1718093442185023, "dur":50, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/ScriptingAssemblies.json" }}
  11. ,{ "pid":12345, "tid":0, "ts":1718093442185184, "dur":92, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets1.assets" }}
  12. ,{ "pid":12345, "tid":0, "ts":1718093442185281, "dur":54, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets1.assets.resS" }}
  13. ,{ "pid":12345, "tid":0, "ts":1718093442185393, "dur":51, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets2.assets" }}
  14. ,{ "pid":12345, "tid":0, "ts":1718093442185462, "dur":54, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets2.assets.resS" }}
  15. ,{ "pid":12345, "tid":0, "ts":1718093442185609, "dur":77, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets2.resource" }}
  16. ,{ "pid":12345, "tid":0, "ts":1718093442185688, "dur":61, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/boot.config" }}
  17. ,{ "pid":12345, "tid":0, "ts":1718093442185757, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"AddBootConfigGUID Library/Bee/artifacts/iOS/boot.config" }}
  18. ,{ "pid":12345, "tid":0, "ts":1718093442185837, "dur":64, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/boot.config_f4b8.info" }}
  19. ,{ "pid":12345, "tid":0, "ts":1718093442185942, "dur":64, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Raw/google-services-desktop.json" }}
  20. ,{ "pid":12345, "tid":0, "ts":1718093442186008, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Raw/UnityServicesProjectConfiguration.json" }}
  21. ,{ "pid":12345, "tid":0, "ts":1718093442186068, "dur":60, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/AppleAuth/Native/iOS/AppleAuthSerializer.h" }}
  22. ,{ "pid":12345, "tid":0, "ts":1718093442186972, "dur":819, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSMediationMetaData.h" }}
  23. ,{ "pid":12345, "tid":0, "ts":1718093442187987, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONItem.h" }}
  24. ,{ "pid":12345, "tid":0, "ts":1718093442188135, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONPromoMetaData.h" }}
  25. ,{ "pid":12345, "tid":0, "ts":1718093442188419, "dur":54, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsCore.h" }}
  26. ,{ "pid":12345, "tid":0, "ts":1718093442188678, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationError.h" }}
  27. ,{ "pid":12345, "tid":0, "ts":1718093442188738, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadDelegate.h" }}
  28. ,{ "pid":12345, "tid":0, "ts":1718093442188800, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadError.h" }}
  29. ,{ "pid":12345, "tid":0, "ts":1718093442189083, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityMonetizationDelegate.h" }}
  30. ,{ "pid":12345, "tid":0, "ts":1718093442222062, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Mail.dll" }}
  31. ,{ "pid":12345, "tid":0, "ts":1718093442222220, "dur":60, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Quic.dll" }}
  32. ,{ "pid":12345, "tid":0, "ts":1718093442222284, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Requests.dll" }}
  33. ,{ "pid":12345, "tid":0, "ts":1718093442222369, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.ServicePoint.dll" }}
  34. ,{ "pid":12345, "tid":0, "ts":1718093442222794, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Private.Uri.dll" }}
  35. ,{ "pid":12345, "tid":0, "ts":1718093442223235, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Resources.Writer.dll" }}
  36. ,{ "pid":12345, "tid":0, "ts":1718093442223395, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Handles.dll" }}
  37. ,{ "pid":12345, "tid":0, "ts":1718093442223455, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.InteropServices.dll" }}
  38. ,{ "pid":12345, "tid":0, "ts":1718093442228031, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_HighCapacitySemaphore_SemaphoreBased.inl.h" }}
  39. ,{ "pid":12345, "tid":0, "ts":1718093442228114, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_Lock_SemaphoreBased.inl.h" }}
  40. ,{ "pid":12345, "tid":0, "ts":1718093442228363, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Msvc.h" }}
  41. ,{ "pid":12345, "tid":0, "ts":1718093442228590, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Baselib_DynamicLibrary.h" }}
  42. ,{ "pid":12345, "tid":0, "ts":1718093442228958, "dur":93, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/Algorithm.inl.h" }}
  43. ,{ "pid":12345, "tid":0, "ts":1718093442261632, "dur":60, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/transform.h" }}
  44. ,{ "pid":12345, "tid":0, "ts":1718093442261734, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/bit_reader.c" }}
  45. ,{ "pid":12345, "tid":0, "ts":1718093442261798, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/bit_reader.h" }}
  46. ,{ "pid":12345, "tid":0, "ts":1718093442262106, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.c" }}
  47. ,{ "pid":12345, "tid":0, "ts":1718093442262169, "dur":53, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.h" }}
  48. ,{ "pid":12345, "tid":0, "ts":1718093442262226, "dur":60, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_inc.h" }}
  49. ,{ "pid":12345, "tid":0, "ts":1718093442262864, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.c" }}
  50. ,{ "pid":12345, "tid":0, "ts":1718093442262955, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/encode.c" }}
  51. ,{ "pid":12345, "tid":0, "ts":1718093442268667, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/File.cpp" }}
  52. ,{ "pid":12345, "tid":0, "ts":1718093442268890, "dur":75, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Locale.cpp" }}
  53. ,{ "pid":12345, "tid":0, "ts":1718093442269154, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Path.cpp" }}
  54. ,{ "pid":12345, "tid":0, "ts":1718093442269473, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ThreadImpl.h" }}
  55. ,{ "pid":12345, "tid":0, "ts":1718093442269625, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/TimeZone.cpp" }}
  56. ,{ "pid":12345, "tid":0, "ts":1718093442269709, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsHelpers.cpp" }}
  57. ,{ "pid":12345, "tid":0, "ts":1718093442184476, "dur":92644, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }}
  58. ,{ "pid":12345, "tid":0, "ts":1718093442277134, "dur":199128, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  59. ,{ "pid":12345, "tid":0, "ts":1718093442476280, "dur":56, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }}
  60. ,{ "pid":12345, "tid":0, "ts":1718093442476424, "dur":51, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }}
  61. ,{ "pid":12345, "tid":0, "ts":1718093442476690, "dur":3455, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }}
  62. ,{ "pid":12345, "tid":1, "ts":1718093442184307, "dur":92837, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  63. ,{ "pid":12345, "tid":1, "ts":1718093442277148, "dur":27768, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }}
  64. ,{ "pid":12345, "tid":1, "ts":1718093442305070, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.AssetBundleModule.dll" }}
  65. ,{ "pid":12345, "tid":1, "ts":1718093442305325, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.GridModule.dll" }}
  66. ,{ "pid":12345, "tid":1, "ts":1718093442305377, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.HotReloadModule.dll" }}
  67. ,{ "pid":12345, "tid":1, "ts":1718093442305517, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.ImageConversionModule.dll" }}
  68. ,{ "pid":12345, "tid":1, "ts":1718093442305611, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.InputLegacyModule.dll" }}
  69. ,{ "pid":12345, "tid":1, "ts":1718093442305694, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.InputModule.dll" }}
  70. ,{ "pid":12345, "tid":1, "ts":1718093442305756, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.JSONSerializeModule.dll" }}
  71. ,{ "pid":12345, "tid":1, "ts":1718093442305841, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.LocalizationModule.dll" }}
  72. ,{ "pid":12345, "tid":1, "ts":1718093442305973, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.PerformanceReportingModule.dll" }}
  73. ,{ "pid":12345, "tid":1, "ts":1718093442306324, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.SubsystemsModule.dll" }}
  74. ,{ "pid":12345, "tid":1, "ts":1718093442306493, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.TextCoreFontEngineModule.dll" }}
  75. ,{ "pid":12345, "tid":1, "ts":1718093442306612, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.TextRenderingModule.dll" }}
  76. ,{ "pid":12345, "tid":1, "ts":1718093442306921, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.UnityCurlModule.dll" }}
  77. ,{ "pid":12345, "tid":1, "ts":1718093442307045, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll" }}
  78. ,{ "pid":12345, "tid":1, "ts":1718093442307200, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.UnityWebRequestTextureModule.dll" }}
  79. ,{ "pid":12345, "tid":1, "ts":1718093442307290, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.VFXModule.dll" }}
  80. ,{ "pid":12345, "tid":1, "ts":1718093442307349, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.VRModule.dll" }}
  81. ,{ "pid":12345, "tid":1, "ts":1718093442307428, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.VehiclesModule.dll" }}
  82. ,{ "pid":12345, "tid":1, "ts":1718093442307516, "dur":174, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.WindModule.dll" }}
  83. ,{ "pid":12345, "tid":1, "ts":1718093442307693, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.XRModule.dll" }}
  84. ,{ "pid":12345, "tid":1, "ts":1718093442307786, "dur":205, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Assembly-CSharp.dll" }}
  85. ,{ "pid":12345, "tid":1, "ts":1718093442307992, "dur":136, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.AppleMacosStub.dll" }}
  86. ,{ "pid":12345, "tid":1, "ts":1718093442308129, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.2D.IK.Runtime.dll" }}
  87. ,{ "pid":12345, "tid":1, "ts":1718093442308244, "dur":212, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.Stores.dll" }}
  88. ,{ "pid":12345, "tid":1, "ts":1718093442308458, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Environments.Internal.dll" }}
  89. ,{ "pid":12345, "tid":1, "ts":1718093442308526, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.dll" }}
  90. ,{ "pid":12345, "tid":1, "ts":1718093442308620, "dur":142, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Networking.dll" }}
  91. ,{ "pid":12345, "tid":1, "ts":1718093442308763, "dur":347, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.VisualScripting.Flow.dll" }}
  92. ,{ "pid":12345, "tid":1, "ts":1718093442309116, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Scheduler.dll" }}
  93. ,{ "pid":12345, "tid":1, "ts":1718093442309167, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Environments.dll" }}
  94. ,{ "pid":12345, "tid":1, "ts":1718093442309239, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Configuration.dll" }}
  95. ,{ "pid":12345, "tid":1, "ts":1718093442309362, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.WinRTStub.dll" }}
  96. ,{ "pid":12345, "tid":1, "ts":1718093442309485, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.SecurityCore.dll" }}
  97. ,{ "pid":12345, "tid":1, "ts":1718093442309590, "dur":263, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Collections.dll" }}
  98. ,{ "pid":12345, "tid":1, "ts":1718093442309855, "dur":152, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.Codeless.dll" }}
  99. ,{ "pid":12345, "tid":1, "ts":1718093442310009, "dur":184, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll" }}
  100. ,{ "pid":12345, "tid":1, "ts":1718093442310194, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.2D.PixelPerfect.dll" }}
  101. ,{ "pid":12345, "tid":1, "ts":1718093442310299, "dur":334, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.TextMeshPro.dll" }}
  102. ,{ "pid":12345, "tid":1, "ts":1718093442310634, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Analytics.dll" }}
  103. ,{ "pid":12345, "tid":1, "ts":1718093442310717, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/AppleAuth.dll" }}
  104. ,{ "pid":12345, "tid":1, "ts":1718093442310845, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.dll" }}
  105. ,{ "pid":12345, "tid":1, "ts":1718093442310977, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.AppleCore.dll" }}
  106. ,{ "pid":12345, "tid":1, "ts":1718093442311054, "dur":129, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.WinRTCore.dll" }}
  107. ,{ "pid":12345, "tid":1, "ts":1718093442311185, "dur":298, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Burst.dll" }}
  108. ,{ "pid":12345, "tid":1, "ts":1718093442311485, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Advertisements.dll" }}
  109. ,{ "pid":12345, "tid":1, "ts":1718093442311571, "dur":219, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Internal.dll" }}
  110. ,{ "pid":12345, "tid":1, "ts":1718093442311791, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.Apple.dll" }}
  111. ,{ "pid":12345, "tid":1, "ts":1718093442311975, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Threading.dll" }}
  112. ,{ "pid":12345, "tid":1, "ts":1718093442312094, "dur":472, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.VisualScripting.Core.dll" }}
  113. ,{ "pid":12345, "tid":1, "ts":1718093442312568, "dur":161, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.2D.Animation.Runtime.dll" }}
  114. ,{ "pid":12345, "tid":1, "ts":1718093442312730, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Purchasing.Common.dll" }}
  115. ,{ "pid":12345, "tid":1, "ts":1718093442312805, "dur":285, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.Security.dll" }}
  116. ,{ "pid":12345, "tid":1, "ts":1718093442313093, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.2D.Tilemap.Extras.dll" }}
  117. ,{ "pid":12345, "tid":1, "ts":1718093442313182, "dur":231, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.UI.dll" }}
  118. ,{ "pid":12345, "tid":1, "ts":1718093442313414, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Telemetry.dll" }}
  119. ,{ "pid":12345, "tid":1, "ts":1718093442313509, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll" }}
  120. ,{ "pid":12345, "tid":1, "ts":1718093442313586, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.2D.Common.Runtime.dll" }}
  121. ,{ "pid":12345, "tid":1, "ts":1718093442313679, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Timeline.dll" }}
  122. ,{ "pid":12345, "tid":1, "ts":1718093442313792, "dur":525, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Mathematics.dll" }}
  123. ,{ "pid":12345, "tid":1, "ts":1718093442314352, "dur":175, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.VisualScripting.State.dll" }}
  124. ,{ "pid":12345, "tid":1, "ts":1718093442314545, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/GoogleMobileAds.Ump.iOS.dll" }}
  125. ,{ "pid":12345, "tid":1, "ts":1718093442314610, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/GoogleMobileAds.dll" }}
  126. ,{ "pid":12345, "tid":1, "ts":1718093442314678, "dur":131, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/Firebase/Plugins/iOS/Firebase.App.dll" }}
  127. ,{ "pid":12345, "tid":1, "ts":1718093442314810, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/GoogleMobileAds.iOS.dll" }}
  128. ,{ "pid":12345, "tid":1, "ts":1718093442314899, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/Firebase/Plugins/Firebase.TaskExtension.dll" }}
  129. ,{ "pid":12345, "tid":1, "ts":1718093442314952, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/GoogleMobileAds.Core.dll" }}
  130. ,{ "pid":12345, "tid":1, "ts":1718093442315061, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/Firebase/Plugins/iOS/Firebase.Auth.dll" }}
  131. ,{ "pid":12345, "tid":1, "ts":1718093442315176, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/I18N.CJK.dll" }}
  132. ,{ "pid":12345, "tid":1, "ts":1718093442315593, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Buffers.dll" }}
  133. ,{ "pid":12345, "tid":1, "ts":1718093442315701, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Collections.Concurrent.dll" }}
  134. ,{ "pid":12345, "tid":1, "ts":1718093442315804, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Collections.Specialized.dll" }}
  135. ,{ "pid":12345, "tid":1, "ts":1718093442315891, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Collections.dll" }}
  136. ,{ "pid":12345, "tid":1, "ts":1718093442316194, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Data.Common.dll" }}
  137. ,{ "pid":12345, "tid":1, "ts":1718093442316371, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.FileVersionInfo.dll" }}
  138. ,{ "pid":12345, "tid":1, "ts":1718093442316688, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Globalization.Extensions.dll" }}
  139. ,{ "pid":12345, "tid":1, "ts":1718093442316811, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.FileSystem.AccessControl.dll" }}
  140. ,{ "pid":12345, "tid":1, "ts":1718093442316863, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.FileSystem.DriveInfo.dll" }}
  141. ,{ "pid":12345, "tid":1, "ts":1718093442316963, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.FileSystem.dll" }}
  142. ,{ "pid":12345, "tid":1, "ts":1718093442317089, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.UnmanagedMemoryStream.dll" }}
  143. ,{ "pid":12345, "tid":1, "ts":1718093442317346, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.Cache.dll" }}
  144. ,{ "pid":12345, "tid":1, "ts":1718093442317430, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.HttpListener.dll" }}
  145. ,{ "pid":12345, "tid":1, "ts":1718093442317484, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.Mail.dll" }}
  146. ,{ "pid":12345, "tid":1, "ts":1718093442317619, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.Ping.dll" }}
  147. ,{ "pid":12345, "tid":1, "ts":1718093442317740, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.Requests.dll" }}
  148. ,{ "pid":12345, "tid":1, "ts":1718093442317826, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.ServicePoint.dll" }}
  149. ,{ "pid":12345, "tid":1, "ts":1718093442318337, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Reflection.dll" }}
  150. ,{ "pid":12345, "tid":1, "ts":1718093442318555, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.Extensions.dll" }}
  151. ,{ "pid":12345, "tid":1, "ts":1718093442318666, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.InteropServices.dll" }}
  152. ,{ "pid":12345, "tid":1, "ts":1718093442318862, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.dll" }}
  153. ,{ "pid":12345, "tid":1, "ts":1718093442318920, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.AccessControl.dll" }}
  154. ,{ "pid":12345, "tid":1, "ts":1718093442319028, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Algorithms.dll" }}
  155. ,{ "pid":12345, "tid":1, "ts":1718093442319096, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Cng.dll" }}
  156. ,{ "pid":12345, "tid":1, "ts":1718093442319221, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Encoding.dll" }}
  157. ,{ "pid":12345, "tid":1, "ts":1718093442319410, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Encryption.dll" }}
  158. ,{ "pid":12345, "tid":1, "ts":1718093442319604, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Pkcs.dll" }}
  159. ,{ "pid":12345, "tid":1, "ts":1718093442319710, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.ProtectedData.dll" }}
  160. ,{ "pid":12345, "tid":1, "ts":1718093442319824, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.RandomNumberGenerator.dll" }}
  161. ,{ "pid":12345, "tid":1, "ts":1718093442319881, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.X509Certificates.dll" }}
  162. ,{ "pid":12345, "tid":1, "ts":1718093442320022, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ServiceModel.Duplex.dll" }}
  163. ,{ "pid":12345, "tid":1, "ts":1718093442320087, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ServiceModel.Http.dll" }}
  164. ,{ "pid":12345, "tid":1, "ts":1718093442320152, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ServiceModel.NetTcp.dll" }}
  165. ,{ "pid":12345, "tid":1, "ts":1718093442320287, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ServiceProcess.ServiceController.dll" }}
  166. ,{ "pid":12345, "tid":1, "ts":1718093442320426, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Text.Encoding.Extensions.dll" }}
  167. ,{ "pid":12345, "tid":1, "ts":1718093442320718, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Xml.XDocument.dll" }}
  168. ,{ "pid":12345, "tid":1, "ts":1718093442320982, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Microsoft.CSharp.dll" }}
  169. ,{ "pid":12345, "tid":1, "ts":1718093442321195, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ComponentModel.Composition.dll" }}
  170. ,{ "pid":12345, "tid":1, "ts":1718093442321297, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ComponentModel.DataAnnotations.dll" }}
  171. ,{ "pid":12345, "tid":1, "ts":1718093442321449, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Data.Entity.dll" }}
  172. ,{ "pid":12345, "tid":1, "ts":1718093442321668, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.DirectoryServices.dll" }}
  173. ,{ "pid":12345, "tid":1, "ts":1718093442321753, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.EnterpriseServices.dll" }}
  174. ,{ "pid":12345, "tid":1, "ts":1718093442321825, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.IO.Compression.FileSystem.dll" }}
  175. ,{ "pid":12345, "tid":1, "ts":1718093442321955, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Management.dll" }}
  176. ,{ "pid":12345, "tid":1, "ts":1718093442322201, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Numerics.dll" }}
  177. ,{ "pid":12345, "tid":1, "ts":1718093442322310, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Runtime.Caching.dll" }}
  178. ,{ "pid":12345, "tid":1, "ts":1718093442322394, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Runtime.DurableInstancing.dll" }}
  179. ,{ "pid":12345, "tid":1, "ts":1718093442322609, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Security.dll" }}
  180. ,{ "pid":12345, "tid":1, "ts":1718093442322698, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ServiceModel.Activation.dll" }}
  181. ,{ "pid":12345, "tid":1, "ts":1718093442322765, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ServiceModel.Discovery.dll" }}
  182. ,{ "pid":12345, "tid":1, "ts":1718093442322952, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ServiceProcess.dll" }}
  183. ,{ "pid":12345, "tid":1, "ts":1718093442323374, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Xaml.dll" }}
  184. ,{ "pid":12345, "tid":1, "ts":1718093442323510, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/mscorlib.dll" }}
  185. ,{ "pid":12345, "tid":1, "ts":1718093442323572, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Temp/StagingArea/Data/Managed/MethodsToPreserve.xml" }}
  186. ,{ "pid":12345, "tid":1, "ts":1718093442323698, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Temp/StagingArea/Data/Managed/TypesInScenes.xml" }}
  187. ,{ "pid":12345, "tid":1, "ts":1718093442323822, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Temp/StagingArea/Data/Managed/SerializedTypes.xml" }}
  188. ,{ "pid":12345, "tid":1, "ts":1718093442323941, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/link.xml" }}
  189. ,{ "pid":12345, "tid":1, "ts":1718093442324005, "dur":159, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Temp/StagingArea/Data/Managed/EditorToUnityLinkerData.json" }}
  190. ,{ "pid":12345, "tid":1, "ts":1718093442324239, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Analytics.Api.Output.pdb" }}
  191. ,{ "pid":12345, "tid":1, "ts":1718093442324356, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Analytics.pdb" }}
  192. ,{ "pid":12345, "tid":1, "ts":1718093442325556, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.Toolchain.VisionOS.dll" }}
  193. ,{ "pid":12345, "tid":1, "ts":1718093442326611, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Microsoft.Bcl.HashCode.dll" }}
  194. ,{ "pid":12345, "tid":1, "ts":1718093442326736, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Microsoft.VisualBasic.dll" }}
  195. ,{ "pid":12345, "tid":1, "ts":1718093442327191, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/netstandard.dll" }}
  196. ,{ "pid":12345, "tid":1, "ts":1718093442327961, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Diagnostics.StackTrace.dll" }}
  197. ,{ "pid":12345, "tid":1, "ts":1718093442328122, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Diagnostics.TraceSource.dll" }}
  198. ,{ "pid":12345, "tid":1, "ts":1718093442328396, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.IO.Compression.Brotli.dll" }}
  199. ,{ "pid":12345, "tid":1, "ts":1718093442328537, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.IO.FileSystem.AccessControl.dll" }}
  200. ,{ "pid":12345, "tid":1, "ts":1718093442328890, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.IO.UnmanagedMemoryStream.dll" }}
  201. ,{ "pid":12345, "tid":1, "ts":1718093442329052, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Linq.Parallel.dll" }}
  202. ,{ "pid":12345, "tid":1, "ts":1718093442329304, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.Mail.dll" }}
  203. ,{ "pid":12345, "tid":1, "ts":1718093442330337, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Runtime.CompilerServices.Unsafe.dll" }}
  204. ,{ "pid":12345, "tid":1, "ts":1718093442330759, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Runtime.Serialization.Xml.dll" }}
  205. ,{ "pid":12345, "tid":1, "ts":1718093442330916, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Security.Cryptography.Cng.dll" }}
  206. ,{ "pid":12345, "tid":1, "ts":1718093442331090, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Security.Cryptography.Primitives.dll" }}
  207. ,{ "pid":12345, "tid":1, "ts":1718093442332269, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Xml.XPath.XDocument.dll" }}
  208. ,{ "pid":12345, "tid":1, "ts":1718093442332875, "dur":682, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.Bee.BuildLogic.iOS.pdb" }}
  209. ,{ "pid":12345, "tid":1, "ts":1718093442333739, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.Bee.BuildLogic.VisionOS.dll" }}
  210. ,{ "pid":12345, "tid":1, "ts":1718093442333798, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.Bee.BuildLogic.VisionOS.pdb" }}
  211. ,{ "pid":12345, "tid":1, "ts":1718093442333901, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.Bee.BuildLogic.WebGL.pdb" }}
  212. ,{ "pid":12345, "tid":1, "ts":1718093442333970, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.dll" }}
  213. ,{ "pid":12345, "tid":1, "ts":1718093442334058, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.pdb" }}
  214. ,{ "pid":12345, "tid":1, "ts":1718093442335108, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/UnityLinker.runtimeconfig.json" }}
  215. ,{ "pid":12345, "tid":1, "ts":1718093442304922, "dur":30286, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"UnityLinker /Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/unitylinker_fi2v.traceevents" }}
  216. ,{ "pid":12345, "tid":1, "ts":1718093442335208, "dur":10754, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  217. ,{ "pid":12345, "tid":1, "ts":1718093442351235, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Formats.Asn1.dll" }}
  218. ,{ "pid":12345, "tid":1, "ts":1718093442351375, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.IO.FileSystem.DriveInfo.dll" }}
  219. ,{ "pid":12345, "tid":1, "ts":1718093442352431, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.pdb" }}
  220. ,{ "pid":12345, "tid":1, "ts":1718093442352650, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/AppleAuth.dll" }}
  221. ,{ "pid":12345, "tid":1, "ts":1718093442352925, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Xml.dll" }}
  222. ,{ "pid":12345, "tid":1, "ts":1718093442353029, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.2D.Animation.Runtime.dll" }}
  223. ,{ "pid":12345, "tid":1, "ts":1718093442353184, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.InternalAPIEngineBridge.001.dll" }}
  224. ,{ "pid":12345, "tid":1, "ts":1718093442353388, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Advertisements.dll" }}
  225. ,{ "pid":12345, "tid":1, "ts":1718093442353470, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.GameCenterModule.dll" }}
  226. ,{ "pid":12345, "tid":1, "ts":1718093442353546, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.GridModule.dll" }}
  227. ,{ "pid":12345, "tid":1, "ts":1718093442350597, "dur":3275, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"IL2CPP_CodeGen /Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/il2cpp_conv_ztz6.traceevents" }}
  228. ,{ "pid":12345, "tid":1, "ts":1718093442353872, "dur":27378, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  229. ,{ "pid":12345, "tid":1, "ts":1718093442398088, "dur":63, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule_CodeGen.c" }}
  230. ,{ "pid":12345, "tid":1, "ts":1718093442398225, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__11.cpp" }}
  231. ,{ "pid":12345, "tid":1, "ts":1718093442398222, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__11.cpp" }}
  232. ,{ "pid":12345, "tid":1, "ts":1718093442398287, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  233. ,{ "pid":12345, "tid":1, "ts":1718093442398357, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.AndroidJNIModule_CodeGen.c" }}
  234. ,{ "pid":12345, "tid":1, "ts":1718093442398355, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.AndroidJNIModule_CodeGen.c" }}
  235. ,{ "pid":12345, "tid":1, "ts":1718093442398435, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  236. ,{ "pid":12345, "tid":1, "ts":1718093442398514, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Advertisements.cpp" }}
  237. ,{ "pid":12345, "tid":1, "ts":1718093442398513, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Advertisements.cpp" }}
  238. ,{ "pid":12345, "tid":1, "ts":1718093442398590, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  239. ,{ "pid":12345, "tid":1, "ts":1718093442398659, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__9.cpp" }}
  240. ,{ "pid":12345, "tid":1, "ts":1718093442398657, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__9.cpp" }}
  241. ,{ "pid":12345, "tid":1, "ts":1718093442398729, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  242. ,{ "pid":12345, "tid":1, "ts":1718093442398830, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__13.cpp" }}
  243. ,{ "pid":12345, "tid":1, "ts":1718093442398828, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__13.cpp" }}
  244. ,{ "pid":12345, "tid":1, "ts":1718093442398907, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  245. ,{ "pid":12345, "tid":1, "ts":1718093442398994, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__49.cpp" }}
  246. ,{ "pid":12345, "tid":1, "ts":1718093442398993, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__49.cpp" }}
  247. ,{ "pid":12345, "tid":1, "ts":1718093442399076, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  248. ,{ "pid":12345, "tid":1, "ts":1718093442399142, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Transactions_CodeGen.c" }}
  249. ,{ "pid":12345, "tid":1, "ts":1718093442399141, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Transactions_CodeGen.c" }}
  250. ,{ "pid":12345, "tid":1, "ts":1718093442399210, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  251. ,{ "pid":12345, "tid":1, "ts":1718093442399291, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppInvokerTable.cpp" }}
  252. ,{ "pid":12345, "tid":1, "ts":1718093442399290, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppInvokerTable.cpp" }}
  253. ,{ "pid":12345, "tid":1, "ts":1718093442399363, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  254. ,{ "pid":12345, "tid":1, "ts":1718093442399437, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__11.cpp" }}
  255. ,{ "pid":12345, "tid":1, "ts":1718093442399436, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__11.cpp" }}
  256. ,{ "pid":12345, "tid":1, "ts":1718093442399503, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  257. ,{ "pid":12345, "tid":1, "ts":1718093442399582, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Configuration_CodeGen.c" }}
  258. ,{ "pid":12345, "tid":1, "ts":1718093442399580, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Configuration_CodeGen.c" }}
  259. ,{ "pid":12345, "tid":1, "ts":1718093442399649, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  260. ,{ "pid":12345, "tid":1, "ts":1718093442399728, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__5.cpp" }}
  261. ,{ "pid":12345, "tid":1, "ts":1718093442399726, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__5.cpp" }}
  262. ,{ "pid":12345, "tid":1, "ts":1718093442399792, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  263. ,{ "pid":12345, "tid":1, "ts":1718093442399862, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Environments.Internal.cpp" }}
  264. ,{ "pid":12345, "tid":1, "ts":1718093442399860, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Environments.Internal.cpp" }}
  265. ,{ "pid":12345, "tid":1, "ts":1718093442399928, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  266. ,{ "pid":12345, "tid":1, "ts":1718093442400008, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Telemetry.cpp" }}
  267. ,{ "pid":12345, "tid":1, "ts":1718093442400007, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Telemetry.cpp" }}
  268. ,{ "pid":12345, "tid":1, "ts":1718093442400076, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  269. ,{ "pid":12345, "tid":1, "ts":1718093442400137, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Registration.cpp" }}
  270. ,{ "pid":12345, "tid":1, "ts":1718093442400136, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Registration.cpp" }}
  271. ,{ "pid":12345, "tid":1, "ts":1718093442400219, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  272. ,{ "pid":12345, "tid":1, "ts":1718093442400310, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__7.cpp" }}
  273. ,{ "pid":12345, "tid":1, "ts":1718093442400309, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__7.cpp" }}
  274. ,{ "pid":12345, "tid":1, "ts":1718093442400388, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  275. ,{ "pid":12345, "tid":1, "ts":1718093442400478, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__2.cpp" }}
  276. ,{ "pid":12345, "tid":1, "ts":1718093442400477, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__2.cpp" }}
  277. ,{ "pid":12345, "tid":1, "ts":1718093442400544, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  278. ,{ "pid":12345, "tid":1, "ts":1718093442400622, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml_CodeGen.c" }}
  279. ,{ "pid":12345, "tid":1, "ts":1718093442400621, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml_CodeGen.c" }}
  280. ,{ "pid":12345, "tid":1, "ts":1718093442400685, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  281. ,{ "pid":12345, "tid":1, "ts":1718093442400752, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__18.cpp" }}
  282. ,{ "pid":12345, "tid":1, "ts":1718093442400751, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__18.cpp" }}
  283. ,{ "pid":12345, "tid":1, "ts":1718093442400811, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  284. ,{ "pid":12345, "tid":1, "ts":1718093442400880, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.IMGUIModule__1.cpp" }}
  285. ,{ "pid":12345, "tid":1, "ts":1718093442400879, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.IMGUIModule__1.cpp" }}
  286. ,{ "pid":12345, "tid":1, "ts":1718093442400940, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  287. ,{ "pid":12345, "tid":1, "ts":1718093442401019, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.InputLegacyModule_CodeGen.c" }}
  288. ,{ "pid":12345, "tid":1, "ts":1718093442401017, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.InputLegacyModule_CodeGen.c" }}
  289. ,{ "pid":12345, "tid":1, "ts":1718093442401081, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  290. ,{ "pid":12345, "tid":1, "ts":1718093442401153, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__14.cpp" }}
  291. ,{ "pid":12345, "tid":1, "ts":1718093442401151, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__14.cpp" }}
  292. ,{ "pid":12345, "tid":1, "ts":1718093442401219, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  293. ,{ "pid":12345, "tid":1, "ts":1718093442401279, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__10.cpp" }}
  294. ,{ "pid":12345, "tid":1, "ts":1718093442401278, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__10.cpp" }}
  295. ,{ "pid":12345, "tid":1, "ts":1718093442401335, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  296. ,{ "pid":12345, "tid":1, "ts":1718093442403895, "dur":135, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }}
  297. ,{ "pid":12345, "tid":1, "ts":1718093442401506, "dur":2532, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/resources.assets.resS" }}
  298. ,{ "pid":12345, "tid":1, "ts":1718093442404057, "dur":72170, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  299. ,{ "pid":12345, "tid":2, "ts":1718093442184310, "dur":92859, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  300. ,{ "pid":12345, "tid":2, "ts":1718093442277181, "dur":1015, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  301. ,{ "pid":12345, "tid":2, "ts":1718093442278196, "dur":1034, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  302. ,{ "pid":12345, "tid":2, "ts":1718093442279231, "dur":972, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  303. ,{ "pid":12345, "tid":2, "ts":1718093442280203, "dur":991, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  304. ,{ "pid":12345, "tid":2, "ts":1718093442281194, "dur":1171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  305. ,{ "pid":12345, "tid":2, "ts":1718093442282365, "dur":110, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  306. ,{ "pid":12345, "tid":2, "ts":1718093442282475, "dur":22494, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  307. ,{ "pid":12345, "tid":2, "ts":1718093442305106, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  308. ,{ "pid":12345, "tid":2, "ts":1718093442305172, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  309. ,{ "pid":12345, "tid":2, "ts":1718093442305283, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  310. ,{ "pid":12345, "tid":2, "ts":1718093442305341, "dur":208, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  311. ,{ "pid":12345, "tid":2, "ts":1718093442305580, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  312. ,{ "pid":12345, "tid":2, "ts":1718093442305706, "dur":161, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  313. ,{ "pid":12345, "tid":2, "ts":1718093442305897, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  314. ,{ "pid":12345, "tid":2, "ts":1718093442305995, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  315. ,{ "pid":12345, "tid":2, "ts":1718093442306068, "dur":75, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/Purchasing.Common-FeaturesChecked.txt_zqht.info" }}
  316. ,{ "pid":12345, "tid":2, "ts":1718093442306146, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  317. ,{ "pid":12345, "tid":2, "ts":1718093442306321, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsPlacementState.h" }}
  318. ,{ "pid":12345, "tid":2, "ts":1718093442306312, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsPlacementState.h" }}
  319. ,{ "pid":12345, "tid":2, "ts":1718093442306413, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  320. ,{ "pid":12345, "tid":2, "ts":1718093442306487, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64.swiftdoc" }}
  321. ,{ "pid":12345, "tid":2, "ts":1718093442306593, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  322. ,{ "pid":12345, "tid":2, "ts":1718093442306704, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm.swiftdoc" }}
  323. ,{ "pid":12345, "tid":2, "ts":1718093442306773, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  324. ,{ "pid":12345, "tid":2, "ts":1718093442306860, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/USRVJsonStorageAggregator.h" }}
  325. ,{ "pid":12345, "tid":2, "ts":1718093442306859, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/USRVJsonStorageAggregator.h" }}
  326. ,{ "pid":12345, "tid":2, "ts":1718093442306956, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  327. ,{ "pid":12345, "tid":2, "ts":1718093442307169, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  328. ,{ "pid":12345, "tid":2, "ts":1718093442307294, "dur":169, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowError.h" }}
  329. ,{ "pid":12345, "tid":2, "ts":1718093442307293, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowError.h" }}
  330. ,{ "pid":12345, "tid":2, "ts":1718093442307464, "dur":169, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  331. ,{ "pid":12345, "tid":2, "ts":1718093442307660, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBannerView.h" }}
  332. ,{ "pid":12345, "tid":2, "ts":1718093442307659, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBannerView.h" }}
  333. ,{ "pid":12345, "tid":2, "ts":1718093442307758, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  334. ,{ "pid":12345, "tid":2, "ts":1718093442307880, "dur":154, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsBannerDelegate.h" }}
  335. ,{ "pid":12345, "tid":2, "ts":1718093442307879, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsBannerDelegate.h" }}
  336. ,{ "pid":12345, "tid":2, "ts":1718093442308036, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  337. ,{ "pid":12345, "tid":2, "ts":1718093442308131, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONPlacementContent.h" }}
  338. ,{ "pid":12345, "tid":2, "ts":1718093442308129, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONPlacementContent.h" }}
  339. ,{ "pid":12345, "tid":2, "ts":1718093442308267, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  340. ,{ "pid":12345, "tid":2, "ts":1718093442308390, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSPlayerMetaData.h" }}
  341. ,{ "pid":12345, "tid":2, "ts":1718093442308388, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSPlayerMetaData.h" }}
  342. ,{ "pid":12345, "tid":2, "ts":1718093442308463, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  343. ,{ "pid":12345, "tid":2, "ts":1718093442308546, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBannerViewDelegate.h" }}
  344. ,{ "pid":12345, "tid":2, "ts":1718093442308545, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBannerViewDelegate.h" }}
  345. ,{ "pid":12345, "tid":2, "ts":1718093442308650, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  346. ,{ "pid":12345, "tid":2, "ts":1718093442308817, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  347. ,{ "pid":12345, "tid":2, "ts":1718093442308919, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System/Math.cpp" }}
  348. ,{ "pid":12345, "tid":2, "ts":1718093442308918, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System/Math.cpp" }}
  349. ,{ "pid":12345, "tid":2, "ts":1718093442309029, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  350. ,{ "pid":12345, "tid":2, "ts":1718093442309139, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/BlobReader.h" }}
  351. ,{ "pid":12345, "tid":2, "ts":1718093442309137, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/BlobReader.h" }}
  352. ,{ "pid":12345, "tid":2, "ts":1718093442309195, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  353. ,{ "pid":12345, "tid":2, "ts":1718093442309283, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/ThreadSafeFreeList.h" }}
  354. ,{ "pid":12345, "tid":2, "ts":1718093442309282, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/ThreadSafeFreeList.h" }}
  355. ,{ "pid":12345, "tid":2, "ts":1718093442309387, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  356. ,{ "pid":12345, "tid":2, "ts":1718093442309506, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/sha1.h" }}
  357. ,{ "pid":12345, "tid":2, "ts":1718093442309504, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/sha1.h" }}
  358. ,{ "pid":12345, "tid":2, "ts":1718093442309646, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  359. ,{ "pid":12345, "tid":2, "ts":1718093442309713, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Output.h" }}
  360. ,{ "pid":12345, "tid":2, "ts":1718093442309711, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Output.h" }}
  361. ,{ "pid":12345, "tid":2, "ts":1718093442309808, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  362. ,{ "pid":12345, "tid":2, "ts":1718093442309927, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryRead.h" }}
  363. ,{ "pid":12345, "tid":2, "ts":1718093442309923, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryRead.h" }}
  364. ,{ "pid":12345, "tid":2, "ts":1718093442309988, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  365. ,{ "pid":12345, "tid":2, "ts":1718093442310087, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryMappedFile.h" }}
  366. ,{ "pid":12345, "tid":2, "ts":1718093442310085, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryMappedFile.h" }}
  367. ,{ "pid":12345, "tid":2, "ts":1718093442310159, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  368. ,{ "pid":12345, "tid":2, "ts":1718093442310233, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MarshalingUtils.cpp" }}
  369. ,{ "pid":12345, "tid":2, "ts":1718093442310232, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MarshalingUtils.cpp" }}
  370. ,{ "pid":12345, "tid":2, "ts":1718093442310329, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  371. ,{ "pid":12345, "tid":2, "ts":1718093442310459, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Il2CppHashMap.h" }}
  372. ,{ "pid":12345, "tid":2, "ts":1718093442310458, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Il2CppHashMap.h" }}
  373. ,{ "pid":12345, "tid":2, "ts":1718093442310586, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  374. ,{ "pid":12345, "tid":2, "ts":1718093442310655, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/ExtendedAtomicTypes.h" }}
  375. ,{ "pid":12345, "tid":2, "ts":1718093442310654, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/ExtendedAtomicTypes.h" }}
  376. ,{ "pid":12345, "tid":2, "ts":1718093442310725, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  377. ,{ "pid":12345, "tid":2, "ts":1718093442310881, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  378. ,{ "pid":12345, "tid":2, "ts":1718093442310998, "dur":136, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/BaselibHandleUtils.h" }}
  379. ,{ "pid":12345, "tid":2, "ts":1718093442310996, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/BaselibHandleUtils.h" }}
  380. ,{ "pid":12345, "tid":2, "ts":1718093442311184, "dur":144, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Win32ApiWinRTEmulation.h" }}
  381. ,{ "pid":12345, "tid":2, "ts":1718093442311183, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Win32ApiWinRTEmulation.h" }}
  382. ,{ "pid":12345, "tid":2, "ts":1718093442311330, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  383. ,{ "pid":12345, "tid":2, "ts":1718093442311400, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/ReferenceCounter.h" }}
  384. ,{ "pid":12345, "tid":2, "ts":1718093442311399, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/ReferenceCounter.h" }}
  385. ,{ "pid":12345, "tid":2, "ts":1718093442311479, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  386. ,{ "pid":12345, "tid":2, "ts":1718093442311537, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Environment.cpp" }}
  387. ,{ "pid":12345, "tid":2, "ts":1718093442311535, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Environment.cpp" }}
  388. ,{ "pid":12345, "tid":2, "ts":1718093442311666, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  389. ,{ "pid":12345, "tid":2, "ts":1718093442311767, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/WindowsRuntime.cpp" }}
  390. ,{ "pid":12345, "tid":2, "ts":1718093442311765, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsRuntime.cpp" }}
  391. ,{ "pid":12345, "tid":2, "ts":1718093442311872, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  392. ,{ "pid":12345, "tid":2, "ts":1718093442311965, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ThreadLocalValueImpl.h" }}
  393. ,{ "pid":12345, "tid":2, "ts":1718093442311964, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ThreadLocalValueImpl.h" }}
  394. ,{ "pid":12345, "tid":2, "ts":1718093442312068, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  395. ,{ "pid":12345, "tid":2, "ts":1718093442312192, "dur":141, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/StackTrace.cpp" }}
  396. ,{ "pid":12345, "tid":2, "ts":1718093442312190, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/StackTrace.cpp" }}
  397. ,{ "pid":12345, "tid":2, "ts":1718093442312351, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  398. ,{ "pid":12345, "tid":2, "ts":1718093442312435, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Memory.cpp" }}
  399. ,{ "pid":12345, "tid":2, "ts":1718093442312434, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Memory.cpp" }}
  400. ,{ "pid":12345, "tid":2, "ts":1718093442312542, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  401. ,{ "pid":12345, "tid":2, "ts":1718093442312664, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Initialize.cpp" }}
  402. ,{ "pid":12345, "tid":2, "ts":1718093442312662, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Initialize.cpp" }}
  403. ,{ "pid":12345, "tid":2, "ts":1718093442312725, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  404. ,{ "pid":12345, "tid":2, "ts":1718093442312806, "dur":285, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Encoding.cpp" }}
  405. ,{ "pid":12345, "tid":2, "ts":1718093442312805, "dur":288, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Encoding.cpp" }}
  406. ,{ "pid":12345, "tid":2, "ts":1718093442313093, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  407. ,{ "pid":12345, "tid":2, "ts":1718093442313182, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/CpuInfo.cpp" }}
  408. ,{ "pid":12345, "tid":2, "ts":1718093442313180, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/CpuInfo.cpp" }}
  409. ,{ "pid":12345, "tid":2, "ts":1718093442313289, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  410. ,{ "pid":12345, "tid":2, "ts":1718093442313440, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WaitStatus.h" }}
  411. ,{ "pid":12345, "tid":2, "ts":1718093442313438, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WaitStatus.h" }}
  412. ,{ "pid":12345, "tid":2, "ts":1718093442313524, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  413. ,{ "pid":12345, "tid":2, "ts":1718093442313600, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/SynchronizationContext.h" }}
  414. ,{ "pid":12345, "tid":2, "ts":1718093442313598, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/SynchronizationContext.h" }}
  415. ,{ "pid":12345, "tid":2, "ts":1718093442313666, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  416. ,{ "pid":12345, "tid":2, "ts":1718093442313737, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Socket.h" }}
  417. ,{ "pid":12345, "tid":2, "ts":1718093442313736, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Socket.h" }}
  418. ,{ "pid":12345, "tid":2, "ts":1718093442313823, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  419. ,{ "pid":12345, "tid":2, "ts":1718093442313922, "dur":169, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ReaderWriterLock.cpp" }}
  420. ,{ "pid":12345, "tid":2, "ts":1718093442313906, "dur":186, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ReaderWriterLock.cpp" }}
  421. ,{ "pid":12345, "tid":2, "ts":1718093442314092, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  422. ,{ "pid":12345, "tid":2, "ts":1718093442314226, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ThreadImpl.cpp" }}
  423. ,{ "pid":12345, "tid":2, "ts":1718093442314225, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ThreadImpl.cpp" }}
  424. ,{ "pid":12345, "tid":2, "ts":1718093442314302, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  425. ,{ "pid":12345, "tid":2, "ts":1718093442314428, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/PosixHelpers.h" }}
  426. ,{ "pid":12345, "tid":2, "ts":1718093442314427, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/PosixHelpers.h" }}
  427. ,{ "pid":12345, "tid":2, "ts":1718093442314492, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  428. ,{ "pid":12345, "tid":2, "ts":1718093442314579, "dur":183, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/NativeMethods.cpp" }}
  429. ,{ "pid":12345, "tid":2, "ts":1718093442314578, "dur":184, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/NativeMethods.cpp" }}
  430. ,{ "pid":12345, "tid":2, "ts":1718093442314762, "dur":184, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  431. ,{ "pid":12345, "tid":2, "ts":1718093442314952, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Locale.cpp" }}
  432. ,{ "pid":12345, "tid":2, "ts":1718093442314951, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Locale.cpp" }}
  433. ,{ "pid":12345, "tid":2, "ts":1718093442315062, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  434. ,{ "pid":12345, "tid":2, "ts":1718093442315169, "dur":154, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/File.cpp" }}
  435. ,{ "pid":12345, "tid":2, "ts":1718093442315169, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/File.cpp" }}
  436. ,{ "pid":12345, "tid":2, "ts":1718093442315324, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  437. ,{ "pid":12345, "tid":2, "ts":1718093442315400, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Directory.cpp" }}
  438. ,{ "pid":12345, "tid":2, "ts":1718093442315399, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Directory.cpp" }}
  439. ,{ "pid":12345, "tid":2, "ts":1718093442315466, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  440. ,{ "pid":12345, "tid":2, "ts":1718093442315541, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ConditionVariableImpl.cpp" }}
  441. ,{ "pid":12345, "tid":2, "ts":1718093442315540, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ConditionVariableImpl.cpp" }}
  442. ,{ "pid":12345, "tid":2, "ts":1718093442315640, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  443. ,{ "pid":12345, "tid":2, "ts":1718093442315797, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/pal_darwin.h" }}
  444. ,{ "pid":12345, "tid":2, "ts":1718093442315796, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/pal_darwin.h" }}
  445. ,{ "pid":12345, "tid":2, "ts":1718093442315906, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  446. ,{ "pid":12345, "tid":2, "ts":1718093442316047, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Messages.cpp" }}
  447. ,{ "pid":12345, "tid":2, "ts":1718093442316046, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Messages.cpp" }}
  448. ,{ "pid":12345, "tid":2, "ts":1718093442316123, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  449. ,{ "pid":12345, "tid":2, "ts":1718093442316192, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Linux/pal_linux.h" }}
  450. ,{ "pid":12345, "tid":2, "ts":1718093442316191, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Linux/pal_linux.h" }}
  451. ,{ "pid":12345, "tid":2, "ts":1718093442316304, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  452. ,{ "pid":12345, "tid":2, "ts":1718093442316368, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Image.h" }}
  453. ,{ "pid":12345, "tid":2, "ts":1718093442316368, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Image.h" }}
  454. ,{ "pid":12345, "tid":2, "ts":1718093442316462, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  455. ,{ "pid":12345, "tid":2, "ts":1718093442316583, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  456. ,{ "pid":12345, "tid":2, "ts":1718093442316666, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/MutexImpl.h" }}
  457. ,{ "pid":12345, "tid":2, "ts":1718093442316664, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/MutexImpl.h" }}
  458. ,{ "pid":12345, "tid":2, "ts":1718093442316765, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  459. ,{ "pid":12345, "tid":2, "ts":1718093442316861, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/File.cpp" }}
  460. ,{ "pid":12345, "tid":2, "ts":1718093442316860, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/File.cpp" }}
  461. ,{ "pid":12345, "tid":2, "ts":1718093442316944, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  462. ,{ "pid":12345, "tid":2, "ts":1718093442317040, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/COM.cpp" }}
  463. ,{ "pid":12345, "tid":2, "ts":1718093442317038, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/COM.cpp" }}
  464. ,{ "pid":12345, "tid":2, "ts":1718093442317099, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  465. ,{ "pid":12345, "tid":2, "ts":1718093442317204, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/FastReaderReaderWriterLock.cpp" }}
  466. ,{ "pid":12345, "tid":2, "ts":1718093442317202, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/FastReaderReaderWriterLock.cpp" }}
  467. ,{ "pid":12345, "tid":2, "ts":1718093442317262, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  468. ,{ "pid":12345, "tid":2, "ts":1718093442317355, "dur":136, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Environment.h" }}
  469. ,{ "pid":12345, "tid":2, "ts":1718093442317354, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Environment.h" }}
  470. ,{ "pid":12345, "tid":2, "ts":1718093442317493, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  471. ,{ "pid":12345, "tid":2, "ts":1718093442317617, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Cryptography.h" }}
  472. ,{ "pid":12345, "tid":2, "ts":1718093442317616, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Cryptography.h" }}
  473. ,{ "pid":12345, "tid":2, "ts":1718093442317728, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  474. ,{ "pid":12345, "tid":2, "ts":1718093442317803, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ConditionVariable.h" }}
  475. ,{ "pid":12345, "tid":2, "ts":1718093442317802, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ConditionVariable.h" }}
  476. ,{ "pid":12345, "tid":2, "ts":1718093442317916, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  477. ,{ "pid":12345, "tid":2, "ts":1718093442318044, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_sizecheck.cpp" }}
  478. ,{ "pid":12345, "tid":2, "ts":1718093442318043, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_sizecheck.cpp" }}
  479. ,{ "pid":12345, "tid":2, "ts":1718093442318127, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  480. ,{ "pid":12345, "tid":2, "ts":1718093442318195, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_errno.cpp" }}
  481. ,{ "pid":12345, "tid":2, "ts":1718093442318194, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_errno.cpp" }}
  482. ,{ "pid":12345, "tid":2, "ts":1718093442318251, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  483. ,{ "pid":12345, "tid":2, "ts":1718093442318337, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/utf8_util.c" }}
  484. ,{ "pid":12345, "tid":2, "ts":1718093442318335, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/utf8_util.c" }}
  485. ,{ "pid":12345, "tid":2, "ts":1718093442318447, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  486. ,{ "pid":12345, "tid":2, "ts":1718093442318529, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/prefix.h" }}
  487. ,{ "pid":12345, "tid":2, "ts":1718093442318527, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/prefix.h" }}
  488. ,{ "pid":12345, "tid":2, "ts":1718093442318646, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  489. ,{ "pid":12345, "tid":2, "ts":1718093442318784, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/literal_cost.h" }}
  490. ,{ "pid":12345, "tid":2, "ts":1718093442318782, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/literal_cost.h" }}
  491. ,{ "pid":12345, "tid":2, "ts":1718093442318871, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  492. ,{ "pid":12345, "tid":2, "ts":1718093442318995, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_rolling_inc.h" }}
  493. ,{ "pid":12345, "tid":2, "ts":1718093442318993, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_rolling_inc.h" }}
  494. ,{ "pid":12345, "tid":2, "ts":1718093442319103, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  495. ,{ "pid":12345, "tid":2, "ts":1718093442319221, "dur":169, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_composite_inc.h" }}
  496. ,{ "pid":12345, "tid":2, "ts":1718093442319220, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_composite_inc.h" }}
  497. ,{ "pid":12345, "tid":2, "ts":1718093442319391, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  498. ,{ "pid":12345, "tid":2, "ts":1718093442319504, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode.h" }}
  499. ,{ "pid":12345, "tid":2, "ts":1718093442319503, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode.h" }}
  500. ,{ "pid":12345, "tid":2, "ts":1718093442319578, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  501. ,{ "pid":12345, "tid":2, "ts":1718093442319697, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.c" }}
  502. ,{ "pid":12345, "tid":2, "ts":1718093442319696, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.c" }}
  503. ,{ "pid":12345, "tid":2, "ts":1718093442319819, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  504. ,{ "pid":12345, "tid":2, "ts":1718093442319955, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/command.c" }}
  505. ,{ "pid":12345, "tid":2, "ts":1718093442319954, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/command.c" }}
  506. ,{ "pid":12345, "tid":2, "ts":1718093442320024, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  507. ,{ "pid":12345, "tid":2, "ts":1718093442320188, "dur":181, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter.h" }}
  508. ,{ "pid":12345, "tid":2, "ts":1718093442320185, "dur":185, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter.h" }}
  509. ,{ "pid":12345, "tid":2, "ts":1718093442320370, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  510. ,{ "pid":12345, "tid":2, "ts":1718093442320453, "dur":143, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_inc.h" }}
  511. ,{ "pid":12345, "tid":2, "ts":1718093442320452, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_inc.h" }}
  512. ,{ "pid":12345, "tid":2, "ts":1718093442320597, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  513. ,{ "pid":12345, "tid":2, "ts":1718093442320671, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/huffman.h" }}
  514. ,{ "pid":12345, "tid":2, "ts":1718093442320669, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/huffman.h" }}
  515. ,{ "pid":12345, "tid":2, "ts":1718093442320726, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  516. ,{ "pid":12345, "tid":2, "ts":1718093442320879, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/version.h" }}
  517. ,{ "pid":12345, "tid":2, "ts":1718093442320877, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/version.h" }}
  518. ,{ "pid":12345, "tid":2, "ts":1718093442320943, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  519. ,{ "pid":12345, "tid":2, "ts":1718093442321072, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/context.h" }}
  520. ,{ "pid":12345, "tid":2, "ts":1718093442321055, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/context.h" }}
  521. ,{ "pid":12345, "tid":2, "ts":1718093442321152, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  522. ,{ "pid":12345, "tid":2, "ts":1718093442321268, "dur":154, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Time.cpp" }}
  523. ,{ "pid":12345, "tid":2, "ts":1718093442321267, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Time.cpp" }}
  524. ,{ "pid":12345, "tid":2, "ts":1718093442321423, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  525. ,{ "pid":12345, "tid":2, "ts":1718093442321592, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  526. ,{ "pid":12345, "tid":2, "ts":1718093442321659, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/File-c-api.h" }}
  527. ,{ "pid":12345, "tid":2, "ts":1718093442321658, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/File-c-api.h" }}
  528. ,{ "pid":12345, "tid":2, "ts":1718093442321790, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  529. ,{ "pid":12345, "tid":2, "ts":1718093442321903, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Directory.cpp" }}
  530. ,{ "pid":12345, "tid":2, "ts":1718093442321901, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Directory.cpp" }}
  531. ,{ "pid":12345, "tid":2, "ts":1718093442321961, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  532. ,{ "pid":12345, "tid":2, "ts":1718093442322078, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/baselib/FastReaderReaderWriterLockImpl.h" }}
  533. ,{ "pid":12345, "tid":2, "ts":1718093442322077, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/baselib/FastReaderReaderWriterLockImpl.h" }}
  534. ,{ "pid":12345, "tid":2, "ts":1718093442322144, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  535. ,{ "pid":12345, "tid":2, "ts":1718093442322286, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/ConsoleExtension.cpp" }}
  536. ,{ "pid":12345, "tid":2, "ts":1718093442322285, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/ConsoleExtension.cpp" }}
  537. ,{ "pid":12345, "tid":2, "ts":1718093442322404, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  538. ,{ "pid":12345, "tid":2, "ts":1718093442322543, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolDataStructures.h" }}
  539. ,{ "pid":12345, "tid":2, "ts":1718093442322535, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolDataStructures.h" }}
  540. ,{ "pid":12345, "tid":2, "ts":1718093442322666, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  541. ,{ "pid":12345, "tid":2, "ts":1718093442322801, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms-io-poll.cpp" }}
  542. ,{ "pid":12345, "tid":2, "ts":1718093442322800, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms-io-poll.cpp" }}
  543. ,{ "pid":12345, "tid":2, "ts":1718093442322886, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  544. ,{ "pid":12345, "tid":2, "ts":1718093442322978, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppTypeCompare.h" }}
  545. ,{ "pid":12345, "tid":2, "ts":1718093442322962, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeCompare.h" }}
  546. ,{ "pid":12345, "tid":2, "ts":1718093442323079, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  547. ,{ "pid":12345, "tid":2, "ts":1718093442323159, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericMethodCompare.h" }}
  548. ,{ "pid":12345, "tid":2, "ts":1718093442323158, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodCompare.h" }}
  549. ,{ "pid":12345, "tid":2, "ts":1718093442323224, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  550. ,{ "pid":12345, "tid":2, "ts":1718093442323324, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericContextHash.h" }}
  551. ,{ "pid":12345, "tid":2, "ts":1718093442323323, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextHash.h" }}
  552. ,{ "pid":12345, "tid":2, "ts":1718093442323456, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  553. ,{ "pid":12345, "tid":2, "ts":1718093442323572, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericClassCompare.h" }}
  554. ,{ "pid":12345, "tid":2, "ts":1718093442323571, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassCompare.h" }}
  555. ,{ "pid":12345, "tid":2, "ts":1718093442323684, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  556. ,{ "pid":12345, "tid":2, "ts":1718093442323743, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/FieldLayout.h" }}
  557. ,{ "pid":12345, "tid":2, "ts":1718093442323742, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/FieldLayout.h" }}
  558. ,{ "pid":12345, "tid":2, "ts":1718093442323838, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  559. ,{ "pid":12345, "tid":2, "ts":1718093442323933, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/CustomAttributeCreator.cpp" }}
  560. ,{ "pid":12345, "tid":2, "ts":1718093442323932, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeCreator.cpp" }}
  561. ,{ "pid":12345, "tid":2, "ts":1718093442323997, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  562. ,{ "pid":12345, "tid":2, "ts":1718093442324117, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-tabledefs.h" }}
  563. ,{ "pid":12345, "tid":2, "ts":1718093442324116, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-tabledefs.h" }}
  564. ,{ "pid":12345, "tid":2, "ts":1718093442324181, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  565. ,{ "pid":12345, "tid":2, "ts":1718093442324251, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-runtime-metadata.h" }}
  566. ,{ "pid":12345, "tid":2, "ts":1718093442324250, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-runtime-metadata.h" }}
  567. ,{ "pid":12345, "tid":2, "ts":1718093442324316, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  568. ,{ "pid":12345, "tid":2, "ts":1718093442324416, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-mono-api.cpp" }}
  569. ,{ "pid":12345, "tid":2, "ts":1718093442324415, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-mono-api.cpp" }}
  570. ,{ "pid":12345, "tid":2, "ts":1718093442324495, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  571. ,{ "pid":12345, "tid":2, "ts":1718093442324557, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-blob.h" }}
  572. ,{ "pid":12345, "tid":2, "ts":1718093442324556, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-blob.h" }}
  573. ,{ "pid":12345, "tid":2, "ts":1718093442324625, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  574. ,{ "pid":12345, "tid":2, "ts":1718093442324696, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-api-functions.h" }}
  575. ,{ "pid":12345, "tid":2, "ts":1718093442324695, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-api-functions.h" }}
  576. ,{ "pid":12345, "tid":2, "ts":1718093442324770, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  577. ,{ "pid":12345, "tid":2, "ts":1718093442324827, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.Sockets/SocketException.cpp" }}
  578. ,{ "pid":12345, "tid":2, "ts":1718093442324826, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.Sockets/SocketException.cpp" }}
  579. ,{ "pid":12345, "tid":2, "ts":1718093442324917, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  580. ,{ "pid":12345, "tid":2, "ts":1718093442325005, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.IO/FileSystemWatcher.h" }}
  581. ,{ "pid":12345, "tid":2, "ts":1718093442325004, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.IO/FileSystemWatcher.h" }}
  582. ,{ "pid":12345, "tid":2, "ts":1718093442325069, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  583. ,{ "pid":12345, "tid":2, "ts":1718093442325148, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/FileVersionInfo.h" }}
  584. ,{ "pid":12345, "tid":2, "ts":1718093442325147, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/FileVersionInfo.h" }}
  585. ,{ "pid":12345, "tid":2, "ts":1718093442325202, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  586. ,{ "pid":12345, "tid":2, "ts":1718093442325274, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/Microsoft.Win32/NativeMethods.h" }}
  587. ,{ "pid":12345, "tid":2, "ts":1718093442325272, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/Microsoft.Win32/NativeMethods.h" }}
  588. ,{ "pid":12345, "tid":2, "ts":1718093442325331, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  589. ,{ "pid":12345, "tid":2, "ts":1718093442325409, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/TypedReference.h" }}
  590. ,{ "pid":12345, "tid":2, "ts":1718093442325408, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/TypedReference.h" }}
  591. ,{ "pid":12345, "tid":2, "ts":1718093442325472, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  592. ,{ "pid":12345, "tid":2, "ts":1718093442325551, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeTypeHandle.h" }}
  593. ,{ "pid":12345, "tid":2, "ts":1718093442325549, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeTypeHandle.h" }}
  594. ,{ "pid":12345, "tid":2, "ts":1718093442325605, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  595. ,{ "pid":12345, "tid":2, "ts":1718093442325673, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeFieldHandle.h" }}
  596. ,{ "pid":12345, "tid":2, "ts":1718093442325672, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeFieldHandle.h" }}
  597. ,{ "pid":12345, "tid":2, "ts":1718093442325747, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  598. ,{ "pid":12345, "tid":2, "ts":1718093442325829, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Number.cpp" }}
  599. ,{ "pid":12345, "tid":2, "ts":1718093442325828, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Number.cpp" }}
  600. ,{ "pid":12345, "tid":2, "ts":1718093442325893, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  601. ,{ "pid":12345, "tid":2, "ts":1718093442325950, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Exception.cpp" }}
  602. ,{ "pid":12345, "tid":2, "ts":1718093442325949, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Exception.cpp" }}
  603. ,{ "pid":12345, "tid":2, "ts":1718093442326017, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  604. ,{ "pid":12345, "tid":2, "ts":1718093442326081, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Delegate.cpp" }}
  605. ,{ "pid":12345, "tid":2, "ts":1718093442326080, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Delegate.cpp" }}
  606. ,{ "pid":12345, "tid":2, "ts":1718093442326141, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  607. ,{ "pid":12345, "tid":2, "ts":1718093442326223, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ConsoleDriver.h" }}
  608. ,{ "pid":12345, "tid":2, "ts":1718093442326223, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ConsoleDriver.h" }}
  609. ,{ "pid":12345, "tid":2, "ts":1718093442326285, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  610. ,{ "pid":12345, "tid":2, "ts":1718093442326362, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Array.h" }}
  611. ,{ "pid":12345, "tid":2, "ts":1718093442326361, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Array.h" }}
  612. ,{ "pid":12345, "tid":2, "ts":1718093442326454, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  613. ,{ "pid":12345, "tid":2, "ts":1718093442326512, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/WaitHandle.h" }}
  614. ,{ "pid":12345, "tid":2, "ts":1718093442326511, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/WaitHandle.h" }}
  615. ,{ "pid":12345, "tid":2, "ts":1718093442326606, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  616. ,{ "pid":12345, "tid":2, "ts":1718093442326729, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/NativeEventCalls.h" }}
  617. ,{ "pid":12345, "tid":2, "ts":1718093442326727, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/NativeEventCalls.h" }}
  618. ,{ "pid":12345, "tid":2, "ts":1718093442326820, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  619. ,{ "pid":12345, "tid":2, "ts":1718093442326902, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/InternalThread.h" }}
  620. ,{ "pid":12345, "tid":2, "ts":1718093442326900, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/InternalThread.h" }}
  621. ,{ "pid":12345, "tid":2, "ts":1718093442326970, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  622. ,{ "pid":12345, "tid":2, "ts":1718093442327035, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsPrincipal.h" }}
  623. ,{ "pid":12345, "tid":2, "ts":1718093442327034, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsPrincipal.h" }}
  624. ,{ "pid":12345, "tid":2, "ts":1718093442327102, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  625. ,{ "pid":12345, "tid":2, "ts":1718093442327185, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Policy/Evidence.h" }}
  626. ,{ "pid":12345, "tid":2, "ts":1718093442327183, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Policy/Evidence.h" }}
  627. ,{ "pid":12345, "tid":2, "ts":1718093442327372, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting/RemotingServices.h" }}
  628. ,{ "pid":12345, "tid":2, "ts":1718093442327370, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting/RemotingServices.h" }}
  629. ,{ "pid":12345, "tid":2, "ts":1718093442327442, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  630. ,{ "pid":12345, "tid":2, "ts":1718093442327524, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.h" }}
  631. ,{ "pid":12345, "tid":2, "ts":1718093442327522, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.h" }}
  632. ,{ "pid":12345, "tid":2, "ts":1718093442327594, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  633. ,{ "pid":12345, "tid":2, "ts":1718093442327657, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.h" }}
  634. ,{ "pid":12345, "tid":2, "ts":1718093442327656, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.h" }}
  635. ,{ "pid":12345, "tid":2, "ts":1718093442327743, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  636. ,{ "pid":12345, "tid":2, "ts":1718093442327888, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  637. ,{ "pid":12345, "tid":2, "ts":1718093442327970, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeParameterInfo.cpp" }}
  638. ,{ "pid":12345, "tid":2, "ts":1718093442327969, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeParameterInfo.cpp" }}
  639. ,{ "pid":12345, "tid":2, "ts":1718093442328082, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  640. ,{ "pid":12345, "tid":2, "ts":1718093442328156, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeFieldInfo.cpp" }}
  641. ,{ "pid":12345, "tid":2, "ts":1718093442328154, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeFieldInfo.cpp" }}
  642. ,{ "pid":12345, "tid":2, "ts":1718093442328284, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  643. ,{ "pid":12345, "tid":2, "ts":1718093442328407, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  644. ,{ "pid":12345, "tid":2, "ts":1718093442328494, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/Module.cpp" }}
  645. ,{ "pid":12345, "tid":2, "ts":1718093442328492, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/Module.cpp" }}
  646. ,{ "pid":12345, "tid":2, "ts":1718093442328576, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  647. ,{ "pid":12345, "tid":2, "ts":1718093442328660, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/EventInfo.cpp" }}
  648. ,{ "pid":12345, "tid":2, "ts":1718093442328658, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/EventInfo.cpp" }}
  649. ,{ "pid":12345, "tid":2, "ts":1718093442328753, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  650. ,{ "pid":12345, "tid":2, "ts":1718093442328848, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/Assembly.cpp" }}
  651. ,{ "pid":12345, "tid":2, "ts":1718093442328846, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/Assembly.cpp" }}
  652. ,{ "pid":12345, "tid":2, "ts":1718093442328957, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  653. ,{ "pid":12345, "tid":2, "ts":1718093442329099, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/DriveInfo.cpp" }}
  654. ,{ "pid":12345, "tid":2, "ts":1718093442329097, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/DriveInfo.cpp" }}
  655. ,{ "pid":12345, "tid":2, "ts":1718093442329170, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  656. ,{ "pid":12345, "tid":2, "ts":1718093442329243, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/Generated/CultureInfoInternalsNet_4_0.h" }}
  657. ,{ "pid":12345, "tid":2, "ts":1718093442329241, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/Generated/CultureInfoInternalsNet_4_0.h" }}
  658. ,{ "pid":12345, "tid":2, "ts":1718093442329339, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  659. ,{ "pid":12345, "tid":2, "ts":1718093442329425, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureData.h" }}
  660. ,{ "pid":12345, "tid":2, "ts":1718093442329414, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureData.h" }}
  661. ,{ "pid":12345, "tid":2, "ts":1718093442329481, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  662. ,{ "pid":12345, "tid":2, "ts":1718093442329571, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CalendarData.cpp" }}
  663. ,{ "pid":12345, "tid":2, "ts":1718093442329569, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CalendarData.cpp" }}
  664. ,{ "pid":12345, "tid":2, "ts":1718093442329653, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  665. ,{ "pid":12345, "tid":2, "ts":1718093442329723, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/Debugger.cpp" }}
  666. ,{ "pid":12345, "tid":2, "ts":1718093442329721, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/Debugger.cpp" }}
  667. ,{ "pid":12345, "tid":2, "ts":1718093442329787, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  668. ,{ "pid":12345, "tid":2, "ts":1718093442329870, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeClassHandle.h" }}
  669. ,{ "pid":12345, "tid":2, "ts":1718093442329869, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeClassHandle.h" }}
  670. ,{ "pid":12345, "tid":2, "ts":1718093442329927, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  671. ,{ "pid":12345, "tid":2, "ts":1718093442330016, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono.Unity/UnityTls.cpp" }}
  672. ,{ "pid":12345, "tid":2, "ts":1718093442330014, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono.Unity/UnityTls.cpp" }}
  673. ,{ "pid":12345, "tid":2, "ts":1718093442330083, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  674. ,{ "pid":12345, "tid":2, "ts":1718093442330154, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Interop.cpp" }}
  675. ,{ "pid":12345, "tid":2, "ts":1718093442330152, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Interop.cpp" }}
  676. ,{ "pid":12345, "tid":2, "ts":1718093442330285, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/NullGC.cpp" }}
  677. ,{ "pid":12345, "tid":2, "ts":1718093442330284, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/NullGC.cpp" }}
  678. ,{ "pid":12345, "tid":2, "ts":1718093442330379, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  679. ,{ "pid":12345, "tid":2, "ts":1718093442330487, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  680. ,{ "pid":12345, "tid":2, "ts":1718093442330594, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-tiny.cpp" }}
  681. ,{ "pid":12345, "tid":2, "ts":1718093442330592, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-tiny.cpp" }}
  682. ,{ "pid":12345, "tid":2, "ts":1718093442330665, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  683. ,{ "pid":12345, "tid":2, "ts":1718093442330751, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/char-conversions.h" }}
  684. ,{ "pid":12345, "tid":2, "ts":1718093442330749, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/char-conversions.h" }}
  685. ,{ "pid":12345, "tid":2, "ts":1718093442330839, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  686. ,{ "pid":12345, "tid":2, "ts":1718093442330952, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/trees.h" }}
  687. ,{ "pid":12345, "tid":2, "ts":1718093442331004, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  688. ,{ "pid":12345, "tid":2, "ts":1718093442331075, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inflate.h" }}
  689. ,{ "pid":12345, "tid":2, "ts":1718093442331073, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inflate.h" }}
  690. ,{ "pid":12345, "tid":2, "ts":1718093442331189, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  691. ,{ "pid":12345, "tid":2, "ts":1718093442331268, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzwrite.c" }}
  692. ,{ "pid":12345, "tid":2, "ts":1718093442331266, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzwrite.c" }}
  693. ,{ "pid":12345, "tid":2, "ts":1718093442331336, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  694. ,{ "pid":12345, "tid":2, "ts":1718093442331405, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/deflate.c" }}
  695. ,{ "pid":12345, "tid":2, "ts":1718093442331403, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/deflate.c" }}
  696. ,{ "pid":12345, "tid":2, "ts":1718093442331477, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  697. ,{ "pid":12345, "tid":2, "ts":1718093442331559, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xxHash/xxh3.h" }}
  698. ,{ "pid":12345, "tid":2, "ts":1718093442331558, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/xxh3.h" }}
  699. ,{ "pid":12345, "tid":2, "ts":1718093442331616, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  700. ,{ "pid":12345, "tid":2, "ts":1718093442331691, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xamarin-android/monodroid.h" }}
  701. ,{ "pid":12345, "tid":2, "ts":1718093442331690, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/monodroid.h" }}
  702. ,{ "pid":12345, "tid":2, "ts":1718093442331747, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  703. ,{ "pid":12345, "tid":2, "ts":1718093442331804, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/w32subset.h" }}
  704. ,{ "pid":12345, "tid":2, "ts":1718093442331802, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/w32subset.h" }}
  705. ,{ "pid":12345, "tid":2, "ts":1718093442331859, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  706. ,{ "pid":12345, "tid":2, "ts":1718093442331942, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/strenc.h" }}
  707. ,{ "pid":12345, "tid":2, "ts":1718093442331932, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/strenc.h" }}
  708. ,{ "pid":12345, "tid":2, "ts":1718093442332008, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  709. ,{ "pid":12345, "tid":2, "ts":1718093442332097, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/os-event-win32.c" }}
  710. ,{ "pid":12345, "tid":2, "ts":1718093442332095, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/os-event-win32.c" }}
  711. ,{ "pid":12345, "tid":2, "ts":1718093442332203, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking.c" }}
  712. ,{ "pid":12345, "tid":2, "ts":1718093442332202, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking.c" }}
  713. ,{ "pid":12345, "tid":2, "ts":1718093442332371, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-value-hash.c" }}
  714. ,{ "pid":12345, "tid":2, "ts":1718093442332370, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-value-hash.c" }}
  715. ,{ "pid":12345, "tid":2, "ts":1718093442332443, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  716. ,{ "pid":12345, "tid":2, "ts":1718093442332535, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-time.h" }}
  717. ,{ "pid":12345, "tid":2, "ts":1718093442332534, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-time.h" }}
  718. ,{ "pid":12345, "tid":2, "ts":1718093442332601, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  719. ,{ "pid":12345, "tid":2, "ts":1718093442332694, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-posix.c" }}
  720. ,{ "pid":12345, "tid":2, "ts":1718093442332693, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-posix.c" }}
  721. ,{ "pid":12345, "tid":2, "ts":1718093442332798, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  722. ,{ "pid":12345, "tid":2, "ts":1718093442332878, "dur":731, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-coop.c" }}
  723. ,{ "pid":12345, "tid":2, "ts":1718093442332876, "dur":735, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-coop.c" }}
  724. ,{ "pid":12345, "tid":2, "ts":1718093442333612, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  725. ,{ "pid":12345, "tid":2, "ts":1718093442333687, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-stack-unwinding.h" }}
  726. ,{ "pid":12345, "tid":2, "ts":1718093442333685, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-stack-unwinding.h" }}
  727. ,{ "pid":12345, "tid":2, "ts":1718093442333757, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  728. ,{ "pid":12345, "tid":2, "ts":1718093442333832, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-property-hash.h" }}
  729. ,{ "pid":12345, "tid":2, "ts":1718093442333830, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-property-hash.h" }}
  730. ,{ "pid":12345, "tid":2, "ts":1718093442333922, "dur":161, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  731. ,{ "pid":12345, "tid":2, "ts":1718093442334092, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-poll.h" }}
  732. ,{ "pid":12345, "tid":2, "ts":1718093442334090, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-poll.h" }}
  733. ,{ "pid":12345, "tid":2, "ts":1718093442334173, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  734. ,{ "pid":12345, "tid":2, "ts":1718093442334284, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-semaphore.h" }}
  735. ,{ "pid":12345, "tid":2, "ts":1718093442334282, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-semaphore.h" }}
  736. ,{ "pid":12345, "tid":2, "ts":1718093442334352, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  737. ,{ "pid":12345, "tid":2, "ts":1718093442334443, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap.h" }}
  738. ,{ "pid":12345, "tid":2, "ts":1718093442334442, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap.h" }}
  739. ,{ "pid":12345, "tid":2, "ts":1718093442334500, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  740. ,{ "pid":12345, "tid":2, "ts":1718093442334592, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-memory-model.h" }}
  741. ,{ "pid":12345, "tid":2, "ts":1718093442334589, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-memory-model.h" }}
  742. ,{ "pid":12345, "tid":2, "ts":1718093442334667, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  743. ,{ "pid":12345, "tid":2, "ts":1718093442334762, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-logger.h" }}
  744. ,{ "pid":12345, "tid":2, "ts":1718093442334761, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-logger.h" }}
  745. ,{ "pid":12345, "tid":2, "ts":1718093442334841, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  746. ,{ "pid":12345, "tid":2, "ts":1718093442334975, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  747. ,{ "pid":12345, "tid":2, "ts":1718093442335037, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-lazy-init.h" }}
  748. ,{ "pid":12345, "tid":2, "ts":1718093442335036, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-lazy-init.h" }}
  749. ,{ "pid":12345, "tid":2, "ts":1718093442335107, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  750. ,{ "pid":12345, "tid":2, "ts":1718093442335242, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap.c" }}
  751. ,{ "pid":12345, "tid":2, "ts":1718093442335241, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap.c" }}
  752. ,{ "pid":12345, "tid":2, "ts":1718093442335328, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  753. ,{ "pid":12345, "tid":2, "ts":1718093442335447, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-forward.h" }}
  754. ,{ "pid":12345, "tid":2, "ts":1718093442335446, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-forward.h" }}
  755. ,{ "pid":12345, "tid":2, "ts":1718093442335508, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  756. ,{ "pid":12345, "tid":2, "ts":1718093442335580, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-errno.h" }}
  757. ,{ "pid":12345, "tid":2, "ts":1718093442335579, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-errno.h" }}
  758. ,{ "pid":12345, "tid":2, "ts":1718093442335659, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  759. ,{ "pid":12345, "tid":2, "ts":1718093442335755, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-unity.c" }}
  760. ,{ "pid":12345, "tid":2, "ts":1718093442335754, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-unity.c" }}
  761. ,{ "pid":12345, "tid":2, "ts":1718093442335829, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  762. ,{ "pid":12345, "tid":2, "ts":1718093442335923, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-coop-semaphore.h" }}
  763. ,{ "pid":12345, "tid":2, "ts":1718093442335921, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-coop-semaphore.h" }}
  764. ,{ "pid":12345, "tid":2, "ts":1718093442335996, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  765. ,{ "pid":12345, "tid":2, "ts":1718093442336076, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-complex.h" }}
  766. ,{ "pid":12345, "tid":2, "ts":1718093442336075, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-complex.h" }}
  767. ,{ "pid":12345, "tid":2, "ts":1718093442336188, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  768. ,{ "pid":12345, "tid":2, "ts":1718093442336284, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support.h" }}
  769. ,{ "pid":12345, "tid":2, "ts":1718093442336282, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support.h" }}
  770. ,{ "pid":12345, "tid":2, "ts":1718093442336352, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  771. ,{ "pid":12345, "tid":2, "ts":1718093442336425, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support-amd64.c" }}
  772. ,{ "pid":12345, "tid":2, "ts":1718093442336424, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support-amd64.c" }}
  773. ,{ "pid":12345, "tid":2, "ts":1718093442336491, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  774. ,{ "pid":12345, "tid":2, "ts":1718093442336601, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/json.h" }}
  775. ,{ "pid":12345, "tid":2, "ts":1718093442336599, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/json.h" }}
  776. ,{ "pid":12345, "tid":2, "ts":1718093442336690, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  777. ,{ "pid":12345, "tid":2, "ts":1718093442336821, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/gc_wrapper.h" }}
  778. ,{ "pid":12345, "tid":2, "ts":1718093442336819, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/gc_wrapper.h" }}
  779. ,{ "pid":12345, "tid":2, "ts":1718093442336916, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  780. ,{ "pid":12345, "tid":2, "ts":1718093442337023, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/dtrace.h" }}
  781. ,{ "pid":12345, "tid":2, "ts":1718093442337021, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/dtrace.h" }}
  782. ,{ "pid":12345, "tid":2, "ts":1718093442337097, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  783. ,{ "pid":12345, "tid":2, "ts":1718093442337189, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/atomic.h" }}
  784. ,{ "pid":12345, "tid":2, "ts":1718093442337187, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/atomic.h" }}
  785. ,{ "pid":12345, "tid":2, "ts":1718093442337249, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  786. ,{ "pid":12345, "tid":2, "ts":1718093442337319, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-tagged-pointer.h" }}
  787. ,{ "pid":12345, "tid":2, "ts":1718093442337317, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-tagged-pointer.h" }}
  788. ,{ "pid":12345, "tid":2, "ts":1718093442337474, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-qsort.c" }}
  789. ,{ "pid":12345, "tid":2, "ts":1718093442337472, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-qsort.c" }}
  790. ,{ "pid":12345, "tid":2, "ts":1718093442337564, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  791. ,{ "pid":12345, "tid":2, "ts":1718093442337649, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pinning.h" }}
  792. ,{ "pid":12345, "tid":2, "ts":1718093442337648, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pinning.h" }}
  793. ,{ "pid":12345, "tid":2, "ts":1718093442337716, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  794. ,{ "pid":12345, "tid":2, "ts":1718093442337797, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-memory-governor.c" }}
  795. ,{ "pid":12345, "tid":2, "ts":1718093442337797, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-memory-governor.c" }}
  796. ,{ "pid":12345, "tid":2, "ts":1718093442337848, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  797. ,{ "pid":12345, "tid":2, "ts":1718093442337962, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-layout-stats.c" }}
  798. ,{ "pid":12345, "tid":2, "ts":1718093442337961, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-layout-stats.c" }}
  799. ,{ "pid":12345, "tid":2, "ts":1718093442338074, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  800. ,{ "pid":12345, "tid":2, "ts":1718093442338162, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gray.c" }}
  801. ,{ "pid":12345, "tid":2, "ts":1718093442338161, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gray.c" }}
  802. ,{ "pid":12345, "tid":2, "ts":1718093442338278, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  803. ,{ "pid":12345, "tid":2, "ts":1718093442338353, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-descriptor.c" }}
  804. ,{ "pid":12345, "tid":2, "ts":1718093442338352, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-descriptor.c" }}
  805. ,{ "pid":12345, "tid":2, "ts":1718093442338436, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  806. ,{ "pid":12345, "tid":2, "ts":1718093442338538, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-array-list.h" }}
  807. ,{ "pid":12345, "tid":2, "ts":1718093442338536, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-array-list.h" }}
  808. ,{ "pid":12345, "tid":2, "ts":1718093442338638, "dur":166, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-alloc.c" }}
  809. ,{ "pid":12345, "tid":2, "ts":1718093442338636, "dur":168, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-alloc.c" }}
  810. ,{ "pid":12345, "tid":2, "ts":1718093442338805, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  811. ,{ "pid":12345, "tid":2, "ts":1718093442338917, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  812. ,{ "pid":12345, "tid":2, "ts":1718093442339001, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket.c" }}
  813. ,{ "pid":12345, "tid":2, "ts":1718093442339000, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket.c" }}
  814. ,{ "pid":12345, "tid":2, "ts":1718093442339088, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  815. ,{ "pid":12345, "tid":2, "ts":1718093442339215, "dur":189, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32semaphore-unix.c" }}
  816. ,{ "pid":12345, "tid":2, "ts":1718093442339213, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32semaphore-unix.c" }}
  817. ,{ "pid":12345, "tid":2, "ts":1718093442339407, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  818. ,{ "pid":12345, "tid":2, "ts":1718093442339473, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-unix.c" }}
  819. ,{ "pid":12345, "tid":2, "ts":1718093442339472, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-unix.c" }}
  820. ,{ "pid":12345, "tid":2, "ts":1718093442339548, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  821. ,{ "pid":12345, "tid":2, "ts":1718093442339693, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32mutex-win32.c" }}
  822. ,{ "pid":12345, "tid":2, "ts":1718093442339692, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32mutex-win32.c" }}
  823. ,{ "pid":12345, "tid":2, "ts":1718093442339799, "dur":194, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  824. ,{ "pid":12345, "tid":2, "ts":1718093442340001, "dur":146, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file.h" }}
  825. ,{ "pid":12345, "tid":2, "ts":1718093442340000, "dur":148, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file.h" }}
  826. ,{ "pid":12345, "tid":2, "ts":1718093442340149, "dur":166, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  827. ,{ "pid":12345, "tid":2, "ts":1718093442340323, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-unix-glob.c" }}
  828. ,{ "pid":12345, "tid":2, "ts":1718093442340322, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-unix-glob.c" }}
  829. ,{ "pid":12345, "tid":2, "ts":1718093442340417, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  830. ,{ "pid":12345, "tid":2, "ts":1718093442340597, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/unity-utils.c" }}
  831. ,{ "pid":12345, "tid":2, "ts":1718093442340596, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/unity-utils.c" }}
  832. ,{ "pid":12345, "tid":2, "ts":1718093442340692, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  833. ,{ "pid":12345, "tid":2, "ts":1718093442340827, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threads-types.h" }}
  834. ,{ "pid":12345, "tid":2, "ts":1718093442340826, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threads-types.h" }}
  835. ,{ "pid":12345, "tid":2, "ts":1718093442340949, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  836. ,{ "pid":12345, "tid":2, "ts":1718093442341060, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool-io.c" }}
  837. ,{ "pid":12345, "tid":2, "ts":1718093442341058, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool-io.c" }}
  838. ,{ "pid":12345, "tid":2, "ts":1718093442341121, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  839. ,{ "pid":12345, "tid":2, "ts":1718093442341235, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sre.c" }}
  840. ,{ "pid":12345, "tid":2, "ts":1718093442341234, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sre.c" }}
  841. ,{ "pid":12345, "tid":2, "ts":1718093442341314, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  842. ,{ "pid":12345, "tid":2, "ts":1718093442341371, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-toggleref.h" }}
  843. ,{ "pid":12345, "tid":2, "ts":1718093442341370, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-toggleref.h" }}
  844. ,{ "pid":12345, "tid":2, "ts":1718093442341462, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  845. ,{ "pid":12345, "tid":2, "ts":1718093442341554, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-mono.c" }}
  846. ,{ "pid":12345, "tid":2, "ts":1718093442341552, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-mono.c" }}
  847. ,{ "pid":12345, "tid":2, "ts":1718093442341614, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  848. ,{ "pid":12345, "tid":2, "ts":1718093442341674, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/seq-points-data.h" }}
  849. ,{ "pid":12345, "tid":2, "ts":1718093442341672, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/seq-points-data.h" }}
  850. ,{ "pid":12345, "tid":2, "ts":1718093442341738, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  851. ,{ "pid":12345, "tid":2, "ts":1718093442341829, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/runtime.c" }}
  852. ,{ "pid":12345, "tid":2, "ts":1718093442341827, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/runtime.c" }}
  853. ,{ "pid":12345, "tid":2, "ts":1718093442341884, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  854. ,{ "pid":12345, "tid":2, "ts":1718093442341993, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/reflection-internals.h" }}
  855. ,{ "pid":12345, "tid":2, "ts":1718093442341991, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/reflection-internals.h" }}
  856. ,{ "pid":12345, "tid":2, "ts":1718093442342058, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  857. ,{ "pid":12345, "tid":2, "ts":1718093442342155, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler.h" }}
  858. ,{ "pid":12345, "tid":2, "ts":1718093442342153, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler.h" }}
  859. ,{ "pid":12345, "tid":2, "ts":1718093442342221, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  860. ,{ "pid":12345, "tid":2, "ts":1718093442342339, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  861. ,{ "pid":12345, "tid":2, "ts":1718093442342442, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object-offsets.h" }}
  862. ,{ "pid":12345, "tid":2, "ts":1718093442342440, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object-offsets.h" }}
  863. ,{ "pid":12345, "tid":2, "ts":1718093442342512, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  864. ,{ "pid":12345, "tid":2, "ts":1718093442342577, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/null-gc.c" }}
  865. ,{ "pid":12345, "tid":2, "ts":1718093442342575, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/null-gc.c" }}
  866. ,{ "pid":12345, "tid":2, "ts":1718093442342655, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  867. ,{ "pid":12345, "tid":2, "ts":1718093442342739, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-route.h" }}
  868. ,{ "pid":12345, "tid":2, "ts":1718093442342737, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-route.h" }}
  869. ,{ "pid":12345, "tid":2, "ts":1718093442342805, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  870. ,{ "pid":12345, "tid":2, "ts":1718093442342888, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-mlist.h" }}
  871. ,{ "pid":12345, "tid":2, "ts":1718093442342887, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-mlist.h" }}
  872. ,{ "pid":12345, "tid":2, "ts":1718093442342981, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  873. ,{ "pid":12345, "tid":2, "ts":1718093442343064, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-endian.h" }}
  874. ,{ "pid":12345, "tid":2, "ts":1718093442343063, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-endian.h" }}
  875. ,{ "pid":12345, "tid":2, "ts":1718093442343154, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  876. ,{ "pid":12345, "tid":2, "ts":1718093442343234, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-config-dirs.h" }}
  877. ,{ "pid":12345, "tid":2, "ts":1718093442343233, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-config-dirs.h" }}
  878. ,{ "pid":12345, "tid":2, "ts":1718093442343304, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  879. ,{ "pid":12345, "tid":2, "ts":1718093442343370, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/monitor.h" }}
  880. ,{ "pid":12345, "tid":2, "ts":1718093442343368, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/monitor.h" }}
  881. ,{ "pid":12345, "tid":2, "ts":1718093442343444, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  882. ,{ "pid":12345, "tid":2, "ts":1718093442343530, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata-verify.c" }}
  883. ,{ "pid":12345, "tid":2, "ts":1718093442343528, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata-verify.c" }}
  884. ,{ "pid":12345, "tid":2, "ts":1718093442343596, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  885. ,{ "pid":12345, "tid":2, "ts":1718093442343685, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal.h" }}
  886. ,{ "pid":12345, "tid":2, "ts":1718093442343684, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal.h" }}
  887. ,{ "pid":12345, "tid":2, "ts":1718093442343747, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  888. ,{ "pid":12345, "tid":2, "ts":1718093442343819, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/lock-tracer.h" }}
  889. ,{ "pid":12345, "tid":2, "ts":1718093442343818, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/lock-tracer.h" }}
  890. ,{ "pid":12345, "tid":2, "ts":1718093442343897, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  891. ,{ "pid":12345, "tid":2, "ts":1718093442343992, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/jit-info.c" }}
  892. ,{ "pid":12345, "tid":2, "ts":1718093442343991, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/jit-info.c" }}
  893. ,{ "pid":12345, "tid":2, "ts":1718093442344067, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  894. ,{ "pid":12345, "tid":2, "ts":1718093442344153, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icalls.h" }}
  895. ,{ "pid":12345, "tid":2, "ts":1718093442344150, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icalls.h" }}
  896. ,{ "pid":12345, "tid":2, "ts":1718093442344254, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  897. ,{ "pid":12345, "tid":2, "ts":1718093442344345, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/handle.h" }}
  898. ,{ "pid":12345, "tid":2, "ts":1718093442344343, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/handle.h" }}
  899. ,{ "pid":12345, "tid":2, "ts":1718093442344434, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  900. ,{ "pid":12345, "tid":2, "ts":1718093442344557, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  901. ,{ "pid":12345, "tid":2, "ts":1718093442344654, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/exception.h" }}
  902. ,{ "pid":12345, "tid":2, "ts":1718093442344653, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/exception.h" }}
  903. ,{ "pid":12345, "tid":2, "ts":1718093442344733, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  904. ,{ "pid":12345, "tid":2, "ts":1718093442344804, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/dynamic-stream-internals.h" }}
  905. ,{ "pid":12345, "tid":2, "ts":1718093442344855, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  906. ,{ "pid":12345, "tid":2, "ts":1718093442344950, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/decimal-ms.c" }}
  907. ,{ "pid":12345, "tid":2, "ts":1718093442344949, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/decimal-ms.c" }}
  908. ,{ "pid":12345, "tid":2, "ts":1718093442345010, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  909. ,{ "pid":12345, "tid":2, "ts":1718093442345124, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  910. ,{ "pid":12345, "tid":2, "ts":1718093442345226, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/coree.h" }}
  911. ,{ "pid":12345, "tid":2, "ts":1718093442345225, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/coree.h" }}
  912. ,{ "pid":12345, "tid":2, "ts":1718093442345297, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  913. ,{ "pid":12345, "tid":2, "ts":1718093442345434, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-private-definition.h" }}
  914. ,{ "pid":12345, "tid":2, "ts":1718093442345432, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-private-definition.h" }}
  915. ,{ "pid":12345, "tid":2, "ts":1718093442345514, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  916. ,{ "pid":12345, "tid":2, "ts":1718093442345606, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/callspec.h" }}
  917. ,{ "pid":12345, "tid":2, "ts":1718093442345605, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/callspec.h" }}
  918. ,{ "pid":12345, "tid":2, "ts":1718093442345662, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  919. ,{ "pid":12345, "tid":2, "ts":1718093442345723, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/attach.c" }}
  920. ,{ "pid":12345, "tid":2, "ts":1718093442345722, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/attach.c" }}
  921. ,{ "pid":12345, "tid":2, "ts":1718093442345802, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  922. ,{ "pid":12345, "tid":2, "ts":1718093442345885, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/abi-details.h" }}
  923. ,{ "pid":12345, "tid":2, "ts":1718093442345884, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/abi-details.h" }}
  924. ,{ "pid":12345, "tid":2, "ts":1718093442345946, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  925. ,{ "pid":12345, "tid":2, "ts":1718093442346028, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gunicode-win32-uwp.c" }}
  926. ,{ "pid":12345, "tid":2, "ts":1718093442346026, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gunicode-win32-uwp.c" }}
  927. ,{ "pid":12345, "tid":2, "ts":1718093442346088, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  928. ,{ "pid":12345, "tid":2, "ts":1718093442346146, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gqueue.c" }}
  929. ,{ "pid":12345, "tid":2, "ts":1718093442346144, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gqueue.c" }}
  930. ,{ "pid":12345, "tid":2, "ts":1718093442346205, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  931. ,{ "pid":12345, "tid":2, "ts":1718093442346283, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gmodule.h" }}
  932. ,{ "pid":12345, "tid":2, "ts":1718093442346281, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gmodule.h" }}
  933. ,{ "pid":12345, "tid":2, "ts":1718093442346345, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  934. ,{ "pid":12345, "tid":2, "ts":1718093442346423, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/giconv.c" }}
  935. ,{ "pid":12345, "tid":2, "ts":1718093442346421, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/giconv.c" }}
  936. ,{ "pid":12345, "tid":2, "ts":1718093442346530, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gdate-unity.c" }}
  937. ,{ "pid":12345, "tid":2, "ts":1718093442346529, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gdate-unity.c" }}
  938. ,{ "pid":12345, "tid":2, "ts":1718093442346592, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  939. ,{ "pid":12345, "tid":2, "ts":1718093442346695, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  940. ,{ "pid":12345, "tid":2, "ts":1718093442346755, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm/arm-codegen.h" }}
  941. ,{ "pid":12345, "tid":2, "ts":1718093442346754, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm/arm-codegen.h" }}
  942. ,{ "pid":12345, "tid":2, "ts":1718093442346825, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  943. ,{ "pid":12345, "tid":2, "ts":1718093442346905, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/sparsetable.h" }}
  944. ,{ "pid":12345, "tid":2, "ts":1718093442346903, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/sparsetable.h" }}
  945. ,{ "pid":12345, "tid":2, "ts":1718093442346958, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  946. ,{ "pid":12345, "tid":2, "ts":1718093442347021, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/dense_hash_set.h" }}
  947. ,{ "pid":12345, "tid":2, "ts":1718093442347019, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/dense_hash_set.h" }}
  948. ,{ "pid":12345, "tid":2, "ts":1718093442347092, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  949. ,{ "pid":12345, "tid":2, "ts":1718093442347204, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  950. ,{ "pid":12345, "tid":2, "ts":1718093442347269, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/trace_test.c" }}
  951. ,{ "pid":12345, "tid":2, "ts":1718093442347320, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  952. ,{ "pid":12345, "tid":2, "ts":1718093442347411, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/staticrootstest.c" }}
  953. ,{ "pid":12345, "tid":2, "ts":1718093442347408, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/staticrootstest.c" }}
  954. ,{ "pid":12345, "tid":2, "ts":1718093442347469, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  955. ,{ "pid":12345, "tid":2, "ts":1718093442347556, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/initsecondarythread.c" }}
  956. ,{ "pid":12345, "tid":2, "ts":1718093442347555, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/initsecondarythread.c" }}
  957. ,{ "pid":12345, "tid":2, "ts":1718093442347626, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  958. ,{ "pid":12345, "tid":2, "ts":1718093442347697, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/README.md" }}
  959. ,{ "pid":12345, "tid":2, "ts":1718093442347764, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  960. ,{ "pid":12345, "tid":2, "ts":1718093442347839, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/obj_map.c" }}
  961. ,{ "pid":12345, "tid":2, "ts":1718093442347836, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/obj_map.c" }}
  962. ,{ "pid":12345, "tid":2, "ts":1718093442347896, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  963. ,{ "pid":12345, "tid":2, "ts":1718093442347965, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/malloc.c" }}
  964. ,{ "pid":12345, "tid":2, "ts":1718093442347963, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/malloc.c" }}
  965. ,{ "pid":12345, "tid":2, "ts":1718093442348048, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  966. ,{ "pid":12345, "tid":2, "ts":1718093442348121, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/standard_ao_double_t.h" }}
  967. ,{ "pid":12345, "tid":2, "ts":1718093442348120, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/standard_ao_double_t.h" }}
  968. ,{ "pid":12345, "tid":2, "ts":1718093442348195, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  969. ,{ "pid":12345, "tid":2, "ts":1718093442348269, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/common32_defs.h" }}
  970. ,{ "pid":12345, "tid":2, "ts":1718093442348266, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/common32_defs.h" }}
  971. ,{ "pid":12345, "tid":2, "ts":1718093442348432, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  972. ,{ "pid":12345, "tid":2, "ts":1718093442348502, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_atomic_load.h" }}
  973. ,{ "pid":12345, "tid":2, "ts":1718093442348500, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_atomic_load.h" }}
  974. ,{ "pid":12345, "tid":2, "ts":1718093442348568, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  975. ,{ "pid":12345, "tid":2, "ts":1718093442348650, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ibmc/powerpc.h" }}
  976. ,{ "pid":12345, "tid":2, "ts":1718093442348647, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ibmc/powerpc.h" }}
  977. ,{ "pid":12345, "tid":2, "ts":1718093442348730, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  978. ,{ "pid":12345, "tid":2, "ts":1718093442348804, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/s390.h" }}
  979. ,{ "pid":12345, "tid":2, "ts":1718093442348802, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/s390.h" }}
  980. ,{ "pid":12345, "tid":2, "ts":1718093442348868, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  981. ,{ "pid":12345, "tid":2, "ts":1718093442348947, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/hexagon.h" }}
  982. ,{ "pid":12345, "tid":2, "ts":1718093442348946, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/hexagon.h" }}
  983. ,{ "pid":12345, "tid":2, "ts":1718093442349015, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  984. ,{ "pid":12345, "tid":2, "ts":1718093442349122, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/arm.h" }}
  985. ,{ "pid":12345, "tid":2, "ts":1718093442349120, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/arm.h" }}
  986. ,{ "pid":12345, "tid":2, "ts":1718093442349196, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  987. ,{ "pid":12345, "tid":2, "ts":1718093442349262, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ao_t_is_int.h" }}
  988. ,{ "pid":12345, "tid":2, "ts":1718093442349261, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ao_t_is_int.h" }}
  989. ,{ "pid":12345, "tid":2, "ts":1718093442349331, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  990. ,{ "pid":12345, "tid":2, "ts":1718093442349411, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/generalize-arithm.h" }}
  991. ,{ "pid":12345, "tid":2, "ts":1718093442349409, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/generalize-arithm.h" }}
  992. ,{ "pid":12345, "tid":2, "ts":1718093442349485, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  993. ,{ "pid":12345, "tid":2, "ts":1718093442349617, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  994. ,{ "pid":12345, "tid":2, "ts":1718093442349682, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/pthread_stop_world.h" }}
  995. ,{ "pid":12345, "tid":2, "ts":1718093442349681, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/pthread_stop_world.h" }}
  996. ,{ "pid":12345, "tid":2, "ts":1718093442349739, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  997. ,{ "pid":12345, "tid":2, "ts":1718093442349826, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/gc_hdrs.h" }}
  998. ,{ "pid":12345, "tid":2, "ts":1718093442349824, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/gc_hdrs.h" }}
  999. ,{ "pid":12345, "tid":2, "ts":1718093442349936, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/darwin_semaphore.h" }}
  1000. ,{ "pid":12345, "tid":2, "ts":1718093442349934, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/darwin_semaphore.h" }}
  1001. ,{ "pid":12345, "tid":2, "ts":1718093442350055, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1002. ,{ "pid":12345, "tid":2, "ts":1718093442350163, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_mark.h" }}
  1003. ,{ "pid":12345, "tid":2, "ts":1718093442350162, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_mark.h" }}
  1004. ,{ "pid":12345, "tid":2, "ts":1718093442350231, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1005. ,{ "pid":12345, "tid":2, "ts":1718093442350308, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_config_macros.h" }}
  1006. ,{ "pid":12345, "tid":2, "ts":1718093442350306, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_config_macros.h" }}
  1007. ,{ "pid":12345, "tid":2, "ts":1718093442350388, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1008. ,{ "pid":12345, "tid":2, "ts":1718093442350465, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/ec.h" }}
  1009. ,{ "pid":12345, "tid":2, "ts":1718093442350464, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/ec.h" }}
  1010. ,{ "pid":12345, "tid":2, "ts":1718093442350665, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Transactions.dll" }}
  1011. ,{ "pid":12345, "tid":2, "ts":1718093442350844, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.Cecil.Rocks.dll" }}
  1012. ,{ "pid":12345, "tid":2, "ts":1718093442350662, "dur":312, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Transactions-FeaturesChecked.txt" }}
  1013. ,{ "pid":12345, "tid":2, "ts":1718093442351014, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.WinRTStub.dll" }}
  1014. ,{ "pid":12345, "tid":2, "ts":1718093442351013, "dur":212, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.WinRTStub-FeaturesChecked.txt" }}
  1015. ,{ "pid":12345, "tid":2, "ts":1718093442351263, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Burst.Unsafe.dll" }}
  1016. ,{ "pid":12345, "tid":2, "ts":1718093442351262, "dur":249, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Burst.Unsafe-FeaturesChecked.txt" }}
  1017. ,{ "pid":12345, "tid":2, "ts":1718093442351547, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.dll" }}
  1018. ,{ "pid":12345, "tid":2, "ts":1718093442351546, "dur":323, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine-FeaturesChecked.txt" }}
  1019. ,{ "pid":12345, "tid":2, "ts":1718093442352066, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.VisualStudioSolution.dll" }}
  1020. ,{ "pid":12345, "tid":2, "ts":1718093442351931, "dur":301, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Assembly-CSharp-FeaturesChecked.txt" }}
  1021. ,{ "pid":12345, "tid":2, "ts":1718093442352293, "dur":183, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/I18N.CJK-FeaturesChecked.txt" }}
  1022. ,{ "pid":12345, "tid":2, "ts":1718093442352504, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.SharedInternalsModule.dll" }}
  1023. ,{ "pid":12345, "tid":2, "ts":1718093442352502, "dur":445, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.SharedInternalsModule-FeaturesChecked.txt" }}
  1024. ,{ "pid":12345, "tid":2, "ts":1718093442352990, "dur":323, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Firebase.Platform-FeaturesChecked.txt" }}
  1025. ,{ "pid":12345, "tid":2, "ts":1718093442353473, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.Data.pdb" }}
  1026. ,{ "pid":12345, "tid":2, "ts":1718093442353540, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.dll" }}
  1027. ,{ "pid":12345, "tid":2, "ts":1718093442353365, "dur":389, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.TextRenderingModule-FeaturesChecked.txt" }}
  1028. ,{ "pid":12345, "tid":2, "ts":1718093442353777, "dur":378, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Telemetry-FeaturesChecked.txt" }}
  1029. ,{ "pid":12345, "tid":2, "ts":1718093442354192, "dur":407, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Drawing-FeaturesChecked.txt" }}
  1030. ,{ "pid":12345, "tid":2, "ts":1718093442354599, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1031. ,{ "pid":12345, "tid":2, "ts":1718093442354939, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.Data.dll" }}
  1032. ,{ "pid":12345, "tid":2, "ts":1718093442355114, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.dll" }}
  1033. ,{ "pid":12345, "tid":2, "ts":1718093442354713, "dur":486, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Xml-FeaturesChecked.txt" }}
  1034. ,{ "pid":12345, "tid":2, "ts":1718093442355410, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.pdb" }}
  1035. ,{ "pid":12345, "tid":2, "ts":1718093442355258, "dur":548, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.Apple-FeaturesChecked.txt" }}
  1036. ,{ "pid":12345, "tid":2, "ts":1718093442355847, "dur":215, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ICallRegistrationGenerator /Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/UnityICallRegistration.cpp" }}
  1037. ,{ "pid":12345, "tid":2, "ts":1718093442356067, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1038. ,{ "pid":12345, "tid":2, "ts":1718093442356184, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/gcj_mlc.c" }}
  1039. ,{ "pid":12345, "tid":2, "ts":1718093442356183, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/gcj_mlc.c" }}
  1040. ,{ "pid":12345, "tid":2, "ts":1718093442356257, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1041. ,{ "pid":12345, "tid":2, "ts":1718093442356319, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/real_malloc.c" }}
  1042. ,{ "pid":12345, "tid":2, "ts":1718093442356318, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/real_malloc.c" }}
  1043. ,{ "pid":12345, "tid":2, "ts":1718093442356392, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1044. ,{ "pid":12345, "tid":2, "ts":1718093442356519, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/Mac_files/MacOS_config.h" }}
  1045. ,{ "pid":12345, "tid":2, "ts":1718093442356517, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/Mac_files/MacOS_config.h" }}
  1046. ,{ "pid":12345, "tid":2, "ts":1718093442356632, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/MacOS.c" }}
  1047. ,{ "pid":12345, "tid":2, "ts":1718093442356631, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/MacOS.c" }}
  1048. ,{ "pid":12345, "tid":2, "ts":1718093442356738, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1049. ,{ "pid":12345, "tid":2, "ts":1718093442356853, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1050. ,{ "pid":12345, "tid":2, "ts":1718093442356934, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/tests/de_win.c" }}
  1051. ,{ "pid":12345, "tid":2, "ts":1718093442356932, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/tests/de_win.c" }}
  1052. ,{ "pid":12345, "tid":2, "ts":1718093442357013, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1053. ,{ "pid":12345, "tid":2, "ts":1718093442357083, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/cordxtra.c" }}
  1054. ,{ "pid":12345, "tid":2, "ts":1718093442357081, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/cordxtra.c" }}
  1055. ,{ "pid":12345, "tid":2, "ts":1718093442357135, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1056. ,{ "pid":12345, "tid":2, "ts":1718093442357218, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1057. ,{ "pid":12345, "tid":2, "ts":1718093442357337, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WindowsGames/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  1058. ,{ "pid":12345, "tid":2, "ts":1718093442357335, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WindowsGames/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  1059. ,{ "pid":12345, "tid":2, "ts":1718093442357472, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1060. ,{ "pid":12345, "tid":2, "ts":1718093442357547, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Windows/Include/C/Baselib_FileIO.inl.h" }}
  1061. ,{ "pid":12345, "tid":2, "ts":1718093442357545, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Windows/Include/C/Baselib_FileIO.inl.h" }}
  1062. ,{ "pid":12345, "tid":2, "ts":1718093442357646, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1063. ,{ "pid":12345, "tid":2, "ts":1718093442357710, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WebGL/Include/C/Baselib_FileIO.inl.h" }}
  1064. ,{ "pid":12345, "tid":2, "ts":1718093442357708, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WebGL/Include/C/Baselib_FileIO.inl.h" }}
  1065. ,{ "pid":12345, "tid":2, "ts":1718093442357778, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1066. ,{ "pid":12345, "tid":2, "ts":1718093442357855, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/VisionOS/Include/C/Baselib_FileIO.inl.h" }}
  1067. ,{ "pid":12345, "tid":2, "ts":1718093442357854, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/VisionOS/Include/C/Baselib_FileIO.inl.h" }}
  1068. ,{ "pid":12345, "tid":2, "ts":1718093442357948, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1069. ,{ "pid":12345, "tid":2, "ts":1718093442358078, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1070. ,{ "pid":12345, "tid":2, "ts":1718093442358203, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Tvos/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  1071. ,{ "pid":12345, "tid":2, "ts":1718093442358255, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1072. ,{ "pid":12345, "tid":2, "ts":1718093442358329, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/OSX/Include/C/Baselib_FileIO.inl.h" }}
  1073. ,{ "pid":12345, "tid":2, "ts":1718093442358328, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/OSX/Include/C/Baselib_FileIO.inl.h" }}
  1074. ,{ "pid":12345, "tid":2, "ts":1718093442358415, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1075. ,{ "pid":12345, "tid":2, "ts":1718093442358502, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Linux/Include/C/Baselib_ErrorState.inl.h" }}
  1076. ,{ "pid":12345, "tid":2, "ts":1718093442358493, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Linux/Include/C/Baselib_ErrorState.inl.h" }}
  1077. ,{ "pid":12345, "tid":2, "ts":1718093442358569, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1078. ,{ "pid":12345, "tid":2, "ts":1718093442358635, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/IOS/Include/C/Baselib_DynamicLibrary.inl.h" }}
  1079. ,{ "pid":12345, "tid":2, "ts":1718093442358633, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/IOS/Include/C/Baselib_DynamicLibrary.inl.h" }}
  1080. ,{ "pid":12345, "tid":2, "ts":1718093442358734, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1081. ,{ "pid":12345, "tid":2, "ts":1718093442358826, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/EmbeddedLinux/Include/BaselibPlatformSpecificEnvironment.h" }}
  1082. ,{ "pid":12345, "tid":2, "ts":1718093442358823, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/EmbeddedLinux/Include/BaselibPlatformSpecificEnvironment.h" }}
  1083. ,{ "pid":12345, "tid":2, "ts":1718093442358883, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1084. ,{ "pid":12345, "tid":2, "ts":1718093442358967, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/PreExternalInclude.h" }}
  1085. ,{ "pid":12345, "tid":2, "ts":1718093442358966, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/PreExternalInclude.h" }}
  1086. ,{ "pid":12345, "tid":2, "ts":1718093442359088, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1087. ,{ "pid":12345, "tid":2, "ts":1718093442359171, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/PlatformEnvironment.h" }}
  1088. ,{ "pid":12345, "tid":2, "ts":1718093442359170, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/PlatformEnvironment.h" }}
  1089. ,{ "pid":12345, "tid":2, "ts":1718093442359243, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1090. ,{ "pid":12345, "tid":2, "ts":1718093442359329, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/BasicTypes.h" }}
  1091. ,{ "pid":12345, "tid":2, "ts":1718093442359328, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/BasicTypes.h" }}
  1092. ,{ "pid":12345, "tid":2, "ts":1718093442359491, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/External/utfcpp/source/utf8/cpp11.h" }}
  1093. ,{ "pid":12345, "tid":2, "ts":1718093442359490, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/External/utfcpp/source/utf8/cpp11.h" }}
  1094. ,{ "pid":12345, "tid":2, "ts":1718093442359563, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1095. ,{ "pid":12345, "tid":2, "ts":1718093442359711, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Stopwatch.h" }}
  1096. ,{ "pid":12345, "tid":2, "ts":1718093442359709, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Stopwatch.h" }}
  1097. ,{ "pid":12345, "tid":2, "ts":1718093442359767, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1098. ,{ "pid":12345, "tid":2, "ts":1718093442359847, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpsc_node.h" }}
  1099. ,{ "pid":12345, "tid":2, "ts":1718093442359846, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpsc_node.h" }}
  1100. ,{ "pid":12345, "tid":2, "ts":1718093442359923, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1101. ,{ "pid":12345, "tid":2, "ts":1718093442360014, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/TypeTraits.h" }}
  1102. ,{ "pid":12345, "tid":2, "ts":1718093442360013, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/TypeTraits.h" }}
  1103. ,{ "pid":12345, "tid":2, "ts":1718093442360081, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1104. ,{ "pid":12345, "tid":2, "ts":1718093442360163, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/ConditionVariableData_SemaphoreBased.inl.h" }}
  1105. ,{ "pid":12345, "tid":2, "ts":1718093442360161, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/ConditionVariableData_SemaphoreBased.inl.h" }}
  1106. ,{ "pid":12345, "tid":2, "ts":1718093442360244, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1107. ,{ "pid":12345, "tid":2, "ts":1718093442360372, "dur":139, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/HighCapacitySemaphore.h" }}
  1108. ,{ "pid":12345, "tid":2, "ts":1718093442360371, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/HighCapacitySemaphore.h" }}
  1109. ,{ "pid":12345, "tid":2, "ts":1718093442360512, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1110. ,{ "pid":12345, "tid":2, "ts":1718093442360597, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/chunked_allocator.h" }}
  1111. ,{ "pid":12345, "tid":2, "ts":1718093442360595, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/chunked_allocator.h" }}
  1112. ,{ "pid":12345, "tid":2, "ts":1718093442360708, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1113. ,{ "pid":12345, "tid":2, "ts":1718093442360793, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Algorithm.h" }}
  1114. ,{ "pid":12345, "tid":2, "ts":1718093442360793, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Algorithm.h" }}
  1115. ,{ "pid":12345, "tid":2, "ts":1718093442360921, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1116. ,{ "pid":12345, "tid":2, "ts":1718093442361065, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Gcc_Patch.h" }}
  1117. ,{ "pid":12345, "tid":2, "ts":1718093442361062, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Gcc_Patch.h" }}
  1118. ,{ "pid":12345, "tid":2, "ts":1718093442361127, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1119. ,{ "pid":12345, "tid":2, "ts":1718093442361225, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_Lock_FutexBased.inl.h" }}
  1120. ,{ "pid":12345, "tid":2, "ts":1718093442361223, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_Lock_FutexBased.inl.h" }}
  1121. ,{ "pid":12345, "tid":2, "ts":1718093442361284, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1122. ,{ "pid":12345, "tid":2, "ts":1718093442361398, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_CappedSemaphore_SemaphoreBased.inl.h" }}
  1123. ,{ "pid":12345, "tid":2, "ts":1718093442361396, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_CappedSemaphore_SemaphoreBased.inl.h" }}
  1124. ,{ "pid":12345, "tid":2, "ts":1718093442361472, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1125. ,{ "pid":12345, "tid":2, "ts":1718093442361571, "dur":131, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_SystemFutex.h" }}
  1126. ,{ "pid":12345, "tid":2, "ts":1718093442361570, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_SystemFutex.h" }}
  1127. ,{ "pid":12345, "tid":2, "ts":1718093442361703, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1128. ,{ "pid":12345, "tid":2, "ts":1718093442361798, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_ReentrantLock.h" }}
  1129. ,{ "pid":12345, "tid":2, "ts":1718093442361797, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_ReentrantLock.h" }}
  1130. ,{ "pid":12345, "tid":2, "ts":1718093442361875, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1131. ,{ "pid":12345, "tid":2, "ts":1718093442361947, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_FileIO.h" }}
  1132. ,{ "pid":12345, "tid":2, "ts":1718093442361945, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_FileIO.h" }}
  1133. ,{ "pid":12345, "tid":2, "ts":1718093442362014, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1134. ,{ "pid":12345, "tid":2, "ts":1718093442362094, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_CountdownTimer.h" }}
  1135. ,{ "pid":12345, "tid":2, "ts":1718093442362093, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_CountdownTimer.h" }}
  1136. ,{ "pid":12345, "tid":2, "ts":1718093442362187, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1137. ,{ "pid":12345, "tid":2, "ts":1718093442362269, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Alignment.h" }}
  1138. ,{ "pid":12345, "tid":2, "ts":1718093442362267, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Alignment.h" }}
  1139. ,{ "pid":12345, "tid":2, "ts":1718093442362342, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1140. ,{ "pid":12345, "tid":2, "ts":1718093442362442, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/UnityLinker.dll" }}
  1141. ,{ "pid":12345, "tid":2, "ts":1718093442362440, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker.dll" }}
  1142. ,{ "pid":12345, "tid":2, "ts":1718093442362518, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1143. ,{ "pid":12345, "tid":2, "ts":1718093442362590, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Options.pdb" }}
  1144. ,{ "pid":12345, "tid":2, "ts":1718093442362589, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Options.pdb" }}
  1145. ,{ "pid":12345, "tid":2, "ts":1718093442362670, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1146. ,{ "pid":12345, "tid":2, "ts":1718093442362766, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Linker.Api.dll" }}
  1147. ,{ "pid":12345, "tid":2, "ts":1718093442362765, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Linker.Api.dll" }}
  1148. ,{ "pid":12345, "tid":2, "ts":1718093442362833, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1149. ,{ "pid":12345, "tid":2, "ts":1718093442362915, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.DataModel.dll" }}
  1150. ,{ "pid":12345, "tid":2, "ts":1718093442362913, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.DataModel.dll" }}
  1151. ,{ "pid":12345, "tid":2, "ts":1718093442363046, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1152. ,{ "pid":12345, "tid":2, "ts":1718093442363132, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Common.dll" }}
  1153. ,{ "pid":12345, "tid":2, "ts":1718093442363130, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Common.dll" }}
  1154. ,{ "pid":12345, "tid":2, "ts":1718093442363214, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1155. ,{ "pid":12345, "tid":2, "ts":1718093442363296, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.dll" }}
  1156. ,{ "pid":12345, "tid":2, "ts":1718093442363294, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.dll" }}
  1157. ,{ "pid":12345, "tid":2, "ts":1718093442363372, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1158. ,{ "pid":12345, "tid":2, "ts":1718093442363514, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.pdb" }}
  1159. ,{ "pid":12345, "tid":2, "ts":1718093442363511, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.pdb" }}
  1160. ,{ "pid":12345, "tid":2, "ts":1718093442363576, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1161. ,{ "pid":12345, "tid":2, "ts":1718093442363656, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Linux.dll" }}
  1162. ,{ "pid":12345, "tid":2, "ts":1718093442363655, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Linux.dll" }}
  1163. ,{ "pid":12345, "tid":2, "ts":1718093442363771, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.dll" }}
  1164. ,{ "pid":12345, "tid":2, "ts":1718093442363770, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.dll" }}
  1165. ,{ "pid":12345, "tid":2, "ts":1718093442363850, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1166. ,{ "pid":12345, "tid":2, "ts":1718093442363934, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Api.Output.pdb" }}
  1167. ,{ "pid":12345, "tid":2, "ts":1718093442363933, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Api.Output.pdb" }}
  1168. ,{ "pid":12345, "tid":2, "ts":1718093442364018, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1169. ,{ "pid":12345, "tid":2, "ts":1718093442364093, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Cecil.Awesome.dll" }}
  1170. ,{ "pid":12345, "tid":2, "ts":1718093442364091, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Cecil.Awesome.dll" }}
  1171. ,{ "pid":12345, "tid":2, "ts":1718093442364164, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1172. ,{ "pid":12345, "tid":2, "ts":1718093442364246, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.XmlDocument.dll" }}
  1173. ,{ "pid":12345, "tid":2, "ts":1718093442364245, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.XmlDocument.dll" }}
  1174. ,{ "pid":12345, "tid":2, "ts":1718093442364324, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1175. ,{ "pid":12345, "tid":2, "ts":1718093442364393, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.dll" }}
  1176. ,{ "pid":12345, "tid":2, "ts":1718093442364392, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.dll" }}
  1177. ,{ "pid":12345, "tid":2, "ts":1718093442364469, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1178. ,{ "pid":12345, "tid":2, "ts":1718093442364542, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Transactions.Local.dll" }}
  1179. ,{ "pid":12345, "tid":2, "ts":1718093442364541, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Transactions.Local.dll" }}
  1180. ,{ "pid":12345, "tid":2, "ts":1718093442364632, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1181. ,{ "pid":12345, "tid":2, "ts":1718093442364714, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Tasks.Extensions.dll" }}
  1182. ,{ "pid":12345, "tid":2, "ts":1718093442364713, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Tasks.Extensions.dll" }}
  1183. ,{ "pid":12345, "tid":2, "ts":1718093442364779, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1184. ,{ "pid":12345, "tid":2, "ts":1718093442364875, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Channels.dll" }}
  1185. ,{ "pid":12345, "tid":2, "ts":1718093442364874, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Channels.dll" }}
  1186. ,{ "pid":12345, "tid":2, "ts":1718093442365004, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Text.Encoding.CodePages.dll" }}
  1187. ,{ "pid":12345, "tid":2, "ts":1718093442365001, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.Encoding.CodePages.dll" }}
  1188. ,{ "pid":12345, "tid":2, "ts":1718093442365064, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1189. ,{ "pid":12345, "tid":2, "ts":1718093442365191, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1190. ,{ "pid":12345, "tid":2, "ts":1718093442365291, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.Cng.dll" }}
  1191. ,{ "pid":12345, "tid":2, "ts":1718093442365290, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.Cng.dll" }}
  1192. ,{ "pid":12345, "tid":2, "ts":1718093442365365, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1193. ,{ "pid":12345, "tid":2, "ts":1718093442365469, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Serialization.Formatters.dll" }}
  1194. ,{ "pid":12345, "tid":2, "ts":1718093442365467, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Serialization.Formatters.dll" }}
  1195. ,{ "pid":12345, "tid":2, "ts":1718093442365545, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1196. ,{ "pid":12345, "tid":2, "ts":1718093442365623, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.InteropServices.dll" }}
  1197. ,{ "pid":12345, "tid":2, "ts":1718093442365621, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.InteropServices.dll" }}
  1198. ,{ "pid":12345, "tid":2, "ts":1718093442365697, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1199. ,{ "pid":12345, "tid":2, "ts":1718093442365777, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Resources.ResourceManager.dll" }}
  1200. ,{ "pid":12345, "tid":2, "ts":1718093442365775, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Resources.ResourceManager.dll" }}
  1201. ,{ "pid":12345, "tid":2, "ts":1718093442365850, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1202. ,{ "pid":12345, "tid":2, "ts":1718093442365949, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.Emit.Lightweight.dll" }}
  1203. ,{ "pid":12345, "tid":2, "ts":1718093442365947, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Emit.Lightweight.dll" }}
  1204. ,{ "pid":12345, "tid":2, "ts":1718093442366016, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1205. ,{ "pid":12345, "tid":2, "ts":1718093442366093, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Private.Xml.dll" }}
  1206. ,{ "pid":12345, "tid":2, "ts":1718093442366092, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Private.Xml.dll" }}
  1207. ,{ "pid":12345, "tid":2, "ts":1718093442366163, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1208. ,{ "pid":12345, "tid":2, "ts":1718093442366262, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Numerics.dll" }}
  1209. ,{ "pid":12345, "tid":2, "ts":1718093442366260, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Numerics.dll" }}
  1210. ,{ "pid":12345, "tid":2, "ts":1718093442366337, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1211. ,{ "pid":12345, "tid":2, "ts":1718093442366408, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.ServicePoint.dll" }}
  1212. ,{ "pid":12345, "tid":2, "ts":1718093442366407, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.ServicePoint.dll" }}
  1213. ,{ "pid":12345, "tid":2, "ts":1718093442366495, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1214. ,{ "pid":12345, "tid":2, "ts":1718093442366596, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.NetworkInformation.dll" }}
  1215. ,{ "pid":12345, "tid":2, "ts":1718093442366594, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.NetworkInformation.dll" }}
  1216. ,{ "pid":12345, "tid":2, "ts":1718093442366682, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1217. ,{ "pid":12345, "tid":2, "ts":1718093442366782, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.dll" }}
  1218. ,{ "pid":12345, "tid":2, "ts":1718093442366779, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.dll" }}
  1219. ,{ "pid":12345, "tid":2, "ts":1718093442366862, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1220. ,{ "pid":12345, "tid":2, "ts":1718093442366959, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.UnmanagedMemoryStream.dll" }}
  1221. ,{ "pid":12345, "tid":2, "ts":1718093442366957, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.UnmanagedMemoryStream.dll" }}
  1222. ,{ "pid":12345, "tid":2, "ts":1718093442367056, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1223. ,{ "pid":12345, "tid":2, "ts":1718093442367157, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.FileSystem.Primitives.dll" }}
  1224. ,{ "pid":12345, "tid":2, "ts":1718093442367154, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.FileSystem.Primitives.dll" }}
  1225. ,{ "pid":12345, "tid":2, "ts":1718093442367237, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1226. ,{ "pid":12345, "tid":2, "ts":1718093442367329, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.Compression.FileSystem.dll" }}
  1227. ,{ "pid":12345, "tid":2, "ts":1718093442367328, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Compression.FileSystem.dll" }}
  1228. ,{ "pid":12345, "tid":2, "ts":1718093442367396, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1229. ,{ "pid":12345, "tid":2, "ts":1718093442367464, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Formats.Asn1.dll" }}
  1230. ,{ "pid":12345, "tid":2, "ts":1718093442367463, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Formats.Asn1.dll" }}
  1231. ,{ "pid":12345, "tid":2, "ts":1718093442367577, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.Tools.dll" }}
  1232. ,{ "pid":12345, "tid":2, "ts":1718093442367576, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.Tools.dll" }}
  1233. ,{ "pid":12345, "tid":2, "ts":1718093442367645, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1234. ,{ "pid":12345, "tid":2, "ts":1718093442367713, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.DiagnosticSource.dll" }}
  1235. ,{ "pid":12345, "tid":2, "ts":1718093442367711, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.DiagnosticSource.dll" }}
  1236. ,{ "pid":12345, "tid":2, "ts":1718093442367777, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1237. ,{ "pid":12345, "tid":2, "ts":1718093442367866, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Core.dll" }}
  1238. ,{ "pid":12345, "tid":2, "ts":1718093442367864, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Core.dll" }}
  1239. ,{ "pid":12345, "tid":2, "ts":1718093442367937, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1240. ,{ "pid":12345, "tid":2, "ts":1718093442368021, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ComponentModel.dll" }}
  1241. ,{ "pid":12345, "tid":2, "ts":1718093442368019, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ComponentModel.dll" }}
  1242. ,{ "pid":12345, "tid":2, "ts":1718093442368103, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1243. ,{ "pid":12345, "tid":2, "ts":1718093442368167, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Collections.dll" }}
  1244. ,{ "pid":12345, "tid":2, "ts":1718093442368166, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Collections.dll" }}
  1245. ,{ "pid":12345, "tid":2, "ts":1718093442368241, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1246. ,{ "pid":12345, "tid":2, "ts":1718093442368320, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/SharpYaml.dll" }}
  1247. ,{ "pid":12345, "tid":2, "ts":1718093442368319, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/SharpYaml.dll" }}
  1248. ,{ "pid":12345, "tid":2, "ts":1718093442368389, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1249. ,{ "pid":12345, "tid":2, "ts":1718093442368456, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/monolinker.pdb" }}
  1250. ,{ "pid":12345, "tid":2, "ts":1718093442368454, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/monolinker.pdb" }}
  1251. ,{ "pid":12345, "tid":2, "ts":1718093442368530, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1252. ,{ "pid":12345, "tid":2, "ts":1718093442368634, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.Mdb.pdb" }}
  1253. ,{ "pid":12345, "tid":2, "ts":1718093442368632, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.Mdb.pdb" }}
  1254. ,{ "pid":12345, "tid":2, "ts":1718093442368699, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1255. ,{ "pid":12345, "tid":2, "ts":1718093442368771, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Microsoft.CSharp.dll" }}
  1256. ,{ "pid":12345, "tid":2, "ts":1718093442368769, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.CSharp.dll" }}
  1257. ,{ "pid":12345, "tid":2, "ts":1718093442368842, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1258. ,{ "pid":12345, "tid":2, "ts":1718093442368937, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libSystem.IO.Compression.Native.dylib" }}
  1259. ,{ "pid":12345, "tid":2, "ts":1718093442369012, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1260. ,{ "pid":12345, "tid":2, "ts":1718093442369106, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libdbgshim.dylib" }}
  1261. ,{ "pid":12345, "tid":2, "ts":1718093442369200, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1262. ,{ "pid":12345, "tid":2, "ts":1718093442369299, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/il2cpp.dll.config" }}
  1263. ,{ "pid":12345, "tid":2, "ts":1718093442369297, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/il2cpp.dll.config" }}
  1264. ,{ "pid":12345, "tid":2, "ts":1718093442369366, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1265. ,{ "pid":12345, "tid":2, "ts":1718093442369466, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.VisualStudioSolution.dll" }}
  1266. ,{ "pid":12345, "tid":2, "ts":1718093442369465, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.VisualStudioSolution.dll" }}
  1267. ,{ "pid":12345, "tid":2, "ts":1718093442369540, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1268. ,{ "pid":12345, "tid":2, "ts":1718093442369614, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Xcode.pdb" }}
  1269. ,{ "pid":12345, "tid":2, "ts":1718093442369613, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Xcode.pdb" }}
  1270. ,{ "pid":12345, "tid":2, "ts":1718093442369686, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1271. ,{ "pid":12345, "tid":2, "ts":1718093442369774, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.VisionOS.pdb" }}
  1272. ,{ "pid":12345, "tid":2, "ts":1718093442369772, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.VisionOS.pdb" }}
  1273. ,{ "pid":12345, "tid":2, "ts":1718093442369847, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1274. ,{ "pid":12345, "tid":2, "ts":1718093442369928, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.MacOS.pdb" }}
  1275. ,{ "pid":12345, "tid":2, "ts":1718093442369926, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.MacOS.pdb" }}
  1276. ,{ "pid":12345, "tid":2, "ts":1718093442370010, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1277. ,{ "pid":12345, "tid":2, "ts":1718093442370106, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.IOS.pdb" }}
  1278. ,{ "pid":12345, "tid":2, "ts":1718093442370104, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.IOS.pdb" }}
  1279. ,{ "pid":12345, "tid":2, "ts":1718093442370187, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1280. ,{ "pid":12345, "tid":2, "ts":1718093442370253, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Emscripten.dll" }}
  1281. ,{ "pid":12345, "tid":2, "ts":1718093442370252, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Emscripten.dll" }}
  1282. ,{ "pid":12345, "tid":2, "ts":1718093442370325, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1283. ,{ "pid":12345, "tid":2, "ts":1718093442370416, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Stevedore.Program.dll" }}
  1284. ,{ "pid":12345, "tid":2, "ts":1718093442370415, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Stevedore.Program.dll" }}
  1285. ,{ "pid":12345, "tid":2, "ts":1718093442370517, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1286. ,{ "pid":12345, "tid":2, "ts":1718093442370591, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.CSharpSupport.pdb" }}
  1287. ,{ "pid":12345, "tid":2, "ts":1718093442370589, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.CSharpSupport.pdb" }}
  1288. ,{ "pid":12345, "tid":2, "ts":1718093442370678, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1289. ,{ "pid":12345, "tid":2, "ts":1718093442370762, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.runtimeconfig.json" }}
  1290. ,{ "pid":12345, "tid":2, "ts":1718093442370761, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.runtimeconfig.json" }}
  1291. ,{ "pid":12345, "tid":2, "ts":1718093442370816, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1292. ,{ "pid":12345, "tid":2, "ts":1718093442370918, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.Api.Output.dll" }}
  1293. ,{ "pid":12345, "tid":2, "ts":1718093442370917, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.Api.Output.dll" }}
  1294. ,{ "pid":12345, "tid":2, "ts":1718093442370988, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1295. ,{ "pid":12345, "tid":2, "ts":1718093442371069, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/UnityLinker.dll" }}
  1296. ,{ "pid":12345, "tid":2, "ts":1718093442371068, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker.dll" }}
  1297. ,{ "pid":12345, "tid":2, "ts":1718093442371143, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1298. ,{ "pid":12345, "tid":2, "ts":1718093442371237, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Options.dll" }}
  1299. ,{ "pid":12345, "tid":2, "ts":1718093442371235, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Options.dll" }}
  1300. ,{ "pid":12345, "tid":2, "ts":1718093442371310, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1301. ,{ "pid":12345, "tid":2, "ts":1718093442371408, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Shell.pdb" }}
  1302. ,{ "pid":12345, "tid":2, "ts":1718093442371405, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Shell.pdb" }}
  1303. ,{ "pid":12345, "tid":2, "ts":1718093442371470, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1304. ,{ "pid":12345, "tid":2, "ts":1718093442371553, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.CompilerServices.pdb" }}
  1305. ,{ "pid":12345, "tid":2, "ts":1718093442371552, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.CompilerServices.pdb" }}
  1306. ,{ "pid":12345, "tid":2, "ts":1718093442371636, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1307. ,{ "pid":12345, "tid":2, "ts":1718093442371717, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Building.pdb" }}
  1308. ,{ "pid":12345, "tid":2, "ts":1718093442371716, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Building.pdb" }}
  1309. ,{ "pid":12345, "tid":2, "ts":1718093442371790, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1310. ,{ "pid":12345, "tid":2, "ts":1718093442371882, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.pdb" }}
  1311. ,{ "pid":12345, "tid":2, "ts":1718093442371880, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.pdb" }}
  1312. ,{ "pid":12345, "tid":2, "ts":1718093442371963, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1313. ,{ "pid":12345, "tid":2, "ts":1718093442372057, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.pdb" }}
  1314. ,{ "pid":12345, "tid":2, "ts":1718093442372055, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.pdb" }}
  1315. ,{ "pid":12345, "tid":2, "ts":1718093442372116, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1316. ,{ "pid":12345, "tid":2, "ts":1718093442372186, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Linux.dll" }}
  1317. ,{ "pid":12345, "tid":2, "ts":1718093442372184, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Linux.dll" }}
  1318. ,{ "pid":12345, "tid":2, "ts":1718093442372245, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1319. ,{ "pid":12345, "tid":2, "ts":1718093442372317, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.pdb" }}
  1320. ,{ "pid":12345, "tid":2, "ts":1718093442372316, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.pdb" }}
  1321. ,{ "pid":12345, "tid":2, "ts":1718093442372386, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1322. ,{ "pid":12345, "tid":2, "ts":1718093442372470, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Api.Output.xml" }}
  1323. ,{ "pid":12345, "tid":2, "ts":1718093442372469, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Api.Output.xml" }}
  1324. ,{ "pid":12345, "tid":2, "ts":1718093442372545, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1325. ,{ "pid":12345, "tid":2, "ts":1718093442372632, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Cecil.Awesome.dll" }}
  1326. ,{ "pid":12345, "tid":2, "ts":1718093442372631, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Cecil.Awesome.dll" }}
  1327. ,{ "pid":12345, "tid":2, "ts":1718093442372704, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1328. ,{ "pid":12345, "tid":2, "ts":1718093442372770, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.XPath.dll" }}
  1329. ,{ "pid":12345, "tid":2, "ts":1718093442372769, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.XPath.dll" }}
  1330. ,{ "pid":12345, "tid":2, "ts":1718093442372905, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.ReaderWriter.dll" }}
  1331. ,{ "pid":12345, "tid":2, "ts":1718093442372904, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.ReaderWriter.dll" }}
  1332. ,{ "pid":12345, "tid":2, "ts":1718093442372975, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1333. ,{ "pid":12345, "tid":2, "ts":1718093442373060, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Transactions.dll" }}
  1334. ,{ "pid":12345, "tid":2, "ts":1718093442373058, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Transactions.dll" }}
  1335. ,{ "pid":12345, "tid":2, "ts":1718093442373181, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Tasks.Parallel.dll" }}
  1336. ,{ "pid":12345, "tid":2, "ts":1718093442373180, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Tasks.Parallel.dll" }}
  1337. ,{ "pid":12345, "tid":2, "ts":1718093442373250, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1338. ,{ "pid":12345, "tid":2, "ts":1718093442373334, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Channels.dll" }}
  1339. ,{ "pid":12345, "tid":2, "ts":1718093442373384, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1340. ,{ "pid":12345, "tid":2, "ts":1718093442373482, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ServiceModel.Web.dll" }}
  1341. ,{ "pid":12345, "tid":2, "ts":1718093442373480, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ServiceModel.Web.dll" }}
  1342. ,{ "pid":12345, "tid":2, "ts":1718093442373549, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1343. ,{ "pid":12345, "tid":2, "ts":1718093442373648, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.Primitives.dll" }}
  1344. ,{ "pid":12345, "tid":2, "ts":1718093442373647, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.Primitives.dll" }}
  1345. ,{ "pid":12345, "tid":2, "ts":1718093442373710, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1346. ,{ "pid":12345, "tid":2, "ts":1718093442373809, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.Algorithms.dll" }}
  1347. ,{ "pid":12345, "tid":2, "ts":1718093442373808, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.Algorithms.dll" }}
  1348. ,{ "pid":12345, "tid":2, "ts":1718093442373877, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1349. ,{ "pid":12345, "tid":2, "ts":1718093442373959, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Serialization.Formatters.dll" }}
  1350. ,{ "pid":12345, "tid":2, "ts":1718093442373958, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Serialization.Formatters.dll" }}
  1351. ,{ "pid":12345, "tid":2, "ts":1718093442374037, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1352. ,{ "pid":12345, "tid":2, "ts":1718093442374131, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.InteropServices.dll" }}
  1353. ,{ "pid":12345, "tid":2, "ts":1718093442374130, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.InteropServices.dll" }}
  1354. ,{ "pid":12345, "tid":2, "ts":1718093442374222, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1355. ,{ "pid":12345, "tid":2, "ts":1718093442374317, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Resources.Writer.dll" }}
  1356. ,{ "pid":12345, "tid":2, "ts":1718093442374315, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Resources.Writer.dll" }}
  1357. ,{ "pid":12345, "tid":2, "ts":1718093442374412, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1358. ,{ "pid":12345, "tid":2, "ts":1718093442374475, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.Emit.Lightweight.dll" }}
  1359. ,{ "pid":12345, "tid":2, "ts":1718093442374474, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.Emit.Lightweight.dll" }}
  1360. ,{ "pid":12345, "tid":2, "ts":1718093442374530, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1361. ,{ "pid":12345, "tid":2, "ts":1718093442374629, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Private.Xml.dll" }}
  1362. ,{ "pid":12345, "tid":2, "ts":1718093442374628, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Private.Xml.dll" }}
  1363. ,{ "pid":12345, "tid":2, "ts":1718093442374698, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1364. ,{ "pid":12345, "tid":2, "ts":1718093442374809, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.WebSockets.dll" }}
  1365. ,{ "pid":12345, "tid":2, "ts":1718093442374806, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.WebSockets.dll" }}
  1366. ,{ "pid":12345, "tid":2, "ts":1718093442374890, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1367. ,{ "pid":12345, "tid":2, "ts":1718093442374985, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.ServicePoint.dll" }}
  1368. ,{ "pid":12345, "tid":2, "ts":1718093442374983, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.ServicePoint.dll" }}
  1369. ,{ "pid":12345, "tid":2, "ts":1718093442375049, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1370. ,{ "pid":12345, "tid":2, "ts":1718093442375138, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.NetworkInformation.dll" }}
  1371. ,{ "pid":12345, "tid":2, "ts":1718093442375136, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.NetworkInformation.dll" }}
  1372. ,{ "pid":12345, "tid":2, "ts":1718093442375264, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Http.dll" }}
  1373. ,{ "pid":12345, "tid":2, "ts":1718093442375263, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Http.dll" }}
  1374. ,{ "pid":12345, "tid":2, "ts":1718093442375363, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1375. ,{ "pid":12345, "tid":2, "ts":1718093442375469, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.UnmanagedMemoryStream.dll" }}
  1376. ,{ "pid":12345, "tid":2, "ts":1718093442375468, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.UnmanagedMemoryStream.dll" }}
  1377. ,{ "pid":12345, "tid":2, "ts":1718093442375538, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1378. ,{ "pid":12345, "tid":2, "ts":1718093442375616, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.FileSystem.Primitives.dll" }}
  1379. ,{ "pid":12345, "tid":2, "ts":1718093442375615, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.FileSystem.Primitives.dll" }}
  1380. ,{ "pid":12345, "tid":2, "ts":1718093442375676, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1381. ,{ "pid":12345, "tid":2, "ts":1718093442375780, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.Compression.FileSystem.dll" }}
  1382. ,{ "pid":12345, "tid":2, "ts":1718093442375778, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.Compression.FileSystem.dll" }}
  1383. ,{ "pid":12345, "tid":2, "ts":1718093442375859, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1384. ,{ "pid":12345, "tid":2, "ts":1718093442375952, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Formats.Asn1.dll" }}
  1385. ,{ "pid":12345, "tid":2, "ts":1718093442375951, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Formats.Asn1.dll" }}
  1386. ,{ "pid":12345, "tid":2, "ts":1718093442376043, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1387. ,{ "pid":12345, "tid":2, "ts":1718093442376126, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.TraceSource.dll" }}
  1388. ,{ "pid":12345, "tid":2, "ts":1718093442376124, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.TraceSource.dll" }}
  1389. ,{ "pid":12345, "tid":2, "ts":1718093442376207, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1390. ,{ "pid":12345, "tid":2, "ts":1718093442376288, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.DiagnosticSource.dll" }}
  1391. ,{ "pid":12345, "tid":2, "ts":1718093442376287, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.DiagnosticSource.dll" }}
  1392. ,{ "pid":12345, "tid":2, "ts":1718093442376373, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1393. ,{ "pid":12345, "tid":2, "ts":1718093442376483, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Core.dll" }}
  1394. ,{ "pid":12345, "tid":2, "ts":1718093442376482, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Core.dll" }}
  1395. ,{ "pid":12345, "tid":2, "ts":1718093442376552, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1396. ,{ "pid":12345, "tid":2, "ts":1718093442376625, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ComponentModel.dll" }}
  1397. ,{ "pid":12345, "tid":2, "ts":1718093442376624, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ComponentModel.dll" }}
  1398. ,{ "pid":12345, "tid":2, "ts":1718093442376683, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1399. ,{ "pid":12345, "tid":2, "ts":1718093442376781, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Collections.dll" }}
  1400. ,{ "pid":12345, "tid":2, "ts":1718093442376780, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Collections.dll" }}
  1401. ,{ "pid":12345, "tid":2, "ts":1718093442376864, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1402. ,{ "pid":12345, "tid":2, "ts":1718093442376958, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/NiceIO.dll" }}
  1403. ,{ "pid":12345, "tid":2, "ts":1718093442376956, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/NiceIO.dll" }}
  1404. ,{ "pid":12345, "tid":2, "ts":1718093442377043, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1405. ,{ "pid":12345, "tid":2, "ts":1718093442377136, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.Rocks.pdb" }}
  1406. ,{ "pid":12345, "tid":2, "ts":1718093442377134, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.Rocks.pdb" }}
  1407. ,{ "pid":12345, "tid":2, "ts":1718093442377217, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1408. ,{ "pid":12345, "tid":2, "ts":1718093442377298, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.Mdb.dll" }}
  1409. ,{ "pid":12345, "tid":2, "ts":1718093442377296, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.Mdb.dll" }}
  1410. ,{ "pid":12345, "tid":2, "ts":1718093442377375, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1411. ,{ "pid":12345, "tid":2, "ts":1718093442377466, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Microsoft.CSharp.dll" }}
  1412. ,{ "pid":12345, "tid":2, "ts":1718093442377465, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Microsoft.CSharp.dll" }}
  1413. ,{ "pid":12345, "tid":2, "ts":1718093442377524, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1414. ,{ "pid":12345, "tid":2, "ts":1718093442377597, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libSystem.IO.Compression.Native.dylib" }}
  1415. ,{ "pid":12345, "tid":2, "ts":1718093442377675, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1416. ,{ "pid":12345, "tid":2, "ts":1718093442377754, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libhostpolicy.dylib" }}
  1417. ,{ "pid":12345, "tid":2, "ts":1718093442377841, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1418. ,{ "pid":12345, "tid":2, "ts":1718093442377944, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/il2cpp.runtimeconfig.json" }}
  1419. ,{ "pid":12345, "tid":2, "ts":1718093442377942, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/il2cpp.runtimeconfig.json" }}
  1420. ,{ "pid":12345, "tid":2, "ts":1718093442378012, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1421. ,{ "pid":12345, "tid":2, "ts":1718093442378080, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/createdump" }}
  1422. ,{ "pid":12345, "tid":2, "ts":1718093442378152, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1423. ,{ "pid":12345, "tid":2, "ts":1718093442378240, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Tools.pdb" }}
  1424. ,{ "pid":12345, "tid":2, "ts":1718093442378237, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Tools.pdb" }}
  1425. ,{ "pid":12345, "tid":2, "ts":1718093442378340, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1426. ,{ "pid":12345, "tid":2, "ts":1718093442378430, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.VisionOS.pdb" }}
  1427. ,{ "pid":12345, "tid":2, "ts":1718093442378429, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.VisionOS.pdb" }}
  1428. ,{ "pid":12345, "tid":2, "ts":1718093442378517, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1429. ,{ "pid":12345, "tid":2, "ts":1718093442378595, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.MacOS.pdb" }}
  1430. ,{ "pid":12345, "tid":2, "ts":1718093442378594, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.MacOS.pdb" }}
  1431. ,{ "pid":12345, "tid":2, "ts":1718093442378675, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1432. ,{ "pid":12345, "tid":2, "ts":1718093442378784, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.IOS.pdb" }}
  1433. ,{ "pid":12345, "tid":2, "ts":1718093442378784, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.IOS.pdb" }}
  1434. ,{ "pid":12345, "tid":2, "ts":1718093442378859, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1435. ,{ "pid":12345, "tid":2, "ts":1718093442378945, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.EmbeddedLinux.dll" }}
  1436. ,{ "pid":12345, "tid":2, "ts":1718093442378943, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.EmbeddedLinux.dll" }}
  1437. ,{ "pid":12345, "tid":2, "ts":1718093442379010, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1438. ,{ "pid":12345, "tid":2, "ts":1718093442379081, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Stevedore.Program.dll" }}
  1439. ,{ "pid":12345, "tid":2, "ts":1718093442379080, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Stevedore.Program.dll" }}
  1440. ,{ "pid":12345, "tid":2, "ts":1718093442379193, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.DotNet.dll" }}
  1441. ,{ "pid":12345, "tid":2, "ts":1718093442379190, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.DotNet.dll" }}
  1442. ,{ "pid":12345, "tid":2, "ts":1718093442379285, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1443. ,{ "pid":12345, "tid":2, "ts":1718093442379353, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.BeeDriver.dll" }}
  1444. ,{ "pid":12345, "tid":2, "ts":1718093442379352, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.BeeDriver.dll" }}
  1445. ,{ "pid":12345, "tid":2, "ts":1718093442379418, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1446. ,{ "pid":12345, "tid":2, "ts":1718093442379496, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.deps.json" }}
  1447. ,{ "pid":12345, "tid":2, "ts":1718093442379495, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.deps.json" }}
  1448. ,{ "pid":12345, "tid":2, "ts":1718093442379579, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1449. ,{ "pid":12345, "tid":2, "ts":1718093442379678, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/VmStringUtils.h" }}
  1450. ,{ "pid":12345, "tid":2, "ts":1718093442379676, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/VmStringUtils.h" }}
  1451. ,{ "pid":12345, "tid":2, "ts":1718093442379774, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1452. ,{ "pid":12345, "tid":2, "ts":1718093442379846, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone Tests/Unity_iPhone_Tests.m" }}
  1453. ,{ "pid":12345, "tid":2, "ts":1718093442379929, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1454. ,{ "pid":12345, "tid":2, "ts":1718093442380028, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/unity default resources" }}
  1455. ,{ "pid":12345, "tid":2, "ts":1718093442380087, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1456. ,{ "pid":12345, "tid":2, "ts":1718093442380198, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityAppController+Rendering.mm" }}
  1457. ,{ "pid":12345, "tid":2, "ts":1718093442380280, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1458. ,{ "pid":12345, "tid":2, "ts":1718093442380342, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnitySharedDecls.h" }}
  1459. ,{ "pid":12345, "tid":2, "ts":1718093442380341, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnitySharedDecls.h" }}
  1460. ,{ "pid":12345, "tid":2, "ts":1718093442380432, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1461. ,{ "pid":12345, "tid":2, "ts":1718093442380541, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnityInterface.h" }}
  1462. ,{ "pid":12345, "tid":2, "ts":1718093442380540, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityInterface.h" }}
  1463. ,{ "pid":12345, "tid":2, "ts":1718093442380633, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1464. ,{ "pid":12345, "tid":2, "ts":1718093442380704, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/IUnityInterface.h" }}
  1465. ,{ "pid":12345, "tid":2, "ts":1718093442380703, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/IUnityInterface.h" }}
  1466. ,{ "pid":12345, "tid":2, "ts":1718093442380779, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1467. ,{ "pid":12345, "tid":2, "ts":1718093442380848, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/Filesystem.mm" }}
  1468. ,{ "pid":12345, "tid":2, "ts":1718093442380915, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1469. ,{ "pid":12345, "tid":2, "ts":1718093442381010, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/CMVideoSampling.mm" }}
  1470. ,{ "pid":12345, "tid":2, "ts":1718093442381090, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1471. ,{ "pid":12345, "tid":2, "ts":1718093442381183, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UndefinePlatforms.h" }}
  1472. ,{ "pid":12345, "tid":2, "ts":1718093442381182, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UndefinePlatforms.h" }}
  1473. ,{ "pid":12345, "tid":2, "ts":1718093442381269, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1474. ,{ "pid":12345, "tid":2, "ts":1718093442381340, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityViewControllerBase+tvOS.h" }}
  1475. ,{ "pid":12345, "tid":2, "ts":1718093442381338, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase+tvOS.h" }}
  1476. ,{ "pid":12345, "tid":2, "ts":1718093442381420, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1477. ,{ "pid":12345, "tid":2, "ts":1718093442381484, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityView+tvOS.h" }}
  1478. ,{ "pid":12345, "tid":2, "ts":1718093442381482, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView+tvOS.h" }}
  1479. ,{ "pid":12345, "tid":2, "ts":1718093442381558, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1480. ,{ "pid":12345, "tid":2, "ts":1718093442381643, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/StoreReview.m" }}
  1481. ,{ "pid":12345, "tid":2, "ts":1718093442381740, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/ActivityIndicator.mm" }}
  1482. ,{ "pid":12345, "tid":2, "ts":1718093442381882, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/PluginBase/UnityViewControllerListener.h" }}
  1483. ,{ "pid":12345, "tid":2, "ts":1718093442381881, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PluginBase/UnityViewControllerListener.h" }}
  1484. ,{ "pid":12345, "tid":2, "ts":1718093442381944, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1485. ,{ "pid":12345, "tid":2, "ts":1718093442382041, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/PLCrashReporter.h" }}
  1486. ,{ "pid":12345, "tid":2, "ts":1718093442382039, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PLCrashReporter.h" }}
  1487. ,{ "pid":12345, "tid":2, "ts":1718093442382114, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1488. ,{ "pid":12345, "tid":2, "ts":1718093442382224, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ActivationFactoryBase.h" }}
  1489. ,{ "pid":12345, "tid":2, "ts":1718093442382222, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ActivationFactoryBase.h" }}
  1490. ,{ "pid":12345, "tid":2, "ts":1718093442382283, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1491. ,{ "pid":12345, "tid":2, "ts":1718093442382366, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Assembly.h" }}
  1492. ,{ "pid":12345, "tid":2, "ts":1718093442382364, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Assembly.h" }}
  1493. ,{ "pid":12345, "tid":2, "ts":1718093442382426, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1494. ,{ "pid":12345, "tid":2, "ts":1718093442382499, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/CCWBase.cpp" }}
  1495. ,{ "pid":12345, "tid":2, "ts":1718093442382497, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/CCWBase.cpp" }}
  1496. ,{ "pid":12345, "tid":2, "ts":1718093442382576, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1497. ,{ "pid":12345, "tid":2, "ts":1718093442382657, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ClassLibraryPAL.cpp" }}
  1498. ,{ "pid":12345, "tid":2, "ts":1718093442382655, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ClassLibraryPAL.cpp" }}
  1499. ,{ "pid":12345, "tid":2, "ts":1718093442382722, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1500. ,{ "pid":12345, "tid":2, "ts":1718093442382804, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ComObjectBase.cpp" }}
  1501. ,{ "pid":12345, "tid":2, "ts":1718093442382803, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ComObjectBase.cpp" }}
  1502. ,{ "pid":12345, "tid":2, "ts":1718093442382875, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1503. ,{ "pid":12345, "tid":2, "ts":1718093442382944, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Event.cpp" }}
  1504. ,{ "pid":12345, "tid":2, "ts":1718093442382943, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Event.cpp" }}
  1505. ,{ "pid":12345, "tid":2, "ts":1718093442383002, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1506. ,{ "pid":12345, "tid":2, "ts":1718093442383066, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Field.h" }}
  1507. ,{ "pid":12345, "tid":2, "ts":1718093442383065, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Field.h" }}
  1508. ,{ "pid":12345, "tid":2, "ts":1718093442383118, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1509. ,{ "pid":12345, "tid":2, "ts":1718093442383191, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GlobalMetadata.h" }}
  1510. ,{ "pid":12345, "tid":2, "ts":1718093442383189, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GlobalMetadata.h" }}
  1511. ,{ "pid":12345, "tid":2, "ts":1718093442383255, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1512. ,{ "pid":12345, "tid":2, "ts":1718093442383327, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/InternalCalls.cpp" }}
  1513. ,{ "pid":12345, "tid":2, "ts":1718093442383326, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/InternalCalls.cpp" }}
  1514. ,{ "pid":12345, "tid":2, "ts":1718093442383385, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1515. ,{ "pid":12345, "tid":2, "ts":1718093442383453, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MarshalAlloc.cpp" }}
  1516. ,{ "pid":12345, "tid":2, "ts":1718093442383452, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MarshalAlloc.cpp" }}
  1517. ,{ "pid":12345, "tid":2, "ts":1718093442383514, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1518. ,{ "pid":12345, "tid":2, "ts":1718093442383594, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MetadataCache.cpp" }}
  1519. ,{ "pid":12345, "tid":2, "ts":1718093442383592, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MetadataCache.cpp" }}
  1520. ,{ "pid":12345, "tid":2, "ts":1718093442383657, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1521. ,{ "pid":12345, "tid":2, "ts":1718093442383723, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Method.h" }}
  1522. ,{ "pid":12345, "tid":2, "ts":1718093442383722, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Method.h" }}
  1523. ,{ "pid":12345, "tid":2, "ts":1718093442383787, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1524. ,{ "pid":12345, "tid":2, "ts":1718093442383853, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Object.cpp" }}
  1525. ,{ "pid":12345, "tid":2, "ts":1718093442383852, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Object.cpp" }}
  1526. ,{ "pid":12345, "tid":2, "ts":1718093442383925, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1527. ,{ "pid":12345, "tid":2, "ts":1718093442384005, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/PlatformInvoke.cpp" }}
  1528. ,{ "pid":12345, "tid":2, "ts":1718093442384004, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/PlatformInvoke.cpp" }}
  1529. ,{ "pid":12345, "tid":2, "ts":1718093442384081, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1530. ,{ "pid":12345, "tid":2, "ts":1718093442384165, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/Plugins/iOS/unity-plugin-library.a" }}
  1531. ,{ "pid":12345, "tid":2, "ts":1718093442384228, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1532. ,{ "pid":12345, "tid":2, "ts":1718093442384309, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Random.cpp" }}
  1533. ,{ "pid":12345, "tid":2, "ts":1718093442384308, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Random.cpp" }}
  1534. ,{ "pid":12345, "tid":2, "ts":1718093442384391, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1535. ,{ "pid":12345, "tid":2, "ts":1718093442384509, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1536. ,{ "pid":12345, "tid":2, "ts":1718093442384588, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/String.cpp" }}
  1537. ,{ "pid":12345, "tid":2, "ts":1718093442384585, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/String.cpp" }}
  1538. ,{ "pid":12345, "tid":2, "ts":1718093442384651, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1539. ,{ "pid":12345, "tid":2, "ts":1718093442384715, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Type.cpp" }}
  1540. ,{ "pid":12345, "tid":2, "ts":1718093442384713, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Type.cpp" }}
  1541. ,{ "pid":12345, "tid":2, "ts":1718093442384778, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1542. ,{ "pid":12345, "tid":2, "ts":1718093442384850, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/WeakReference.h" }}
  1543. ,{ "pid":12345, "tid":2, "ts":1718093442384848, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/WeakReference.h" }}
  1544. ,{ "pid":12345, "tid":2, "ts":1718093442384927, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1545. ,{ "pid":12345, "tid":2, "ts":1718093442385049, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1546. ,{ "pid":12345, "tid":2, "ts":1718093442385146, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libmono/config/il2cpp-config-mono-win.h" }}
  1547. ,{ "pid":12345, "tid":2, "ts":1718093442385144, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/il2cpp-config-mono-win.h" }}
  1548. ,{ "pid":12345, "tid":2, "ts":1718093442385254, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1549. ,{ "pid":12345, "tid":2, "ts":1718093442385642, "dur":705, "ph":"X", "name": "WriteText", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Info.plist" }}
  1550. ,{ "pid":12345, "tid":2, "ts":1718093442386380, "dur":2055, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Spotlight-80.png" }}
  1551. ,{ "pid":12345, "tid":2, "ts":1718093442388527, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Notification-60.png" }}
  1552. ,{ "pid":12345, "tid":2, "ts":1718093442388696, "dur":1248, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Notification-60.png" }}
  1553. ,{ "pid":12345, "tid":2, "ts":1718093442389996, "dur":1225, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-152.png" }}
  1554. ,{ "pid":12345, "tid":2, "ts":1718093442391299, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.services.core/Runtime/Device/UserIdProviders/NSUserDefaults.mm" }}
  1555. ,{ "pid":12345, "tid":2, "ts":1718093442391371, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1556. ,{ "pid":12345, "tid":2, "ts":1718093442391449, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAdsInitializationListener.h" }}
  1557. ,{ "pid":12345, "tid":2, "ts":1718093442391447, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsInitializationListener.h" }}
  1558. ,{ "pid":12345, "tid":2, "ts":1718093442391591, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1559. ,{ "pid":12345, "tid":2, "ts":1718093442391656, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAnalyticsWrapper.m" }}
  1560. ,{ "pid":12345, "tid":2, "ts":1718093442391724, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1561. ,{ "pid":12345, "tid":2, "ts":1718093442391807, "dur":440, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/com.unity.services.core/UnityServicesProjectConfiguration.json" }}
  1562. ,{ "pid":12345, "tid":2, "ts":1718093442391805, "dur":443, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Raw/UnityServicesProjectConfiguration.json" }}
  1563. ,{ "pid":12345, "tid":2, "ts":1718093442398036, "dur":106, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }}
  1564. ,{ "pid":12345, "tid":2, "ts":1718093442392273, "dur":5891, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets1.assets" }}
  1565. ,{ "pid":12345, "tid":2, "ts":1718093442398212, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__10.cpp" }}
  1566. ,{ "pid":12345, "tid":2, "ts":1718093442398211, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__10.cpp" }}
  1567. ,{ "pid":12345, "tid":2, "ts":1718093442398268, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1568. ,{ "pid":12345, "tid":2, "ts":1718093442398360, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.AndroidJNIModule.cpp" }}
  1569. ,{ "pid":12345, "tid":2, "ts":1718093442398359, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.AndroidJNIModule.cpp" }}
  1570. ,{ "pid":12345, "tid":2, "ts":1718093442398428, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1571. ,{ "pid":12345, "tid":2, "ts":1718093442398496, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__7.cpp" }}
  1572. ,{ "pid":12345, "tid":2, "ts":1718093442398495, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__7.cpp" }}
  1573. ,{ "pid":12345, "tid":2, "ts":1718093442398582, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1574. ,{ "pid":12345, "tid":2, "ts":1718093442398651, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppMetadataUsage.c" }}
  1575. ,{ "pid":12345, "tid":2, "ts":1718093442398650, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppMetadataUsage.c" }}
  1576. ,{ "pid":12345, "tid":2, "ts":1718093442398722, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1577. ,{ "pid":12345, "tid":2, "ts":1718093442398807, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/I18N.West.cpp" }}
  1578. ,{ "pid":12345, "tid":2, "ts":1718093442398806, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/I18N.West.cpp" }}
  1579. ,{ "pid":12345, "tid":2, "ts":1718093442398875, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1580. ,{ "pid":12345, "tid":2, "ts":1718093442398957, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__47.cpp" }}
  1581. ,{ "pid":12345, "tid":2, "ts":1718093442398955, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__47.cpp" }}
  1582. ,{ "pid":12345, "tid":2, "ts":1718093442399031, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1583. ,{ "pid":12345, "tid":2, "ts":1718093442399106, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__16.cpp" }}
  1584. ,{ "pid":12345, "tid":2, "ts":1718093442399104, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__16.cpp" }}
  1585. ,{ "pid":12345, "tid":2, "ts":1718093442399167, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1586. ,{ "pid":12345, "tid":2, "ts":1718093442399249, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Firebase.Auth_CodeGen.c" }}
  1587. ,{ "pid":12345, "tid":2, "ts":1718093442399248, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Firebase.Auth_CodeGen.c" }}
  1588. ,{ "pid":12345, "tid":2, "ts":1718093442399320, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1589. ,{ "pid":12345, "tid":2, "ts":1718093442399398, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__12.cpp" }}
  1590. ,{ "pid":12345, "tid":2, "ts":1718093442399397, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__12.cpp" }}
  1591. ,{ "pid":12345, "tid":2, "ts":1718093442399468, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1592. ,{ "pid":12345, "tid":2, "ts":1718093442399543, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__10.cpp" }}
  1593. ,{ "pid":12345, "tid":2, "ts":1718093442399541, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__10.cpp" }}
  1594. ,{ "pid":12345, "tid":2, "ts":1718093442399604, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1595. ,{ "pid":12345, "tid":2, "ts":1718093442399681, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Burst.Unsafe.cpp" }}
  1596. ,{ "pid":12345, "tid":2, "ts":1718093442399680, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Burst.Unsafe.cpp" }}
  1597. ,{ "pid":12345, "tid":2, "ts":1718093442399745, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1598. ,{ "pid":12345, "tid":2, "ts":1718093442399821, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__18.cpp" }}
  1599. ,{ "pid":12345, "tid":2, "ts":1718093442399820, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__18.cpp" }}
  1600. ,{ "pid":12345, "tid":2, "ts":1718093442399885, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1601. ,{ "pid":12345, "tid":2, "ts":1718093442399961, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Threading.cpp" }}
  1602. ,{ "pid":12345, "tid":2, "ts":1718093442399960, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Threading.cpp" }}
  1603. ,{ "pid":12345, "tid":2, "ts":1718093442400033, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1604. ,{ "pid":12345, "tid":2, "ts":1718093442400106, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Configuration_CodeGen.c" }}
  1605. ,{ "pid":12345, "tid":2, "ts":1718093442400105, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Configuration_CodeGen.c" }}
  1606. ,{ "pid":12345, "tid":2, "ts":1718093442400164, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1607. ,{ "pid":12345, "tid":2, "ts":1718093442400258, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data_CodeGen.c" }}
  1608. ,{ "pid":12345, "tid":2, "ts":1718093442400257, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data_CodeGen.c" }}
  1609. ,{ "pid":12345, "tid":2, "ts":1718093442400348, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1610. ,{ "pid":12345, "tid":2, "ts":1718093442400436, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__5.cpp" }}
  1611. ,{ "pid":12345, "tid":2, "ts":1718093442400435, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__5.cpp" }}
  1612. ,{ "pid":12345, "tid":2, "ts":1718093442400510, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1613. ,{ "pid":12345, "tid":2, "ts":1718093442400595, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.GameCenterModule.cpp" }}
  1614. ,{ "pid":12345, "tid":2, "ts":1718093442400594, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.GameCenterModule.cpp" }}
  1615. ,{ "pid":12345, "tid":2, "ts":1718093442400654, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1616. ,{ "pid":12345, "tid":2, "ts":1718093442400746, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__9.cpp" }}
  1617. ,{ "pid":12345, "tid":2, "ts":1718093442400744, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__9.cpp" }}
  1618. ,{ "pid":12345, "tid":2, "ts":1718093442400799, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1619. ,{ "pid":12345, "tid":2, "ts":1718093442400887, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.IMGUIModule.cpp" }}
  1620. ,{ "pid":12345, "tid":2, "ts":1718093442400885, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.IMGUIModule.cpp" }}
  1621. ,{ "pid":12345, "tid":2, "ts":1718093442400953, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1622. ,{ "pid":12345, "tid":2, "ts":1718093442401024, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.InputLegacyModule.cpp" }}
  1623. ,{ "pid":12345, "tid":2, "ts":1718093442401023, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.InputLegacyModule.cpp" }}
  1624. ,{ "pid":12345, "tid":2, "ts":1718093442401086, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1625. ,{ "pid":12345, "tid":2, "ts":1718093442401164, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__46.cpp" }}
  1626. ,{ "pid":12345, "tid":2, "ts":1718093442401163, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__46.cpp" }}
  1627. ,{ "pid":12345, "tid":2, "ts":1718093442401225, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1628. ,{ "pid":12345, "tid":2, "ts":1718093442401293, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__19.cpp" }}
  1629. ,{ "pid":12345, "tid":2, "ts":1718093442401292, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__19.cpp" }}
  1630. ,{ "pid":12345, "tid":2, "ts":1718093442401471, "dur":2448, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/resources.assets" }}
  1631. ,{ "pid":12345, "tid":2, "ts":1718093442403950, "dur":93, "ph":"X", "name": "EmitNodeStart", "args": { "detail":"" }}
  1632. ,{ "pid":12345, "tid":2, "ts":1718093442404063, "dur":840, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/globalgamemanagers.assets.resS" }}
  1633. ,{ "pid":12345, "tid":2, "ts":1718093442404914, "dur":71316, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  1634. ,{ "pid":12345, "tid":3, "ts":1718093442184309, "dur":92851, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  1635. ,{ "pid":12345, "tid":3, "ts":1718093442277166, "dur":997, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1636. ,{ "pid":12345, "tid":3, "ts":1718093442278164, "dur":1039, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1637. ,{ "pid":12345, "tid":3, "ts":1718093442279203, "dur":966, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1638. ,{ "pid":12345, "tid":3, "ts":1718093442280170, "dur":993, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1639. ,{ "pid":12345, "tid":3, "ts":1718093442281163, "dur":1168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1640. ,{ "pid":12345, "tid":3, "ts":1718093442282331, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1641. ,{ "pid":12345, "tid":3, "ts":1718093442282502, "dur":22485, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  1642. ,{ "pid":12345, "tid":3, "ts":1718093442305002, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1643. ,{ "pid":12345, "tid":3, "ts":1718093442305094, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1644. ,{ "pid":12345, "tid":3, "ts":1718093442305163, "dur":128, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.TextCoreFontEngineModule-FeaturesChecked.txt_u5c4.info" }}
  1645. ,{ "pid":12345, "tid":3, "ts":1718093442305300, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1646. ,{ "pid":12345, "tid":3, "ts":1718093442305424, "dur":159, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1647. ,{ "pid":12345, "tid":3, "ts":1718093442305594, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1648. ,{ "pid":12345, "tid":3, "ts":1718093442305720, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1649. ,{ "pid":12345, "tid":3, "ts":1718093442305911, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1650. ,{ "pid":12345, "tid":3, "ts":1718093442305987, "dur":75, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/System.Numerics-FeaturesChecked.txt_1oqj.info" }}
  1651. ,{ "pid":12345, "tid":3, "ts":1718093442306123, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1652. ,{ "pid":12345, "tid":3, "ts":1718093442306188, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1653. ,{ "pid":12345, "tid":3, "ts":1718093442306274, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7.swiftmodule" }}
  1654. ,{ "pid":12345, "tid":3, "ts":1718093442306333, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1655. ,{ "pid":12345, "tid":3, "ts":1718093442306436, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftdoc" }}
  1656. ,{ "pid":12345, "tid":3, "ts":1718093442306495, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1657. ,{ "pid":12345, "tid":3, "ts":1718093442306618, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftdoc" }}
  1658. ,{ "pid":12345, "tid":3, "ts":1718093442306726, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1659. ,{ "pid":12345, "tid":3, "ts":1718093442306796, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Info.plist" }}
  1660. ,{ "pid":12345, "tid":3, "ts":1718093442306871, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1661. ,{ "pid":12345, "tid":3, "ts":1718093442306947, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionError.h" }}
  1662. ,{ "pid":12345, "tid":3, "ts":1718093442306942, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionError.h" }}
  1663. ,{ "pid":12345, "tid":3, "ts":1718093442307054, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1664. ,{ "pid":12345, "tid":3, "ts":1718093442307178, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityMonetization.h" }}
  1665. ,{ "pid":12345, "tid":3, "ts":1718093442307177, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityMonetization.h" }}
  1666. ,{ "pid":12345, "tid":3, "ts":1718093442307298, "dur":153, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1667. ,{ "pid":12345, "tid":3, "ts":1718093442307456, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadDelegate.h" }}
  1668. ,{ "pid":12345, "tid":3, "ts":1718093442307455, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadDelegate.h" }}
  1669. ,{ "pid":12345, "tid":3, "ts":1718093442307576, "dur":169, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1670. ,{ "pid":12345, "tid":3, "ts":1718093442307767, "dur":139, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsDelegate.h" }}
  1671. ,{ "pid":12345, "tid":3, "ts":1718093442307765, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsDelegate.h" }}
  1672. ,{ "pid":12345, "tid":3, "ts":1718093442307906, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1673. ,{ "pid":12345, "tid":3, "ts":1718093442308061, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONPromoMetaData.h" }}
  1674. ,{ "pid":12345, "tid":3, "ts":1718093442308061, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONPromoMetaData.h" }}
  1675. ,{ "pid":12345, "tid":3, "ts":1718093442308140, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1676. ,{ "pid":12345, "tid":3, "ts":1718093442308283, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSShowOptions.h" }}
  1677. ,{ "pid":12345, "tid":3, "ts":1718093442308282, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSShowOptions.h" }}
  1678. ,{ "pid":12345, "tid":3, "ts":1718093442308396, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1679. ,{ "pid":12345, "tid":3, "ts":1718093442308476, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSDictionaryConvertible.h" }}
  1680. ,{ "pid":12345, "tid":3, "ts":1718093442308475, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSDictionaryConvertible.h" }}
  1681. ,{ "pid":12345, "tid":3, "ts":1718093442308560, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1682. ,{ "pid":12345, "tid":3, "ts":1718093442308737, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/VmMethod.h" }}
  1683. ,{ "pid":12345, "tid":3, "ts":1718093442308735, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/VmMethod.h" }}
  1684. ,{ "pid":12345, "tid":3, "ts":1718093442308812, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1685. ,{ "pid":12345, "tid":3, "ts":1718093442308878, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System/MathF.cpp" }}
  1686. ,{ "pid":12345, "tid":3, "ts":1718093442308877, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System/MathF.cpp" }}
  1687. ,{ "pid":12345, "tid":3, "ts":1718093442309009, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1688. ,{ "pid":12345, "tid":3, "ts":1718093442309143, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1689. ,{ "pid":12345, "tid":3, "ts":1718093442309214, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/utf8-cpp/source/utf8.h" }}
  1690. ,{ "pid":12345, "tid":3, "ts":1718093442309213, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/utf8-cpp/source/utf8.h" }}
  1691. ,{ "pid":12345, "tid":3, "ts":1718093442309334, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1692. ,{ "pid":12345, "tid":3, "ts":1718093442309431, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/StringUtils.cpp" }}
  1693. ,{ "pid":12345, "tid":3, "ts":1718093442309430, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringUtils.cpp" }}
  1694. ,{ "pid":12345, "tid":3, "ts":1718093442309551, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1695. ,{ "pid":12345, "tid":3, "ts":1718093442309681, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1696. ,{ "pid":12345, "tid":3, "ts":1718093442309794, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/NonCopyable.h" }}
  1697. ,{ "pid":12345, "tid":3, "ts":1718093442309792, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/NonCopyable.h" }}
  1698. ,{ "pid":12345, "tid":3, "ts":1718093442309884, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1699. ,{ "pid":12345, "tid":3, "ts":1718093442310004, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryPool.h" }}
  1700. ,{ "pid":12345, "tid":3, "ts":1718093442310001, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryPool.h" }}
  1701. ,{ "pid":12345, "tid":3, "ts":1718093442310104, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1702. ,{ "pid":12345, "tid":3, "ts":1718093442310186, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MathUtils.h" }}
  1703. ,{ "pid":12345, "tid":3, "ts":1718093442310185, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MathUtils.h" }}
  1704. ,{ "pid":12345, "tid":3, "ts":1718093442310242, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1705. ,{ "pid":12345, "tid":3, "ts":1718093442310402, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/InitOnce.h" }}
  1706. ,{ "pid":12345, "tid":3, "ts":1718093442310400, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/InitOnce.h" }}
  1707. ,{ "pid":12345, "tid":3, "ts":1718093442310528, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1708. ,{ "pid":12345, "tid":3, "ts":1718093442310640, "dur":131, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Functional.h" }}
  1709. ,{ "pid":12345, "tid":3, "ts":1718093442310638, "dur":152, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Functional.h" }}
  1710. ,{ "pid":12345, "tid":3, "ts":1718093442310890, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1711. ,{ "pid":12345, "tid":3, "ts":1718093442311018, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/UnityAdsStubs.cpp" }}
  1712. ,{ "pid":12345, "tid":3, "ts":1718093442311016, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/UnityAdsStubs.cpp" }}
  1713. ,{ "pid":12345, "tid":3, "ts":1718093442311078, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1714. ,{ "pid":12345, "tid":3, "ts":1718093442311179, "dur":161, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/WinRTVector.h" }}
  1715. ,{ "pid":12345, "tid":3, "ts":1718093442311177, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/WinRTVector.h" }}
  1716. ,{ "pid":12345, "tid":3, "ts":1718093442311341, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1717. ,{ "pid":12345, "tid":3, "ts":1718093442311419, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Process.cpp" }}
  1718. ,{ "pid":12345, "tid":3, "ts":1718093442311418, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Process.cpp" }}
  1719. ,{ "pid":12345, "tid":3, "ts":1718093442311479, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1720. ,{ "pid":12345, "tid":3, "ts":1718093442311547, "dur":161, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Cryptography.cpp" }}
  1721. ,{ "pid":12345, "tid":3, "ts":1718093442311546, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Cryptography.cpp" }}
  1722. ,{ "pid":12345, "tid":3, "ts":1718093442311710, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1723. ,{ "pid":12345, "tid":3, "ts":1718093442311783, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/WindowsHelpers.h" }}
  1724. ,{ "pid":12345, "tid":3, "ts":1718093442311781, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsHelpers.h" }}
  1725. ,{ "pid":12345, "tid":3, "ts":1718093442311923, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1726. ,{ "pid":12345, "tid":3, "ts":1718093442311998, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ThreadImpl.h" }}
  1727. ,{ "pid":12345, "tid":3, "ts":1718093442311997, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ThreadImpl.h" }}
  1728. ,{ "pid":12345, "tid":3, "ts":1718093442312115, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1729. ,{ "pid":12345, "tid":3, "ts":1718093442312224, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/SocketImpl.h" }}
  1730. ,{ "pid":12345, "tid":3, "ts":1718093442312223, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/SocketImpl.h" }}
  1731. ,{ "pid":12345, "tid":3, "ts":1718093442312349, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1732. ,{ "pid":12345, "tid":3, "ts":1718093442312415, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/MutexImpl.h" }}
  1733. ,{ "pid":12345, "tid":3, "ts":1718093442312414, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/MutexImpl.h" }}
  1734. ,{ "pid":12345, "tid":3, "ts":1718093442312511, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1735. ,{ "pid":12345, "tid":3, "ts":1718093442312604, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Locale.cpp" }}
  1736. ,{ "pid":12345, "tid":3, "ts":1718093442312604, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Locale.cpp" }}
  1737. ,{ "pid":12345, "tid":3, "ts":1718093442312701, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1738. ,{ "pid":12345, "tid":3, "ts":1718093442312776, "dur":155, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/File.cpp" }}
  1739. ,{ "pid":12345, "tid":3, "ts":1718093442312774, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/File.cpp" }}
  1740. ,{ "pid":12345, "tid":3, "ts":1718093442312932, "dur":178, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1741. ,{ "pid":12345, "tid":3, "ts":1718093442313121, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Debug.cpp" }}
  1742. ,{ "pid":12345, "tid":3, "ts":1718093442313119, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Debug.cpp" }}
  1743. ,{ "pid":12345, "tid":3, "ts":1718093442313214, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1744. ,{ "pid":12345, "tid":3, "ts":1718093442313272, "dur":146, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ConditionVariableImpl.h" }}
  1745. ,{ "pid":12345, "tid":3, "ts":1718093442313271, "dur":148, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ConditionVariableImpl.h" }}
  1746. ,{ "pid":12345, "tid":3, "ts":1718093442313420, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1747. ,{ "pid":12345, "tid":3, "ts":1718093442313486, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Time.h" }}
  1748. ,{ "pid":12345, "tid":3, "ts":1718093442313485, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Time.h" }}
  1749. ,{ "pid":12345, "tid":3, "ts":1718093442313553, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1750. ,{ "pid":12345, "tid":3, "ts":1718093442313647, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Std/ThreadImpl.h" }}
  1751. ,{ "pid":12345, "tid":3, "ts":1718093442313644, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Std/ThreadImpl.h" }}
  1752. ,{ "pid":12345, "tid":3, "ts":1718093442313708, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1753. ,{ "pid":12345, "tid":3, "ts":1718093442313781, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Semaphore.h" }}
  1754. ,{ "pid":12345, "tid":3, "ts":1718093442313780, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Semaphore.h" }}
  1755. ,{ "pid":12345, "tid":3, "ts":1718093442313840, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1756. ,{ "pid":12345, "tid":3, "ts":1718093442313985, "dur":187, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/TimeZone.cpp" }}
  1757. ,{ "pid":12345, "tid":3, "ts":1718093442313984, "dur":188, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/TimeZone.cpp" }}
  1758. ,{ "pid":12345, "tid":3, "ts":1718093442314172, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1759. ,{ "pid":12345, "tid":3, "ts":1718093442314258, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/SystemCertificates.cpp" }}
  1760. ,{ "pid":12345, "tid":3, "ts":1718093442314255, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/SystemCertificates.cpp" }}
  1761. ,{ "pid":12345, "tid":3, "ts":1718093442314379, "dur":140, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Process.cpp" }}
  1762. ,{ "pid":12345, "tid":3, "ts":1718093442314377, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Process.cpp" }}
  1763. ,{ "pid":12345, "tid":3, "ts":1718093442314520, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1764. ,{ "pid":12345, "tid":3, "ts":1718093442314611, "dur":202, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/MutexImpl.h" }}
  1765. ,{ "pid":12345, "tid":3, "ts":1718093442314609, "dur":205, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/MutexImpl.h" }}
  1766. ,{ "pid":12345, "tid":3, "ts":1718093442314814, "dur":178, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1767. ,{ "pid":12345, "tid":3, "ts":1718093442314996, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Image.cpp" }}
  1768. ,{ "pid":12345, "tid":3, "ts":1718093442314995, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Image.cpp" }}
  1769. ,{ "pid":12345, "tid":3, "ts":1718093442315075, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1770. ,{ "pid":12345, "tid":3, "ts":1718093442315225, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/FastReaderReaderWriterLockImpl.h" }}
  1771. ,{ "pid":12345, "tid":3, "ts":1718093442315210, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/FastReaderReaderWriterLockImpl.h" }}
  1772. ,{ "pid":12345, "tid":3, "ts":1718093442315337, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1773. ,{ "pid":12345, "tid":3, "ts":1718093442315446, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/CpuInfo.cpp" }}
  1774. ,{ "pid":12345, "tid":3, "ts":1718093442315444, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/CpuInfo.cpp" }}
  1775. ,{ "pid":12345, "tid":3, "ts":1718093442315510, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1776. ,{ "pid":12345, "tid":3, "ts":1718093442315590, "dur":171, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/Thread.cpp" }}
  1777. ,{ "pid":12345, "tid":3, "ts":1718093442315589, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/Thread.cpp" }}
  1778. ,{ "pid":12345, "tid":3, "ts":1718093442315762, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1779. ,{ "pid":12345, "tid":3, "ts":1718093442315901, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Mutex.h" }}
  1780. ,{ "pid":12345, "tid":3, "ts":1718093442315899, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Mutex.h" }}
  1781. ,{ "pid":12345, "tid":3, "ts":1718093442316020, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1782. ,{ "pid":12345, "tid":3, "ts":1718093442316114, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/MarshalStringAlloc.h" }}
  1783. ,{ "pid":12345, "tid":3, "ts":1718093442316112, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/MarshalStringAlloc.h" }}
  1784. ,{ "pid":12345, "tid":3, "ts":1718093442316180, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1785. ,{ "pid":12345, "tid":3, "ts":1718093442316292, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/LastError.h" }}
  1786. ,{ "pid":12345, "tid":3, "ts":1718093442316291, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/LastError.h" }}
  1787. ,{ "pid":12345, "tid":3, "ts":1718093442316357, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1788. ,{ "pid":12345, "tid":3, "ts":1718093442316487, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/WaitObject.h" }}
  1789. ,{ "pid":12345, "tid":3, "ts":1718093442316485, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/WaitObject.h" }}
  1790. ,{ "pid":12345, "tid":3, "ts":1718093442316542, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1791. ,{ "pid":12345, "tid":3, "ts":1718093442316625, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SocketBridge.cpp" }}
  1792. ,{ "pid":12345, "tid":3, "ts":1718093442316623, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SocketBridge.cpp" }}
  1793. ,{ "pid":12345, "tid":3, "ts":1718093442316683, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1794. ,{ "pid":12345, "tid":3, "ts":1718093442316789, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Initialize.cpp" }}
  1795. ,{ "pid":12345, "tid":3, "ts":1718093442316788, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Initialize.cpp" }}
  1796. ,{ "pid":12345, "tid":3, "ts":1718093442316905, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1797. ,{ "pid":12345, "tid":3, "ts":1718093442317002, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/CpuInfo.cpp" }}
  1798. ,{ "pid":12345, "tid":3, "ts":1718093442317001, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/CpuInfo.cpp" }}
  1799. ,{ "pid":12345, "tid":3, "ts":1718093442317128, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/File.h" }}
  1800. ,{ "pid":12345, "tid":3, "ts":1718093442317127, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/File.h" }}
  1801. ,{ "pid":12345, "tid":3, "ts":1718093442317207, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1802. ,{ "pid":12345, "tid":3, "ts":1718093442317302, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Error.h" }}
  1803. ,{ "pid":12345, "tid":3, "ts":1718093442317300, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Error.h" }}
  1804. ,{ "pid":12345, "tid":3, "ts":1718093442317358, "dur":232, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1805. ,{ "pid":12345, "tid":3, "ts":1718093442317599, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Debug.h" }}
  1806. ,{ "pid":12345, "tid":3, "ts":1718093442317597, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Debug.h" }}
  1807. ,{ "pid":12345, "tid":3, "ts":1718093442317714, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1808. ,{ "pid":12345, "tid":3, "ts":1718093442317792, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Console.h" }}
  1809. ,{ "pid":12345, "tid":3, "ts":1718093442317790, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Console.h" }}
  1810. ,{ "pid":12345, "tid":3, "ts":1718093442317879, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1811. ,{ "pid":12345, "tid":3, "ts":1718093442318011, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_time.cpp" }}
  1812. ,{ "pid":12345, "tid":3, "ts":1718093442318010, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_time.cpp" }}
  1813. ,{ "pid":12345, "tid":3, "ts":1718093442318079, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1814. ,{ "pid":12345, "tid":3, "ts":1718093442318148, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_mirror_structs.h" }}
  1815. ,{ "pid":12345, "tid":3, "ts":1718093442318147, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_mirror_structs.h" }}
  1816. ,{ "pid":12345, "tid":3, "ts":1718093442318219, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1817. ,{ "pid":12345, "tid":3, "ts":1718093442318293, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/decode.h" }}
  1818. ,{ "pid":12345, "tid":3, "ts":1718093442318291, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/decode.h" }}
  1819. ,{ "pid":12345, "tid":3, "ts":1718093442318373, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1820. ,{ "pid":12345, "tid":3, "ts":1718093442318460, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict.h" }}
  1821. ,{ "pid":12345, "tid":3, "ts":1718093442318459, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict.h" }}
  1822. ,{ "pid":12345, "tid":3, "ts":1718093442318534, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1823. ,{ "pid":12345, "tid":3, "ts":1718093442318638, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock.h" }}
  1824. ,{ "pid":12345, "tid":3, "ts":1718093442318637, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock.h" }}
  1825. ,{ "pid":12345, "tid":3, "ts":1718093442318740, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1826. ,{ "pid":12345, "tid":3, "ts":1718093442318829, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram_inc.h" }}
  1827. ,{ "pid":12345, "tid":3, "ts":1718093442318828, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram_inc.h" }}
  1828. ,{ "pid":12345, "tid":3, "ts":1718093442318894, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1829. ,{ "pid":12345, "tid":3, "ts":1718093442319114, "dur":217, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1830. ,{ "pid":12345, "tid":3, "ts":1718093442319335, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/fast_log.h" }}
  1831. ,{ "pid":12345, "tid":3, "ts":1718093442319334, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/fast_log.h" }}
  1832. ,{ "pid":12345, "tid":3, "ts":1718093442319398, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1833. ,{ "pid":12345, "tid":3, "ts":1718093442319521, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode.c" }}
  1834. ,{ "pid":12345, "tid":3, "ts":1718093442319520, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode.c" }}
  1835. ,{ "pid":12345, "tid":3, "ts":1718093442319610, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1836. ,{ "pid":12345, "tid":3, "ts":1718093442319742, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment_two_pass.h" }}
  1837. ,{ "pid":12345, "tid":3, "ts":1718093442319741, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment_two_pass.h" }}
  1838. ,{ "pid":12345, "tid":3, "ts":1718093442319849, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1839. ,{ "pid":12345, "tid":3, "ts":1718093442319978, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster_inc.h" }}
  1840. ,{ "pid":12345, "tid":3, "ts":1718093442319977, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster_inc.h" }}
  1841. ,{ "pid":12345, "tid":3, "ts":1718093442320034, "dur":186, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1842. ,{ "pid":12345, "tid":3, "ts":1718093442320224, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_encoder_inc.h" }}
  1843. ,{ "pid":12345, "tid":3, "ts":1718093442320223, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_encoder_inc.h" }}
  1844. ,{ "pid":12345, "tid":3, "ts":1718093442320337, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1845. ,{ "pid":12345, "tid":3, "ts":1718093442320493, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.c" }}
  1846. ,{ "pid":12345, "tid":3, "ts":1718093442320491, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.c" }}
  1847. ,{ "pid":12345, "tid":3, "ts":1718093442320663, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/prefix.h" }}
  1848. ,{ "pid":12345, "tid":3, "ts":1718093442320714, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1849. ,{ "pid":12345, "tid":3, "ts":1718093442320875, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1850. ,{ "pid":12345, "tid":3, "ts":1718093442320952, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/dictionary.h" }}
  1851. ,{ "pid":12345, "tid":3, "ts":1718093442320951, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/dictionary.h" }}
  1852. ,{ "pid":12345, "tid":3, "ts":1718093442321044, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1853. ,{ "pid":12345, "tid":3, "ts":1718093442321168, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/WaitStatus-c-api.h" }}
  1854. ,{ "pid":12345, "tid":3, "ts":1718093442321167, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/WaitStatus-c-api.h" }}
  1855. ,{ "pid":12345, "tid":3, "ts":1718093442321240, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1856. ,{ "pid":12345, "tid":3, "ts":1718093442321412, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Socket-c-api.h" }}
  1857. ,{ "pid":12345, "tid":3, "ts":1718093442321411, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Socket-c-api.h" }}
  1858. ,{ "pid":12345, "tid":3, "ts":1718093442321650, "dur":199, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/File.cpp" }}
  1859. ,{ "pid":12345, "tid":3, "ts":1718093442321649, "dur":200, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/File.cpp" }}
  1860. ,{ "pid":12345, "tid":3, "ts":1718093442321850, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1861. ,{ "pid":12345, "tid":3, "ts":1718093442321972, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1862. ,{ "pid":12345, "tid":3, "ts":1718093442322108, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1863. ,{ "pid":12345, "tid":3, "ts":1718093442322191, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/pal_android.h" }}
  1864. ,{ "pid":12345, "tid":3, "ts":1718093442322190, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/pal_android.h" }}
  1865. ,{ "pid":12345, "tid":3, "ts":1718093442322311, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1866. ,{ "pid":12345, "tid":3, "ts":1718093442322480, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolMonitorThread.h" }}
  1867. ,{ "pid":12345, "tid":3, "ts":1718093442322479, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolMonitorThread.h" }}
  1868. ,{ "pid":12345, "tid":3, "ts":1718093442322553, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1869. ,{ "pid":12345, "tid":3, "ts":1718093442322684, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms-io.h" }}
  1870. ,{ "pid":12345, "tid":3, "ts":1718093442322683, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms-io.h" }}
  1871. ,{ "pid":12345, "tid":3, "ts":1718093442322808, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1872. ,{ "pid":12345, "tid":3, "ts":1718093442322867, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/MonoPosixHelper.cpp" }}
  1873. ,{ "pid":12345, "tid":3, "ts":1718093442322866, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/MonoPosixHelper.cpp" }}
  1874. ,{ "pid":12345, "tid":3, "ts":1718093442322941, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1875. ,{ "pid":12345, "tid":3, "ts":1718093442323067, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppSignature.h" }}
  1876. ,{ "pid":12345, "tid":3, "ts":1718093442323065, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppSignature.h" }}
  1877. ,{ "pid":12345, "tid":3, "ts":1718093442323158, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1878. ,{ "pid":12345, "tid":3, "ts":1718093442323219, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericInstHash.h" }}
  1879. ,{ "pid":12345, "tid":3, "ts":1718093442323218, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstHash.h" }}
  1880. ,{ "pid":12345, "tid":3, "ts":1718093442323293, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1881. ,{ "pid":12345, "tid":3, "ts":1718093442323367, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericContextCompare.h" }}
  1882. ,{ "pid":12345, "tid":3, "ts":1718093442323366, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextCompare.h" }}
  1883. ,{ "pid":12345, "tid":3, "ts":1718093442323474, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1884. ,{ "pid":12345, "tid":3, "ts":1718093442323660, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1885. ,{ "pid":12345, "tid":3, "ts":1718093442323738, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericMetadata.cpp" }}
  1886. ,{ "pid":12345, "tid":3, "ts":1718093442323737, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMetadata.cpp" }}
  1887. ,{ "pid":12345, "tid":3, "ts":1718093442323855, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1888. ,{ "pid":12345, "tid":3, "ts":1718093442323943, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/ArrayMetadata.h" }}
  1889. ,{ "pid":12345, "tid":3, "ts":1718093442323942, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/ArrayMetadata.h" }}
  1890. ,{ "pid":12345, "tid":3, "ts":1718093442324020, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1891. ,{ "pid":12345, "tid":3, "ts":1718093442324132, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-string-types.h" }}
  1892. ,{ "pid":12345, "tid":3, "ts":1718093442324131, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-string-types.h" }}
  1893. ,{ "pid":12345, "tid":3, "ts":1718093442324194, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1894. ,{ "pid":12345, "tid":3, "ts":1718093442324338, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1895. ,{ "pid":12345, "tid":3, "ts":1718093442324446, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-metadata.h" }}
  1896. ,{ "pid":12345, "tid":3, "ts":1718093442324445, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-metadata.h" }}
  1897. ,{ "pid":12345, "tid":3, "ts":1718093442324568, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-benchmark-support.h" }}
  1898. ,{ "pid":12345, "tid":3, "ts":1718093442324567, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-benchmark-support.h" }}
  1899. ,{ "pid":12345, "tid":3, "ts":1718093442324637, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1900. ,{ "pid":12345, "tid":3, "ts":1718093442324706, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Threading/Semaphore.h" }}
  1901. ,{ "pid":12345, "tid":3, "ts":1718093442324704, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Threading/Semaphore.h" }}
  1902. ,{ "pid":12345, "tid":3, "ts":1718093442324793, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1903. ,{ "pid":12345, "tid":3, "ts":1718093442324859, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.Sockets/Socket.cpp" }}
  1904. ,{ "pid":12345, "tid":3, "ts":1718093442324858, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.Sockets/Socket.cpp" }}
  1905. ,{ "pid":12345, "tid":3, "ts":1718093442324932, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1906. ,{ "pid":12345, "tid":3, "ts":1718093442325025, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.IO/FileSystemWatcher.cpp" }}
  1907. ,{ "pid":12345, "tid":3, "ts":1718093442325023, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.IO/FileSystemWatcher.cpp" }}
  1908. ,{ "pid":12345, "tid":3, "ts":1718093442325080, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1909. ,{ "pid":12345, "tid":3, "ts":1718093442325162, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/FileVersionInfo.cpp" }}
  1910. ,{ "pid":12345, "tid":3, "ts":1718093442325160, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/FileVersionInfo.cpp" }}
  1911. ,{ "pid":12345, "tid":3, "ts":1718093442325221, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1912. ,{ "pid":12345, "tid":3, "ts":1718093442325285, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/Microsoft.Win32/NativeMethods.cpp" }}
  1913. ,{ "pid":12345, "tid":3, "ts":1718093442325283, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/Microsoft.Win32/NativeMethods.cpp" }}
  1914. ,{ "pid":12345, "tid":3, "ts":1718093442325356, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1915. ,{ "pid":12345, "tid":3, "ts":1718093442325419, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/TypedReference.cpp" }}
  1916. ,{ "pid":12345, "tid":3, "ts":1718093442325417, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/TypedReference.cpp" }}
  1917. ,{ "pid":12345, "tid":3, "ts":1718093442325491, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1918. ,{ "pid":12345, "tid":3, "ts":1718093442325570, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeType.h" }}
  1919. ,{ "pid":12345, "tid":3, "ts":1718093442325622, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1920. ,{ "pid":12345, "tid":3, "ts":1718093442325703, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Object.h" }}
  1921. ,{ "pid":12345, "tid":3, "ts":1718093442325702, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Object.h" }}
  1922. ,{ "pid":12345, "tid":3, "ts":1718093442325777, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1923. ,{ "pid":12345, "tid":3, "ts":1718093442325842, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/MonoCustomAttrs.h" }}
  1924. ,{ "pid":12345, "tid":3, "ts":1718093442325840, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/MonoCustomAttrs.h" }}
  1925. ,{ "pid":12345, "tid":3, "ts":1718093442325906, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1926. ,{ "pid":12345, "tid":3, "ts":1718093442325993, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Environment.cpp" }}
  1927. ,{ "pid":12345, "tid":3, "ts":1718093442325991, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Environment.cpp" }}
  1928. ,{ "pid":12345, "tid":3, "ts":1718093442326050, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1929. ,{ "pid":12345, "tid":3, "ts":1718093442326125, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/DateTime.cpp" }}
  1930. ,{ "pid":12345, "tid":3, "ts":1718093442326124, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/DateTime.cpp" }}
  1931. ,{ "pid":12345, "tid":3, "ts":1718093442326200, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1932. ,{ "pid":12345, "tid":3, "ts":1718093442326269, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/CLRConfig.cpp" }}
  1933. ,{ "pid":12345, "tid":3, "ts":1718093442326268, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/CLRConfig.cpp" }}
  1934. ,{ "pid":12345, "tid":3, "ts":1718093442326323, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1935. ,{ "pid":12345, "tid":3, "ts":1718093442326435, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ArgIterator.cpp" }}
  1936. ,{ "pid":12345, "tid":3, "ts":1718093442326434, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ArgIterator.cpp" }}
  1937. ,{ "pid":12345, "tid":3, "ts":1718093442326534, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1938. ,{ "pid":12345, "tid":3, "ts":1718093442326600, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Thread.cpp" }}
  1939. ,{ "pid":12345, "tid":3, "ts":1718093442326598, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Thread.cpp" }}
  1940. ,{ "pid":12345, "tid":3, "ts":1718093442326701, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1941. ,{ "pid":12345, "tid":3, "ts":1718093442326813, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Mutex.cpp" }}
  1942. ,{ "pid":12345, "tid":3, "ts":1718093442326812, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Mutex.cpp" }}
  1943. ,{ "pid":12345, "tid":3, "ts":1718093442326876, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1944. ,{ "pid":12345, "tid":3, "ts":1718093442326952, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Text/Normalization.cpp" }}
  1945. ,{ "pid":12345, "tid":3, "ts":1718093442326951, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Text/Normalization.cpp" }}
  1946. ,{ "pid":12345, "tid":3, "ts":1718093442327020, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1947. ,{ "pid":12345, "tid":3, "ts":1718093442327089, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsImpersonationContext.cpp" }}
  1948. ,{ "pid":12345, "tid":3, "ts":1718093442327087, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsImpersonationContext.cpp" }}
  1949. ,{ "pid":12345, "tid":3, "ts":1718093442327148, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1950. ,{ "pid":12345, "tid":3, "ts":1718093442327277, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1951. ,{ "pid":12345, "tid":3, "ts":1718093442327410, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1952. ,{ "pid":12345, "tid":3, "ts":1718093442327501, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/MonoMethodMessage.cpp" }}
  1953. ,{ "pid":12345, "tid":3, "ts":1718093442327500, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/MonoMethodMessage.cpp" }}
  1954. ,{ "pid":12345, "tid":3, "ts":1718093442327561, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1955. ,{ "pid":12345, "tid":3, "ts":1718093442327634, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Activation/ActivationServices.cpp" }}
  1956. ,{ "pid":12345, "tid":3, "ts":1718093442327632, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Activation/ActivationServices.cpp" }}
  1957. ,{ "pid":12345, "tid":3, "ts":1718093442327722, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1958. ,{ "pid":12345, "tid":3, "ts":1718093442327864, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.CompilerServices/RuntimeHelpers.h" }}
  1959. ,{ "pid":12345, "tid":3, "ts":1718093442327920, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1960. ,{ "pid":12345, "tid":3, "ts":1718093442328037, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeModule.cpp" }}
  1961. ,{ "pid":12345, "tid":3, "ts":1718093442328035, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeModule.cpp" }}
  1962. ,{ "pid":12345, "tid":3, "ts":1718093442328143, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1963. ,{ "pid":12345, "tid":3, "ts":1718093442328257, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeConstructorInfo.h" }}
  1964. ,{ "pid":12345, "tid":3, "ts":1718093442328256, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeConstructorInfo.h" }}
  1965. ,{ "pid":12345, "tid":3, "ts":1718093442328344, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1966. ,{ "pid":12345, "tid":3, "ts":1718093442328456, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/Module.h" }}
  1967. ,{ "pid":12345, "tid":3, "ts":1718093442328436, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/Module.h" }}
  1968. ,{ "pid":12345, "tid":3, "ts":1718093442328533, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1969. ,{ "pid":12345, "tid":3, "ts":1718093442328620, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/EventInfo.h" }}
  1970. ,{ "pid":12345, "tid":3, "ts":1718093442328618, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/EventInfo.h" }}
  1971. ,{ "pid":12345, "tid":3, "ts":1718093442328693, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1972. ,{ "pid":12345, "tid":3, "ts":1718093442328772, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/Assembly.h" }}
  1973. ,{ "pid":12345, "tid":3, "ts":1718093442328770, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/Assembly.h" }}
  1974. ,{ "pid":12345, "tid":3, "ts":1718093442328882, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1975. ,{ "pid":12345, "tid":3, "ts":1718093442329011, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/DriveInfo.h" }}
  1976. ,{ "pid":12345, "tid":3, "ts":1718093442329009, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/DriveInfo.h" }}
  1977. ,{ "pid":12345, "tid":3, "ts":1718093442329090, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1978. ,{ "pid":12345, "tid":3, "ts":1718093442329169, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/RegionInfo.h" }}
  1979. ,{ "pid":12345, "tid":3, "ts":1718093442329168, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/RegionInfo.h" }}
  1980. ,{ "pid":12345, "tid":3, "ts":1718093442329233, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1981. ,{ "pid":12345, "tid":3, "ts":1718093442329314, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfoInternals.h" }}
  1982. ,{ "pid":12345, "tid":3, "ts":1718093442329313, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfoInternals.h" }}
  1983. ,{ "pid":12345, "tid":3, "ts":1718093442329392, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1984. ,{ "pid":12345, "tid":3, "ts":1718093442329454, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CompareOptions.h" }}
  1985. ,{ "pid":12345, "tid":3, "ts":1718093442329452, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CompareOptions.h" }}
  1986. ,{ "pid":12345, "tid":3, "ts":1718093442329528, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1987. ,{ "pid":12345, "tid":3, "ts":1718093442329618, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/StackTrace.cpp" }}
  1988. ,{ "pid":12345, "tid":3, "ts":1718093442329616, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/StackTrace.cpp" }}
  1989. ,{ "pid":12345, "tid":3, "ts":1718093442329683, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1990. ,{ "pid":12345, "tid":3, "ts":1718093442329765, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/SafeStringMarshal.cpp" }}
  1991. ,{ "pid":12345, "tid":3, "ts":1718093442329762, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/SafeStringMarshal.cpp" }}
  1992. ,{ "pid":12345, "tid":3, "ts":1718093442329837, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1993. ,{ "pid":12345, "tid":3, "ts":1718093442329923, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeClassHandle.cpp" }}
  1994. ,{ "pid":12345, "tid":3, "ts":1718093442329921, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeClassHandle.cpp" }}
  1995. ,{ "pid":12345, "tid":3, "ts":1718093442329990, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1996. ,{ "pid":12345, "tid":3, "ts":1718093442330086, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono.Security.Cryptography/KeyPairPersistence.cpp" }}
  1997. ,{ "pid":12345, "tid":3, "ts":1718093442330084, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono.Security.Cryptography/KeyPairPersistence.cpp" }}
  1998. ,{ "pid":12345, "tid":3, "ts":1718093442330161, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1999. ,{ "pid":12345, "tid":3, "ts":1718093442330224, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/WriteBarrierValidation.cpp" }}
  2000. ,{ "pid":12345, "tid":3, "ts":1718093442330223, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/WriteBarrierValidation.cpp" }}
  2001. ,{ "pid":12345, "tid":3, "ts":1718093442330294, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2002. ,{ "pid":12345, "tid":3, "ts":1718093442330359, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/GCHandle.cpp" }}
  2003. ,{ "pid":12345, "tid":3, "ts":1718093442330358, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/GCHandle.cpp" }}
  2004. ,{ "pid":12345, "tid":3, "ts":1718093442330461, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2005. ,{ "pid":12345, "tid":3, "ts":1718093442330546, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen.h" }}
  2006. ,{ "pid":12345, "tid":3, "ts":1718093442330544, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen.h" }}
  2007. ,{ "pid":12345, "tid":3, "ts":1718093442330617, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2008. ,{ "pid":12345, "tid":3, "ts":1718093442330684, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-common.h" }}
  2009. ,{ "pid":12345, "tid":3, "ts":1718093442330682, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-common.h" }}
  2010. ,{ "pid":12345, "tid":3, "ts":1718093442330773, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2011. ,{ "pid":12345, "tid":3, "ts":1718093442330873, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/zconf.h" }}
  2012. ,{ "pid":12345, "tid":3, "ts":1718093442330872, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/zconf.h" }}
  2013. ,{ "pid":12345, "tid":3, "ts":1718093442330945, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2014. ,{ "pid":12345, "tid":3, "ts":1718093442331019, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inftrees.c" }}
  2015. ,{ "pid":12345, "tid":3, "ts":1718093442331018, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inftrees.c" }}
  2016. ,{ "pid":12345, "tid":3, "ts":1718093442331084, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2017. ,{ "pid":12345, "tid":3, "ts":1718093442331229, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/infback.c" }}
  2018. ,{ "pid":12345, "tid":3, "ts":1718093442331228, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/infback.c" }}
  2019. ,{ "pid":12345, "tid":3, "ts":1718093442331295, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2020. ,{ "pid":12345, "tid":3, "ts":1718093442331357, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzclose.c" }}
  2021. ,{ "pid":12345, "tid":3, "ts":1718093442331355, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzclose.c" }}
  2022. ,{ "pid":12345, "tid":3, "ts":1718093442331426, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2023. ,{ "pid":12345, "tid":3, "ts":1718093442331512, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xxHash/xxhash.h" }}
  2024. ,{ "pid":12345, "tid":3, "ts":1718093442331510, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/xxhash.h" }}
  2025. ,{ "pid":12345, "tid":3, "ts":1718093442331577, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2026. ,{ "pid":12345, "tid":3, "ts":1718093442331648, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xamarin-android/xamarin_getifaddrs.c" }}
  2027. ,{ "pid":12345, "tid":3, "ts":1718093442331647, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/xamarin_getifaddrs.c" }}
  2028. ,{ "pid":12345, "tid":3, "ts":1718093442331703, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2029. ,{ "pid":12345, "tid":3, "ts":1718093442331791, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/support/libm/complex.c" }}
  2030. ,{ "pid":12345, "tid":3, "ts":1718093442331789, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/support/libm/complex.c" }}
  2031. ,{ "pid":12345, "tid":3, "ts":1718093442331845, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2032. ,{ "pid":12345, "tid":3, "ts":1718093442331942, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/strenc.c" }}
  2033. ,{ "pid":12345, "tid":3, "ts":1718093442331940, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/strenc.c" }}
  2034. ,{ "pid":12345, "tid":3, "ts":1718093442332011, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2035. ,{ "pid":12345, "tid":3, "ts":1718093442332082, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/os-event.h" }}
  2036. ,{ "pid":12345, "tid":3, "ts":1718093442332081, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/os-event.h" }}
  2037. ,{ "pid":12345, "tid":3, "ts":1718093442332146, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2038. ,{ "pid":12345, "tid":3, "ts":1718093442332221, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking-windows.c" }}
  2039. ,{ "pid":12345, "tid":3, "ts":1718093442332219, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking-windows.c" }}
  2040. ,{ "pid":12345, "tid":3, "ts":1718093442332282, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2041. ,{ "pid":12345, "tid":3, "ts":1718093442332360, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-value-hash.h" }}
  2042. ,{ "pid":12345, "tid":3, "ts":1718093442332359, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-value-hash.h" }}
  2043. ,{ "pid":12345, "tid":3, "ts":1718093442332432, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2044. ,{ "pid":12345, "tid":3, "ts":1718093442332510, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-tls-inline.h" }}
  2045. ,{ "pid":12345, "tid":3, "ts":1718093442332508, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-tls-inline.h" }}
  2046. ,{ "pid":12345, "tid":3, "ts":1718093442332574, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2047. ,{ "pid":12345, "tid":3, "ts":1718093442332648, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-state-machine.c" }}
  2048. ,{ "pid":12345, "tid":3, "ts":1718093442332646, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-state-machine.c" }}
  2049. ,{ "pid":12345, "tid":3, "ts":1718093442332729, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2050. ,{ "pid":12345, "tid":3, "ts":1718093442332812, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-coop.h" }}
  2051. ,{ "pid":12345, "tid":3, "ts":1718093442332810, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-coop.h" }}
  2052. ,{ "pid":12345, "tid":3, "ts":1718093442332882, "dur":715, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2053. ,{ "pid":12345, "tid":3, "ts":1718093442333606, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-stdlib.h" }}
  2054. ,{ "pid":12345, "tid":3, "ts":1718093442333605, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-stdlib.h" }}
  2055. ,{ "pid":12345, "tid":3, "ts":1718093442333681, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2056. ,{ "pid":12345, "tid":3, "ts":1718093442333808, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-publib.h" }}
  2057. ,{ "pid":12345, "tid":3, "ts":1718093442333807, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-publib.h" }}
  2058. ,{ "pid":12345, "tid":3, "ts":1718093442333897, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2059. ,{ "pid":12345, "tid":3, "ts":1718093442334067, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-proclib-windows.c" }}
  2060. ,{ "pid":12345, "tid":3, "ts":1718093442334066, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-proclib-windows.c" }}
  2061. ,{ "pid":12345, "tid":3, "ts":1718093442334162, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2062. ,{ "pid":12345, "tid":3, "ts":1718093442334255, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-wait-win32-uwp.c" }}
  2063. ,{ "pid":12345, "tid":3, "ts":1718093442334253, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-wait-win32-uwp.c" }}
  2064. ,{ "pid":12345, "tid":3, "ts":1718093442334333, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2065. ,{ "pid":12345, "tid":3, "ts":1718093442334421, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-networkinterfaces.h" }}
  2066. ,{ "pid":12345, "tid":3, "ts":1718093442334419, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-networkinterfaces.h" }}
  2067. ,{ "pid":12345, "tid":3, "ts":1718093442334484, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2068. ,{ "pid":12345, "tid":3, "ts":1718093442334584, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap-internals.h" }}
  2069. ,{ "pid":12345, "tid":3, "ts":1718093442334581, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap-internals.h" }}
  2070. ,{ "pid":12345, "tid":3, "ts":1718093442334656, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2071. ,{ "pid":12345, "tid":3, "ts":1718093442334739, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-machine.h" }}
  2072. ,{ "pid":12345, "tid":3, "ts":1718093442334738, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-machine.h" }}
  2073. ,{ "pid":12345, "tid":3, "ts":1718093442334808, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2074. ,{ "pid":12345, "tid":3, "ts":1718093442334917, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-posix.c" }}
  2075. ,{ "pid":12345, "tid":3, "ts":1718093442334914, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-posix.c" }}
  2076. ,{ "pid":12345, "tid":3, "ts":1718093442334971, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2077. ,{ "pid":12345, "tid":3, "ts":1718093442335060, "dur":147, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-io-portability.c" }}
  2078. ,{ "pid":12345, "tid":3, "ts":1718093442335059, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-io-portability.c" }}
  2079. ,{ "pid":12345, "tid":3, "ts":1718093442335209, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2080. ,{ "pid":12345, "tid":3, "ts":1718093442335278, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-web.c" }}
  2081. ,{ "pid":12345, "tid":3, "ts":1718093442335278, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-web.c" }}
  2082. ,{ "pid":12345, "tid":3, "ts":1718093442335355, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2083. ,{ "pid":12345, "tid":3, "ts":1718093442335466, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-filemap.c" }}
  2084. ,{ "pid":12345, "tid":3, "ts":1718093442335465, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-filemap.c" }}
  2085. ,{ "pid":12345, "tid":3, "ts":1718093442335525, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2086. ,{ "pid":12345, "tid":3, "ts":1718093442335588, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-embed.h" }}
  2087. ,{ "pid":12345, "tid":3, "ts":1718093442335586, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-embed.h" }}
  2088. ,{ "pid":12345, "tid":3, "ts":1718093442335642, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2089. ,{ "pid":12345, "tid":3, "ts":1718093442335744, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-windows-internals.h" }}
  2090. ,{ "pid":12345, "tid":3, "ts":1718093442335742, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-windows-internals.h" }}
  2091. ,{ "pid":12345, "tid":3, "ts":1718093442335821, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2092. ,{ "pid":12345, "tid":3, "ts":1718093442335897, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-counters.h" }}
  2093. ,{ "pid":12345, "tid":3, "ts":1718093442335896, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-counters.h" }}
  2094. ,{ "pid":12345, "tid":3, "ts":1718093442335962, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2095. ,{ "pid":12345, "tid":3, "ts":1718093442336043, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-conc-hashtable.h" }}
  2096. ,{ "pid":12345, "tid":3, "ts":1718093442336042, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-conc-hashtable.h" }}
  2097. ,{ "pid":12345, "tid":3, "ts":1718093442336120, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2098. ,{ "pid":12345, "tid":3, "ts":1718093442336257, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/memfuncs.h" }}
  2099. ,{ "pid":12345, "tid":3, "ts":1718093442336255, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/memfuncs.h" }}
  2100. ,{ "pid":12345, "tid":3, "ts":1718093442336334, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2101. ,{ "pid":12345, "tid":3, "ts":1718093442336400, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support-arm64.c" }}
  2102. ,{ "pid":12345, "tid":3, "ts":1718093442336399, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support-arm64.c" }}
  2103. ,{ "pid":12345, "tid":3, "ts":1718093442336480, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2104. ,{ "pid":12345, "tid":3, "ts":1718093442336628, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/json.c" }}
  2105. ,{ "pid":12345, "tid":3, "ts":1718093442336627, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/json.c" }}
  2106. ,{ "pid":12345, "tid":3, "ts":1718093442336720, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2107. ,{ "pid":12345, "tid":3, "ts":1718093442336844, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/freebsd-elf64.h" }}
  2108. ,{ "pid":12345, "tid":3, "ts":1718093442336842, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/freebsd-elf64.h" }}
  2109. ,{ "pid":12345, "tid":3, "ts":1718093442336946, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2110. ,{ "pid":12345, "tid":3, "ts":1718093442337039, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/dlmalloc.c" }}
  2111. ,{ "pid":12345, "tid":3, "ts":1718093442337037, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/dlmalloc.c" }}
  2112. ,{ "pid":12345, "tid":3, "ts":1718093442337121, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2113. ,{ "pid":12345, "tid":3, "ts":1718093442337203, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-workers.h" }}
  2114. ,{ "pid":12345, "tid":3, "ts":1718093442337253, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2115. ,{ "pid":12345, "tid":3, "ts":1718093442337322, "dur":63, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-workers.h" }}
  2116. ,{ "pid":12345, "tid":3, "ts":1718093442337433, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2117. ,{ "pid":12345, "tid":3, "ts":1718093442337559, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-protocol.c" }}
  2118. ,{ "pid":12345, "tid":3, "ts":1718093442337558, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-protocol.c" }}
  2119. ,{ "pid":12345, "tid":3, "ts":1718093442337627, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2120. ,{ "pid":12345, "tid":3, "ts":1718093442337700, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pinning-stats.c" }}
  2121. ,{ "pid":12345, "tid":3, "ts":1718093442337698, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pinning-stats.c" }}
  2122. ,{ "pid":12345, "tid":3, "ts":1718093442337764, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2123. ,{ "pid":12345, "tid":3, "ts":1718093442337831, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-marksweep.c" }}
  2124. ,{ "pid":12345, "tid":3, "ts":1718093442337830, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-marksweep.c" }}
  2125. ,{ "pid":12345, "tid":3, "ts":1718093442337908, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2126. ,{ "pid":12345, "tid":3, "ts":1718093442338047, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-internal.c" }}
  2127. ,{ "pid":12345, "tid":3, "ts":1718093442338046, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-internal.c" }}
  2128. ,{ "pid":12345, "tid":3, "ts":1718093442338122, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2129. ,{ "pid":12345, "tid":3, "ts":1718093442338268, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gc.h" }}
  2130. ,{ "pid":12345, "tid":3, "ts":1718093442338267, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gc.h" }}
  2131. ,{ "pid":12345, "tid":3, "ts":1718093442338336, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2132. ,{ "pid":12345, "tid":3, "ts":1718093442338416, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-copy-object.h" }}
  2133. ,{ "pid":12345, "tid":3, "ts":1718093442338414, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-copy-object.h" }}
  2134. ,{ "pid":12345, "tid":3, "ts":1718093442338497, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2135. ,{ "pid":12345, "tid":3, "ts":1718093442338595, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-archdep.h" }}
  2136. ,{ "pid":12345, "tid":3, "ts":1718093442338593, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-archdep.h" }}
  2137. ,{ "pid":12345, "tid":3, "ts":1718093442338711, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-state-machine.h" }}
  2138. ,{ "pid":12345, "tid":3, "ts":1718093442338709, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-state-machine.h" }}
  2139. ,{ "pid":12345, "tid":3, "ts":1718093442338833, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2140. ,{ "pid":12345, "tid":3, "ts":1718093442338971, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket.h" }}
  2141. ,{ "pid":12345, "tid":3, "ts":1718093442338969, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket.h" }}
  2142. ,{ "pid":12345, "tid":3, "ts":1718093442339097, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2143. ,{ "pid":12345, "tid":3, "ts":1718093442339209, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32semaphore-win32.c" }}
  2144. ,{ "pid":12345, "tid":3, "ts":1718093442339189, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32semaphore-win32.c" }}
  2145. ,{ "pid":12345, "tid":3, "ts":1718093442339322, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2146. ,{ "pid":12345, "tid":3, "ts":1718093442339499, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-unix-osx.c" }}
  2147. ,{ "pid":12345, "tid":3, "ts":1718093442339497, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-unix-osx.c" }}
  2148. ,{ "pid":12345, "tid":3, "ts":1718093442339564, "dur":164, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2149. ,{ "pid":12345, "tid":3, "ts":1718093442339738, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32mutex-unix.c" }}
  2150. ,{ "pid":12345, "tid":3, "ts":1718093442339737, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32mutex-unix.c" }}
  2151. ,{ "pid":12345, "tid":3, "ts":1718093442339833, "dur":204, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2152. ,{ "pid":12345, "tid":3, "ts":1718093442340066, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file.c" }}
  2153. ,{ "pid":12345, "tid":3, "ts":1718093442340064, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file.c" }}
  2154. ,{ "pid":12345, "tid":3, "ts":1718093442340160, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2155. ,{ "pid":12345, "tid":3, "ts":1718093442340348, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-internals.h" }}
  2156. ,{ "pid":12345, "tid":3, "ts":1718093442340346, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-internals.h" }}
  2157. ,{ "pid":12345, "tid":3, "ts":1718093442340430, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2158. ,{ "pid":12345, "tid":3, "ts":1718093442340549, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2159. ,{ "pid":12345, "tid":3, "ts":1718093442340613, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/unity-liveness.c" }}
  2160. ,{ "pid":12345, "tid":3, "ts":1718093442340612, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/unity-liveness.c" }}
  2161. ,{ "pid":12345, "tid":3, "ts":1718093442340706, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2162. ,{ "pid":12345, "tid":3, "ts":1718093442340845, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool.h" }}
  2163. ,{ "pid":12345, "tid":3, "ts":1718093442340844, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool.h" }}
  2164. ,{ "pid":12345, "tid":3, "ts":1718093442340967, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2165. ,{ "pid":12345, "tid":3, "ts":1718093442341075, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sysmath.h" }}
  2166. ,{ "pid":12345, "tid":3, "ts":1718093442341072, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sysmath.h" }}
  2167. ,{ "pid":12345, "tid":3, "ts":1718093442341143, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2168. ,{ "pid":12345, "tid":3, "ts":1718093442341278, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sre-internals.h" }}
  2169. ,{ "pid":12345, "tid":3, "ts":1718093442341276, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sre-internals.h" }}
  2170. ,{ "pid":12345, "tid":3, "ts":1718093442341350, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2171. ,{ "pid":12345, "tid":3, "ts":1718093442341434, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-old-bridge.c" }}
  2172. ,{ "pid":12345, "tid":3, "ts":1718093442341432, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-old-bridge.c" }}
  2173. ,{ "pid":12345, "tid":3, "ts":1718093442341501, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2174. ,{ "pid":12345, "tid":3, "ts":1718093442341572, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-bridge.h" }}
  2175. ,{ "pid":12345, "tid":3, "ts":1718093442341571, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-bridge.h" }}
  2176. ,{ "pid":12345, "tid":3, "ts":1718093442341690, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security.h" }}
  2177. ,{ "pid":12345, "tid":3, "ts":1718093442341688, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security.h" }}
  2178. ,{ "pid":12345, "tid":3, "ts":1718093442341746, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2179. ,{ "pid":12345, "tid":3, "ts":1718093442341834, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/row-indexes.h" }}
  2180. ,{ "pid":12345, "tid":3, "ts":1718093442341833, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/row-indexes.h" }}
  2181. ,{ "pid":12345, "tid":3, "ts":1718093442341913, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2182. ,{ "pid":12345, "tid":3, "ts":1718093442342002, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/reflection-cache.h" }}
  2183. ,{ "pid":12345, "tid":3, "ts":1718093442342001, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/reflection-cache.h" }}
  2184. ,{ "pid":12345, "tid":3, "ts":1718093442342075, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2185. ,{ "pid":12345, "tid":3, "ts":1718093442342167, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler.c" }}
  2186. ,{ "pid":12345, "tid":3, "ts":1718093442342166, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler.c" }}
  2187. ,{ "pid":12345, "tid":3, "ts":1718093442342249, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2188. ,{ "pid":12345, "tid":3, "ts":1718093442342335, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/private/threadpool-io-epoll.c" }}
  2189. ,{ "pid":12345, "tid":3, "ts":1718093442342325, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/private/threadpool-io-epoll.c" }}
  2190. ,{ "pid":12345, "tid":3, "ts":1718093442342431, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2191. ,{ "pid":12345, "tid":3, "ts":1718093442342506, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object-internals.h" }}
  2192. ,{ "pid":12345, "tid":3, "ts":1718093442342505, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object-internals.h" }}
  2193. ,{ "pid":12345, "tid":3, "ts":1718093442342573, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2194. ,{ "pid":12345, "tid":3, "ts":1718093442342645, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/null-gc-handles.h" }}
  2195. ,{ "pid":12345, "tid":3, "ts":1718093442342644, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/null-gc-handles.h" }}
  2196. ,{ "pid":12345, "tid":3, "ts":1718093442342707, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2197. ,{ "pid":12345, "tid":3, "ts":1718093442342802, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-route.c" }}
  2198. ,{ "pid":12345, "tid":3, "ts":1718093442342801, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-route.c" }}
  2199. ,{ "pid":12345, "tid":3, "ts":1718093442342875, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2200. ,{ "pid":12345, "tid":3, "ts":1718093442342970, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-mlist.c" }}
  2201. ,{ "pid":12345, "tid":3, "ts":1718093442342969, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-mlist.c" }}
  2202. ,{ "pid":12345, "tid":3, "ts":1718093442343058, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2203. ,{ "pid":12345, "tid":3, "ts":1718093442343141, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-endian.c" }}
  2204. ,{ "pid":12345, "tid":3, "ts":1718093442343139, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-endian.c" }}
  2205. ,{ "pid":12345, "tid":3, "ts":1718093442343236, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2206. ,{ "pid":12345, "tid":3, "ts":1718093442343315, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-conc-hash.h" }}
  2207. ,{ "pid":12345, "tid":3, "ts":1718093442343313, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-conc-hash.h" }}
  2208. ,{ "pid":12345, "tid":3, "ts":1718093442343377, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2209. ,{ "pid":12345, "tid":3, "ts":1718093442343459, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/method-builder.h" }}
  2210. ,{ "pid":12345, "tid":3, "ts":1718093442343458, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/method-builder.h" }}
  2211. ,{ "pid":12345, "tid":3, "ts":1718093442343538, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2212. ,{ "pid":12345, "tid":3, "ts":1718093442343618, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata-cross-helpers.c" }}
  2213. ,{ "pid":12345, "tid":3, "ts":1718093442343616, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata-cross-helpers.c" }}
  2214. ,{ "pid":12345, "tid":3, "ts":1718093442343688, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2215. ,{ "pid":12345, "tid":3, "ts":1718093442343762, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal-windows.c" }}
  2216. ,{ "pid":12345, "tid":3, "ts":1718093442343760, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal-windows.c" }}
  2217. ,{ "pid":12345, "tid":3, "ts":1718093442343831, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2218. ,{ "pid":12345, "tid":3, "ts":1718093442343895, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/locales.c" }}
  2219. ,{ "pid":12345, "tid":3, "ts":1718093442343894, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/locales.c" }}
  2220. ,{ "pid":12345, "tid":3, "ts":1718093442343966, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2221. ,{ "pid":12345, "tid":3, "ts":1718093442344083, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/image.h" }}
  2222. ,{ "pid":12345, "tid":3, "ts":1718093442344081, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/image.h" }}
  2223. ,{ "pid":12345, "tid":3, "ts":1718093442344142, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2224. ,{ "pid":12345, "tid":3, "ts":1718093442344244, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall-windows-internals.h" }}
  2225. ,{ "pid":12345, "tid":3, "ts":1718093442344243, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall-windows-internals.h" }}
  2226. ,{ "pid":12345, "tid":3, "ts":1718093442344326, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2227. ,{ "pid":12345, "tid":3, "ts":1718093442344428, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/gc.c" }}
  2228. ,{ "pid":12345, "tid":3, "ts":1718093442344427, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/gc.c" }}
  2229. ,{ "pid":12345, "tid":3, "ts":1718093442344513, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2230. ,{ "pid":12345, "tid":3, "ts":1718093442344584, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/file-mmap-posix.c" }}
  2231. ,{ "pid":12345, "tid":3, "ts":1718093442344583, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/file-mmap-posix.c" }}
  2232. ,{ "pid":12345, "tid":3, "ts":1718093442344661, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2233. ,{ "pid":12345, "tid":3, "ts":1718093442344747, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/environment.h" }}
  2234. ,{ "pid":12345, "tid":3, "ts":1718093442344746, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/environment.h" }}
  2235. ,{ "pid":12345, "tid":3, "ts":1718093442344839, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/dynamic-image.c" }}
  2236. ,{ "pid":12345, "tid":3, "ts":1718093442344838, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/dynamic-image.c" }}
  2237. ,{ "pid":12345, "tid":3, "ts":1718093442344915, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2238. ,{ "pid":12345, "tid":3, "ts":1718093442344979, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-mono-symfile.h" }}
  2239. ,{ "pid":12345, "tid":3, "ts":1718093442344977, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-mono-symfile.h" }}
  2240. ,{ "pid":12345, "tid":3, "ts":1718093442345041, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2241. ,{ "pid":12345, "tid":3, "ts":1718093442345116, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-helpers.c" }}
  2242. ,{ "pid":12345, "tid":3, "ts":1718093442345115, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-helpers.c" }}
  2243. ,{ "pid":12345, "tid":3, "ts":1718093442345184, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2244. ,{ "pid":12345, "tid":3, "ts":1718093442345271, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/coree.c" }}
  2245. ,{ "pid":12345, "tid":3, "ts":1718093442345269, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/coree.c" }}
  2246. ,{ "pid":12345, "tid":3, "ts":1718093442345461, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-internals.h" }}
  2247. ,{ "pid":12345, "tid":3, "ts":1718093442345452, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-internals.h" }}
  2248. ,{ "pid":12345, "tid":3, "ts":1718093442345513, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2249. ,{ "pid":12345, "tid":3, "ts":1718093442345635, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/blob.h" }}
  2250. ,{ "pid":12345, "tid":3, "ts":1718093442345635, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/blob.h" }}
  2251. ,{ "pid":12345, "tid":3, "ts":1718093442345710, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2252. ,{ "pid":12345, "tid":3, "ts":1718093442345781, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/appdomain.h" }}
  2253. ,{ "pid":12345, "tid":3, "ts":1718093442345780, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/appdomain.h" }}
  2254. ,{ "pid":12345, "tid":3, "ts":1718093442345837, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2255. ,{ "pid":12345, "tid":3, "ts":1718093442345931, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gutf8.c" }}
  2256. ,{ "pid":12345, "tid":3, "ts":1718093442345928, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gutf8.c" }}
  2257. ,{ "pid":12345, "tid":3, "ts":1718093442346102, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2258. ,{ "pid":12345, "tid":3, "ts":1718093442346165, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gqsort.c" }}
  2259. ,{ "pid":12345, "tid":3, "ts":1718093442346163, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gqsort.c" }}
  2260. ,{ "pid":12345, "tid":3, "ts":1718093442346229, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2261. ,{ "pid":12345, "tid":3, "ts":1718093442346355, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2262. ,{ "pid":12345, "tid":3, "ts":1718093442346430, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/ghashtable.c" }}
  2263. ,{ "pid":12345, "tid":3, "ts":1718093442346428, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/ghashtable.c" }}
  2264. ,{ "pid":12345, "tid":3, "ts":1718093442346497, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2265. ,{ "pid":12345, "tid":3, "ts":1718093442346555, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gbytearray.c" }}
  2266. ,{ "pid":12345, "tid":3, "ts":1718093442346554, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gbytearray.c" }}
  2267. ,{ "pid":12345, "tid":3, "ts":1718093442346613, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2268. ,{ "pid":12345, "tid":3, "ts":1718093442346690, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm64/arm64-codegen.h" }}
  2269. ,{ "pid":12345, "tid":3, "ts":1718093442346687, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm64/arm64-codegen.h" }}
  2270. ,{ "pid":12345, "tid":3, "ts":1718093442346743, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2271. ,{ "pid":12345, "tid":3, "ts":1718093442346806, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/type_traits.h" }}
  2272. ,{ "pid":12345, "tid":3, "ts":1718093442346804, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/type_traits.h" }}
  2273. ,{ "pid":12345, "tid":3, "ts":1718093442346875, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2274. ,{ "pid":12345, "tid":3, "ts":1718093442346958, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/internal/hashtable-common.h" }}
  2275. ,{ "pid":12345, "tid":3, "ts":1718093442346955, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/hashtable-common.h" }}
  2276. ,{ "pid":12345, "tid":3, "ts":1718093442347011, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2277. ,{ "pid":12345, "tid":3, "ts":1718093442347094, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/win32_threads.c" }}
  2278. ,{ "pid":12345, "tid":3, "ts":1718093442347085, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/win32_threads.c" }}
  2279. ,{ "pid":12345, "tid":3, "ts":1718093442347162, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2280. ,{ "pid":12345, "tid":3, "ts":1718093442347219, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tools/if_mach.c" }}
  2281. ,{ "pid":12345, "tid":3, "ts":1718093442347218, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tools/if_mach.c" }}
  2282. ,{ "pid":12345, "tid":3, "ts":1718093442347270, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2283. ,{ "pid":12345, "tid":3, "ts":1718093442347377, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2284. ,{ "pid":12345, "tid":3, "ts":1718093442347437, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/staticrootslib.c" }}
  2285. ,{ "pid":12345, "tid":3, "ts":1718093442347436, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/staticrootslib.c" }}
  2286. ,{ "pid":12345, "tid":3, "ts":1718093442347503, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2287. ,{ "pid":12345, "tid":3, "ts":1718093442347633, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2288. ,{ "pid":12345, "tid":3, "ts":1718093442347710, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/ptr_chck.c" }}
  2289. ,{ "pid":12345, "tid":3, "ts":1718093442347709, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/ptr_chck.c" }}
  2290. ,{ "pid":12345, "tid":3, "ts":1718093442347778, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2291. ,{ "pid":12345, "tid":3, "ts":1718093442347863, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/misc.c" }}
  2292. ,{ "pid":12345, "tid":3, "ts":1718093442347914, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2293. ,{ "pid":12345, "tid":3, "ts":1718093442348018, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/mach_dep.c" }}
  2294. ,{ "pid":12345, "tid":3, "ts":1718093442348016, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/mach_dep.c" }}
  2295. ,{ "pid":12345, "tid":3, "ts":1718093442348079, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2296. ,{ "pid":12345, "tid":3, "ts":1718093442348147, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/read_ordered.h" }}
  2297. ,{ "pid":12345, "tid":3, "ts":1718093442348145, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/read_ordered.h" }}
  2298. ,{ "pid":12345, "tid":3, "ts":1718093442348210, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2299. ,{ "pid":12345, "tid":3, "ts":1718093442348340, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2300. ,{ "pid":12345, "tid":3, "ts":1718093442348514, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_acquire_release_volatile.h" }}
  2301. ,{ "pid":12345, "tid":3, "ts":1718093442348512, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_acquire_release_volatile.h" }}
  2302. ,{ "pid":12345, "tid":3, "ts":1718093442348583, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2303. ,{ "pid":12345, "tid":3, "ts":1718093442348669, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/hpc/ia64.h" }}
  2304. ,{ "pid":12345, "tid":3, "ts":1718093442348667, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/hpc/ia64.h" }}
  2305. ,{ "pid":12345, "tid":3, "ts":1718093442348747, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2306. ,{ "pid":12345, "tid":3, "ts":1718093442348826, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/powerpc.h" }}
  2307. ,{ "pid":12345, "tid":3, "ts":1718093442348815, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/powerpc.h" }}
  2308. ,{ "pid":12345, "tid":3, "ts":1718093442348894, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2309. ,{ "pid":12345, "tid":3, "ts":1718093442348973, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic.h" }}
  2310. ,{ "pid":12345, "tid":3, "ts":1718093442348971, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic.h" }}
  2311. ,{ "pid":12345, "tid":3, "ts":1718093442349043, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2312. ,{ "pid":12345, "tid":3, "ts":1718093442349154, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/alpha.h" }}
  2313. ,{ "pid":12345, "tid":3, "ts":1718093442349153, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/alpha.h" }}
  2314. ,{ "pid":12345, "tid":3, "ts":1718093442349224, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2315. ,{ "pid":12345, "tid":3, "ts":1718093442349320, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_atomic_load_store.h" }}
  2316. ,{ "pid":12345, "tid":3, "ts":1718093442349310, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_atomic_load_store.h" }}
  2317. ,{ "pid":12345, "tid":3, "ts":1718093442349383, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2318. ,{ "pid":12345, "tid":3, "ts":1718093442349464, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops.h" }}
  2319. ,{ "pid":12345, "tid":3, "ts":1718093442349462, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops.h" }}
  2320. ,{ "pid":12345, "tid":3, "ts":1718093442349518, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2321. ,{ "pid":12345, "tid":3, "ts":1718093442349631, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2322. ,{ "pid":12345, "tid":3, "ts":1718093442349688, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/msvc_dbg.h" }}
  2323. ,{ "pid":12345, "tid":3, "ts":1718093442349686, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/msvc_dbg.h" }}
  2324. ,{ "pid":12345, "tid":3, "ts":1718093442349768, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2325. ,{ "pid":12345, "tid":3, "ts":1718093442349885, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2326. ,{ "pid":12345, "tid":3, "ts":1718093442349984, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/javaxfc.h" }}
  2327. ,{ "pid":12345, "tid":3, "ts":1718093442349981, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/javaxfc.h" }}
  2328. ,{ "pid":12345, "tid":3, "ts":1718093442350061, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2329. ,{ "pid":12345, "tid":3, "ts":1718093442350153, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_pthread_redirects.h" }}
  2330. ,{ "pid":12345, "tid":3, "ts":1718093442350150, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_pthread_redirects.h" }}
  2331. ,{ "pid":12345, "tid":3, "ts":1718093442350225, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2332. ,{ "pid":12345, "tid":3, "ts":1718093442350364, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2333. ,{ "pid":12345, "tid":3, "ts":1718093442350436, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/extra/gc.h" }}
  2334. ,{ "pid":12345, "tid":3, "ts":1718093442350435, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/extra/gc.h" }}
  2335. ,{ "pid":12345, "tid":3, "ts":1718093442350498, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2336. ,{ "pid":12345, "tid":3, "ts":1718093442350654, "dur":139, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.iOS-FeaturesChecked.txt" }}
  2337. ,{ "pid":12345, "tid":3, "ts":1718093442351040, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.IL2CPP.Api.dll" }}
  2338. ,{ "pid":12345, "tid":3, "ts":1718093442350834, "dur":278, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.TextCoreTextEngineModule-FeaturesChecked.txt" }}
  2339. ,{ "pid":12345, "tid":3, "ts":1718093442351389, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.Data.dll" }}
  2340. ,{ "pid":12345, "tid":3, "ts":1718093442351444, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.Data.pdb" }}
  2341. ,{ "pid":12345, "tid":3, "ts":1718093442351150, "dur":566, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.AppleCore-FeaturesChecked.txt" }}
  2342. ,{ "pid":12345, "tid":3, "ts":1718093442351735, "dur":250, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Configuration-FeaturesChecked.txt" }}
  2343. ,{ "pid":12345, "tid":3, "ts":1718093442352031, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Newtonsoft.Json-FeaturesChecked.txt" }}
  2344. ,{ "pid":12345, "tid":3, "ts":1718093442352217, "dur":280, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System-FeaturesChecked.txt" }}
  2345. ,{ "pid":12345, "tid":3, "ts":1718093442352552, "dur":301, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.InternalAPIEngineBridge.001-FeaturesChecked.txt" }}
  2346. ,{ "pid":12345, "tid":3, "ts":1718093442352905, "dur":254, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/AppleAuth-FeaturesChecked.txt" }}
  2347. ,{ "pid":12345, "tid":3, "ts":1718093442353160, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2348. ,{ "pid":12345, "tid":3, "ts":1718093442353251, "dur":217, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.ScreenCaptureModule-FeaturesChecked.txt" }}
  2349. ,{ "pid":12345, "tid":3, "ts":1718093442353469, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2350. ,{ "pid":12345, "tid":3, "ts":1718093442353605, "dur":320, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Threading-FeaturesChecked.txt" }}
  2351. ,{ "pid":12345, "tid":3, "ts":1718093442353974, "dur":356, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.2D.Animation.Runtime-FeaturesChecked.txt" }}
  2352. ,{ "pid":12345, "tid":3, "ts":1718093442354331, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2353. ,{ "pid":12345, "tid":3, "ts":1718093442354648, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.dll" }}
  2354. ,{ "pid":12345, "tid":3, "ts":1718093442354883, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.Options.dll" }}
  2355. ,{ "pid":12345, "tid":3, "ts":1718093442354404, "dur":539, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Common-FeaturesChecked.txt" }}
  2356. ,{ "pid":12345, "tid":3, "ts":1718093442354943, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2357. ,{ "pid":12345, "tid":3, "ts":1718093442355051, "dur":289, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UIElementsModule-FeaturesChecked.txt" }}
  2358. ,{ "pid":12345, "tid":3, "ts":1718093442355401, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.BuildTools.dll" }}
  2359. ,{ "pid":12345, "tid":3, "ts":1718093442355677, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.Data.pdb" }}
  2360. ,{ "pid":12345, "tid":3, "ts":1718093442355394, "dur":503, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Purchasing.Common-FeaturesChecked.txt" }}
  2361. ,{ "pid":12345, "tid":3, "ts":1718093442355982, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/cord.h" }}
  2362. ,{ "pid":12345, "tid":3, "ts":1718093442356033, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2363. ,{ "pid":12345, "tid":3, "ts":1718093442356168, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2364. ,{ "pid":12345, "tid":3, "ts":1718093442356248, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/fnlz_mlc.c" }}
  2365. ,{ "pid":12345, "tid":3, "ts":1718093442356247, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/fnlz_mlc.c" }}
  2366. ,{ "pid":12345, "tid":3, "ts":1718093442356308, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2367. ,{ "pid":12345, "tid":3, "ts":1718093442356555, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/Mac_files/datastart.c" }}
  2368. ,{ "pid":12345, "tid":3, "ts":1718093442356553, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/Mac_files/datastart.c" }}
  2369. ,{ "pid":12345, "tid":3, "ts":1718093442356611, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2370. ,{ "pid":12345, "tid":3, "ts":1718093442356712, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/gc.c" }}
  2371. ,{ "pid":12345, "tid":3, "ts":1718093442356711, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/gc.c" }}
  2372. ,{ "pid":12345, "tid":3, "ts":1718093442356778, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2373. ,{ "pid":12345, "tid":3, "ts":1718093442356846, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/dbg_mlc.c" }}
  2374. ,{ "pid":12345, "tid":3, "ts":1718093442356844, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/dbg_mlc.c" }}
  2375. ,{ "pid":12345, "tid":3, "ts":1718093442356915, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2376. ,{ "pid":12345, "tid":3, "ts":1718093442356984, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/tests/de_cmds.h" }}
  2377. ,{ "pid":12345, "tid":3, "ts":1718093442356982, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/tests/de_cmds.h" }}
  2378. ,{ "pid":12345, "tid":3, "ts":1718093442357052, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2379. ,{ "pid":12345, "tid":3, "ts":1718093442357181, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2380. ,{ "pid":12345, "tid":3, "ts":1718093442357243, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/backgraph.c" }}
  2381. ,{ "pid":12345, "tid":3, "ts":1718093442357242, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/backgraph.c" }}
  2382. ,{ "pid":12345, "tid":3, "ts":1718093442357315, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2383. ,{ "pid":12345, "tid":3, "ts":1718093442357402, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WindowsGames/Include/C/Baselib_ErrorState.inl.h" }}
  2384. ,{ "pid":12345, "tid":3, "ts":1718093442357462, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2385. ,{ "pid":12345, "tid":3, "ts":1718093442357540, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/AsyncPluginsFromLinker/lib_burst_generated.cpp" }}
  2386. ,{ "pid":12345, "tid":3, "ts":1718093442357539, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/lib_burst_generated.cpp" }}
  2387. ,{ "pid":12345, "tid":3, "ts":1718093442357609, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2388. ,{ "pid":12345, "tid":3, "ts":1718093442357734, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WebGL/Include/C/Baselib_ErrorState.inl.h" }}
  2389. ,{ "pid":12345, "tid":3, "ts":1718093442357733, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WebGL/Include/C/Baselib_ErrorState.inl.h" }}
  2390. ,{ "pid":12345, "tid":3, "ts":1718093442357891, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2391. ,{ "pid":12345, "tid":3, "ts":1718093442358062, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_ErrorState.inl.h" }}
  2392. ,{ "pid":12345, "tid":3, "ts":1718093442358060, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_ErrorState.inl.h" }}
  2393. ,{ "pid":12345, "tid":3, "ts":1718093442358151, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2394. ,{ "pid":12345, "tid":3, "ts":1718093442358288, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2395. ,{ "pid":12345, "tid":3, "ts":1718093442358349, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/OSX/Include/C/Baselib_ErrorState.inl.h" }}
  2396. ,{ "pid":12345, "tid":3, "ts":1718093442358347, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/OSX/Include/C/Baselib_ErrorState.inl.h" }}
  2397. ,{ "pid":12345, "tid":3, "ts":1718093442358425, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2398. ,{ "pid":12345, "tid":3, "ts":1718093442358518, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Linux/Include/BaselibPlatformSpecificEnvironment.h" }}
  2399. ,{ "pid":12345, "tid":3, "ts":1718093442358516, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Linux/Include/BaselibPlatformSpecificEnvironment.h" }}
  2400. ,{ "pid":12345, "tid":3, "ts":1718093442358581, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2401. ,{ "pid":12345, "tid":3, "ts":1718093442358667, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  2402. ,{ "pid":12345, "tid":3, "ts":1718093442358663, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  2403. ,{ "pid":12345, "tid":3, "ts":1718093442358745, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2404. ,{ "pid":12345, "tid":3, "ts":1718093442358846, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Android/Include/C/Baselib_FileIO.inl.h" }}
  2405. ,{ "pid":12345, "tid":3, "ts":1718093442358843, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Android/Include/C/Baselib_FileIO.inl.h" }}
  2406. ,{ "pid":12345, "tid":3, "ts":1718093442358909, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2407. ,{ "pid":12345, "tid":3, "ts":1718093442358986, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/PostExternalInclude.h" }}
  2408. ,{ "pid":12345, "tid":3, "ts":1718093442358984, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/PostExternalInclude.h" }}
  2409. ,{ "pid":12345, "tid":3, "ts":1718093442359119, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2410. ,{ "pid":12345, "tid":3, "ts":1718093442359208, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/PlatformDetection.h" }}
  2411. ,{ "pid":12345, "tid":3, "ts":1718093442359206, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/PlatformDetection.h" }}
  2412. ,{ "pid":12345, "tid":3, "ts":1718093442359275, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2413. ,{ "pid":12345, "tid":3, "ts":1718093442359395, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2414. ,{ "pid":12345, "tid":3, "ts":1718093442359527, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2415. ,{ "pid":12345, "tid":3, "ts":1718093442359586, "dur":134, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Time.h" }}
  2416. ,{ "pid":12345, "tid":3, "ts":1718093442359584, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Time.h" }}
  2417. ,{ "pid":12345, "tid":3, "ts":1718093442359721, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2418. ,{ "pid":12345, "tid":3, "ts":1718093442359805, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/page_allocator.h" }}
  2419. ,{ "pid":12345, "tid":3, "ts":1718093442359803, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/page_allocator.h" }}
  2420. ,{ "pid":12345, "tid":3, "ts":1718093442359887, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2421. ,{ "pid":12345, "tid":3, "ts":1718093442359978, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpmc_node.h" }}
  2422. ,{ "pid":12345, "tid":3, "ts":1718093442359977, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpmc_node.h" }}
  2423. ,{ "pid":12345, "tid":3, "ts":1718093442360055, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2424. ,{ "pid":12345, "tid":3, "ts":1718093442360125, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/heap_allocator.inl.h" }}
  2425. ,{ "pid":12345, "tid":3, "ts":1718093442360123, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/heap_allocator.inl.h" }}
  2426. ,{ "pid":12345, "tid":3, "ts":1718093442360188, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2427. ,{ "pid":12345, "tid":3, "ts":1718093442360281, "dur":146, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/Compiler/ClangOrGcc/AlgorithmClangOrGcc.inl.h" }}
  2428. ,{ "pid":12345, "tid":3, "ts":1718093442360279, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/Compiler/ClangOrGcc/AlgorithmClangOrGcc.inl.h" }}
  2429. ,{ "pid":12345, "tid":3, "ts":1718093442360444, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2430. ,{ "pid":12345, "tid":3, "ts":1718093442360558, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/EventSemaphore.h" }}
  2431. ,{ "pid":12345, "tid":3, "ts":1718093442360557, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/EventSemaphore.h" }}
  2432. ,{ "pid":12345, "tid":3, "ts":1718093442360614, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2433. ,{ "pid":12345, "tid":3, "ts":1718093442360743, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/BinarySemaphore.h" }}
  2434. ,{ "pid":12345, "tid":3, "ts":1718093442360742, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/BinarySemaphore.h" }}
  2435. ,{ "pid":12345, "tid":3, "ts":1718093442360869, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2436. ,{ "pid":12345, "tid":3, "ts":1718093442360990, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_MsvcIntrinsics.h" }}
  2437. ,{ "pid":12345, "tid":3, "ts":1718093442360987, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_MsvcIntrinsics.h" }}
  2438. ,{ "pid":12345, "tid":3, "ts":1718093442361077, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2439. ,{ "pid":12345, "tid":3, "ts":1718093442361161, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_Semaphore_FutexBased.inl.h" }}
  2440. ,{ "pid":12345, "tid":3, "ts":1718093442361159, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_Semaphore_FutexBased.inl.h" }}
  2441. ,{ "pid":12345, "tid":3, "ts":1718093442361243, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2442. ,{ "pid":12345, "tid":3, "ts":1718093442361325, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_EventSemaphore_SemaphoreBased.inl.h" }}
  2443. ,{ "pid":12345, "tid":3, "ts":1718093442361324, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_EventSemaphore_SemaphoreBased.inl.h" }}
  2444. ,{ "pid":12345, "tid":3, "ts":1718093442361400, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2445. ,{ "pid":12345, "tid":3, "ts":1718093442361477, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_WakeupFallbackStrategy.h" }}
  2446. ,{ "pid":12345, "tid":3, "ts":1718093442361475, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_WakeupFallbackStrategy.h" }}
  2447. ,{ "pid":12345, "tid":3, "ts":1718093442361568, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2448. ,{ "pid":12345, "tid":3, "ts":1718093442361697, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_StaticAssert.h" }}
  2449. ,{ "pid":12345, "tid":3, "ts":1718093442361696, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_StaticAssert.h" }}
  2450. ,{ "pid":12345, "tid":3, "ts":1718093442361763, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2451. ,{ "pid":12345, "tid":3, "ts":1718093442361853, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Process.h" }}
  2452. ,{ "pid":12345, "tid":3, "ts":1718093442361852, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Process.h" }}
  2453. ,{ "pid":12345, "tid":3, "ts":1718093442361904, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2454. ,{ "pid":12345, "tid":3, "ts":1718093442361981, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_EventSemaphore.h" }}
  2455. ,{ "pid":12345, "tid":3, "ts":1718093442361980, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_EventSemaphore.h" }}
  2456. ,{ "pid":12345, "tid":3, "ts":1718093442362063, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2457. ,{ "pid":12345, "tid":3, "ts":1718093442362152, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_CappedSemaphore.h" }}
  2458. ,{ "pid":12345, "tid":3, "ts":1718093442362150, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_CappedSemaphore.h" }}
  2459. ,{ "pid":12345, "tid":3, "ts":1718093442362237, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2460. ,{ "pid":12345, "tid":3, "ts":1718093442362306, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Baselib.h" }}
  2461. ,{ "pid":12345, "tid":3, "ts":1718093442362305, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Baselib.h" }}
  2462. ,{ "pid":12345, "tid":3, "ts":1718093442362381, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2463. ,{ "pid":12345, "tid":3, "ts":1718093442362477, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/UnityLinker.deps.json" }}
  2464. ,{ "pid":12345, "tid":3, "ts":1718093442362476, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker.deps.json" }}
  2465. ,{ "pid":12345, "tid":3, "ts":1718093442362578, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2466. ,{ "pid":12345, "tid":3, "ts":1718093442362646, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Linker.Api.pdb" }}
  2467. ,{ "pid":12345, "tid":3, "ts":1718093442362645, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Linker.Api.pdb" }}
  2468. ,{ "pid":12345, "tid":3, "ts":1718093442362722, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2469. ,{ "pid":12345, "tid":3, "ts":1718093442362810, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Shell.dll" }}
  2470. ,{ "pid":12345, "tid":3, "ts":1718093442362809, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Shell.dll" }}
  2471. ,{ "pid":12345, "tid":3, "ts":1718093442362867, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2472. ,{ "pid":12345, "tid":3, "ts":1718093442362957, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.CompilerServices.dll" }}
  2473. ,{ "pid":12345, "tid":3, "ts":1718093442362955, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.CompilerServices.dll" }}
  2474. ,{ "pid":12345, "tid":3, "ts":1718093442363082, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2475. ,{ "pid":12345, "tid":3, "ts":1718093442363177, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.pdb" }}
  2476. ,{ "pid":12345, "tid":3, "ts":1718093442363175, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.pdb" }}
  2477. ,{ "pid":12345, "tid":3, "ts":1718093442363257, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2478. ,{ "pid":12345, "tid":3, "ts":1718093442363344, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WebGL.pdb" }}
  2479. ,{ "pid":12345, "tid":3, "ts":1718093442363342, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WebGL.pdb" }}
  2480. ,{ "pid":12345, "tid":3, "ts":1718093442363413, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2481. ,{ "pid":12345, "tid":3, "ts":1718093442363517, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.dll" }}
  2482. ,{ "pid":12345, "tid":3, "ts":1718093442363515, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.dll" }}
  2483. ,{ "pid":12345, "tid":3, "ts":1718093442363586, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2484. ,{ "pid":12345, "tid":3, "ts":1718093442363669, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.iOS.pdb" }}
  2485. ,{ "pid":12345, "tid":3, "ts":1718093442363667, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.iOS.pdb" }}
  2486. ,{ "pid":12345, "tid":3, "ts":1718093442363793, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.dll" }}
  2487. ,{ "pid":12345, "tid":3, "ts":1718093442363791, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.dll" }}
  2488. ,{ "pid":12345, "tid":3, "ts":1718093442363873, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2489. ,{ "pid":12345, "tid":3, "ts":1718093442363948, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Api.Output.dll" }}
  2490. ,{ "pid":12345, "tid":3, "ts":1718093442363947, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Api.Output.dll" }}
  2491. ,{ "pid":12345, "tid":3, "ts":1718093442364013, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2492. ,{ "pid":12345, "tid":3, "ts":1718093442364112, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Api.Attributes.pdb" }}
  2493. ,{ "pid":12345, "tid":3, "ts":1718093442364110, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Api.Attributes.pdb" }}
  2494. ,{ "pid":12345, "tid":3, "ts":1718093442364189, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2495. ,{ "pid":12345, "tid":3, "ts":1718093442364278, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.XDocument.dll" }}
  2496. ,{ "pid":12345, "tid":3, "ts":1718093442364277, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.XDocument.dll" }}
  2497. ,{ "pid":12345, "tid":3, "ts":1718093442364344, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2498. ,{ "pid":12345, "tid":3, "ts":1718093442364441, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Web.HttpUtility.dll" }}
  2499. ,{ "pid":12345, "tid":3, "ts":1718093442364438, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Web.HttpUtility.dll" }}
  2500. ,{ "pid":12345, "tid":3, "ts":1718093442364523, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2501. ,{ "pid":12345, "tid":3, "ts":1718093442364625, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.ThreadPool.dll" }}
  2502. ,{ "pid":12345, "tid":3, "ts":1718093442364623, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.ThreadPool.dll" }}
  2503. ,{ "pid":12345, "tid":3, "ts":1718093442364690, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2504. ,{ "pid":12345, "tid":3, "ts":1718093442364778, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Tasks.Dataflow.dll" }}
  2505. ,{ "pid":12345, "tid":3, "ts":1718093442364777, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Tasks.Dataflow.dll" }}
  2506. ,{ "pid":12345, "tid":3, "ts":1718093442364854, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2507. ,{ "pid":12345, "tid":3, "ts":1718093442364935, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Text.Encoding.Extensions.dll" }}
  2508. ,{ "pid":12345, "tid":3, "ts":1718093442364932, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.Encoding.Extensions.dll" }}
  2509. ,{ "pid":12345, "tid":3, "ts":1718093442365020, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2510. ,{ "pid":12345, "tid":3, "ts":1718093442365102, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Principal.Windows.dll" }}
  2511. ,{ "pid":12345, "tid":3, "ts":1718093442365099, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Principal.Windows.dll" }}
  2512. ,{ "pid":12345, "tid":3, "ts":1718093442365171, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2513. ,{ "pid":12345, "tid":3, "ts":1718093442365251, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.Encoding.dll" }}
  2514. ,{ "pid":12345, "tid":3, "ts":1718093442365250, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.Encoding.dll" }}
  2515. ,{ "pid":12345, "tid":3, "ts":1718093442365334, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2516. ,{ "pid":12345, "tid":3, "ts":1718093442365433, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Serialization.Xml.dll" }}
  2517. ,{ "pid":12345, "tid":3, "ts":1718093442365431, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Serialization.Xml.dll" }}
  2518. ,{ "pid":12345, "tid":3, "ts":1718093442365504, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2519. ,{ "pid":12345, "tid":3, "ts":1718093442365577, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Loader.dll" }}
  2520. ,{ "pid":12345, "tid":3, "ts":1718093442365575, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Loader.dll" }}
  2521. ,{ "pid":12345, "tid":3, "ts":1718093442365643, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2522. ,{ "pid":12345, "tid":3, "ts":1718093442365712, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.dll" }}
  2523. ,{ "pid":12345, "tid":3, "ts":1718093442365711, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.dll" }}
  2524. ,{ "pid":12345, "tid":3, "ts":1718093442365783, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2525. ,{ "pid":12345, "tid":3, "ts":1718093442365866, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.TypeExtensions.dll" }}
  2526. ,{ "pid":12345, "tid":3, "ts":1718093442365865, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.TypeExtensions.dll" }}
  2527. ,{ "pid":12345, "tid":3, "ts":1718093442365955, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2528. ,{ "pid":12345, "tid":3, "ts":1718093442366030, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.Emit.dll" }}
  2529. ,{ "pid":12345, "tid":3, "ts":1718093442366029, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Emit.dll" }}
  2530. ,{ "pid":12345, "tid":3, "ts":1718093442366103, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2531. ,{ "pid":12345, "tid":3, "ts":1718093442366178, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Private.DataContractSerialization.dll" }}
  2532. ,{ "pid":12345, "tid":3, "ts":1718093442366177, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Private.DataContractSerialization.dll" }}
  2533. ,{ "pid":12345, "tid":3, "ts":1718093442366248, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2534. ,{ "pid":12345, "tid":3, "ts":1718093442366322, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.WebSockets.Client.dll" }}
  2535. ,{ "pid":12345, "tid":3, "ts":1718093442366319, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.WebSockets.Client.dll" }}
  2536. ,{ "pid":12345, "tid":3, "ts":1718093442366397, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2537. ,{ "pid":12345, "tid":3, "ts":1718093442366487, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Security.dll" }}
  2538. ,{ "pid":12345, "tid":3, "ts":1718093442366486, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Security.dll" }}
  2539. ,{ "pid":12345, "tid":3, "ts":1718093442366578, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2540. ,{ "pid":12345, "tid":3, "ts":1718093442366664, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.NameResolution.dll" }}
  2541. ,{ "pid":12345, "tid":3, "ts":1718093442366662, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.NameResolution.dll" }}
  2542. ,{ "pid":12345, "tid":3, "ts":1718093442366737, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2543. ,{ "pid":12345, "tid":3, "ts":1718093442366818, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Memory.dll" }}
  2544. ,{ "pid":12345, "tid":3, "ts":1718093442366816, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Memory.dll" }}
  2545. ,{ "pid":12345, "tid":3, "ts":1718093442366906, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2546. ,{ "pid":12345, "tid":3, "ts":1718093442366993, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.Pipes.dll" }}
  2547. ,{ "pid":12345, "tid":3, "ts":1718093442366992, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Pipes.dll" }}
  2548. ,{ "pid":12345, "tid":3, "ts":1718093442367074, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2549. ,{ "pid":12345, "tid":3, "ts":1718093442367165, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.FileSystem.DriveInfo.dll" }}
  2550. ,{ "pid":12345, "tid":3, "ts":1718093442367162, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.FileSystem.DriveInfo.dll" }}
  2551. ,{ "pid":12345, "tid":3, "ts":1718093442367259, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2552. ,{ "pid":12345, "tid":3, "ts":1718093442367346, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.Compression.dll" }}
  2553. ,{ "pid":12345, "tid":3, "ts":1718093442367345, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Compression.dll" }}
  2554. ,{ "pid":12345, "tid":3, "ts":1718093442367412, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2555. ,{ "pid":12345, "tid":3, "ts":1718093442367486, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Dynamic.Runtime.dll" }}
  2556. ,{ "pid":12345, "tid":3, "ts":1718093442367484, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Dynamic.Runtime.dll" }}
  2557. ,{ "pid":12345, "tid":3, "ts":1718093442367569, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.TraceSource.dll" }}
  2558. ,{ "pid":12345, "tid":3, "ts":1718093442367568, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.TraceSource.dll" }}
  2559. ,{ "pid":12345, "tid":3, "ts":1718093442367637, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2560. ,{ "pid":12345, "tid":3, "ts":1718093442367716, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.Debug.dll" }}
  2561. ,{ "pid":12345, "tid":3, "ts":1718093442367715, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.Debug.dll" }}
  2562. ,{ "pid":12345, "tid":3, "ts":1718093442367795, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2563. ,{ "pid":12345, "tid":3, "ts":1718093442367880, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Console.dll" }}
  2564. ,{ "pid":12345, "tid":3, "ts":1718093442367878, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Console.dll" }}
  2565. ,{ "pid":12345, "tid":3, "ts":1718093442367952, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2566. ,{ "pid":12345, "tid":3, "ts":1718093442368032, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ComponentModel.DataAnnotations.dll" }}
  2567. ,{ "pid":12345, "tid":3, "ts":1718093442368031, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ComponentModel.DataAnnotations.dll" }}
  2568. ,{ "pid":12345, "tid":3, "ts":1718093442368108, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2569. ,{ "pid":12345, "tid":3, "ts":1718093442368187, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Collections.Concurrent.dll" }}
  2570. ,{ "pid":12345, "tid":3, "ts":1718093442368185, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Collections.Concurrent.dll" }}
  2571. ,{ "pid":12345, "tid":3, "ts":1718093442368272, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2572. ,{ "pid":12345, "tid":3, "ts":1718093442368359, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Newtonsoft.Json.dll" }}
  2573. ,{ "pid":12345, "tid":3, "ts":1718093442368357, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Newtonsoft.Json.dll" }}
  2574. ,{ "pid":12345, "tid":3, "ts":1718093442368415, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2575. ,{ "pid":12345, "tid":3, "ts":1718093442368497, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.Rocks.dll" }}
  2576. ,{ "pid":12345, "tid":3, "ts":1718093442368496, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.Rocks.dll" }}
  2577. ,{ "pid":12345, "tid":3, "ts":1718093442368562, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2578. ,{ "pid":12345, "tid":3, "ts":1718093442368675, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.dll" }}
  2579. ,{ "pid":12345, "tid":3, "ts":1718093442368666, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.dll" }}
  2580. ,{ "pid":12345, "tid":3, "ts":1718093442368734, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2581. ,{ "pid":12345, "tid":3, "ts":1718093442368800, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Microsoft.Bcl.HashCode.dll" }}
  2582. ,{ "pid":12345, "tid":3, "ts":1718093442368798, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.Bcl.HashCode.dll" }}
  2583. ,{ "pid":12345, "tid":3, "ts":1718093442368879, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2584. ,{ "pid":12345, "tid":3, "ts":1718093442368957, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libSystem.Globalization.Native.dylib" }}
  2585. ,{ "pid":12345, "tid":3, "ts":1718093442369040, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2586. ,{ "pid":12345, "tid":3, "ts":1718093442369134, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libcoreclr.dylib" }}
  2587. ,{ "pid":12345, "tid":3, "ts":1718093442369227, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2588. ,{ "pid":12345, "tid":3, "ts":1718093442369307, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/il2cpp.dll" }}
  2589. ,{ "pid":12345, "tid":3, "ts":1718093442369306, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/il2cpp.dll" }}
  2590. ,{ "pid":12345, "tid":3, "ts":1718093442369375, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2591. ,{ "pid":12345, "tid":3, "ts":1718093442369463, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.VisualStudioSolution.pdb" }}
  2592. ,{ "pid":12345, "tid":3, "ts":1718093442369462, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.VisualStudioSolution.pdb" }}
  2593. ,{ "pid":12345, "tid":3, "ts":1718093442369569, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2594. ,{ "pid":12345, "tid":3, "ts":1718093442369639, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Xcode.dll" }}
  2595. ,{ "pid":12345, "tid":3, "ts":1718093442369637, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Xcode.dll" }}
  2596. ,{ "pid":12345, "tid":3, "ts":1718093442369702, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2597. ,{ "pid":12345, "tid":3, "ts":1718093442369786, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.VisionOS.dll" }}
  2598. ,{ "pid":12345, "tid":3, "ts":1718093442369784, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.VisionOS.dll" }}
  2599. ,{ "pid":12345, "tid":3, "ts":1718093442369851, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2600. ,{ "pid":12345, "tid":3, "ts":1718093442369933, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.MacOS.dll" }}
  2601. ,{ "pid":12345, "tid":3, "ts":1718093442369932, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.MacOS.dll" }}
  2602. ,{ "pid":12345, "tid":3, "ts":1718093442370016, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2603. ,{ "pid":12345, "tid":3, "ts":1718093442370096, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Linux.dll" }}
  2604. ,{ "pid":12345, "tid":3, "ts":1718093442370096, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Linux.dll" }}
  2605. ,{ "pid":12345, "tid":3, "ts":1718093442370174, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2606. ,{ "pid":12345, "tid":3, "ts":1718093442370261, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.EmbeddedLinux.pdb" }}
  2607. ,{ "pid":12345, "tid":3, "ts":1718093442370258, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.EmbeddedLinux.pdb" }}
  2608. ,{ "pid":12345, "tid":3, "ts":1718093442370315, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2609. ,{ "pid":12345, "tid":3, "ts":1718093442370391, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.TinyProfiler2.dll" }}
  2610. ,{ "pid":12345, "tid":3, "ts":1718093442370389, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.TinyProfiler2.dll" }}
  2611. ,{ "pid":12345, "tid":3, "ts":1718093442370486, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2612. ,{ "pid":12345, "tid":3, "ts":1718093442370583, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.DotNet.dll" }}
  2613. ,{ "pid":12345, "tid":3, "ts":1718093442370581, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.DotNet.dll" }}
  2614. ,{ "pid":12345, "tid":3, "ts":1718093442370656, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2615. ,{ "pid":12345, "tid":3, "ts":1718093442370754, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.BeeDriver.dll" }}
  2616. ,{ "pid":12345, "tid":3, "ts":1718093442370753, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.BeeDriver.dll" }}
  2617. ,{ "pid":12345, "tid":3, "ts":1718093442370826, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2618. ,{ "pid":12345, "tid":3, "ts":1718093442370884, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.Api.Output.xml" }}
  2619. ,{ "pid":12345, "tid":3, "ts":1718093442370883, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.Api.Output.xml" }}
  2620. ,{ "pid":12345, "tid":3, "ts":1718093442370952, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2621. ,{ "pid":12345, "tid":3, "ts":1718093442371022, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/UnityLinker.pdb" }}
  2622. ,{ "pid":12345, "tid":3, "ts":1718093442371020, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker.pdb" }}
  2623. ,{ "pid":12345, "tid":3, "ts":1718093442371099, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2624. ,{ "pid":12345, "tid":3, "ts":1718093442371181, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.TinyProfiler.dll" }}
  2625. ,{ "pid":12345, "tid":3, "ts":1718093442371180, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.TinyProfiler.dll" }}
  2626. ,{ "pid":12345, "tid":3, "ts":1718093442371265, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2627. ,{ "pid":12345, "tid":3, "ts":1718093442371331, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Linker.Api.Output.dll" }}
  2628. ,{ "pid":12345, "tid":3, "ts":1718093442371329, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Linker.Api.Output.dll" }}
  2629. ,{ "pid":12345, "tid":3, "ts":1718093442371405, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2630. ,{ "pid":12345, "tid":3, "ts":1718093442371482, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.DataModel.pdb" }}
  2631. ,{ "pid":12345, "tid":3, "ts":1718093442371480, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.DataModel.pdb" }}
  2632. ,{ "pid":12345, "tid":3, "ts":1718093442371587, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2633. ,{ "pid":12345, "tid":3, "ts":1718093442371683, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Common.pdb" }}
  2634. ,{ "pid":12345, "tid":3, "ts":1718093442371680, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Common.pdb" }}
  2635. ,{ "pid":12345, "tid":3, "ts":1718093442371764, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2636. ,{ "pid":12345, "tid":3, "ts":1718093442371862, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.dll" }}
  2637. ,{ "pid":12345, "tid":3, "ts":1718093442371860, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.dll" }}
  2638. ,{ "pid":12345, "tid":3, "ts":1718093442371915, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2639. ,{ "pid":12345, "tid":3, "ts":1718093442372008, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.dll" }}
  2640. ,{ "pid":12345, "tid":3, "ts":1718093442372007, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.dll" }}
  2641. ,{ "pid":12345, "tid":3, "ts":1718093442372076, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2642. ,{ "pid":12345, "tid":3, "ts":1718093442372136, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.pdb" }}
  2643. ,{ "pid":12345, "tid":3, "ts":1718093442372134, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.pdb" }}
  2644. ,{ "pid":12345, "tid":3, "ts":1718093442372201, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2645. ,{ "pid":12345, "tid":3, "ts":1718093442372293, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.dll" }}
  2646. ,{ "pid":12345, "tid":3, "ts":1718093442372292, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.dll" }}
  2647. ,{ "pid":12345, "tid":3, "ts":1718093442372346, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2648. ,{ "pid":12345, "tid":3, "ts":1718093442372445, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Api.pdb" }}
  2649. ,{ "pid":12345, "tid":3, "ts":1718093442372445, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Api.pdb" }}
  2650. ,{ "pid":12345, "tid":3, "ts":1718093442372534, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2651. ,{ "pid":12345, "tid":3, "ts":1718093442372626, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Cecil.Awesome.pdb" }}
  2652. ,{ "pid":12345, "tid":3, "ts":1718093442372624, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Cecil.Awesome.pdb" }}
  2653. ,{ "pid":12345, "tid":3, "ts":1718093442372691, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2654. ,{ "pid":12345, "tid":3, "ts":1718093442372781, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.XmlSerializer.dll" }}
  2655. ,{ "pid":12345, "tid":3, "ts":1718093442372780, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.XmlSerializer.dll" }}
  2656. ,{ "pid":12345, "tid":3, "ts":1718093442372857, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2657. ,{ "pid":12345, "tid":3, "ts":1718093442372952, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2658. ,{ "pid":12345, "tid":3, "ts":1718093442373054, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Transactions.Local.dll" }}
  2659. ,{ "pid":12345, "tid":3, "ts":1718093442373052, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Transactions.Local.dll" }}
  2660. ,{ "pid":12345, "tid":3, "ts":1718093442373129, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2661. ,{ "pid":12345, "tid":3, "ts":1718093442373216, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Tasks.dll" }}
  2662. ,{ "pid":12345, "tid":3, "ts":1718093442373214, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Tasks.dll" }}
  2663. ,{ "pid":12345, "tid":3, "ts":1718093442373284, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2664. ,{ "pid":12345, "tid":3, "ts":1718093442373373, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2665. ,{ "pid":12345, "tid":3, "ts":1718093442373436, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Text.Encoding.dll" }}
  2666. ,{ "pid":12345, "tid":3, "ts":1718093442373435, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Text.Encoding.dll" }}
  2667. ,{ "pid":12345, "tid":3, "ts":1718093442373498, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2668. ,{ "pid":12345, "tid":3, "ts":1718093442373592, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Principal.dll" }}
  2669. ,{ "pid":12345, "tid":3, "ts":1718093442373591, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Principal.dll" }}
  2670. ,{ "pid":12345, "tid":3, "ts":1718093442373684, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2671. ,{ "pid":12345, "tid":3, "ts":1718093442373796, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.Cng.dll" }}
  2672. ,{ "pid":12345, "tid":3, "ts":1718093442373794, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.Cng.dll" }}
  2673. ,{ "pid":12345, "tid":3, "ts":1718093442373867, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2674. ,{ "pid":12345, "tid":3, "ts":1718093442373946, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Serialization.Json.dll" }}
  2675. ,{ "pid":12345, "tid":3, "ts":1718093442373945, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Serialization.Json.dll" }}
  2676. ,{ "pid":12345, "tid":3, "ts":1718093442374026, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2677. ,{ "pid":12345, "tid":3, "ts":1718093442374121, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.InteropServices.RuntimeInformation.dll" }}
  2678. ,{ "pid":12345, "tid":3, "ts":1718093442374119, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.InteropServices.RuntimeInformation.dll" }}
  2679. ,{ "pid":12345, "tid":3, "ts":1718093442374217, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2680. ,{ "pid":12345, "tid":3, "ts":1718093442374310, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.CompilerServices.Unsafe.dll" }}
  2681. ,{ "pid":12345, "tid":3, "ts":1718093442374309, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.CompilerServices.Unsafe.dll" }}
  2682. ,{ "pid":12345, "tid":3, "ts":1718093442374379, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2683. ,{ "pid":12345, "tid":3, "ts":1718093442374454, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.Primitives.dll" }}
  2684. ,{ "pid":12345, "tid":3, "ts":1718093442374452, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.Primitives.dll" }}
  2685. ,{ "pid":12345, "tid":3, "ts":1718093442374512, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2686. ,{ "pid":12345, "tid":3, "ts":1718093442374591, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.dll" }}
  2687. ,{ "pid":12345, "tid":3, "ts":1718093442374590, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.dll" }}
  2688. ,{ "pid":12345, "tid":3, "ts":1718093442374666, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2689. ,{ "pid":12345, "tid":3, "ts":1718093442374750, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Private.CoreLib.dll" }}
  2690. ,{ "pid":12345, "tid":3, "ts":1718093442374749, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Private.CoreLib.dll" }}
  2691. ,{ "pid":12345, "tid":3, "ts":1718093442374826, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2692. ,{ "pid":12345, "tid":3, "ts":1718093442374928, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.WebHeaderCollection.dll" }}
  2693. ,{ "pid":12345, "tid":3, "ts":1718093442374926, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.WebHeaderCollection.dll" }}
  2694. ,{ "pid":12345, "tid":3, "ts":1718093442375007, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2695. ,{ "pid":12345, "tid":3, "ts":1718093442375089, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Quic.dll" }}
  2696. ,{ "pid":12345, "tid":3, "ts":1718093442375088, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Quic.dll" }}
  2697. ,{ "pid":12345, "tid":3, "ts":1718093442375161, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2698. ,{ "pid":12345, "tid":3, "ts":1718093442375250, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Http.Json.dll" }}
  2699. ,{ "pid":12345, "tid":3, "ts":1718093442375248, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Http.Json.dll" }}
  2700. ,{ "pid":12345, "tid":3, "ts":1718093442375322, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2701. ,{ "pid":12345, "tid":3, "ts":1718093442375431, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Linq.Expressions.dll" }}
  2702. ,{ "pid":12345, "tid":3, "ts":1718093442375429, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Linq.Expressions.dll" }}
  2703. ,{ "pid":12345, "tid":3, "ts":1718093442375520, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2704. ,{ "pid":12345, "tid":3, "ts":1718093442375610, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.FileSystem.Watcher.dll" }}
  2705. ,{ "pid":12345, "tid":3, "ts":1718093442375663, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2706. ,{ "pid":12345, "tid":3, "ts":1718093442375764, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.Compression.ZipFile.dll" }}
  2707. ,{ "pid":12345, "tid":3, "ts":1718093442375763, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.Compression.ZipFile.dll" }}
  2708. ,{ "pid":12345, "tid":3, "ts":1718093442375848, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2709. ,{ "pid":12345, "tid":3, "ts":1718093442375936, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Globalization.Calendars.dll" }}
  2710. ,{ "pid":12345, "tid":3, "ts":1718093442375934, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Globalization.Calendars.dll" }}
  2711. ,{ "pid":12345, "tid":3, "ts":1718093442376029, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2712. ,{ "pid":12345, "tid":3, "ts":1718093442376111, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.Tracing.dll" }}
  2713. ,{ "pid":12345, "tid":3, "ts":1718093442376110, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.Tracing.dll" }}
  2714. ,{ "pid":12345, "tid":3, "ts":1718093442376186, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2715. ,{ "pid":12345, "tid":3, "ts":1718093442376269, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.FileVersionInfo.dll" }}
  2716. ,{ "pid":12345, "tid":3, "ts":1718093442376268, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.FileVersionInfo.dll" }}
  2717. ,{ "pid":12345, "tid":3, "ts":1718093442376340, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2718. ,{ "pid":12345, "tid":3, "ts":1718093442376443, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Data.Common.dll" }}
  2719. ,{ "pid":12345, "tid":3, "ts":1718093442376441, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Data.Common.dll" }}
  2720. ,{ "pid":12345, "tid":3, "ts":1718093442376507, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2721. ,{ "pid":12345, "tid":3, "ts":1718093442376575, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Configuration.dll" }}
  2722. ,{ "pid":12345, "tid":3, "ts":1718093442376573, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Configuration.dll" }}
  2723. ,{ "pid":12345, "tid":3, "ts":1718093442376643, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2724. ,{ "pid":12345, "tid":3, "ts":1718093442376716, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Collections.NonGeneric.dll" }}
  2725. ,{ "pid":12345, "tid":3, "ts":1718093442376714, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Collections.NonGeneric.dll" }}
  2726. ,{ "pid":12345, "tid":3, "ts":1718093442376787, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2727. ,{ "pid":12345, "tid":3, "ts":1718093442376878, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Buffers.dll" }}
  2728. ,{ "pid":12345, "tid":3, "ts":1718093442376877, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Buffers.dll" }}
  2729. ,{ "pid":12345, "tid":3, "ts":1718093442376967, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2730. ,{ "pid":12345, "tid":3, "ts":1718093442377069, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/netstandard.dll" }}
  2731. ,{ "pid":12345, "tid":3, "ts":1718093442377068, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/netstandard.dll" }}
  2732. ,{ "pid":12345, "tid":3, "ts":1718093442377153, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2733. ,{ "pid":12345, "tid":3, "ts":1718093442377236, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.Pdb.pdb" }}
  2734. ,{ "pid":12345, "tid":3, "ts":1718093442377235, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.Pdb.pdb" }}
  2735. ,{ "pid":12345, "tid":3, "ts":1718093442377311, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2736. ,{ "pid":12345, "tid":3, "ts":1718093442377415, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Microsoft.Win32.Primitives.dll" }}
  2737. ,{ "pid":12345, "tid":3, "ts":1718093442377414, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Microsoft.Win32.Primitives.dll" }}
  2738. ,{ "pid":12345, "tid":3, "ts":1718093442377490, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2739. ,{ "pid":12345, "tid":3, "ts":1718093442377568, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libSystem.Security.Cryptography.Native.Apple.dylib" }}
  2740. ,{ "pid":12345, "tid":3, "ts":1718093442377651, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2741. ,{ "pid":12345, "tid":3, "ts":1718093442377740, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libmscordaccore.dylib" }}
  2742. ,{ "pid":12345, "tid":3, "ts":1718093442377819, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2743. ,{ "pid":12345, "tid":3, "ts":1718093442377901, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/JetBrains.Profiler.Api.dll" }}
  2744. ,{ "pid":12345, "tid":3, "ts":1718093442377899, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/JetBrains.Profiler.Api.dll" }}
  2745. ,{ "pid":12345, "tid":3, "ts":1718093442377992, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2746. ,{ "pid":12345, "tid":3, "ts":1718093442378069, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/il2cpp" }}
  2747. ,{ "pid":12345, "tid":3, "ts":1718093442378145, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2748. ,{ "pid":12345, "tid":3, "ts":1718093442378231, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.TundraBackend.dll" }}
  2749. ,{ "pid":12345, "tid":3, "ts":1718093442378230, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.TundraBackend.dll" }}
  2750. ,{ "pid":12345, "tid":3, "ts":1718093442378294, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2751. ,{ "pid":12345, "tid":3, "ts":1718093442378368, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Windows.dll" }}
  2752. ,{ "pid":12345, "tid":3, "ts":1718093442378368, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Windows.dll" }}
  2753. ,{ "pid":12345, "tid":3, "ts":1718093442378450, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2754. ,{ "pid":12345, "tid":3, "ts":1718093442378538, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.UWP.dll" }}
  2755. ,{ "pid":12345, "tid":3, "ts":1718093442378537, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.UWP.dll" }}
  2756. ,{ "pid":12345, "tid":3, "ts":1718093442378619, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2757. ,{ "pid":12345, "tid":3, "ts":1718093442378709, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.LLVM.dll" }}
  2758. ,{ "pid":12345, "tid":3, "ts":1718093442378708, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.LLVM.dll" }}
  2759. ,{ "pid":12345, "tid":3, "ts":1718093442378798, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2760. ,{ "pid":12345, "tid":3, "ts":1718093442378875, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.GNU.dll" }}
  2761. ,{ "pid":12345, "tid":3, "ts":1718093442378875, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.GNU.dll" }}
  2762. ,{ "pid":12345, "tid":3, "ts":1718093442378964, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2763. ,{ "pid":12345, "tid":3, "ts":1718093442379030, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Android.dll" }}
  2764. ,{ "pid":12345, "tid":3, "ts":1718093442379029, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Android.dll" }}
  2765. ,{ "pid":12345, "tid":3, "ts":1718093442379127, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.NativeProgramSupport.pdb" }}
  2766. ,{ "pid":12345, "tid":3, "ts":1718093442379125, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.NativeProgramSupport.pdb" }}
  2767. ,{ "pid":12345, "tid":3, "ts":1718093442379185, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2768. ,{ "pid":12345, "tid":3, "ts":1718093442379270, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Core.dll" }}
  2769. ,{ "pid":12345, "tid":3, "ts":1718093442379269, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Core.dll" }}
  2770. ,{ "pid":12345, "tid":3, "ts":1718093442379358, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2771. ,{ "pid":12345, "tid":3, "ts":1718093442379450, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.pdb" }}
  2772. ,{ "pid":12345, "tid":3, "ts":1718093442379448, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.pdb" }}
  2773. ,{ "pid":12345, "tid":3, "ts":1718093442379523, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2774. ,{ "pid":12345, "tid":3, "ts":1718093442379614, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics" }}
  2775. ,{ "pid":12345, "tid":3, "ts":1718093442379696, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2776. ,{ "pid":12345, "tid":3, "ts":1718093442379779, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/libiPhone-lib.a" }}
  2777. ,{ "pid":12345, "tid":3, "ts":1718093442379848, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2778. ,{ "pid":12345, "tid":3, "ts":1718093442379927, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone Tests/en.lproj/InfoPlist.strings" }}
  2779. ,{ "pid":12345, "tid":3, "ts":1718093442380012, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2780. ,{ "pid":12345, "tid":3, "ts":1718093442380097, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityAppController.mm" }}
  2781. ,{ "pid":12345, "tid":3, "ts":1718093442380181, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2782. ,{ "pid":12345, "tid":3, "ts":1718093442380268, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/VideoPlayer.h" }}
  2783. ,{ "pid":12345, "tid":3, "ts":1718093442380266, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/VideoPlayer.h" }}
  2784. ,{ "pid":12345, "tid":3, "ts":1718093442380319, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2785. ,{ "pid":12345, "tid":3, "ts":1718093442380398, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnityReplayKit.h" }}
  2786. ,{ "pid":12345, "tid":3, "ts":1718093442380397, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityReplayKit.h" }}
  2787. ,{ "pid":12345, "tid":3, "ts":1718093442380492, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2788. ,{ "pid":12345, "tid":3, "ts":1718093442380606, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/ObjCRuntime.h" }}
  2789. ,{ "pid":12345, "tid":3, "ts":1718093442380605, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/ObjCRuntime.h" }}
  2790. ,{ "pid":12345, "tid":3, "ts":1718093442380680, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2791. ,{ "pid":12345, "tid":3, "ts":1718093442380758, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/InternalProfiler.cpp" }}
  2792. ,{ "pid":12345, "tid":3, "ts":1718093442380756, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/InternalProfiler.cpp" }}
  2793. ,{ "pid":12345, "tid":3, "ts":1718093442380834, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2794. ,{ "pid":12345, "tid":3, "ts":1718093442380905, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/CVTextureCache.mm" }}
  2795. ,{ "pid":12345, "tid":3, "ts":1718093442380982, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2796. ,{ "pid":12345, "tid":3, "ts":1718093442381129, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2797. ,{ "pid":12345, "tid":3, "ts":1718093442381236, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityViewControllerBase.h" }}
  2798. ,{ "pid":12345, "tid":3, "ts":1718093442381235, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase.h" }}
  2799. ,{ "pid":12345, "tid":3, "ts":1718093442381306, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2800. ,{ "pid":12345, "tid":3, "ts":1718093442381395, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView.mm" }}
  2801. ,{ "pid":12345, "tid":3, "ts":1718093442381463, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2802. ,{ "pid":12345, "tid":3, "ts":1718093442381540, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityView+iOS.h" }}
  2803. ,{ "pid":12345, "tid":3, "ts":1718093442381538, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView+iOS.h" }}
  2804. ,{ "pid":12345, "tid":3, "ts":1718093442381617, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2805. ,{ "pid":12345, "tid":3, "ts":1718093442381740, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2806. ,{ "pid":12345, "tid":3, "ts":1718093442381835, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Quaternion4.h" }}
  2807. ,{ "pid":12345, "tid":3, "ts":1718093442381833, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Quaternion4.h" }}
  2808. ,{ "pid":12345, "tid":3, "ts":1718093442381887, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2809. ,{ "pid":12345, "tid":3, "ts":1718093442381969, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/PluginBase/LifeCycleListener.h" }}
  2810. ,{ "pid":12345, "tid":3, "ts":1718093442381956, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PluginBase/LifeCycleListener.h" }}
  2811. ,{ "pid":12345, "tid":3, "ts":1718093442382051, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2812. ,{ "pid":12345, "tid":3, "ts":1718093442382148, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/CrashReporter.mm" }}
  2813. ,{ "pid":12345, "tid":3, "ts":1718093442382228, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2814. ,{ "pid":12345, "tid":3, "ts":1718093442382296, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Array.h" }}
  2815. ,{ "pid":12345, "tid":3, "ts":1718093442382295, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Array.h" }}
  2816. ,{ "pid":12345, "tid":3, "ts":1718093442382372, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2817. ,{ "pid":12345, "tid":3, "ts":1718093442382444, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/CCW.cpp" }}
  2818. ,{ "pid":12345, "tid":3, "ts":1718093442382443, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/CCW.cpp" }}
  2819. ,{ "pid":12345, "tid":3, "ts":1718093442382507, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2820. ,{ "pid":12345, "tid":3, "ts":1718093442382594, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ClassInlines.cpp" }}
  2821. ,{ "pid":12345, "tid":3, "ts":1718093442382592, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ClassInlines.cpp" }}
  2822. ,{ "pid":12345, "tid":3, "ts":1718093442382674, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2823. ,{ "pid":12345, "tid":3, "ts":1718093442382740, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/COMEntryPoints.cpp" }}
  2824. ,{ "pid":12345, "tid":3, "ts":1718093442382738, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/COMEntryPoints.cpp" }}
  2825. ,{ "pid":12345, "tid":3, "ts":1718093442382809, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2826. ,{ "pid":12345, "tid":3, "ts":1718093442382894, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Enum.cpp" }}
  2827. ,{ "pid":12345, "tid":3, "ts":1718093442382893, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Enum.cpp" }}
  2828. ,{ "pid":12345, "tid":3, "ts":1718093442382954, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2829. ,{ "pid":12345, "tid":3, "ts":1718093442383026, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Field.cpp" }}
  2830. ,{ "pid":12345, "tid":3, "ts":1718093442383025, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Field.cpp" }}
  2831. ,{ "pid":12345, "tid":3, "ts":1718093442383079, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2832. ,{ "pid":12345, "tid":3, "ts":1718093442383162, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GlobalMetadata.cpp" }}
  2833. ,{ "pid":12345, "tid":3, "ts":1718093442383160, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GlobalMetadata.cpp" }}
  2834. ,{ "pid":12345, "tid":3, "ts":1718093442383222, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2835. ,{ "pid":12345, "tid":3, "ts":1718093442383290, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Image.h" }}
  2836. ,{ "pid":12345, "tid":3, "ts":1718093442383288, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Image.h" }}
  2837. ,{ "pid":12345, "tid":3, "ts":1718093442383356, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2838. ,{ "pid":12345, "tid":3, "ts":1718093442383421, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Liveness.h" }}
  2839. ,{ "pid":12345, "tid":3, "ts":1718093442383420, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Liveness.h" }}
  2840. ,{ "pid":12345, "tid":3, "ts":1718093442383489, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2841. ,{ "pid":12345, "tid":3, "ts":1718093442383572, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MetadataAlloc.h" }}
  2842. ,{ "pid":12345, "tid":3, "ts":1718093442383570, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MetadataAlloc.h" }}
  2843. ,{ "pid":12345, "tid":3, "ts":1718093442383646, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2844. ,{ "pid":12345, "tid":3, "ts":1718093442383708, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Method.cpp" }}
  2845. ,{ "pid":12345, "tid":3, "ts":1718093442383706, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Method.cpp" }}
  2846. ,{ "pid":12345, "tid":3, "ts":1718093442383775, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2847. ,{ "pid":12345, "tid":3, "ts":1718093442383851, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/NonCachedCCWBase.h" }}
  2848. ,{ "pid":12345, "tid":3, "ts":1718093442383849, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/NonCachedCCWBase.h" }}
  2849. ,{ "pid":12345, "tid":3, "ts":1718093442383908, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2850. ,{ "pid":12345, "tid":3, "ts":1718093442383995, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Path.h" }}
  2851. ,{ "pid":12345, "tid":3, "ts":1718093442383994, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Path.h" }}
  2852. ,{ "pid":12345, "tid":3, "ts":1718093442384065, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2853. ,{ "pid":12345, "tid":3, "ts":1718093442384154, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsUnityWrapper.m" }}
  2854. ,{ "pid":12345, "tid":3, "ts":1718093442384215, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2855. ,{ "pid":12345, "tid":3, "ts":1718093442384290, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Property.h" }}
  2856. ,{ "pid":12345, "tid":3, "ts":1718093442384289, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Property.h" }}
  2857. ,{ "pid":12345, "tid":3, "ts":1718093442384374, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2858. ,{ "pid":12345, "tid":3, "ts":1718093442384465, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Runtime.cpp" }}
  2859. ,{ "pid":12345, "tid":3, "ts":1718093442384516, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2860. ,{ "pid":12345, "tid":3, "ts":1718093442384577, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/StackTrace.h" }}
  2861. ,{ "pid":12345, "tid":3, "ts":1718093442384576, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/StackTrace.h" }}
  2862. ,{ "pid":12345, "tid":3, "ts":1718093442384643, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2863. ,{ "pid":12345, "tid":3, "ts":1718093442384707, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ThreadPoolMs.h" }}
  2864. ,{ "pid":12345, "tid":3, "ts":1718093442384705, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ThreadPoolMs.h" }}
  2865. ,{ "pid":12345, "tid":3, "ts":1718093442384769, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2866. ,{ "pid":12345, "tid":3, "ts":1718093442384867, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2867. ,{ "pid":12345, "tid":3, "ts":1718093442385005, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2868. ,{ "pid":12345, "tid":3, "ts":1718093442385204, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2869. ,{ "pid":12345, "tid":3, "ts":1718093442385265, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/LaunchScreen-iPhone.storyboard" }}
  2870. ,{ "pid":12345, "tid":3, "ts":1718093442385329, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2871. ,{ "pid":12345, "tid":3, "ts":1718093442385657, "dur":2802, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-120.png" }}
  2872. ,{ "pid":12345, "tid":3, "ts":1718093442388576, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Settings-29.png" }}
  2873. ,{ "pid":12345, "tid":3, "ts":1718093442389878, "dur":171, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }}
  2874. ,{ "pid":12345, "tid":3, "ts":1718093442388821, "dur":1238, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Settings-29.png" }}
  2875. ,{ "pid":12345, "tid":3, "ts":1718093442390111, "dur":1115, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-167.png" }}
  2876. ,{ "pid":12345, "tid":3, "ts":1718093442391296, "dur":219, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone.xcodeproj/project.pbxproj" }}
  2877. ,{ "pid":12345, "tid":3, "ts":1718093442391562, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdvertisement.swift" }}
  2878. ,{ "pid":12345, "tid":3, "ts":1718093442391617, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2879. ,{ "pid":12345, "tid":3, "ts":1718093442391703, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsShowListener.h" }}
  2880. ,{ "pid":12345, "tid":3, "ts":1718093442391755, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2881. ,{ "pid":12345, "tid":3, "ts":1718093442391860, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2882. ,{ "pid":12345, "tid":3, "ts":1718093442392045, "dur":6058, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets1.resource" }}
  2883. ,{ "pid":12345, "tid":3, "ts":1718093442398130, "dur":64, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__8.cpp" }}
  2884. ,{ "pid":12345, "tid":3, "ts":1718093442398257, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TilemapModule_CodeGen.c" }}
  2885. ,{ "pid":12345, "tid":3, "ts":1718093442398256, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TilemapModule_CodeGen.c" }}
  2886. ,{ "pid":12345, "tid":3, "ts":1718093442398326, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2887. ,{ "pid":12345, "tid":3, "ts":1718093442398406, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCalculateFieldValues.cpp" }}
  2888. ,{ "pid":12345, "tid":3, "ts":1718093442398405, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCalculateFieldValues.cpp" }}
  2889. ,{ "pid":12345, "tid":3, "ts":1718093442398483, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2890. ,{ "pid":12345, "tid":3, "ts":1718093442398567, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCalculateTypeValues.cpp" }}
  2891. ,{ "pid":12345, "tid":3, "ts":1718093442398565, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCalculateTypeValues.cpp" }}
  2892. ,{ "pid":12345, "tid":3, "ts":1718093442398633, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2893. ,{ "pid":12345, "tid":3, "ts":1718093442398710, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__10.cpp" }}
  2894. ,{ "pid":12345, "tid":3, "ts":1718093442398708, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__10.cpp" }}
  2895. ,{ "pid":12345, "tid":3, "ts":1718093442398783, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2896. ,{ "pid":12345, "tid":3, "ts":1718093442398868, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__1.cpp" }}
  2897. ,{ "pid":12345, "tid":3, "ts":1718093442398866, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__1.cpp" }}
  2898. ,{ "pid":12345, "tid":3, "ts":1718093442398948, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2899. ,{ "pid":12345, "tid":3, "ts":1718093442399045, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro.cpp" }}
  2900. ,{ "pid":12345, "tid":3, "ts":1718093442399044, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro.cpp" }}
  2901. ,{ "pid":12345, "tid":3, "ts":1718093442399111, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2902. ,{ "pid":12345, "tid":3, "ts":1718093442399186, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Managed/Resources/mscorlib.dll-resources.dat" }}
  2903. ,{ "pid":12345, "tid":3, "ts":1718093442399253, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2904. ,{ "pid":12345, "tid":3, "ts":1718093442399336, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__59.cpp" }}
  2905. ,{ "pid":12345, "tid":3, "ts":1718093442399335, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__59.cpp" }}
  2906. ,{ "pid":12345, "tid":3, "ts":1718093442399406, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2907. ,{ "pid":12345, "tid":3, "ts":1718093442399485, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__13.cpp" }}
  2908. ,{ "pid":12345, "tid":3, "ts":1718093442399484, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__13.cpp" }}
  2909. ,{ "pid":12345, "tid":3, "ts":1718093442399549, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2910. ,{ "pid":12345, "tid":3, "ts":1718093442399628, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__17.cpp" }}
  2911. ,{ "pid":12345, "tid":3, "ts":1718093442399626, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__17.cpp" }}
  2912. ,{ "pid":12345, "tid":3, "ts":1718093442399696, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2913. ,{ "pid":12345, "tid":3, "ts":1718093442399767, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__9.cpp" }}
  2914. ,{ "pid":12345, "tid":3, "ts":1718093442399767, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__9.cpp" }}
  2915. ,{ "pid":12345, "tid":3, "ts":1718093442399840, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2916. ,{ "pid":12345, "tid":3, "ts":1718093442399906, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Telemetry_CodeGen.c" }}
  2917. ,{ "pid":12345, "tid":3, "ts":1718093442399904, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Telemetry_CodeGen.c" }}
  2918. ,{ "pid":12345, "tid":3, "ts":1718093442399968, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2919. ,{ "pid":12345, "tid":3, "ts":1718093442400038, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Scheduler.cpp" }}
  2920. ,{ "pid":12345, "tid":3, "ts":1718093442400037, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Scheduler.cpp" }}
  2921. ,{ "pid":12345, "tid":3, "ts":1718093442400105, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2922. ,{ "pid":12345, "tid":3, "ts":1718093442400176, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Device_CodeGen.c" }}
  2923. ,{ "pid":12345, "tid":3, "ts":1718093442400175, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Device_CodeGen.c" }}
  2924. ,{ "pid":12345, "tid":3, "ts":1718093442400256, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2925. ,{ "pid":12345, "tid":3, "ts":1718093442400328, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__1.cpp" }}
  2926. ,{ "pid":12345, "tid":3, "ts":1718093442400327, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__1.cpp" }}
  2927. ,{ "pid":12345, "tid":3, "ts":1718093442400395, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2928. ,{ "pid":12345, "tid":3, "ts":1718093442400461, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__1.cpp" }}
  2929. ,{ "pid":12345, "tid":3, "ts":1718093442400460, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__1.cpp" }}
  2930. ,{ "pid":12345, "tid":3, "ts":1718093442400526, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2931. ,{ "pid":12345, "tid":3, "ts":1718093442400590, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.GameCenterModule_CodeGen.c" }}
  2932. ,{ "pid":12345, "tid":3, "ts":1718093442400588, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.GameCenterModule_CodeGen.c" }}
  2933. ,{ "pid":12345, "tid":3, "ts":1718093442400722, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__26.cpp" }}
  2934. ,{ "pid":12345, "tid":3, "ts":1718093442400721, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__26.cpp" }}
  2935. ,{ "pid":12345, "tid":3, "ts":1718093442400796, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2936. ,{ "pid":12345, "tid":3, "ts":1718093442400871, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.IMGUIModule_CodeGen.c" }}
  2937. ,{ "pid":12345, "tid":3, "ts":1718093442400870, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.IMGUIModule_CodeGen.c" }}
  2938. ,{ "pid":12345, "tid":3, "ts":1718093442400934, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2939. ,{ "pid":12345, "tid":3, "ts":1718093442401004, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__53.cpp" }}
  2940. ,{ "pid":12345, "tid":3, "ts":1718093442401003, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__53.cpp" }}
  2941. ,{ "pid":12345, "tid":3, "ts":1718093442401068, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2942. ,{ "pid":12345, "tid":3, "ts":1718093442401128, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__3.cpp" }}
  2943. ,{ "pid":12345, "tid":3, "ts":1718093442401127, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__3.cpp" }}
  2944. ,{ "pid":12345, "tid":3, "ts":1718093442401206, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2945. ,{ "pid":12345, "tid":3, "ts":1718093442401312, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2946. ,{ "pid":12345, "tid":3, "ts":1718093442401547, "dur":505, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/Resources/unity_builtin_extra" }}
  2947. ,{ "pid":12345, "tid":3, "ts":1718093442403920, "dur":91, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }}
  2948. ,{ "pid":12345, "tid":3, "ts":1718093442402068, "dur":1952, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/level0" }}
  2949. ,{ "pid":12345, "tid":3, "ts":1718093442404029, "dur":72207, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  2950. ,{ "pid":12345, "tid":4, "ts":1718093442184312, "dur":92872, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  2951. ,{ "pid":12345, "tid":4, "ts":1718093442277189, "dur":1041, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2952. ,{ "pid":12345, "tid":4, "ts":1718093442278231, "dur":1028, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2953. ,{ "pid":12345, "tid":4, "ts":1718093442279259, "dur":973, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2954. ,{ "pid":12345, "tid":4, "ts":1718093442280232, "dur":1000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2955. ,{ "pid":12345, "tid":4, "ts":1718093442281232, "dur":1147, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2956. ,{ "pid":12345, "tid":4, "ts":1718093442282380, "dur":22596, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  2957. ,{ "pid":12345, "tid":4, "ts":1718093442305061, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2958. ,{ "pid":12345, "tid":4, "ts":1718093442305162, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2959. ,{ "pid":12345, "tid":4, "ts":1718093442305343, "dur":179, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2960. ,{ "pid":12345, "tid":4, "ts":1718093442305548, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2961. ,{ "pid":12345, "tid":4, "ts":1718093442305689, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2962. ,{ "pid":12345, "tid":4, "ts":1718093442305837, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2963. ,{ "pid":12345, "tid":4, "ts":1718093442305970, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2964. ,{ "pid":12345, "tid":4, "ts":1718093442306097, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2965. ,{ "pid":12345, "tid":4, "ts":1718093442306490, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" }}
  2966. ,{ "pid":12345, "tid":4, "ts":1718093442306256, "dur":347, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MergeApplePrivacyManifests Library/Bee/artifacts/iOS/PrivacyInfo.xcprivacy (+1 other)" }}
  2967. ,{ "pid":12345, "tid":4, "ts":1718093442306603, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2968. ,{ "pid":12345, "tid":4, "ts":1718093442306782, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsFinishState.h" }}
  2969. ,{ "pid":12345, "tid":4, "ts":1718093442306782, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsFinishState.h" }}
  2970. ,{ "pid":12345, "tid":4, "ts":1718093442306880, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2971. ,{ "pid":12345, "tid":4, "ts":1718093442307013, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURStore.h" }}
  2972. ,{ "pid":12345, "tid":4, "ts":1718093442307012, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURStore.h" }}
  2973. ,{ "pid":12345, "tid":4, "ts":1718093442307078, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2974. ,{ "pid":12345, "tid":4, "ts":1718093442307229, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAnalyticsAcquisitionType.h" }}
  2975. ,{ "pid":12345, "tid":4, "ts":1718093442307228, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAnalyticsAcquisitionType.h" }}
  2976. ,{ "pid":12345, "tid":4, "ts":1718093442307315, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2977. ,{ "pid":12345, "tid":4, "ts":1718093442307407, "dur":142, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBannerAdRefreshViewDelegate.h" }}
  2978. ,{ "pid":12345, "tid":4, "ts":1718093442307387, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBannerAdRefreshViewDelegate.h" }}
  2979. ,{ "pid":12345, "tid":4, "ts":1718093442307551, "dur":174, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2980. ,{ "pid":12345, "tid":4, "ts":1718093442307747, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsDelegateUtil.h" }}
  2981. ,{ "pid":12345, "tid":4, "ts":1718093442307745, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsDelegateUtil.h" }}
  2982. ,{ "pid":12345, "tid":4, "ts":1718093442307805, "dur":176, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2983. ,{ "pid":12345, "tid":4, "ts":1718093442307990, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONShowAdPlacementContent.h" }}
  2984. ,{ "pid":12345, "tid":4, "ts":1718093442307988, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONShowAdPlacementContent.h" }}
  2985. ,{ "pid":12345, "tid":4, "ts":1718093442308108, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2986. ,{ "pid":12345, "tid":4, "ts":1718093442308231, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONItem.h" }}
  2987. ,{ "pid":12345, "tid":4, "ts":1718093442308230, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONItem.h" }}
  2988. ,{ "pid":12345, "tid":4, "ts":1718093442308337, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2989. ,{ "pid":12345, "tid":4, "ts":1718093442308424, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSMediationMetaData.h" }}
  2990. ,{ "pid":12345, "tid":4, "ts":1718093442308423, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSMediationMetaData.h" }}
  2991. ,{ "pid":12345, "tid":4, "ts":1718093442308486, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2992. ,{ "pid":12345, "tid":4, "ts":1718093442308558, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PlayerDataCache/iOS2/Data/boot.config" }}
  2993. ,{ "pid":12345, "tid":4, "ts":1718093442308658, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PlayerDataCache/iOS2/Data/boot.config" }}
  2994. ,{ "pid":12345, "tid":4, "ts":1718093442309039, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PlayerDataCache/iOS2/Data/RuntimeInitializeOnLoads.json" }}
  2995. ,{ "pid":12345, "tid":4, "ts":1718093442309102, "dur":862, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PlayerDataCache/iOS2/Data/ScriptingAssemblies.json" }}
  2996. ,{ "pid":12345, "tid":4, "ts":1718093442310269, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.ARModule.dll" }}
  2997. ,{ "pid":12345, "tid":4, "ts":1718093442310433, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.AnimationModule.dll" }}
  2998. ,{ "pid":12345, "tid":4, "ts":1718093442310639, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.CoreModule.dll" }}
  2999. ,{ "pid":12345, "tid":4, "ts":1718093442310694, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.CrashReportingModule.dll" }}
  3000. ,{ "pid":12345, "tid":4, "ts":1718093442310815, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.GameCenterModule.dll" }}
  3001. ,{ "pid":12345, "tid":4, "ts":1718093442310920, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.ImageConversionModule.dll" }}
  3002. ,{ "pid":12345, "tid":4, "ts":1718093442311058, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.PerformanceReportingModule.dll" }}
  3003. ,{ "pid":12345, "tid":4, "ts":1718093442311168, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.PhysicsModule.dll" }}
  3004. ,{ "pid":12345, "tid":4, "ts":1718093442311255, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" }}
  3005. ,{ "pid":12345, "tid":4, "ts":1718093442311313, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.ScreenCaptureModule.dll" }}
  3006. ,{ "pid":12345, "tid":4, "ts":1718093442311580, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.TerrainModule.dll" }}
  3007. ,{ "pid":12345, "tid":4, "ts":1718093442311666, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.TerrainPhysicsModule.dll" }}
  3008. ,{ "pid":12345, "tid":4, "ts":1718093442311754, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.TextCoreTextEngineModule.dll" }}
  3009. ,{ "pid":12345, "tid":4, "ts":1718093442311809, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.TextRenderingModule.dll" }}
  3010. ,{ "pid":12345, "tid":4, "ts":1718093442311967, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.UIModule.dll" }}
  3011. ,{ "pid":12345, "tid":4, "ts":1718093442312106, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.UnityAnalyticsCommonModule.dll" }}
  3012. ,{ "pid":12345, "tid":4, "ts":1718093442312228, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.UnityCurlModule.dll" }}
  3013. ,{ "pid":12345, "tid":4, "ts":1718093442312480, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.UnityWebRequestTextureModule.dll" }}
  3014. ,{ "pid":12345, "tid":4, "ts":1718093442312566, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.VFXModule.dll" }}
  3015. ,{ "pid":12345, "tid":4, "ts":1718093442312765, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.XRModule.dll" }}
  3016. ,{ "pid":12345, "tid":4, "ts":1718093442312819, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.dll" }}
  3017. ,{ "pid":12345, "tid":4, "ts":1718093442312894, "dur":194, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Assembly-CSharp.dll" }}
  3018. ,{ "pid":12345, "tid":4, "ts":1718093442313248, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Networking.dll" }}
  3019. ,{ "pid":12345, "tid":4, "ts":1718093442313312, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.VisualScripting.Flow.dll" }}
  3020. ,{ "pid":12345, "tid":4, "ts":1718093442313535, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Collections.dll" }}
  3021. ,{ "pid":12345, "tid":4, "ts":1718093442313807, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Burst.dll" }}
  3022. ,{ "pid":12345, "tid":4, "ts":1718093442313890, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Internal.dll" }}
  3023. ,{ "pid":12345, "tid":4, "ts":1718093442313956, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.Apple.dll" }}
  3024. ,{ "pid":12345, "tid":4, "ts":1718093442314112, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.VisualScripting.Core.dll" }}
  3025. ,{ "pid":12345, "tid":4, "ts":1718093442314370, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.2D.Common.Runtime.dll" }}
  3026. ,{ "pid":12345, "tid":4, "ts":1718093442314458, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Mathematics.dll" }}
  3027. ,{ "pid":12345, "tid":4, "ts":1718093442314582, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.VisualScripting.State.dll" }}
  3028. ,{ "pid":12345, "tid":4, "ts":1718093442314667, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/I18N.West.dll" }}
  3029. ,{ "pid":12345, "tid":4, "ts":1718093442314738, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/GoogleMobileAds.Common.dll" }}
  3030. ,{ "pid":12345, "tid":4, "ts":1718093442314873, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/PackageCache/com.unity.collections@1.2.4/Unity.Collections.LowLevel.ILSupport/Unity.Collections.LowLevel.ILSupport.dll" }}
  3031. ,{ "pid":12345, "tid":4, "ts":1718093442314934, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/GoogleMobileAds.Ump.iOS.dll" }}
  3032. ,{ "pid":12345, "tid":4, "ts":1718093442315068, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/Firebase/Plugins/iOS/Firebase.App.dll" }}
  3033. ,{ "pid":12345, "tid":4, "ts":1718093442315175, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/GoogleMobileAds.Core.dll" }}
  3034. ,{ "pid":12345, "tid":4, "ts":1718093442315262, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/I18N.dll" }}
  3035. ,{ "pid":12345, "tid":4, "ts":1718093442315603, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/Microsoft.Win32.Registry.AccessControl.dll" }}
  3036. ,{ "pid":12345, "tid":4, "ts":1718093442315842, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Collections.Concurrent.dll" }}
  3037. ,{ "pid":12345, "tid":4, "ts":1718093442315894, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Collections.NonGeneric.dll" }}
  3038. ,{ "pid":12345, "tid":4, "ts":1718093442315951, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Collections.Specialized.dll" }}
  3039. ,{ "pid":12345, "tid":4, "ts":1718093442316165, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ComponentModel.dll" }}
  3040. ,{ "pid":12345, "tid":4, "ts":1718093442316348, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.Debug.dll" }}
  3041. ,{ "pid":12345, "tid":4, "ts":1718093442316689, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Globalization.Calendars.dll" }}
  3042. ,{ "pid":12345, "tid":4, "ts":1718093442316827, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.Compression.ZipFile.dll" }}
  3043. ,{ "pid":12345, "tid":4, "ts":1718093442316941, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.FileSystem.DriveInfo.dll" }}
  3044. ,{ "pid":12345, "tid":4, "ts":1718093442317341, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.AuthenticationManager.dll" }}
  3045. ,{ "pid":12345, "tid":4, "ts":1718093442317416, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.Cache.dll" }}
  3046. ,{ "pid":12345, "tid":4, "ts":1718093442317506, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.HttpListener.dll" }}
  3047. ,{ "pid":12345, "tid":4, "ts":1718093442317601, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.Mail.dll" }}
  3048. ,{ "pid":12345, "tid":4, "ts":1718093442317805, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.Requests.dll" }}
  3049. ,{ "pid":12345, "tid":4, "ts":1718093442317911, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.ServicePoint.dll" }}
  3050. ,{ "pid":12345, "tid":4, "ts":1718093442318380, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Reflection.dll" }}
  3051. ,{ "pid":12345, "tid":4, "ts":1718093442318572, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.Handles.dll" }}
  3052. ,{ "pid":12345, "tid":4, "ts":1718093442318673, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" }}
  3053. ,{ "pid":12345, "tid":4, "ts":1718093442318807, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.Serialization.Primitives.dll" }}
  3054. ,{ "pid":12345, "tid":4, "ts":1718093442318873, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.Serialization.Xml.dll" }}
  3055. ,{ "pid":12345, "tid":4, "ts":1718093442319000, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.AccessControl.dll" }}
  3056. ,{ "pid":12345, "tid":4, "ts":1718093442319122, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.DeriveBytes.dll" }}
  3057. ,{ "pid":12345, "tid":4, "ts":1718093442319231, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Encryption.ECDiffieHellman.dll" }}
  3058. ,{ "pid":12345, "tid":4, "ts":1718093442319614, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Primitives.dll" }}
  3059. ,{ "pid":12345, "tid":4, "ts":1718093442319711, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.RSA.dll" }}
  3060. ,{ "pid":12345, "tid":4, "ts":1718093442319833, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.X509Certificates.dll" }}
  3061. ,{ "pid":12345, "tid":4, "ts":1718093442320023, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ServiceModel.Duplex.dll" }}
  3062. ,{ "pid":12345, "tid":4, "ts":1718093442320189, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ServiceModel.Security.dll" }}
  3063. ,{ "pid":12345, "tid":4, "ts":1718093442320298, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Text.Encoding.Extensions.dll" }}
  3064. ,{ "pid":12345, "tid":4, "ts":1718093442320416, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Threading.Overlapped.dll" }}
  3065. ,{ "pid":12345, "tid":4, "ts":1718093442320483, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Threading.Tasks.Extensions.dll" }}
  3066. ,{ "pid":12345, "tid":4, "ts":1718093442320720, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Xml.XDocument.dll" }}
  3067. ,{ "pid":12345, "tid":4, "ts":1718093442320974, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Xml.Xsl.Primitives.dll" }}
  3068. ,{ "pid":12345, "tid":4, "ts":1718093442321048, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/netstandard.dll" }}
  3069. ,{ "pid":12345, "tid":4, "ts":1718093442321201, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ComponentModel.Composition.dll" }}
  3070. ,{ "pid":12345, "tid":4, "ts":1718093442321628, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Data.dll" }}
  3071. ,{ "pid":12345, "tid":4, "ts":1718093442321693, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Design.dll" }}
  3072. ,{ "pid":12345, "tid":4, "ts":1718093442321754, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Drawing.Design.dll" }}
  3073. ,{ "pid":12345, "tid":4, "ts":1718093442321945, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Json.dll" }}
  3074. ,{ "pid":12345, "tid":4, "ts":1718093442322206, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Numerics.dll" }}
  3075. ,{ "pid":12345, "tid":4, "ts":1718093442322311, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Runtime.Caching.dll" }}
  3076. ,{ "pid":12345, "tid":4, "ts":1718093442322383, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Runtime.DurableInstancing.dll" }}
  3077. ,{ "pid":12345, "tid":4, "ts":1718093442322587, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Security.dll" }}
  3078. ,{ "pid":12345, "tid":4, "ts":1718093442322712, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ServiceModel.Discovery.dll" }}
  3079. ,{ "pid":12345, "tid":4, "ts":1718093442322924, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ServiceProcess.dll" }}
  3080. ,{ "pid":12345, "tid":4, "ts":1718093442322981, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Transactions.dll" }}
  3081. ,{ "pid":12345, "tid":4, "ts":1718093442323381, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Xml.Linq.dll" }}
  3082. ,{ "pid":12345, "tid":4, "ts":1718093442323533, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.dll" }}
  3083. ,{ "pid":12345, "tid":4, "ts":1718093442323649, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/Player2956d3bd-inputdata.json" }}
  3084. ,{ "pid":12345, "tid":4, "ts":1718093442323867, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.CSharpSupport.dll" }}
  3085. ,{ "pid":12345, "tid":4, "ts":1718093442324028, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.TinyProfiler2.dll" }}
  3086. ,{ "pid":12345, "tid":4, "ts":1718093442324106, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Toolchain.GNU.dll" }}
  3087. ,{ "pid":12345, "tid":4, "ts":1718093442308557, "dur":16515, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"AddBootConfigGUID Library/Bee/artifacts/iOS/boot.config" }}
  3088. ,{ "pid":12345, "tid":4, "ts":1718093442325726, "dur":4467, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }}
  3089. ,{ "pid":12345, "tid":4, "ts":1718093442331024, "dur":142887, "ph":"X", "name": "AddBootConfigGUID", "args": { "detail":"Library/Bee/artifacts/iOS/boot.config" }}
  3090. ,{ "pid":12345, "tid":4, "ts":1718093442475702, "dur":423, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/boot.config" }}
  3091. ,{ "pid":12345, "tid":5, "ts":1718093442184357, "dur":92836, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  3092. ,{ "pid":12345, "tid":5, "ts":1718093442277199, "dur":1035, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  3093. ,{ "pid":12345, "tid":5, "ts":1718093442278235, "dur":1035, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  3094. ,{ "pid":12345, "tid":5, "ts":1718093442279270, "dur":958, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  3095. ,{ "pid":12345, "tid":5, "ts":1718093442280228, "dur":1017, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  3096. ,{ "pid":12345, "tid":5, "ts":1718093442281246, "dur":1157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  3097. ,{ "pid":12345, "tid":5, "ts":1718093442282404, "dur":22554, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  3098. ,{ "pid":12345, "tid":5, "ts":1718093442305240, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3099. ,{ "pid":12345, "tid":5, "ts":1718093442305329, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3100. ,{ "pid":12345, "tid":5, "ts":1718093442305501, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3101. ,{ "pid":12345, "tid":5, "ts":1718093442305623, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3102. ,{ "pid":12345, "tid":5, "ts":1718093442305781, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3103. ,{ "pid":12345, "tid":5, "ts":1718093442305921, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3104. ,{ "pid":12345, "tid":5, "ts":1718093442306020, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3105. ,{ "pid":12345, "tid":5, "ts":1718093442306134, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3106. ,{ "pid":12345, "tid":5, "ts":1718093442306211, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3107. ,{ "pid":12345, "tid":5, "ts":1718093442306284, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7.swiftinterface" }}
  3108. ,{ "pid":12345, "tid":5, "ts":1718093442306379, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3109. ,{ "pid":12345, "tid":5, "ts":1718093442306439, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64.swiftmodule" }}
  3110. ,{ "pid":12345, "tid":5, "ts":1718093442306506, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3111. ,{ "pid":12345, "tid":5, "ts":1718093442306643, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm.swiftmodule" }}
  3112. ,{ "pid":12345, "tid":5, "ts":1718093442306713, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3113. ,{ "pid":12345, "tid":5, "ts":1718093442306842, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3114. ,{ "pid":12345, "tid":5, "ts":1718093442306935, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionErrorDetails.h" }}
  3115. ,{ "pid":12345, "tid":5, "ts":1718093442306935, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionErrorDetails.h" }}
  3116. ,{ "pid":12345, "tid":5, "ts":1718093442307053, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3117. ,{ "pid":12345, "tid":5, "ts":1718093442307170, "dur":149, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityMonetizationDelegate.h" }}
  3118. ,{ "pid":12345, "tid":5, "ts":1718093442307169, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityMonetizationDelegate.h" }}
  3119. ,{ "pid":12345, "tid":5, "ts":1718093442307320, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3120. ,{ "pid":12345, "tid":5, "ts":1718093442307448, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadError.h" }}
  3121. ,{ "pid":12345, "tid":5, "ts":1718093442307447, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadError.h" }}
  3122. ,{ "pid":12345, "tid":5, "ts":1718093442307515, "dur":194, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3123. ,{ "pid":12345, "tid":5, "ts":1718093442307739, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsError.h" }}
  3124. ,{ "pid":12345, "tid":5, "ts":1718093442307737, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsError.h" }}
  3125. ,{ "pid":12345, "tid":5, "ts":1718093442307830, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3126. ,{ "pid":12345, "tid":5, "ts":1718093442307998, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONRewardablePlacementContent.h" }}
  3127. ,{ "pid":12345, "tid":5, "ts":1718093442307997, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONRewardablePlacementContent.h" }}
  3128. ,{ "pid":12345, "tid":5, "ts":1718093442308116, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3129. ,{ "pid":12345, "tid":5, "ts":1718093442308255, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UANAApiAnalytics.h" }}
  3130. ,{ "pid":12345, "tid":5, "ts":1718093442308254, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UANAApiAnalytics.h" }}
  3131. ,{ "pid":12345, "tid":5, "ts":1718093442308377, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3132. ,{ "pid":12345, "tid":5, "ts":1718093442308463, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSInAppPurchaseMetaData.h" }}
  3133. ,{ "pid":12345, "tid":5, "ts":1718093442308460, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSInAppPurchaseMetaData.h" }}
  3134. ,{ "pid":12345, "tid":5, "ts":1718093442308541, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3135. ,{ "pid":12345, "tid":5, "ts":1718093442308681, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/VmStringUtils.cpp" }}
  3136. ,{ "pid":12345, "tid":5, "ts":1718093442308680, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/VmStringUtils.cpp" }}
  3137. ,{ "pid":12345, "tid":5, "ts":1718093442308770, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3138. ,{ "pid":12345, "tid":5, "ts":1718093442308848, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System/MathF.h" }}
  3139. ,{ "pid":12345, "tid":5, "ts":1718093442308846, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System/MathF.h" }}
  3140. ,{ "pid":12345, "tid":5, "ts":1718093442308967, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3141. ,{ "pid":12345, "tid":5, "ts":1718093442309060, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/Finally.h" }}
  3142. ,{ "pid":12345, "tid":5, "ts":1718093442309058, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/Finally.h" }}
  3143. ,{ "pid":12345, "tid":5, "ts":1718093442309152, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/BlobReader.cpp" }}
  3144. ,{ "pid":12345, "tid":5, "ts":1718093442309151, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/BlobReader.cpp" }}
  3145. ,{ "pid":12345, "tid":5, "ts":1718093442309234, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3146. ,{ "pid":12345, "tid":5, "ts":1718093442309353, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/TemplateUtils.h" }}
  3147. ,{ "pid":12345, "tid":5, "ts":1718093442309352, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/TemplateUtils.h" }}
  3148. ,{ "pid":12345, "tid":5, "ts":1718093442309473, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3149. ,{ "pid":12345, "tid":5, "ts":1718093442309613, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/sha1.cpp" }}
  3150. ,{ "pid":12345, "tid":5, "ts":1718093442309612, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/sha1.cpp" }}
  3151. ,{ "pid":12345, "tid":5, "ts":1718093442309740, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Output.cpp" }}
  3152. ,{ "pid":12345, "tid":5, "ts":1718093442309738, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Output.cpp" }}
  3153. ,{ "pid":12345, "tid":5, "ts":1718093442309842, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3154. ,{ "pid":12345, "tid":5, "ts":1718093442309962, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryPoolAddressSanitizer.h" }}
  3155. ,{ "pid":12345, "tid":5, "ts":1718093442309960, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryPoolAddressSanitizer.h" }}
  3156. ,{ "pid":12345, "tid":5, "ts":1718093442310021, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3157. ,{ "pid":12345, "tid":5, "ts":1718093442310130, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryMappedFile.cpp" }}
  3158. ,{ "pid":12345, "tid":5, "ts":1718093442310129, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryMappedFile.cpp" }}
  3159. ,{ "pid":12345, "tid":5, "ts":1718093442310199, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3160. ,{ "pid":12345, "tid":5, "ts":1718093442310355, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Logging.cpp" }}
  3161. ,{ "pid":12345, "tid":5, "ts":1718093442310338, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Logging.cpp" }}
  3162. ,{ "pid":12345, "tid":5, "ts":1718093442310489, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3163. ,{ "pid":12345, "tid":5, "ts":1718093442310580, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/HashUtils.h" }}
  3164. ,{ "pid":12345, "tid":5, "ts":1718093442310579, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/HashUtils.h" }}
  3165. ,{ "pid":12345, "tid":5, "ts":1718093442310660, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3166. ,{ "pid":12345, "tid":5, "ts":1718093442310738, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Exception.cpp" }}
  3167. ,{ "pid":12345, "tid":5, "ts":1718093442310736, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Exception.cpp" }}
  3168. ,{ "pid":12345, "tid":5, "ts":1718093442310835, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3169. ,{ "pid":12345, "tid":5, "ts":1718093442310898, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/DirectoryUtils.cpp" }}
  3170. ,{ "pid":12345, "tid":5, "ts":1718093442310897, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/DirectoryUtils.cpp" }}
  3171. ,{ "pid":12345, "tid":5, "ts":1718093442311017, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3172. ,{ "pid":12345, "tid":5, "ts":1718093442311104, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/pch/pch-c.h" }}
  3173. ,{ "pid":12345, "tid":5, "ts":1718093442311103, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/pch/pch-c.h" }}
  3174. ,{ "pid":12345, "tid":5, "ts":1718093442311235, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3175. ,{ "pid":12345, "tid":5, "ts":1718093442311324, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Win32ApiWinRTEmulation.cpp" }}
  3176. ,{ "pid":12345, "tid":5, "ts":1718093442311323, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Win32ApiWinRTEmulation.cpp" }}
  3177. ,{ "pid":12345, "tid":5, "ts":1718093442311381, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3178. ,{ "pid":12345, "tid":5, "ts":1718093442311503, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3179. ,{ "pid":12345, "tid":5, "ts":1718093442311637, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WindowsRuntime.h" }}
  3180. ,{ "pid":12345, "tid":5, "ts":1718093442311635, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WindowsRuntime.h" }}
  3181. ,{ "pid":12345, "tid":5, "ts":1718093442311748, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3182. ,{ "pid":12345, "tid":5, "ts":1718093442311839, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/WindowsHeaders.h" }}
  3183. ,{ "pid":12345, "tid":5, "ts":1718093442311837, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsHeaders.h" }}
  3184. ,{ "pid":12345, "tid":5, "ts":1718093442311942, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3185. ,{ "pid":12345, "tid":5, "ts":1718093442312054, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Thread.cpp" }}
  3186. ,{ "pid":12345, "tid":5, "ts":1718093442312053, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Thread.cpp" }}
  3187. ,{ "pid":12345, "tid":5, "ts":1718093442312174, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3188. ,{ "pid":12345, "tid":5, "ts":1718093442312262, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/SocketImpl.cpp" }}
  3189. ,{ "pid":12345, "tid":5, "ts":1718093442312261, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/SocketImpl.cpp" }}
  3190. ,{ "pid":12345, "tid":5, "ts":1718093442312360, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3191. ,{ "pid":12345, "tid":5, "ts":1718093442312422, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/MemoryMappedFile.cpp" }}
  3192. ,{ "pid":12345, "tid":5, "ts":1718093442312421, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/MemoryMappedFile.cpp" }}
  3193. ,{ "pid":12345, "tid":5, "ts":1718093442312512, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3194. ,{ "pid":12345, "tid":5, "ts":1718093442312634, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/LibraryLoader.cpp" }}
  3195. ,{ "pid":12345, "tid":5, "ts":1718093442312633, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/LibraryLoader.cpp" }}
  3196. ,{ "pid":12345, "tid":5, "ts":1718093442312713, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3197. ,{ "pid":12345, "tid":5, "ts":1718093442312781, "dur":211, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/FastReaderReaderWriterLockImpl.h" }}
  3198. ,{ "pid":12345, "tid":5, "ts":1718093442312779, "dur":214, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/FastReaderReaderWriterLockImpl.h" }}
  3199. ,{ "pid":12345, "tid":5, "ts":1718093442312994, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3200. ,{ "pid":12345, "tid":5, "ts":1718093442313143, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Cryptography.cpp" }}
  3201. ,{ "pid":12345, "tid":5, "ts":1718093442313142, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Cryptography.cpp" }}
  3202. ,{ "pid":12345, "tid":5, "ts":1718093442313240, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3203. ,{ "pid":12345, "tid":5, "ts":1718093442313403, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/COM.cpp" }}
  3204. ,{ "pid":12345, "tid":5, "ts":1718093442313402, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/COM.cpp" }}
  3205. ,{ "pid":12345, "tid":5, "ts":1718093442313471, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3206. ,{ "pid":12345, "tid":5, "ts":1718093442313545, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Thread.h" }}
  3207. ,{ "pid":12345, "tid":5, "ts":1718093442313544, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Thread.h" }}
  3208. ,{ "pid":12345, "tid":5, "ts":1718093442313617, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3209. ,{ "pid":12345, "tid":5, "ts":1718093442313684, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/StackTrace.h" }}
  3210. ,{ "pid":12345, "tid":5, "ts":1718093442313683, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/StackTrace.h" }}
  3211. ,{ "pid":12345, "tid":5, "ts":1718093442313751, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3212. ,{ "pid":12345, "tid":5, "ts":1718093442313871, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ReaderWriterLockImpl.h" }}
  3213. ,{ "pid":12345, "tid":5, "ts":1718093442313870, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ReaderWriterLockImpl.h" }}
  3214. ,{ "pid":12345, "tid":5, "ts":1718093442313986, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3215. ,{ "pid":12345, "tid":5, "ts":1718093442314145, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ThreadLocalValueImpl.h" }}
  3216. ,{ "pid":12345, "tid":5, "ts":1718093442314144, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ThreadLocalValueImpl.h" }}
  3217. ,{ "pid":12345, "tid":5, "ts":1718093442314220, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3218. ,{ "pid":12345, "tid":5, "ts":1718093442314337, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3219. ,{ "pid":12345, "tid":5, "ts":1718093442314449, "dur":194, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/PosixHelpers.cpp" }}
  3220. ,{ "pid":12345, "tid":5, "ts":1718093442314448, "dur":196, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/PosixHelpers.cpp" }}
  3221. ,{ "pid":12345, "tid":5, "ts":1718093442314645, "dur":203, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3222. ,{ "pid":12345, "tid":5, "ts":1718093442314875, "dur":169, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/MarshalAlloc.cpp" }}
  3223. ,{ "pid":12345, "tid":5, "ts":1718093442314873, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/MarshalAlloc.cpp" }}
  3224. ,{ "pid":12345, "tid":5, "ts":1718093442315046, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3225. ,{ "pid":12345, "tid":5, "ts":1718093442315140, "dur":155, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/FileHandle.h" }}
  3226. ,{ "pid":12345, "tid":5, "ts":1718093442315138, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/FileHandle.h" }}
  3227. ,{ "pid":12345, "tid":5, "ts":1718093442315296, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3228. ,{ "pid":12345, "tid":5, "ts":1718093442315374, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Encoding.cpp" }}
  3229. ,{ "pid":12345, "tid":5, "ts":1718093442315372, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Encoding.cpp" }}
  3230. ,{ "pid":12345, "tid":5, "ts":1718093442315453, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3231. ,{ "pid":12345, "tid":5, "ts":1718093442315522, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ConditionVariableImpl.h" }}
  3232. ,{ "pid":12345, "tid":5, "ts":1718093442315521, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ConditionVariableImpl.h" }}
  3233. ,{ "pid":12345, "tid":5, "ts":1718093442315597, "dur":175, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3234. ,{ "pid":12345, "tid":5, "ts":1718093442315781, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/Process.cpp" }}
  3235. ,{ "pid":12345, "tid":5, "ts":1718093442315780, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/Process.cpp" }}
  3236. ,{ "pid":12345, "tid":5, "ts":1718093442315889, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3237. ,{ "pid":12345, "tid":5, "ts":1718093442316033, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Messages.h" }}
  3238. ,{ "pid":12345, "tid":5, "ts":1718093442316032, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Messages.h" }}
  3239. ,{ "pid":12345, "tid":5, "ts":1718093442316093, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3240. ,{ "pid":12345, "tid":5, "ts":1718093442316174, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Locale.h" }}
  3241. ,{ "pid":12345, "tid":5, "ts":1718093442316172, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Locale.h" }}
  3242. ,{ "pid":12345, "tid":5, "ts":1718093442316290, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3243. ,{ "pid":12345, "tid":5, "ts":1718093442316401, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Image.cpp" }}
  3244. ,{ "pid":12345, "tid":5, "ts":1718093442316400, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Image.cpp" }}
  3245. ,{ "pid":12345, "tid":5, "ts":1718093442316468, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3246. ,{ "pid":12345, "tid":5, "ts":1718093442316542, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SystemCertificates.cpp" }}
  3247. ,{ "pid":12345, "tid":5, "ts":1718093442316541, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SystemCertificates.cpp" }}
  3248. ,{ "pid":12345, "tid":5, "ts":1718093442316594, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3249. ,{ "pid":12345, "tid":5, "ts":1718093442316676, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/MemoryMappedFile.cpp" }}
  3250. ,{ "pid":12345, "tid":5, "ts":1718093442316675, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/MemoryMappedFile.cpp" }}
  3251. ,{ "pid":12345, "tid":5, "ts":1718093442316779, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3252. ,{ "pid":12345, "tid":5, "ts":1718093442316889, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/EventImpl.h" }}
  3253. ,{ "pid":12345, "tid":5, "ts":1718093442316888, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/EventImpl.h" }}
  3254. ,{ "pid":12345, "tid":5, "ts":1718093442316956, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3255. ,{ "pid":12345, "tid":5, "ts":1718093442317047, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/BrokeredFileSystem.cpp" }}
  3256. ,{ "pid":12345, "tid":5, "ts":1718093442317045, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/BrokeredFileSystem.cpp" }}
  3257. ,{ "pid":12345, "tid":5, "ts":1718093442317107, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3258. ,{ "pid":12345, "tid":5, "ts":1718093442317194, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/FastReaderReaderWriterLock.h" }}
  3259. ,{ "pid":12345, "tid":5, "ts":1718093442317246, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3260. ,{ "pid":12345, "tid":5, "ts":1718093442317313, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Error.cpp" }}
  3261. ,{ "pid":12345, "tid":5, "ts":1718093442317312, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Error.cpp" }}
  3262. ,{ "pid":12345, "tid":5, "ts":1718093442317393, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3263. ,{ "pid":12345, "tid":5, "ts":1718093442317564, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Directory.h" }}
  3264. ,{ "pid":12345, "tid":5, "ts":1718093442317563, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Directory.h" }}
  3265. ,{ "pid":12345, "tid":5, "ts":1718093442317630, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3266. ,{ "pid":12345, "tid":5, "ts":1718093442317755, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/CpuInfo.h" }}
  3267. ,{ "pid":12345, "tid":5, "ts":1718093442317754, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/CpuInfo.h" }}
  3268. ,{ "pid":12345, "tid":5, "ts":1718093442317821, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3269. ,{ "pid":12345, "tid":5, "ts":1718093442317980, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_unused.cpp" }}
  3270. ,{ "pid":12345, "tid":5, "ts":1718093442317979, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_unused.cpp" }}
  3271. ,{ "pid":12345, "tid":5, "ts":1718093442318050, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3272. ,{ "pid":12345, "tid":5, "ts":1718093442318119, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_platform.h" }}
  3273. ,{ "pid":12345, "tid":5, "ts":1718093442318118, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_platform.h" }}
  3274. ,{ "pid":12345, "tid":5, "ts":1718093442318199, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3275. ,{ "pid":12345, "tid":5, "ts":1718093442318284, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/encode.h" }}
  3276. ,{ "pid":12345, "tid":5, "ts":1718093442318282, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/encode.h" }}
  3277. ,{ "pid":12345, "tid":5, "ts":1718093442318375, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3278. ,{ "pid":12345, "tid":5, "ts":1718093442318473, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict.c" }}
  3279. ,{ "pid":12345, "tid":5, "ts":1718093442318471, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict.c" }}
  3280. ,{ "pid":12345, "tid":5, "ts":1718093442318527, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3281. ,{ "pid":12345, "tid":5, "ts":1718093442318603, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock_inc.h" }}
  3282. ,{ "pid":12345, "tid":5, "ts":1718093442318602, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock_inc.h" }}
  3283. ,{ "pid":12345, "tid":5, "ts":1718093442318701, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3284. ,{ "pid":12345, "tid":5, "ts":1718093442318802, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/literal_cost.c" }}
  3285. ,{ "pid":12345, "tid":5, "ts":1718093442318801, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/literal_cost.c" }}
  3286. ,{ "pid":12345, "tid":5, "ts":1718093442318888, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3287. ,{ "pid":12345, "tid":5, "ts":1718093442319002, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match_quickly_inc.h" }}
  3288. ,{ "pid":12345, "tid":5, "ts":1718093442319001, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match_quickly_inc.h" }}
  3289. ,{ "pid":12345, "tid":5, "ts":1718093442319094, "dur":164, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3290. ,{ "pid":12345, "tid":5, "ts":1718093442319285, "dur":128, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash.h" }}
  3291. ,{ "pid":12345, "tid":5, "ts":1718093442319284, "dur":130, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash.h" }}
  3292. ,{ "pid":12345, "tid":5, "ts":1718093442319414, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3293. ,{ "pid":12345, "tid":5, "ts":1718093442319542, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/encoder_dict.h" }}
  3294. ,{ "pid":12345, "tid":5, "ts":1718093442319541, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/encoder_dict.h" }}
  3295. ,{ "pid":12345, "tid":5, "ts":1718093442319626, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3296. ,{ "pid":12345, "tid":5, "ts":1718093442319783, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment_two_pass.c" }}
  3297. ,{ "pid":12345, "tid":5, "ts":1718093442319781, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment_two_pass.c" }}
  3298. ,{ "pid":12345, "tid":5, "ts":1718093442319874, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3299. ,{ "pid":12345, "tid":5, "ts":1718093442320028, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3300. ,{ "pid":12345, "tid":5, "ts":1718093442320174, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter_inc.h" }}
  3301. ,{ "pid":12345, "tid":5, "ts":1718093442320173, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter_inc.h" }}
  3302. ,{ "pid":12345, "tid":5, "ts":1718093442320282, "dur":170, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3303. ,{ "pid":12345, "tid":5, "ts":1718093442320479, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.h" }}
  3304. ,{ "pid":12345, "tid":5, "ts":1718093442320477, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.h" }}
  3305. ,{ "pid":12345, "tid":5, "ts":1718093442320579, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3306. ,{ "pid":12345, "tid":5, "ts":1718093442320654, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/state.c" }}
  3307. ,{ "pid":12345, "tid":5, "ts":1718093442320653, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/state.c" }}
  3308. ,{ "pid":12345, "tid":5, "ts":1718093442320731, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3309. ,{ "pid":12345, "tid":5, "ts":1718093442320896, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/transform.c" }}
  3310. ,{ "pid":12345, "tid":5, "ts":1718093442320893, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/transform.c" }}
  3311. ,{ "pid":12345, "tid":5, "ts":1718093442320967, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3312. ,{ "pid":12345, "tid":5, "ts":1718093442321113, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/context.c" }}
  3313. ,{ "pid":12345, "tid":5, "ts":1718093442321111, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/context.c" }}
  3314. ,{ "pid":12345, "tid":5, "ts":1718093442321183, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3315. ,{ "pid":12345, "tid":5, "ts":1718093442321371, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Thread.cpp" }}
  3316. ,{ "pid":12345, "tid":5, "ts":1718093442321369, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Thread.cpp" }}
  3317. ,{ "pid":12345, "tid":5, "ts":1718093442321441, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3318. ,{ "pid":12345, "tid":5, "ts":1718093442321591, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3319. ,{ "pid":12345, "tid":5, "ts":1718093442321747, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Error.cpp" }}
  3320. ,{ "pid":12345, "tid":5, "ts":1718093442321746, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Error.cpp" }}
  3321. ,{ "pid":12345, "tid":5, "ts":1718093442321964, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3322. ,{ "pid":12345, "tid":5, "ts":1718093442322071, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/BrokeredFileSystem.h" }}
  3323. ,{ "pid":12345, "tid":5, "ts":1718093442322122, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3324. ,{ "pid":12345, "tid":5, "ts":1718093442322205, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/Locale.cpp" }}
  3325. ,{ "pid":12345, "tid":5, "ts":1718093442322204, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/Locale.cpp" }}
  3326. ,{ "pid":12345, "tid":5, "ts":1718093442322324, "dur":161, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3327. ,{ "pid":12345, "tid":5, "ts":1718093442322491, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolMonitorThread.cpp" }}
  3328. ,{ "pid":12345, "tid":5, "ts":1718093442322490, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolMonitorThread.cpp" }}
  3329. ,{ "pid":12345, "tid":5, "ts":1718093442322576, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3330. ,{ "pid":12345, "tid":5, "ts":1718093442322700, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms-io.cpp" }}
  3331. ,{ "pid":12345, "tid":5, "ts":1718093442322699, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms-io.cpp" }}
  3332. ,{ "pid":12345, "tid":5, "ts":1718093442322822, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3333. ,{ "pid":12345, "tid":5, "ts":1718093442322907, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppTypeHash.h" }}
  3334. ,{ "pid":12345, "tid":5, "ts":1718093442322906, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeHash.h" }}
  3335. ,{ "pid":12345, "tid":5, "ts":1718093442323021, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3336. ,{ "pid":12345, "tid":5, "ts":1718093442323100, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericMethodHash.h" }}
  3337. ,{ "pid":12345, "tid":5, "ts":1718093442323098, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodHash.h" }}
  3338. ,{ "pid":12345, "tid":5, "ts":1718093442323178, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3339. ,{ "pid":12345, "tid":5, "ts":1718093442323261, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericInstCompare.cpp" }}
  3340. ,{ "pid":12345, "tid":5, "ts":1718093442323260, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstCompare.cpp" }}
  3341. ,{ "pid":12345, "tid":5, "ts":1718093442323333, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3342. ,{ "pid":12345, "tid":5, "ts":1718093442323411, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericClassHash.cpp" }}
  3343. ,{ "pid":12345, "tid":5, "ts":1718093442323410, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassHash.cpp" }}
  3344. ,{ "pid":12345, "tid":5, "ts":1718093442323505, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3345. ,{ "pid":12345, "tid":5, "ts":1718093442323621, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericSharing.h" }}
  3346. ,{ "pid":12345, "tid":5, "ts":1718093442323618, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericSharing.h" }}
  3347. ,{ "pid":12345, "tid":5, "ts":1718093442323694, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3348. ,{ "pid":12345, "tid":5, "ts":1718093442323787, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/CustomAttributeDataReader.h" }}
  3349. ,{ "pid":12345, "tid":5, "ts":1718093442323773, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeDataReader.h" }}
  3350. ,{ "pid":12345, "tid":5, "ts":1718093442323890, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3351. ,{ "pid":12345, "tid":5, "ts":1718093442323975, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-windowsruntime-types.h" }}
  3352. ,{ "pid":12345, "tid":5, "ts":1718093442323973, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-windowsruntime-types.h" }}
  3353. ,{ "pid":12345, "tid":5, "ts":1718093442324104, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3354. ,{ "pid":12345, "tid":5, "ts":1718093442324173, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-runtime-stats.cpp" }}
  3355. ,{ "pid":12345, "tid":5, "ts":1718093442324172, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-runtime-stats.cpp" }}
  3356. ,{ "pid":12345, "tid":5, "ts":1718093442324232, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3357. ,{ "pid":12345, "tid":5, "ts":1718093442324308, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-mono-api.h" }}
  3358. ,{ "pid":12345, "tid":5, "ts":1718093442324307, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-mono-api.h" }}
  3359. ,{ "pid":12345, "tid":5, "ts":1718093442324366, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3360. ,{ "pid":12345, "tid":5, "ts":1718093442324459, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-config.h" }}
  3361. ,{ "pid":12345, "tid":5, "ts":1718093442324458, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-config.h" }}
  3362. ,{ "pid":12345, "tid":5, "ts":1718093442324541, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3363. ,{ "pid":12345, "tid":5, "ts":1718093442324612, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-api-types.h" }}
  3364. ,{ "pid":12345, "tid":5, "ts":1718093442324611, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-api-types.h" }}
  3365. ,{ "pid":12345, "tid":5, "ts":1718093442324677, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3366. ,{ "pid":12345, "tid":5, "ts":1718093442324764, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.Sockets/SocketException.h" }}
  3367. ,{ "pid":12345, "tid":5, "ts":1718093442324761, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.Sockets/SocketException.h" }}
  3368. ,{ "pid":12345, "tid":5, "ts":1718093442324832, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3369. ,{ "pid":12345, "tid":5, "ts":1718093442324925, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.NetworkInformation/LinuxNetworkInterface.h" }}
  3370. ,{ "pid":12345, "tid":5, "ts":1718093442324924, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.NetworkInformation/LinuxNetworkInterface.h" }}
  3371. ,{ "pid":12345, "tid":5, "ts":1718093442324992, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3372. ,{ "pid":12345, "tid":5, "ts":1718093442325060, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/Process.h" }}
  3373. ,{ "pid":12345, "tid":5, "ts":1718093442325059, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/Process.h" }}
  3374. ,{ "pid":12345, "tid":5, "ts":1718093442325123, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3375. ,{ "pid":12345, "tid":5, "ts":1718093442325197, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/Mono.Net.Security/MonoTlsProviderFactory.h" }}
  3376. ,{ "pid":12345, "tid":5, "ts":1718093442325196, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/Mono.Net.Security/MonoTlsProviderFactory.h" }}
  3377. ,{ "pid":12345, "tid":5, "ts":1718093442325261, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3378. ,{ "pid":12345, "tid":5, "ts":1718093442325328, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ValueType.h" }}
  3379. ,{ "pid":12345, "tid":5, "ts":1718093442325379, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3380. ,{ "pid":12345, "tid":5, "ts":1718093442325466, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/String.h" }}
  3381. ,{ "pid":12345, "tid":5, "ts":1718093442325464, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/String.h" }}
  3382. ,{ "pid":12345, "tid":5, "ts":1718093442325528, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3383. ,{ "pid":12345, "tid":5, "ts":1718093442325609, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeMethodHandle.h" }}
  3384. ,{ "pid":12345, "tid":5, "ts":1718093442325607, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeMethodHandle.h" }}
  3385. ,{ "pid":12345, "tid":5, "ts":1718093442325663, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3386. ,{ "pid":12345, "tid":5, "ts":1718093442325742, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/NumberFormatter.h" }}
  3387. ,{ "pid":12345, "tid":5, "ts":1718093442325741, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/NumberFormatter.h" }}
  3388. ,{ "pid":12345, "tid":5, "ts":1718093442325818, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3389. ,{ "pid":12345, "tid":5, "ts":1718093442325900, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/GC.cpp" }}
  3390. ,{ "pid":12345, "tid":5, "ts":1718093442325900, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/GC.cpp" }}
  3391. ,{ "pid":12345, "tid":5, "ts":1718093442325954, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3392. ,{ "pid":12345, "tid":5, "ts":1718093442326033, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Enum.cpp" }}
  3393. ,{ "pid":12345, "tid":5, "ts":1718093442326032, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Enum.cpp" }}
  3394. ,{ "pid":12345, "tid":5, "ts":1718093442326094, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3395. ,{ "pid":12345, "tid":5, "ts":1718093442326179, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/CurrentSystemTimeZone.cpp" }}
  3396. ,{ "pid":12345, "tid":5, "ts":1718093442326178, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/CurrentSystemTimeZone.cpp" }}
  3397. ,{ "pid":12345, "tid":5, "ts":1718093442326241, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3398. ,{ "pid":12345, "tid":5, "ts":1718093442326338, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3399. ,{ "pid":12345, "tid":5, "ts":1718093442326452, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/AppDomain.h" }}
  3400. ,{ "pid":12345, "tid":5, "ts":1718093442326451, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/AppDomain.h" }}
  3401. ,{ "pid":12345, "tid":5, "ts":1718093442326576, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Timer.cpp" }}
  3402. ,{ "pid":12345, "tid":5, "ts":1718093442326575, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Timer.cpp" }}
  3403. ,{ "pid":12345, "tid":5, "ts":1718093442326681, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3404. ,{ "pid":12345, "tid":5, "ts":1718093442326747, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/NativeEventCalls.cpp" }}
  3405. ,{ "pid":12345, "tid":5, "ts":1718093442326745, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/NativeEventCalls.cpp" }}
  3406. ,{ "pid":12345, "tid":5, "ts":1718093442326869, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3407. ,{ "pid":12345, "tid":5, "ts":1718093442326943, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Text/Normalization.h" }}
  3408. ,{ "pid":12345, "tid":5, "ts":1718093442326942, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Text/Normalization.h" }}
  3409. ,{ "pid":12345, "tid":5, "ts":1718093442327006, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3410. ,{ "pid":12345, "tid":5, "ts":1718093442327079, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsImpersonationContext.h" }}
  3411. ,{ "pid":12345, "tid":5, "ts":1718093442327078, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsImpersonationContext.h" }}
  3412. ,{ "pid":12345, "tid":5, "ts":1718093442327132, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3413. ,{ "pid":12345, "tid":5, "ts":1718093442327227, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Cryptography/RNGCryptoServiceProvider.h" }}
  3414. ,{ "pid":12345, "tid":5, "ts":1718093442327226, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Cryptography/RNGCryptoServiceProvider.h" }}
  3415. ,{ "pid":12345, "tid":5, "ts":1718093442327352, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Versioning/VersioningHelper.h" }}
  3416. ,{ "pid":12345, "tid":5, "ts":1718093442327351, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Versioning/VersioningHelper.h" }}
  3417. ,{ "pid":12345, "tid":5, "ts":1718093442327478, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/MonoMethodMessage.h" }}
  3418. ,{ "pid":12345, "tid":5, "ts":1718093442327476, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/MonoMethodMessage.h" }}
  3419. ,{ "pid":12345, "tid":5, "ts":1718093442327536, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3420. ,{ "pid":12345, "tid":5, "ts":1718093442327616, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Activation/ActivationServices.h" }}
  3421. ,{ "pid":12345, "tid":5, "ts":1718093442327614, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Activation/ActivationServices.h" }}
  3422. ,{ "pid":12345, "tid":5, "ts":1718093442327688, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3423. ,{ "pid":12345, "tid":5, "ts":1718093442327813, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3424. ,{ "pid":12345, "tid":5, "ts":1718093442327929, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeParameterInfo.h" }}
  3425. ,{ "pid":12345, "tid":5, "ts":1718093442327926, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeParameterInfo.h" }}
  3426. ,{ "pid":12345, "tid":5, "ts":1718093442327998, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3427. ,{ "pid":12345, "tid":5, "ts":1718093442328118, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3428. ,{ "pid":12345, "tid":5, "ts":1718093442328245, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeEventInfo.cpp" }}
  3429. ,{ "pid":12345, "tid":5, "ts":1718093442328243, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeEventInfo.cpp" }}
  3430. ,{ "pid":12345, "tid":5, "ts":1718093442328331, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3431. ,{ "pid":12345, "tid":5, "ts":1718093442328423, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethod.cpp" }}
  3432. ,{ "pid":12345, "tid":5, "ts":1718093442328422, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethod.cpp" }}
  3433. ,{ "pid":12345, "tid":5, "ts":1718093442328490, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3434. ,{ "pid":12345, "tid":5, "ts":1718093442328601, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/FieldInfo.h" }}
  3435. ,{ "pid":12345, "tid":5, "ts":1718093442328598, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/FieldInfo.h" }}
  3436. ,{ "pid":12345, "tid":5, "ts":1718093442328665, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3437. ,{ "pid":12345, "tid":5, "ts":1718093442328731, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/CustomAttributeData.cpp" }}
  3438. ,{ "pid":12345, "tid":5, "ts":1718093442328730, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/CustomAttributeData.cpp" }}
  3439. ,{ "pid":12345, "tid":5, "ts":1718093442328833, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3440. ,{ "pid":12345, "tid":5, "ts":1718093442328992, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/MonoIO.cpp" }}
  3441. ,{ "pid":12345, "tid":5, "ts":1718093442328990, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/MonoIO.cpp" }}
  3442. ,{ "pid":12345, "tid":5, "ts":1718093442329107, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3443. ,{ "pid":12345, "tid":5, "ts":1718093442329219, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3444. ,{ "pid":12345, "tid":5, "ts":1718093442329307, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfoTables.h" }}
  3445. ,{ "pid":12345, "tid":5, "ts":1718093442329306, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfoTables.h" }}
  3446. ,{ "pid":12345, "tid":5, "ts":1718093442329380, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3447. ,{ "pid":12345, "tid":5, "ts":1718093442329468, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CompareInfo.h" }}
  3448. ,{ "pid":12345, "tid":5, "ts":1718093442329466, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CompareInfo.h" }}
  3449. ,{ "pid":12345, "tid":5, "ts":1718093442329540, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3450. ,{ "pid":12345, "tid":5, "ts":1718093442329640, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/StackFrame.h" }}
  3451. ,{ "pid":12345, "tid":5, "ts":1718093442329638, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/StackFrame.h" }}
  3452. ,{ "pid":12345, "tid":5, "ts":1718093442329703, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3453. ,{ "pid":12345, "tid":5, "ts":1718093442329781, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeMarshal.h" }}
  3454. ,{ "pid":12345, "tid":5, "ts":1718093442329780, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeMarshal.h" }}
  3455. ,{ "pid":12345, "tid":5, "ts":1718093442329854, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3456. ,{ "pid":12345, "tid":5, "ts":1718093442329968, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/Runtime.cpp" }}
  3457. ,{ "pid":12345, "tid":5, "ts":1718093442329967, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/Runtime.cpp" }}
  3458. ,{ "pid":12345, "tid":5, "ts":1718093442330027, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3459. ,{ "pid":12345, "tid":5, "ts":1718093442330154, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3460. ,{ "pid":12345, "tid":5, "ts":1718093442330304, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3461. ,{ "pid":12345, "tid":5, "ts":1718093442330375, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/GarbageCollector.cpp" }}
  3462. ,{ "pid":12345, "tid":5, "ts":1718093442330374, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/GarbageCollector.cpp" }}
  3463. ,{ "pid":12345, "tid":5, "ts":1718093442330436, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3464. ,{ "pid":12345, "tid":5, "ts":1718093442330508, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/debugger/il2cpp-api-debugger.h" }}
  3465. ,{ "pid":12345, "tid":5, "ts":1718093442330507, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/debugger/il2cpp-api-debugger.h" }}
  3466. ,{ "pid":12345, "tid":5, "ts":1718093442330651, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-il2cpp.cpp" }}
  3467. ,{ "pid":12345, "tid":5, "ts":1718093442330650, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-il2cpp.cpp" }}
  3468. ,{ "pid":12345, "tid":5, "ts":1718093442330729, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3469. ,{ "pid":12345, "tid":5, "ts":1718093442330830, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/zutil.c" }}
  3470. ,{ "pid":12345, "tid":5, "ts":1718093442330829, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/zutil.c" }}
  3471. ,{ "pid":12345, "tid":5, "ts":1718093442330907, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3472. ,{ "pid":12345, "tid":5, "ts":1718093442330991, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/README" }}
  3473. ,{ "pid":12345, "tid":5, "ts":1718093442331065, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3474. ,{ "pid":12345, "tid":5, "ts":1718093442331195, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inffast.h" }}
  3475. ,{ "pid":12345, "tid":5, "ts":1718093442331254, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3476. ,{ "pid":12345, "tid":5, "ts":1718093442331342, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzguts.h" }}
  3477. ,{ "pid":12345, "tid":5, "ts":1718093442331340, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzguts.h" }}
  3478. ,{ "pid":12345, "tid":5, "ts":1718093442331414, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3479. ,{ "pid":12345, "tid":5, "ts":1718093442331496, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/adler32.c" }}
  3480. ,{ "pid":12345, "tid":5, "ts":1718093442331495, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/adler32.c" }}
  3481. ,{ "pid":12345, "tid":5, "ts":1718093442331565, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3482. ,{ "pid":12345, "tid":5, "ts":1718093442331630, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xamarin-android/xamarin_getifaddrs.h" }}
  3483. ,{ "pid":12345, "tid":5, "ts":1718093442331629, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/xamarin_getifaddrs.h" }}
  3484. ,{ "pid":12345, "tid":5, "ts":1718093442331692, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3485. ,{ "pid":12345, "tid":5, "ts":1718093442331757, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/support/libm/complex.h" }}
  3486. ,{ "pid":12345, "tid":5, "ts":1718093442331755, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/support/libm/complex.h" }}
  3487. ,{ "pid":12345, "tid":5, "ts":1718093442331815, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3488. ,{ "pid":12345, "tid":5, "ts":1718093442331907, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/unlocked.h" }}
  3489. ,{ "pid":12345, "tid":5, "ts":1718093442331904, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/unlocked.h" }}
  3490. ,{ "pid":12345, "tid":5, "ts":1718093442331976, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3491. ,{ "pid":12345, "tid":5, "ts":1718093442332034, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/parse.h" }}
  3492. ,{ "pid":12345, "tid":5, "ts":1718093442332033, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/parse.h" }}
  3493. ,{ "pid":12345, "tid":5, "ts":1718093442332096, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3494. ,{ "pid":12345, "tid":5, "ts":1718093442332205, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3495. ,{ "pid":12345, "tid":5, "ts":1718093442332282, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking-posix.c" }}
  3496. ,{ "pid":12345, "tid":5, "ts":1718093442332280, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking-posix.c" }}
  3497. ,{ "pid":12345, "tid":5, "ts":1718093442332397, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3498. ,{ "pid":12345, "tid":5, "ts":1718093442332470, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-uri.c" }}
  3499. ,{ "pid":12345, "tid":5, "ts":1718093442332468, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-uri.c" }}
  3500. ,{ "pid":12345, "tid":5, "ts":1718093442332542, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3501. ,{ "pid":12345, "tid":5, "ts":1718093442332604, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads.c" }}
  3502. ,{ "pid":12345, "tid":5, "ts":1718093442332603, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads.c" }}
  3503. ,{ "pid":12345, "tid":5, "ts":1718093442332661, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3504. ,{ "pid":12345, "tid":5, "ts":1718093442332753, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-mach.c" }}
  3505. ,{ "pid":12345, "tid":5, "ts":1718093442332751, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-mach.c" }}
  3506. ,{ "pid":12345, "tid":5, "ts":1718093442332833, "dur":728, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3507. ,{ "pid":12345, "tid":5, "ts":1718093442333568, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-android.c" }}
  3508. ,{ "pid":12345, "tid":5, "ts":1718093442333566, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-android.c" }}
  3509. ,{ "pid":12345, "tid":5, "ts":1718093442333646, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3510. ,{ "pid":12345, "tid":5, "ts":1718093442333727, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-sigcontext.h" }}
  3511. ,{ "pid":12345, "tid":5, "ts":1718093442333726, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-sigcontext.h" }}
  3512. ,{ "pid":12345, "tid":5, "ts":1718093442333806, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3513. ,{ "pid":12345, "tid":5, "ts":1718093442333889, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-property-hash.c" }}
  3514. ,{ "pid":12345, "tid":5, "ts":1718093442333888, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-property-hash.c" }}
  3515. ,{ "pid":12345, "tid":5, "ts":1718093442333989, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3516. ,{ "pid":12345, "tid":5, "ts":1718093442334161, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-path.h" }}
  3517. ,{ "pid":12345, "tid":5, "ts":1718093442334153, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-path.h" }}
  3518. ,{ "pid":12345, "tid":5, "ts":1718093442334237, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3519. ,{ "pid":12345, "tid":5, "ts":1718093442334312, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-semaphore-win32.c" }}
  3520. ,{ "pid":12345, "tid":5, "ts":1718093442334303, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-semaphore-win32.c" }}
  3521. ,{ "pid":12345, "tid":5, "ts":1718093442334372, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3522. ,{ "pid":12345, "tid":5, "ts":1718093442334435, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-networkinterfaces.c" }}
  3523. ,{ "pid":12345, "tid":5, "ts":1718093442334433, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-networkinterfaces.c" }}
  3524. ,{ "pid":12345, "tid":5, "ts":1718093442334506, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3525. ,{ "pid":12345, "tid":5, "ts":1718093442334611, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-membar.h" }}
  3526. ,{ "pid":12345, "tid":5, "ts":1718093442334609, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-membar.h" }}
  3527. ,{ "pid":12345, "tid":5, "ts":1718093442334695, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3528. ,{ "pid":12345, "tid":5, "ts":1718093442334774, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-logger.c" }}
  3529. ,{ "pid":12345, "tid":5, "ts":1718093442334772, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-logger.c" }}
  3530. ,{ "pid":12345, "tid":5, "ts":1718093442334826, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3531. ,{ "pid":12345, "tid":5, "ts":1718093442334922, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-darwin.c" }}
  3532. ,{ "pid":12345, "tid":5, "ts":1718093442334921, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-darwin.c" }}
  3533. ,{ "pid":12345, "tid":5, "ts":1718093442335049, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-io-portability.h" }}
  3534. ,{ "pid":12345, "tid":5, "ts":1718093442335048, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-io-portability.h" }}
  3535. ,{ "pid":12345, "tid":5, "ts":1718093442335137, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3536. ,{ "pid":12345, "tid":5, "ts":1718093442335262, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-x86.c" }}
  3537. ,{ "pid":12345, "tid":5, "ts":1718093442335260, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-x86.c" }}
  3538. ,{ "pid":12345, "tid":5, "ts":1718093442335343, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3539. ,{ "pid":12345, "tid":5, "ts":1718093442335460, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-forward-internal.h" }}
  3540. ,{ "pid":12345, "tid":5, "ts":1718093442335459, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-forward-internal.h" }}
  3541. ,{ "pid":12345, "tid":5, "ts":1718093442335536, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3542. ,{ "pid":12345, "tid":5, "ts":1718093442335617, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl.h" }}
  3543. ,{ "pid":12345, "tid":5, "ts":1718093442335616, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl.h" }}
  3544. ,{ "pid":12345, "tid":5, "ts":1718093442335684, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3545. ,{ "pid":12345, "tid":5, "ts":1718093442335785, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-posix.c" }}
  3546. ,{ "pid":12345, "tid":5, "ts":1718093442335784, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-posix.c" }}
  3547. ,{ "pid":12345, "tid":5, "ts":1718093442335909, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-counters.c" }}
  3548. ,{ "pid":12345, "tid":5, "ts":1718093442335907, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-counters.c" }}
  3549. ,{ "pid":12345, "tid":5, "ts":1718093442335980, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3550. ,{ "pid":12345, "tid":5, "ts":1718093442336054, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-conc-hashtable.c" }}
  3551. ,{ "pid":12345, "tid":5, "ts":1718093442336053, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-conc-hashtable.c" }}
  3552. ,{ "pid":12345, "tid":5, "ts":1718093442336125, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3553. ,{ "pid":12345, "tid":5, "ts":1718093442336270, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/memfuncs.c" }}
  3554. ,{ "pid":12345, "tid":5, "ts":1718093442336268, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/memfuncs.c" }}
  3555. ,{ "pid":12345, "tid":5, "ts":1718093442336364, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3556. ,{ "pid":12345, "tid":5, "ts":1718093442336436, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-queue.c" }}
  3557. ,{ "pid":12345, "tid":5, "ts":1718093442336435, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-queue.c" }}
  3558. ,{ "pid":12345, "tid":5, "ts":1718093442336572, "dur":210, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-alloc.h" }}
  3559. ,{ "pid":12345, "tid":5, "ts":1718093442336570, "dur":214, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-alloc.h" }}
  3560. ,{ "pid":12345, "tid":5, "ts":1718093442336784, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3561. ,{ "pid":12345, "tid":5, "ts":1718093442336884, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/freebsd-elf32.h" }}
  3562. ,{ "pid":12345, "tid":5, "ts":1718093442336883, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/freebsd-elf32.h" }}
  3563. ,{ "pid":12345, "tid":5, "ts":1718093442337004, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3564. ,{ "pid":12345, "tid":5, "ts":1718093442337089, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/bsearch.h" }}
  3565. ,{ "pid":12345, "tid":5, "ts":1718093442337087, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/bsearch.h" }}
  3566. ,{ "pid":12345, "tid":5, "ts":1718093442337233, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-thread-pool.h" }}
  3567. ,{ "pid":12345, "tid":5, "ts":1718093442337230, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-thread-pool.h" }}
  3568. ,{ "pid":12345, "tid":5, "ts":1718093442337298, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3569. ,{ "pid":12345, "tid":5, "ts":1718093442337402, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-scan-object.h" }}
  3570. ,{ "pid":12345, "tid":5, "ts":1718093442337401, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-scan-object.h" }}
  3571. ,{ "pid":12345, "tid":5, "ts":1718093442337503, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3572. ,{ "pid":12345, "tid":5, "ts":1718093442337592, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pointer-queue.h" }}
  3573. ,{ "pid":12345, "tid":5, "ts":1718093442337591, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pointer-queue.h" }}
  3574. ,{ "pid":12345, "tid":5, "ts":1718093442337663, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3575. ,{ "pid":12345, "tid":5, "ts":1718093442337737, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-minor-scan-object.h" }}
  3576. ,{ "pid":12345, "tid":5, "ts":1718093442337735, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-minor-scan-object.h" }}
  3577. ,{ "pid":12345, "tid":5, "ts":1718093442337804, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3578. ,{ "pid":12345, "tid":5, "ts":1718093442337869, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-major-copy-object.h" }}
  3579. ,{ "pid":12345, "tid":5, "ts":1718093442337868, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-major-copy-object.h" }}
  3580. ,{ "pid":12345, "tid":5, "ts":1718093442337972, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3581. ,{ "pid":12345, "tid":5, "ts":1718093442338089, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-hash-table.c" }}
  3582. ,{ "pid":12345, "tid":5, "ts":1718093442338088, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-hash-table.c" }}
  3583. ,{ "pid":12345, "tid":5, "ts":1718093442338187, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3584. ,{ "pid":12345, "tid":5, "ts":1718093442338313, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-fin-weak-hash.c" }}
  3585. ,{ "pid":12345, "tid":5, "ts":1718093442338312, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-fin-weak-hash.c" }}
  3586. ,{ "pid":12345, "tid":5, "ts":1718093442338380, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3587. ,{ "pid":12345, "tid":5, "ts":1718093442338490, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-client.h" }}
  3588. ,{ "pid":12345, "tid":5, "ts":1718093442338488, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-client.h" }}
  3589. ,{ "pid":12345, "tid":5, "ts":1718093442338564, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3590. ,{ "pid":12345, "tid":5, "ts":1718093442338653, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/mini-arm64.h" }}
  3591. ,{ "pid":12345, "tid":5, "ts":1718093442338651, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/mini-arm64.h" }}
  3592. ,{ "pid":12345, "tid":5, "ts":1718093442338711, "dur":176, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3593. ,{ "pid":12345, "tid":5, "ts":1718093442338918, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-agent.c" }}
  3594. ,{ "pid":12345, "tid":5, "ts":1718093442338916, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-agent.c" }}
  3595. ,{ "pid":12345, "tid":5, "ts":1718093442338973, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3596. ,{ "pid":12345, "tid":5, "ts":1718093442339096, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket-internals.h" }}
  3597. ,{ "pid":12345, "tid":5, "ts":1718093442339095, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket-internals.h" }}
  3598. ,{ "pid":12345, "tid":5, "ts":1718093442339163, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3599. ,{ "pid":12345, "tid":5, "ts":1718093442339287, "dur":152, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-win32.c" }}
  3600. ,{ "pid":12345, "tid":5, "ts":1718093442339271, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-win32.c" }}
  3601. ,{ "pid":12345, "tid":5, "ts":1718093442339440, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3602. ,{ "pid":12345, "tid":5, "ts":1718093442339539, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-internals.h" }}
  3603. ,{ "pid":12345, "tid":5, "ts":1718093442339538, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-internals.h" }}
  3604. ,{ "pid":12345, "tid":5, "ts":1718093442339658, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3605. ,{ "pid":12345, "tid":5, "ts":1718093442339786, "dur":134, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32handle-namespace.h" }}
  3606. ,{ "pid":12345, "tid":5, "ts":1718093442339784, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32handle-namespace.h" }}
  3607. ,{ "pid":12345, "tid":5, "ts":1718093442339921, "dur":176, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3608. ,{ "pid":12345, "tid":5, "ts":1718093442340102, "dur":143, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-unix.c" }}
  3609. ,{ "pid":12345, "tid":5, "ts":1718093442340101, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-unix.c" }}
  3610. ,{ "pid":12345, "tid":5, "ts":1718093442340246, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3611. ,{ "pid":12345, "tid":5, "ts":1718093442340364, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32event-win32.c" }}
  3612. ,{ "pid":12345, "tid":5, "ts":1718093442340363, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32event-win32.c" }}
  3613. ,{ "pid":12345, "tid":5, "ts":1718093442340500, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32error-unix.c" }}
  3614. ,{ "pid":12345, "tid":5, "ts":1718093442340500, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32error-unix.c" }}
  3615. ,{ "pid":12345, "tid":5, "ts":1718093442340552, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3616. ,{ "pid":12345, "tid":5, "ts":1718093442340630, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/unity-icall.c" }}
  3617. ,{ "pid":12345, "tid":5, "ts":1718093442340629, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/unity-icall.c" }}
  3618. ,{ "pid":12345, "tid":5, "ts":1718093442340719, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3619. ,{ "pid":12345, "tid":5, "ts":1718093442340854, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool.c" }}
  3620. ,{ "pid":12345, "tid":5, "ts":1718093442340852, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool.c" }}
  3621. ,{ "pid":12345, "tid":5, "ts":1718093442340978, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3622. ,{ "pid":12345, "tid":5, "ts":1718093442341066, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/tabledefs.h" }}
  3623. ,{ "pid":12345, "tid":5, "ts":1718093442341064, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/tabledefs.h" }}
  3624. ,{ "pid":12345, "tid":5, "ts":1718093442341129, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3625. ,{ "pid":12345, "tid":5, "ts":1718093442341249, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sre-save.c" }}
  3626. ,{ "pid":12345, "tid":5, "ts":1718093442341248, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sre-save.c" }}
  3627. ,{ "pid":12345, "tid":5, "ts":1718093442341346, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3628. ,{ "pid":12345, "tid":5, "ts":1718093442341429, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-stw.c" }}
  3629. ,{ "pid":12345, "tid":5, "ts":1718093442341421, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-stw.c" }}
  3630. ,{ "pid":12345, "tid":5, "ts":1718093442341511, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3631. ,{ "pid":12345, "tid":5, "ts":1718093442341626, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3632. ,{ "pid":12345, "tid":5, "ts":1718093442341796, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security-core-clr.c" }}
  3633. ,{ "pid":12345, "tid":5, "ts":1718093442341795, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security-core-clr.c" }}
  3634. ,{ "pid":12345, "tid":5, "ts":1718093442341894, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3635. ,{ "pid":12345, "tid":5, "ts":1718093442341969, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/reflection.c" }}
  3636. ,{ "pid":12345, "tid":5, "ts":1718093442341968, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/reflection.c" }}
  3637. ,{ "pid":12345, "tid":5, "ts":1718093442342034, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3638. ,{ "pid":12345, "tid":5, "ts":1718093442342102, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/property-bag.h" }}
  3639. ,{ "pid":12345, "tid":5, "ts":1718093442342100, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/property-bag.h" }}
  3640. ,{ "pid":12345, "tid":5, "ts":1718093442342184, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3641. ,{ "pid":12345, "tid":5, "ts":1718093442342267, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler-events.h" }}
  3642. ,{ "pid":12345, "tid":5, "ts":1718093442342266, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler-events.h" }}
  3643. ,{ "pid":12345, "tid":5, "ts":1718093442342326, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3644. ,{ "pid":12345, "tid":5, "ts":1718093442342396, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object.h" }}
  3645. ,{ "pid":12345, "tid":5, "ts":1718093442342394, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object.h" }}
  3646. ,{ "pid":12345, "tid":5, "ts":1718093442342468, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3647. ,{ "pid":12345, "tid":5, "ts":1718093442342548, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/number-ms.c" }}
  3648. ,{ "pid":12345, "tid":5, "ts":1718093442342547, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/number-ms.c" }}
  3649. ,{ "pid":12345, "tid":5, "ts":1718093442342612, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3650. ,{ "pid":12345, "tid":5, "ts":1718093442342700, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-security-windows.c" }}
  3651. ,{ "pid":12345, "tid":5, "ts":1718093442342698, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-security-windows.c" }}
  3652. ,{ "pid":12345, "tid":5, "ts":1718093442342782, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3653. ,{ "pid":12345, "tid":5, "ts":1718093442342870, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-perfcounters-def.h" }}
  3654. ,{ "pid":12345, "tid":5, "ts":1718093442342868, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-perfcounters-def.h" }}
  3655. ,{ "pid":12345, "tid":5, "ts":1718093442342955, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3656. ,{ "pid":12345, "tid":5, "ts":1718093442343045, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-gc.h" }}
  3657. ,{ "pid":12345, "tid":5, "ts":1718093442343043, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-gc.h" }}
  3658. ,{ "pid":12345, "tid":5, "ts":1718093442343108, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3659. ,{ "pid":12345, "tid":5, "ts":1718093442343195, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-config.h" }}
  3660. ,{ "pid":12345, "tid":5, "ts":1718093442343193, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-config.h" }}
  3661. ,{ "pid":12345, "tid":5, "ts":1718093442343258, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3662. ,{ "pid":12345, "tid":5, "ts":1718093442343353, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-basic-block.h" }}
  3663. ,{ "pid":12345, "tid":5, "ts":1718093442343351, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-basic-block.h" }}
  3664. ,{ "pid":12345, "tid":5, "ts":1718093442343425, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3665. ,{ "pid":12345, "tid":5, "ts":1718093442343506, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata.h" }}
  3666. ,{ "pid":12345, "tid":5, "ts":1718093442343505, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata.h" }}
  3667. ,{ "pid":12345, "tid":5, "ts":1718093442343587, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3668. ,{ "pid":12345, "tid":5, "ts":1718093442343682, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mempool-internals.h" }}
  3669. ,{ "pid":12345, "tid":5, "ts":1718093442343679, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mempool-internals.h" }}
  3670. ,{ "pid":12345, "tid":5, "ts":1718093442343751, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3671. ,{ "pid":12345, "tid":5, "ts":1718093442343841, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/lock-tracer.c" }}
  3672. ,{ "pid":12345, "tid":5, "ts":1718093442343840, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/lock-tracer.c" }}
  3673. ,{ "pid":12345, "tid":5, "ts":1718093442343903, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3674. ,{ "pid":12345, "tid":5, "ts":1718093442343978, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/loader-internals.h" }}
  3675. ,{ "pid":12345, "tid":5, "ts":1718093442343977, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/loader-internals.h" }}
  3676. ,{ "pid":12345, "tid":5, "ts":1718093442344088, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3677. ,{ "pid":12345, "tid":5, "ts":1718093442344165, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall.c" }}
  3678. ,{ "pid":12345, "tid":5, "ts":1718093442344164, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall.c" }}
  3679. ,{ "pid":12345, "tid":5, "ts":1718093442344267, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3680. ,{ "pid":12345, "tid":5, "ts":1718093442344372, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/handle.c" }}
  3681. ,{ "pid":12345, "tid":5, "ts":1718093442344370, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/handle.c" }}
  3682. ,{ "pid":12345, "tid":5, "ts":1718093442344542, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3683. ,{ "pid":12345, "tid":5, "ts":1718093442344620, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/fdhandle.h" }}
  3684. ,{ "pid":12345, "tid":5, "ts":1718093442344618, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/fdhandle.h" }}
  3685. ,{ "pid":12345, "tid":5, "ts":1718093442344692, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3686. ,{ "pid":12345, "tid":5, "ts":1718093442344786, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/environment.c" }}
  3687. ,{ "pid":12345, "tid":5, "ts":1718093442344784, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/environment.c" }}
  3688. ,{ "pid":12345, "tid":5, "ts":1718093442344873, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3689. ,{ "pid":12345, "tid":5, "ts":1718093442344986, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3690. ,{ "pid":12345, "tid":5, "ts":1718093442345078, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-internals.h" }}
  3691. ,{ "pid":12345, "tid":5, "ts":1718093442345076, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-internals.h" }}
  3692. ,{ "pid":12345, "tid":5, "ts":1718093442345153, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3693. ,{ "pid":12345, "tid":5, "ts":1718093442345218, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/culture-info-tables.h" }}
  3694. ,{ "pid":12345, "tid":5, "ts":1718093442345217, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/culture-info-tables.h" }}
  3695. ,{ "pid":12345, "tid":5, "ts":1718093442345274, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3696. ,{ "pid":12345, "tid":5, "ts":1718093442345477, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-inlines.h" }}
  3697. ,{ "pid":12345, "tid":5, "ts":1718093442345475, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-inlines.h" }}
  3698. ,{ "pid":12345, "tid":5, "ts":1718093442345533, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3699. ,{ "pid":12345, "tid":5, "ts":1718093442345620, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/boehm-gc.c" }}
  3700. ,{ "pid":12345, "tid":5, "ts":1718093442345618, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/boehm-gc.c" }}
  3701. ,{ "pid":12345, "tid":5, "ts":1718093442345696, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3702. ,{ "pid":12345, "tid":5, "ts":1718093442345773, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/assembly.c" }}
  3703. ,{ "pid":12345, "tid":5, "ts":1718093442345772, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/assembly.c" }}
  3704. ,{ "pid":12345, "tid":5, "ts":1718093442345844, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3705. ,{ "pid":12345, "tid":5, "ts":1718093442345939, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gunicode.c" }}
  3706. ,{ "pid":12345, "tid":5, "ts":1718093442345937, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gunicode.c" }}
  3707. ,{ "pid":12345, "tid":5, "ts":1718093442346009, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3708. ,{ "pid":12345, "tid":5, "ts":1718093442346101, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gslist.c" }}
  3709. ,{ "pid":12345, "tid":5, "ts":1718093442346098, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gslist.c" }}
  3710. ,{ "pid":12345, "tid":5, "ts":1718093442346226, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/goutput.c" }}
  3711. ,{ "pid":12345, "tid":5, "ts":1718093442346224, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/goutput.c" }}
  3712. ,{ "pid":12345, "tid":5, "ts":1718093442346290, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3713. ,{ "pid":12345, "tid":5, "ts":1718093442346380, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/glib.h" }}
  3714. ,{ "pid":12345, "tid":5, "ts":1718093442346379, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/glib.h" }}
  3715. ,{ "pid":12345, "tid":5, "ts":1718093442346592, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/eglib-remap.h" }}
  3716. ,{ "pid":12345, "tid":5, "ts":1718093442346591, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/eglib-remap.h" }}
  3717. ,{ "pid":12345, "tid":5, "ts":1718093442346755, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3718. ,{ "pid":12345, "tid":5, "ts":1718093442346844, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/sparse_hash_map.h" }}
  3719. ,{ "pid":12345, "tid":5, "ts":1718093442346843, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/sparse_hash_map.h" }}
  3720. ,{ "pid":12345, "tid":5, "ts":1718093442346917, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3721. ,{ "pid":12345, "tid":5, "ts":1718093442346981, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/internal/densehashtable.h" }}
  3722. ,{ "pid":12345, "tid":5, "ts":1718093442346979, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/densehashtable.h" }}
  3723. ,{ "pid":12345, "tid":5, "ts":1718093442347051, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3724. ,{ "pid":12345, "tid":5, "ts":1718093442347117, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/vector_mlc.c" }}
  3725. ,{ "pid":12345, "tid":5, "ts":1718093442347168, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3726. ,{ "pid":12345, "tid":5, "ts":1718093442347227, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/thread_local_alloc.c" }}
  3727. ,{ "pid":12345, "tid":5, "ts":1718093442347225, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/thread_local_alloc.c" }}
  3728. ,{ "pid":12345, "tid":5, "ts":1718093442347285, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3729. ,{ "pid":12345, "tid":5, "ts":1718093442347357, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/subthread_create.c" }}
  3730. ,{ "pid":12345, "tid":5, "ts":1718093442347356, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/subthread_create.c" }}
  3731. ,{ "pid":12345, "tid":5, "ts":1718093442347429, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3732. ,{ "pid":12345, "tid":5, "ts":1718093442347506, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/leak_test.c" }}
  3733. ,{ "pid":12345, "tid":5, "ts":1718093442347504, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/leak_test.c" }}
  3734. ,{ "pid":12345, "tid":5, "ts":1718093442347586, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3735. ,{ "pid":12345, "tid":5, "ts":1718093442347664, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/reclaim.c" }}
  3736. ,{ "pid":12345, "tid":5, "ts":1718093442347663, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/reclaim.c" }}
  3737. ,{ "pid":12345, "tid":5, "ts":1718093442347727, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3738. ,{ "pid":12345, "tid":5, "ts":1718093442347802, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/os_dep.c" }}
  3739. ,{ "pid":12345, "tid":5, "ts":1718093442347801, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/os_dep.c" }}
  3740. ,{ "pid":12345, "tid":5, "ts":1718093442347853, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3741. ,{ "pid":12345, "tid":5, "ts":1718093442347913, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/mallocx.c" }}
  3742. ,{ "pid":12345, "tid":5, "ts":1718093442347911, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/mallocx.c" }}
  3743. ,{ "pid":12345, "tid":5, "ts":1718093442347983, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3744. ,{ "pid":12345, "tid":5, "ts":1718093442348073, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/sunc/sparc.h" }}
  3745. ,{ "pid":12345, "tid":5, "ts":1718093442348071, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/sunc/sparc.h" }}
  3746. ,{ "pid":12345, "tid":5, "ts":1718093442348135, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3747. ,{ "pid":12345, "tid":5, "ts":1718093442348229, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/x86.h" }}
  3748. ,{ "pid":12345, "tid":5, "ts":1718093442348220, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/x86.h" }}
  3749. ,{ "pid":12345, "tid":5, "ts":1718093442348394, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3750. ,{ "pid":12345, "tid":5, "ts":1718093442348491, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/double_atomic_load_store.h" }}
  3751. ,{ "pid":12345, "tid":5, "ts":1718093442348476, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/double_atomic_load_store.h" }}
  3752. ,{ "pid":12345, "tid":5, "ts":1718093442348556, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3753. ,{ "pid":12345, "tid":5, "ts":1718093442348630, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/icc/ia64.h" }}
  3754. ,{ "pid":12345, "tid":5, "ts":1718093442348628, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/icc/ia64.h" }}
  3755. ,{ "pid":12345, "tid":5, "ts":1718093442348704, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3756. ,{ "pid":12345, "tid":5, "ts":1718093442348774, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/sparc.h" }}
  3757. ,{ "pid":12345, "tid":5, "ts":1718093442348773, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/sparc.h" }}
  3758. ,{ "pid":12345, "tid":5, "ts":1718093442348845, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3759. ,{ "pid":12345, "tid":5, "ts":1718093442348913, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/ia64.h" }}
  3760. ,{ "pid":12345, "tid":5, "ts":1718093442348912, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/ia64.h" }}
  3761. ,{ "pid":12345, "tid":5, "ts":1718093442348981, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3762. ,{ "pid":12345, "tid":5, "ts":1718093442349070, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/cris.h" }}
  3763. ,{ "pid":12345, "tid":5, "ts":1718093442349068, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/cris.h" }}
  3764. ,{ "pid":12345, "tid":5, "ts":1718093442349144, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3765. ,{ "pid":12345, "tid":5, "ts":1718093442349214, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/emul_cas.h" }}
  3766. ,{ "pid":12345, "tid":5, "ts":1718093442349212, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/emul_cas.h" }}
  3767. ,{ "pid":12345, "tid":5, "ts":1718093442349279, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3768. ,{ "pid":12345, "tid":5, "ts":1718093442349366, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_acquire_release_volatile.h" }}
  3769. ,{ "pid":12345, "tid":5, "ts":1718093442349364, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_acquire_release_volatile.h" }}
  3770. ,{ "pid":12345, "tid":5, "ts":1718093442349429, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3771. ,{ "pid":12345, "tid":5, "ts":1718093442349517, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/README.md" }}
  3772. ,{ "pid":12345, "tid":5, "ts":1718093442349579, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3773. ,{ "pid":12345, "tid":5, "ts":1718093442349677, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/pthread_support.h" }}
  3774. ,{ "pid":12345, "tid":5, "ts":1718093442349675, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/pthread_support.h" }}
  3775. ,{ "pid":12345, "tid":5, "ts":1718093442349746, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3776. ,{ "pid":12345, "tid":5, "ts":1718093442349829, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/gc_atomic_ops.h" }}
  3777. ,{ "pid":12345, "tid":5, "ts":1718093442349996, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3778. ,{ "pid":12345, "tid":5, "ts":1718093442350081, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_typed.h" }}
  3779. ,{ "pid":12345, "tid":5, "ts":1718093442350080, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_typed.h" }}
  3780. ,{ "pid":12345, "tid":5, "ts":1718093442350152, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3781. ,{ "pid":12345, "tid":5, "ts":1718093442350218, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_disclaim.h" }}
  3782. ,{ "pid":12345, "tid":5, "ts":1718093442350217, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_disclaim.h" }}
  3783. ,{ "pid":12345, "tid":5, "ts":1718093442350282, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3784. ,{ "pid":12345, "tid":5, "ts":1718093442350414, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3785. ,{ "pid":12345, "tid":5, "ts":1718093442350733, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.Data.pdb" }}
  3786. ,{ "pid":12345, "tid":5, "ts":1718093442350617, "dur":282, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Mono.Security-FeaturesChecked.txt" }}
  3787. ,{ "pid":12345, "tid":5, "ts":1718093442350978, "dur":245, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.PhysicsModule-FeaturesChecked.txt" }}
  3788. ,{ "pid":12345, "tid":5, "ts":1718093442351268, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.AudioModule.dll" }}
  3789. ,{ "pid":12345, "tid":5, "ts":1718093442351266, "dur":252, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.AudioModule-FeaturesChecked.txt" }}
  3790. ,{ "pid":12345, "tid":5, "ts":1718093442351519, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3791. ,{ "pid":12345, "tid":5, "ts":1718093442351716, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Tools.dll" }}
  3792. ,{ "pid":12345, "tid":5, "ts":1718093442351820, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.Data.pdb" }}
  3793. ,{ "pid":12345, "tid":5, "ts":1718093442351599, "dur":483, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Core-FeaturesChecked.txt" }}
  3794. ,{ "pid":12345, "tid":5, "ts":1718093442352095, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3795. ,{ "pid":12345, "tid":5, "ts":1718093442352246, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/mscorlib.dll" }}
  3796. ,{ "pid":12345, "tid":5, "ts":1718093442352245, "dur":238, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/mscorlib-FeaturesChecked.txt" }}
  3797. ,{ "pid":12345, "tid":5, "ts":1718093442352532, "dur":373, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Configuration-FeaturesChecked.txt" }}
  3798. ,{ "pid":12345, "tid":5, "ts":1718093442352955, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.AnimationModule.dll" }}
  3799. ,{ "pid":12345, "tid":5, "ts":1718093442353175, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.Cecil.dll" }}
  3800. ,{ "pid":12345, "tid":5, "ts":1718093442352953, "dur":355, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.AnimationModule-FeaturesChecked.txt" }}
  3801. ,{ "pid":12345, "tid":5, "ts":1718093442353474, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.Data.pdb" }}
  3802. ,{ "pid":12345, "tid":5, "ts":1718093442353351, "dur":315, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.JSONSerializeModule-FeaturesChecked.txt" }}
  3803. ,{ "pid":12345, "tid":5, "ts":1718093442353716, "dur":328, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.Stores-FeaturesChecked.txt" }}
  3804. ,{ "pid":12345, "tid":5, "ts":1718093442354292, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.exe" }}
  3805. ,{ "pid":12345, "tid":5, "ts":1718093442354087, "dur":325, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Device-FeaturesChecked.txt" }}
  3806. ,{ "pid":12345, "tid":5, "ts":1718093442354680, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Newtonsoft.Json.dll" }}
  3807. ,{ "pid":12345, "tid":5, "ts":1718093442354884, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.IL2CPP.Api.dll" }}
  3808. ,{ "pid":12345, "tid":5, "ts":1718093442354459, "dur":586, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing-FeaturesChecked.txt" }}
  3809. ,{ "pid":12345, "tid":5, "ts":1718093442355091, "dur":291, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.GameCenterModule-FeaturesChecked.txt" }}
  3810. ,{ "pid":12345, "tid":5, "ts":1718093442355383, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3811. ,{ "pid":12345, "tid":5, "ts":1718093442355593, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Stevedore.Program.exe" }}
  3812. ,{ "pid":12345, "tid":5, "ts":1718093442355488, "dur":512, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Mathematics-FeaturesChecked.txt" }}
  3813. ,{ "pid":12345, "tid":5, "ts":1718093442356079, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3814. ,{ "pid":12345, "tid":5, "ts":1718093442356197, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3815. ,{ "pid":12345, "tid":5, "ts":1718093442356279, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/finalize.c" }}
  3816. ,{ "pid":12345, "tid":5, "ts":1718093442356277, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/finalize.c" }}
  3817. ,{ "pid":12345, "tid":5, "ts":1718093442356330, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3818. ,{ "pid":12345, "tid":5, "ts":1718093442356427, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/pcr_interface.c" }}
  3819. ,{ "pid":12345, "tid":5, "ts":1718093442356426, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/pcr_interface.c" }}
  3820. ,{ "pid":12345, "tid":5, "ts":1718093442356496, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3821. ,{ "pid":12345, "tid":5, "ts":1718093442356567, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/Mac_files/dataend.c" }}
  3822. ,{ "pid":12345, "tid":5, "ts":1718093442356566, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/Mac_files/dataend.c" }}
  3823. ,{ "pid":12345, "tid":5, "ts":1718093442356683, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/krait_signal_handler.c" }}
  3824. ,{ "pid":12345, "tid":5, "ts":1718093442356681, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/krait_signal_handler.c" }}
  3825. ,{ "pid":12345, "tid":5, "ts":1718093442356784, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3826. ,{ "pid":12345, "tid":5, "ts":1718093442356872, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/darwin_stop_world.c" }}
  3827. ,{ "pid":12345, "tid":5, "ts":1718093442356871, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/darwin_stop_world.c" }}
  3828. ,{ "pid":12345, "tid":5, "ts":1718093442356934, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3829. ,{ "pid":12345, "tid":5, "ts":1718093442357011, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/tests/de.c" }}
  3830. ,{ "pid":12345, "tid":5, "ts":1718093442357009, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/tests/de.c" }}
  3831. ,{ "pid":12345, "tid":5, "ts":1718093442357075, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3832. ,{ "pid":12345, "tid":5, "ts":1718093442357187, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3833. ,{ "pid":12345, "tid":5, "ts":1718093442357258, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/alloc.c" }}
  3834. ,{ "pid":12345, "tid":5, "ts":1718093442357257, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/alloc.c" }}
  3835. ,{ "pid":12345, "tid":5, "ts":1718093442357312, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3836. ,{ "pid":12345, "tid":5, "ts":1718093442357427, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3837. ,{ "pid":12345, "tid":5, "ts":1718093442357525, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3838. ,{ "pid":12345, "tid":5, "ts":1718093442357682, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3839. ,{ "pid":12345, "tid":5, "ts":1718093442357752, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WebGL/Include/C/Baselib_DynamicLibrary.inl.h" }}
  3840. ,{ "pid":12345, "tid":5, "ts":1718093442357750, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WebGL/Include/C/Baselib_DynamicLibrary.inl.h" }}
  3841. ,{ "pid":12345, "tid":5, "ts":1718093442357823, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3842. ,{ "pid":12345, "tid":5, "ts":1718093442357948, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/VisionOS/Include/C/Baselib_DynamicLibrary.inl.h" }}
  3843. ,{ "pid":12345, "tid":5, "ts":1718093442357946, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/VisionOS/Include/C/Baselib_DynamicLibrary.inl.h" }}
  3844. ,{ "pid":12345, "tid":5, "ts":1718093442358015, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3845. ,{ "pid":12345, "tid":5, "ts":1718093442358145, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/UniversalWindows/Include/BaselibPlatformSpecificEnvironment.h" }}
  3846. ,{ "pid":12345, "tid":5, "ts":1718093442358143, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/UniversalWindows/Include/BaselibPlatformSpecificEnvironment.h" }}
  3847. ,{ "pid":12345, "tid":5, "ts":1718093442358295, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3848. ,{ "pid":12345, "tid":5, "ts":1718093442358382, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/OSX/Include/BaselibPlatformSpecificEnvironment.h" }}
  3849. ,{ "pid":12345, "tid":5, "ts":1718093442358380, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/OSX/Include/BaselibPlatformSpecificEnvironment.h" }}
  3850. ,{ "pid":12345, "tid":5, "ts":1718093442358442, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3851. ,{ "pid":12345, "tid":5, "ts":1718093442358521, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/IOS/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  3852. ,{ "pid":12345, "tid":5, "ts":1718093442358520, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/IOS/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  3853. ,{ "pid":12345, "tid":5, "ts":1718093442358588, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3854. ,{ "pid":12345, "tid":5, "ts":1718093442358687, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_FileIO.inl.h" }}
  3855. ,{ "pid":12345, "tid":5, "ts":1718093442358685, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_FileIO.inl.h" }}
  3856. ,{ "pid":12345, "tid":5, "ts":1718093442358756, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3857. ,{ "pid":12345, "tid":5, "ts":1718093442358864, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Android/Include/C/Baselib_ErrorState.inl.h" }}
  3858. ,{ "pid":12345, "tid":5, "ts":1718093442358861, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Android/Include/C/Baselib_ErrorState.inl.h" }}
  3859. ,{ "pid":12345, "tid":5, "ts":1718093442358935, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3860. ,{ "pid":12345, "tid":5, "ts":1718093442359090, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/UndefineCoreMacros.h" }}
  3861. ,{ "pid":12345, "tid":5, "ts":1718093442359087, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/UndefineCoreMacros.h" }}
  3862. ,{ "pid":12345, "tid":5, "ts":1718093442359173, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3863. ,{ "pid":12345, "tid":5, "ts":1718093442359257, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/Compiler/CompilerEnvironmentMsvc.h" }}
  3864. ,{ "pid":12345, "tid":5, "ts":1718093442359256, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/Compiler/CompilerEnvironmentMsvc.h" }}
  3865. ,{ "pid":12345, "tid":5, "ts":1718093442359346, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3866. ,{ "pid":12345, "tid":5, "ts":1718093442359438, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/External/utfcpp/source/utf8/unchecked.h" }}
  3867. ,{ "pid":12345, "tid":5, "ts":1718093442359436, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/External/utfcpp/source/utf8/unchecked.h" }}
  3868. ,{ "pid":12345, "tid":5, "ts":1718093442359545, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/External/utfcpp/source/utf8.h" }}
  3869. ,{ "pid":12345, "tid":5, "ts":1718093442359544, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/External/utfcpp/source/utf8.h" }}
  3870. ,{ "pid":12345, "tid":5, "ts":1718093442359649, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3871. ,{ "pid":12345, "tid":5, "ts":1718093442359746, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Semaphore.h" }}
  3872. ,{ "pid":12345, "tid":5, "ts":1718093442359745, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Semaphore.h" }}
  3873. ,{ "pid":12345, "tid":5, "ts":1718093442359807, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3874. ,{ "pid":12345, "tid":5, "ts":1718093442359881, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpmc_node_stack.h" }}
  3875. ,{ "pid":12345, "tid":5, "ts":1718093442359879, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpmc_node_stack.h" }}
  3876. ,{ "pid":12345, "tid":5, "ts":1718093442359943, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3877. ,{ "pid":12345, "tid":5, "ts":1718093442360038, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/tlsf_allocator.inl.h" }}
  3878. ,{ "pid":12345, "tid":5, "ts":1718093442360037, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/tlsf_allocator.inl.h" }}
  3879. ,{ "pid":12345, "tid":5, "ts":1718093442360101, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3880. ,{ "pid":12345, "tid":5, "ts":1718093442360177, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/ConditionVariableData_FutexBased.inl.h" }}
  3881. ,{ "pid":12345, "tid":5, "ts":1718093442360175, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/ConditionVariableData_FutexBased.inl.h" }}
  3882. ,{ "pid":12345, "tid":5, "ts":1718093442360259, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3883. ,{ "pid":12345, "tid":5, "ts":1718093442360407, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/heap_allocator.h" }}
  3884. ,{ "pid":12345, "tid":5, "ts":1718093442360406, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/heap_allocator.h" }}
  3885. ,{ "pid":12345, "tid":5, "ts":1718093442360524, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3886. ,{ "pid":12345, "tid":5, "ts":1718093442360606, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/CappedSemaphore.h" }}
  3887. ,{ "pid":12345, "tid":5, "ts":1718093442360605, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/CappedSemaphore.h" }}
  3888. ,{ "pid":12345, "tid":5, "ts":1718093442360718, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3889. ,{ "pid":12345, "tid":5, "ts":1718093442360878, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/affix_allocator.h" }}
  3890. ,{ "pid":12345, "tid":5, "ts":1718093442360875, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/affix_allocator.h" }}
  3891. ,{ "pid":12345, "tid":5, "ts":1718093442361003, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3892. ,{ "pid":12345, "tid":5, "ts":1718093442361092, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Gcc.h" }}
  3893. ,{ "pid":12345, "tid":5, "ts":1718093442361090, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Gcc.h" }}
  3894. ,{ "pid":12345, "tid":5, "ts":1718093442361163, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3895. ,{ "pid":12345, "tid":5, "ts":1718093442361242, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_HighCapacitySemaphore_SemaphoreBased.inl.h" }}
  3896. ,{ "pid":12345, "tid":5, "ts":1718093442361240, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_HighCapacitySemaphore_SemaphoreBased.inl.h" }}
  3897. ,{ "pid":12345, "tid":5, "ts":1718093442361327, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3898. ,{ "pid":12345, "tid":5, "ts":1718093442361444, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3899. ,{ "pid":12345, "tid":5, "ts":1718093442361533, "dur":136, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Thread.h" }}
  3900. ,{ "pid":12345, "tid":5, "ts":1718093442361532, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Thread.h" }}
  3901. ,{ "pid":12345, "tid":5, "ts":1718093442361674, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3902. ,{ "pid":12345, "tid":5, "ts":1718093442361750, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Semaphore.h" }}
  3903. ,{ "pid":12345, "tid":5, "ts":1718093442361749, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Semaphore.h" }}
  3904. ,{ "pid":12345, "tid":5, "ts":1718093442361826, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3905. ,{ "pid":12345, "tid":5, "ts":1718093442361897, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Lock.h" }}
  3906. ,{ "pid":12345, "tid":5, "ts":1718093442361895, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Lock.h" }}
  3907. ,{ "pid":12345, "tid":5, "ts":1718093442361963, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3908. ,{ "pid":12345, "tid":5, "ts":1718093442362045, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_DynamicLibrary.h" }}
  3909. ,{ "pid":12345, "tid":5, "ts":1718093442362044, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_DynamicLibrary.h" }}
  3910. ,{ "pid":12345, "tid":5, "ts":1718093442362134, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3911. ,{ "pid":12345, "tid":5, "ts":1718093442362229, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Atomic_LLSC.h" }}
  3912. ,{ "pid":12345, "tid":5, "ts":1718093442362227, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Atomic_LLSC.h" }}
  3913. ,{ "pid":12345, "tid":5, "ts":1718093442362288, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3914. ,{ "pid":12345, "tid":5, "ts":1718093442362375, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/UnityLinker.pdb" }}
  3915. ,{ "pid":12345, "tid":5, "ts":1718093442362374, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker.pdb" }}
  3916. ,{ "pid":12345, "tid":5, "ts":1718093442362463, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3917. ,{ "pid":12345, "tid":5, "ts":1718093442362571, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.TinyProfiler.dll" }}
  3918. ,{ "pid":12345, "tid":5, "ts":1718093442362563, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.TinyProfiler.dll" }}
  3919. ,{ "pid":12345, "tid":5, "ts":1718093442362659, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3920. ,{ "pid":12345, "tid":5, "ts":1718093442362736, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Linker.Api.Output.dll" }}
  3921. ,{ "pid":12345, "tid":5, "ts":1718093442362734, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Linker.Api.Output.dll" }}
  3922. ,{ "pid":12345, "tid":5, "ts":1718093442362818, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3923. ,{ "pid":12345, "tid":5, "ts":1718093442362886, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.DataModel.pdb" }}
  3924. ,{ "pid":12345, "tid":5, "ts":1718093442362885, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.DataModel.pdb" }}
  3925. ,{ "pid":12345, "tid":5, "ts":1718093442362957, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3926. ,{ "pid":12345, "tid":5, "ts":1718093442363109, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Common35.dll" }}
  3927. ,{ "pid":12345, "tid":5, "ts":1718093442363107, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Common35.dll" }}
  3928. ,{ "pid":12345, "tid":5, "ts":1718093442363180, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3929. ,{ "pid":12345, "tid":5, "ts":1718093442363271, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.dll" }}
  3930. ,{ "pid":12345, "tid":5, "ts":1718093442363270, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.dll" }}
  3931. ,{ "pid":12345, "tid":5, "ts":1718093442363352, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3932. ,{ "pid":12345, "tid":5, "ts":1718093442363468, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.pdb" }}
  3933. ,{ "pid":12345, "tid":5, "ts":1718093442363465, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.pdb" }}
  3934. ,{ "pid":12345, "tid":5, "ts":1718093442363532, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3935. ,{ "pid":12345, "tid":5, "ts":1718093442363596, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.pdb" }}
  3936. ,{ "pid":12345, "tid":5, "ts":1718093442363595, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.pdb" }}
  3937. ,{ "pid":12345, "tid":5, "ts":1718093442363667, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3938. ,{ "pid":12345, "tid":5, "ts":1718093442363727, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.pdb" }}
  3939. ,{ "pid":12345, "tid":5, "ts":1718093442363725, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.pdb" }}
  3940. ,{ "pid":12345, "tid":5, "ts":1718093442363793, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3941. ,{ "pid":12345, "tid":5, "ts":1718093442363871, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Android.dll" }}
  3942. ,{ "pid":12345, "tid":5, "ts":1718093442363870, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Android.dll" }}
  3943. ,{ "pid":12345, "tid":5, "ts":1718093442363953, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3944. ,{ "pid":12345, "tid":5, "ts":1718093442364057, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Cecil.Visitor.pdb" }}
  3945. ,{ "pid":12345, "tid":5, "ts":1718093442364055, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Cecil.Visitor.pdb" }}
  3946. ,{ "pid":12345, "tid":5, "ts":1718093442364119, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3947. ,{ "pid":12345, "tid":5, "ts":1718093442364213, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.XPath.XDocument.dll" }}
  3948. ,{ "pid":12345, "tid":5, "ts":1718093442364212, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.XPath.XDocument.dll" }}
  3949. ,{ "pid":12345, "tid":5, "ts":1718093442364284, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3950. ,{ "pid":12345, "tid":5, "ts":1718093442364365, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.ReaderWriter.dll" }}
  3951. ,{ "pid":12345, "tid":5, "ts":1718093442364363, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.ReaderWriter.dll" }}
  3952. ,{ "pid":12345, "tid":5, "ts":1718093442364441, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3953. ,{ "pid":12345, "tid":5, "ts":1718093442364532, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ValueTuple.dll" }}
  3954. ,{ "pid":12345, "tid":5, "ts":1718093442364531, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ValueTuple.dll" }}
  3955. ,{ "pid":12345, "tid":5, "ts":1718093442364638, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3956. ,{ "pid":12345, "tid":5, "ts":1718093442364703, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Tasks.Parallel.dll" }}
  3957. ,{ "pid":12345, "tid":5, "ts":1718093442364702, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Tasks.Parallel.dll" }}
  3958. ,{ "pid":12345, "tid":5, "ts":1718093442364799, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3959. ,{ "pid":12345, "tid":5, "ts":1718093442364887, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Text.RegularExpressions.dll" }}
  3960. ,{ "pid":12345, "tid":5, "ts":1718093442364885, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.RegularExpressions.dll" }}
  3961. ,{ "pid":12345, "tid":5, "ts":1718093442365018, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ServiceProcess.dll" }}
  3962. ,{ "pid":12345, "tid":5, "ts":1718093442365016, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ServiceProcess.dll" }}
  3963. ,{ "pid":12345, "tid":5, "ts":1718093442365073, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3964. ,{ "pid":12345, "tid":5, "ts":1718093442365132, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.dll" }}
  3965. ,{ "pid":12345, "tid":5, "ts":1718093442365130, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.dll" }}
  3966. ,{ "pid":12345, "tid":5, "ts":1718093442365197, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3967. ,{ "pid":12345, "tid":5, "ts":1718093442365263, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.Csp.dll" }}
  3968. ,{ "pid":12345, "tid":5, "ts":1718093442365262, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.Csp.dll" }}
  3969. ,{ "pid":12345, "tid":5, "ts":1718093442365352, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3970. ,{ "pid":12345, "tid":5, "ts":1718093442365444, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Serialization.Primitives.dll" }}
  3971. ,{ "pid":12345, "tid":5, "ts":1718093442365442, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Serialization.Primitives.dll" }}
  3972. ,{ "pid":12345, "tid":5, "ts":1718093442365518, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3973. ,{ "pid":12345, "tid":5, "ts":1718093442365599, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.InteropServices.RuntimeInformation.dll" }}
  3974. ,{ "pid":12345, "tid":5, "ts":1718093442365596, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.InteropServices.RuntimeInformation.dll" }}
  3975. ,{ "pid":12345, "tid":5, "ts":1718093442365663, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3976. ,{ "pid":12345, "tid":5, "ts":1718093442365737, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.CompilerServices.Unsafe.dll" }}
  3977. ,{ "pid":12345, "tid":5, "ts":1718093442365735, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.CompilerServices.Unsafe.dll" }}
  3978. ,{ "pid":12345, "tid":5, "ts":1718093442365817, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3979. ,{ "pid":12345, "tid":5, "ts":1718093442365905, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.Metadata.dll" }}
  3980. ,{ "pid":12345, "tid":5, "ts":1718093442365903, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Metadata.dll" }}
  3981. ,{ "pid":12345, "tid":5, "ts":1718093442365991, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3982. ,{ "pid":12345, "tid":5, "ts":1718093442366067, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.DispatchProxy.dll" }}
  3983. ,{ "pid":12345, "tid":5, "ts":1718093442366066, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.DispatchProxy.dll" }}
  3984. ,{ "pid":12345, "tid":5, "ts":1718093442366145, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3985. ,{ "pid":12345, "tid":5, "ts":1718093442366231, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ObjectModel.dll" }}
  3986. ,{ "pid":12345, "tid":5, "ts":1718093442366229, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ObjectModel.dll" }}
  3987. ,{ "pid":12345, "tid":5, "ts":1718093442366290, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3988. ,{ "pid":12345, "tid":5, "ts":1718093442366377, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.WebHeaderCollection.dll" }}
  3989. ,{ "pid":12345, "tid":5, "ts":1718093442366375, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.WebHeaderCollection.dll" }}
  3990. ,{ "pid":12345, "tid":5, "ts":1718093442366469, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3991. ,{ "pid":12345, "tid":5, "ts":1718093442366562, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Quic.dll" }}
  3992. ,{ "pid":12345, "tid":5, "ts":1718093442366560, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Quic.dll" }}
  3993. ,{ "pid":12345, "tid":5, "ts":1718093442366628, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3994. ,{ "pid":12345, "tid":5, "ts":1718093442366724, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.HttpListener.dll" }}
  3995. ,{ "pid":12345, "tid":5, "ts":1718093442366722, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.HttpListener.dll" }}
  3996. ,{ "pid":12345, "tid":5, "ts":1718093442366796, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3997. ,{ "pid":12345, "tid":5, "ts":1718093442366891, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Linq.Parallel.dll" }}
  3998. ,{ "pid":12345, "tid":5, "ts":1718093442366890, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Linq.Parallel.dll" }}
  3999. ,{ "pid":12345, "tid":5, "ts":1718093442366968, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4000. ,{ "pid":12345, "tid":5, "ts":1718093442367044, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.Pipes.AccessControl.dll" }}
  4001. ,{ "pid":12345, "tid":5, "ts":1718093442367043, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Pipes.AccessControl.dll" }}
  4002. ,{ "pid":12345, "tid":5, "ts":1718093442367120, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4003. ,{ "pid":12345, "tid":5, "ts":1718093442367222, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.FileSystem.dll" }}
  4004. ,{ "pid":12345, "tid":5, "ts":1718093442367221, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.FileSystem.dll" }}
  4005. ,{ "pid":12345, "tid":5, "ts":1718093442367283, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4006. ,{ "pid":12345, "tid":5, "ts":1718093442367355, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.Compression.Brotli.dll" }}
  4007. ,{ "pid":12345, "tid":5, "ts":1718093442367355, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Compression.Brotli.dll" }}
  4008. ,{ "pid":12345, "tid":5, "ts":1718093442367425, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4009. ,{ "pid":12345, "tid":5, "ts":1718093442367516, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Drawing.Primitives.dll" }}
  4010. ,{ "pid":12345, "tid":5, "ts":1718093442367515, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Drawing.Primitives.dll" }}
  4011. ,{ "pid":12345, "tid":5, "ts":1718093442367581, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4012. ,{ "pid":12345, "tid":5, "ts":1718093442367666, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.StackTrace.dll" }}
  4013. ,{ "pid":12345, "tid":5, "ts":1718093442367665, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.StackTrace.dll" }}
  4014. ,{ "pid":12345, "tid":5, "ts":1718093442367743, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4015. ,{ "pid":12345, "tid":5, "ts":1718093442367835, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Data.DataSetExtensions.dll" }}
  4016. ,{ "pid":12345, "tid":5, "ts":1718093442367834, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Data.DataSetExtensions.dll" }}
  4017. ,{ "pid":12345, "tid":5, "ts":1718093442367909, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4018. ,{ "pid":12345, "tid":5, "ts":1718093442367997, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ComponentModel.Primitives.dll" }}
  4019. ,{ "pid":12345, "tid":5, "ts":1718093442367987, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ComponentModel.Primitives.dll" }}
  4020. ,{ "pid":12345, "tid":5, "ts":1718093442368060, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4021. ,{ "pid":12345, "tid":5, "ts":1718093442368153, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Collections.NonGeneric.dll" }}
  4022. ,{ "pid":12345, "tid":5, "ts":1718093442368151, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Collections.NonGeneric.dll" }}
  4023. ,{ "pid":12345, "tid":5, "ts":1718093442368229, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4024. ,{ "pid":12345, "tid":5, "ts":1718093442368337, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/NiceIO.pdb" }}
  4025. ,{ "pid":12345, "tid":5, "ts":1718093442368335, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/NiceIO.pdb" }}
  4026. ,{ "pid":12345, "tid":5, "ts":1718093442368398, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4027. ,{ "pid":12345, "tid":5, "ts":1718093442368467, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/monolinker.dll" }}
  4028. ,{ "pid":12345, "tid":5, "ts":1718093442368466, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/monolinker.dll" }}
  4029. ,{ "pid":12345, "tid":5, "ts":1718093442368534, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4030. ,{ "pid":12345, "tid":5, "ts":1718093442368625, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.pdb" }}
  4031. ,{ "pid":12345, "tid":5, "ts":1718093442368623, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.pdb" }}
  4032. ,{ "pid":12345, "tid":5, "ts":1718093442368676, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4033. ,{ "pid":12345, "tid":5, "ts":1718093442368755, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Microsoft.VisualBasic.dll" }}
  4034. ,{ "pid":12345, "tid":5, "ts":1718093442368754, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.VisualBasic.dll" }}
  4035. ,{ "pid":12345, "tid":5, "ts":1718093442368837, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4036. ,{ "pid":12345, "tid":5, "ts":1718093442368920, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libSystem.Native.dylib" }}
  4037. ,{ "pid":12345, "tid":5, "ts":1718093442368983, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4038. ,{ "pid":12345, "tid":5, "ts":1718093442369081, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libhostpolicy.dylib" }}
  4039. ,{ "pid":12345, "tid":5, "ts":1718093442369176, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4040. ,{ "pid":12345, "tid":5, "ts":1718093442369262, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/il2cpp.runtimeconfig.json" }}
  4041. ,{ "pid":12345, "tid":5, "ts":1718093442369261, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/il2cpp.runtimeconfig.json" }}
  4042. ,{ "pid":12345, "tid":5, "ts":1718093442369330, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4043. ,{ "pid":12345, "tid":5, "ts":1718093442369394, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/il2cpp" }}
  4044. ,{ "pid":12345, "tid":5, "ts":1718093442369494, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4045. ,{ "pid":12345, "tid":5, "ts":1718093442369564, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.TundraBackend.dll" }}
  4046. ,{ "pid":12345, "tid":5, "ts":1718093442369562, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.TundraBackend.dll" }}
  4047. ,{ "pid":12345, "tid":5, "ts":1718093442369620, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4048. ,{ "pid":12345, "tid":5, "ts":1718093442369686, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Windows.dll" }}
  4049. ,{ "pid":12345, "tid":5, "ts":1718093442369678, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Windows.dll" }}
  4050. ,{ "pid":12345, "tid":5, "ts":1718093442369746, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4051. ,{ "pid":12345, "tid":5, "ts":1718093442369815, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.UWP.pdb" }}
  4052. ,{ "pid":12345, "tid":5, "ts":1718093442369815, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.UWP.pdb" }}
  4053. ,{ "pid":12345, "tid":5, "ts":1718093442369900, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4054. ,{ "pid":12345, "tid":5, "ts":1718093442369977, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.LLVM.pdb" }}
  4055. ,{ "pid":12345, "tid":5, "ts":1718093442369976, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.LLVM.pdb" }}
  4056. ,{ "pid":12345, "tid":5, "ts":1718093442370076, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4057. ,{ "pid":12345, "tid":5, "ts":1718093442370148, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.GNU.pdb" }}
  4058. ,{ "pid":12345, "tid":5, "ts":1718093442370147, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.GNU.pdb" }}
  4059. ,{ "pid":12345, "tid":5, "ts":1718093442370209, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4060. ,{ "pid":12345, "tid":5, "ts":1718093442370279, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Android.pdb" }}
  4061. ,{ "pid":12345, "tid":5, "ts":1718093442370278, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Android.pdb" }}
  4062. ,{ "pid":12345, "tid":5, "ts":1718093442370331, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4063. ,{ "pid":12345, "tid":5, "ts":1718093442370408, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Stevedore.Program.pdb" }}
  4064. ,{ "pid":12345, "tid":5, "ts":1718093442370406, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Stevedore.Program.pdb" }}
  4065. ,{ "pid":12345, "tid":5, "ts":1718093442370511, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4066. ,{ "pid":12345, "tid":5, "ts":1718093442370597, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.CSharpSupport.dll" }}
  4067. ,{ "pid":12345, "tid":5, "ts":1718093442370596, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.CSharpSupport.dll" }}
  4068. ,{ "pid":12345, "tid":5, "ts":1718093442370683, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4069. ,{ "pid":12345, "tid":5, "ts":1718093442370749, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.BeeDriver.pdb" }}
  4070. ,{ "pid":12345, "tid":5, "ts":1718093442370748, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.BeeDriver.pdb" }}
  4071. ,{ "pid":12345, "tid":5, "ts":1718093442370820, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4072. ,{ "pid":12345, "tid":5, "ts":1718093442370893, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.Api.Output.pdb" }}
  4073. ,{ "pid":12345, "tid":5, "ts":1718093442370891, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.Api.Output.pdb" }}
  4074. ,{ "pid":12345, "tid":5, "ts":1718093442370960, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4075. ,{ "pid":12345, "tid":5, "ts":1718093442371039, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/UnityLinker.dll.config" }}
  4076. ,{ "pid":12345, "tid":5, "ts":1718093442371038, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker.dll.config" }}
  4077. ,{ "pid":12345, "tid":5, "ts":1718093442371122, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4078. ,{ "pid":12345, "tid":5, "ts":1718093442371206, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Options.pdb" }}
  4079. ,{ "pid":12345, "tid":5, "ts":1718093442371205, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Options.pdb" }}
  4080. ,{ "pid":12345, "tid":5, "ts":1718093442371285, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4081. ,{ "pid":12345, "tid":5, "ts":1718093442371366, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Linker.Api.dll" }}
  4082. ,{ "pid":12345, "tid":5, "ts":1718093442371364, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Linker.Api.dll" }}
  4083. ,{ "pid":12345, "tid":5, "ts":1718093442371433, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4084. ,{ "pid":12345, "tid":5, "ts":1718093442371533, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.DataModel.dll" }}
  4085. ,{ "pid":12345, "tid":5, "ts":1718093442371532, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.DataModel.dll" }}
  4086. ,{ "pid":12345, "tid":5, "ts":1718093442371614, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4087. ,{ "pid":12345, "tid":5, "ts":1718093442371705, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Common.dll" }}
  4088. ,{ "pid":12345, "tid":5, "ts":1718093442371703, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Common.dll" }}
  4089. ,{ "pid":12345, "tid":5, "ts":1718093442371778, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4090. ,{ "pid":12345, "tid":5, "ts":1718093442371848, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.pdb" }}
  4091. ,{ "pid":12345, "tid":5, "ts":1718093442371846, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.pdb" }}
  4092. ,{ "pid":12345, "tid":5, "ts":1718093442371903, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4093. ,{ "pid":12345, "tid":5, "ts":1718093442371998, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.pdb" }}
  4094. ,{ "pid":12345, "tid":5, "ts":1718093442371995, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.pdb" }}
  4095. ,{ "pid":12345, "tid":5, "ts":1718093442372064, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4096. ,{ "pid":12345, "tid":5, "ts":1718093442372165, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Linux.pdb" }}
  4097. ,{ "pid":12345, "tid":5, "ts":1718093442372164, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Linux.pdb" }}
  4098. ,{ "pid":12345, "tid":5, "ts":1718093442372233, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4099. ,{ "pid":12345, "tid":5, "ts":1718093442372303, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.dll" }}
  4100. ,{ "pid":12345, "tid":5, "ts":1718093442372353, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4101. ,{ "pid":12345, "tid":5, "ts":1718093442372480, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Api.Output.pdb" }}
  4102. ,{ "pid":12345, "tid":5, "ts":1718093442372479, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Api.Output.pdb" }}
  4103. ,{ "pid":12345, "tid":5, "ts":1718093442372544, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4104. ,{ "pid":12345, "tid":5, "ts":1718093442372619, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Cecil.Visitor.dll" }}
  4105. ,{ "pid":12345, "tid":5, "ts":1718093442372618, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Cecil.Visitor.dll" }}
  4106. ,{ "pid":12345, "tid":5, "ts":1718093442372709, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4107. ,{ "pid":12345, "tid":5, "ts":1718093442372787, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.XmlDocument.dll" }}
  4108. ,{ "pid":12345, "tid":5, "ts":1718093442372786, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.XmlDocument.dll" }}
  4109. ,{ "pid":12345, "tid":5, "ts":1718093442372840, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4110. ,{ "pid":12345, "tid":5, "ts":1718093442372909, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.Linq.dll" }}
  4111. ,{ "pid":12345, "tid":5, "ts":1718093442372908, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.Linq.dll" }}
  4112. ,{ "pid":12345, "tid":5, "ts":1718093442372991, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4113. ,{ "pid":12345, "tid":5, "ts":1718093442373111, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4114. ,{ "pid":12345, "tid":5, "ts":1718093442373187, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Tasks.Extensions.dll" }}
  4115. ,{ "pid":12345, "tid":5, "ts":1718093442373186, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Tasks.Extensions.dll" }}
  4116. ,{ "pid":12345, "tid":5, "ts":1718093442373266, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4117. ,{ "pid":12345, "tid":5, "ts":1718093442373342, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Text.RegularExpressions.dll" }}
  4118. ,{ "pid":12345, "tid":5, "ts":1718093442373340, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Text.RegularExpressions.dll" }}
  4119. ,{ "pid":12345, "tid":5, "ts":1718093442373399, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4120. ,{ "pid":12345, "tid":5, "ts":1718093442373490, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.SecureString.dll" }}
  4121. ,{ "pid":12345, "tid":5, "ts":1718093442373487, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.SecureString.dll" }}
  4122. ,{ "pid":12345, "tid":5, "ts":1718093442373563, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4123. ,{ "pid":12345, "tid":5, "ts":1718093442373659, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.OpenSsl.dll" }}
  4124. ,{ "pid":12345, "tid":5, "ts":1718093442373657, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.OpenSsl.dll" }}
  4125. ,{ "pid":12345, "tid":5, "ts":1718093442373723, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4126. ,{ "pid":12345, "tid":5, "ts":1718093442373820, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Claims.dll" }}
  4127. ,{ "pid":12345, "tid":5, "ts":1718093442373818, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Claims.dll" }}
  4128. ,{ "pid":12345, "tid":5, "ts":1718093442373883, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4129. ,{ "pid":12345, "tid":5, "ts":1718093442373970, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Serialization.dll" }}
  4130. ,{ "pid":12345, "tid":5, "ts":1718093442373969, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Serialization.dll" }}
  4131. ,{ "pid":12345, "tid":5, "ts":1718093442374056, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4132. ,{ "pid":12345, "tid":5, "ts":1718093442374142, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Handles.dll" }}
  4133. ,{ "pid":12345, "tid":5, "ts":1718093442374141, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Handles.dll" }}
  4134. ,{ "pid":12345, "tid":5, "ts":1718093442374242, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4135. ,{ "pid":12345, "tid":5, "ts":1718093442374319, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Resources.ResourceManager.dll" }}
  4136. ,{ "pid":12345, "tid":5, "ts":1718093442374318, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Resources.ResourceManager.dll" }}
  4137. ,{ "pid":12345, "tid":5, "ts":1718093442374405, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4138. ,{ "pid":12345, "tid":5, "ts":1718093442374485, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.Emit.ILGeneration.dll" }}
  4139. ,{ "pid":12345, "tid":5, "ts":1718093442374484, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.Emit.ILGeneration.dll" }}
  4140. ,{ "pid":12345, "tid":5, "ts":1718093442374547, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4141. ,{ "pid":12345, "tid":5, "ts":1718093442374620, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Private.Xml.Linq.dll" }}
  4142. ,{ "pid":12345, "tid":5, "ts":1718093442374619, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Private.Xml.Linq.dll" }}
  4143. ,{ "pid":12345, "tid":5, "ts":1718093442374692, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4144. ,{ "pid":12345, "tid":5, "ts":1718093442374772, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Numerics.Vectors.dll" }}
  4145. ,{ "pid":12345, "tid":5, "ts":1718093442374770, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Numerics.Vectors.dll" }}
  4146. ,{ "pid":12345, "tid":5, "ts":1718093442374852, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4147. ,{ "pid":12345, "tid":5, "ts":1718093442374949, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.WebClient.dll" }}
  4148. ,{ "pid":12345, "tid":5, "ts":1718093442374947, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.WebClient.dll" }}
  4149. ,{ "pid":12345, "tid":5, "ts":1718093442375027, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4150. ,{ "pid":12345, "tid":5, "ts":1718093442375098, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Primitives.dll" }}
  4151. ,{ "pid":12345, "tid":5, "ts":1718093442375097, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Primitives.dll" }}
  4152. ,{ "pid":12345, "tid":5, "ts":1718093442375166, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4153. ,{ "pid":12345, "tid":5, "ts":1718093442375240, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.HttpListener.dll" }}
  4154. ,{ "pid":12345, "tid":5, "ts":1718093442375239, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.HttpListener.dll" }}
  4155. ,{ "pid":12345, "tid":5, "ts":1718093442375309, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4156. ,{ "pid":12345, "tid":5, "ts":1718093442375406, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Linq.Parallel.dll" }}
  4157. ,{ "pid":12345, "tid":5, "ts":1718093442375404, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Linq.Parallel.dll" }}
  4158. ,{ "pid":12345, "tid":5, "ts":1718093442375497, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4159. ,{ "pid":12345, "tid":5, "ts":1718093442375591, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.MemoryMappedFiles.dll" }}
  4160. ,{ "pid":12345, "tid":5, "ts":1718093442375590, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.MemoryMappedFiles.dll" }}
  4161. ,{ "pid":12345, "tid":5, "ts":1718093442375649, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4162. ,{ "pid":12345, "tid":5, "ts":1718093442375736, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.dll" }}
  4163. ,{ "pid":12345, "tid":5, "ts":1718093442375734, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.dll" }}
  4164. ,{ "pid":12345, "tid":5, "ts":1718093442375834, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4165. ,{ "pid":12345, "tid":5, "ts":1718093442375916, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Globalization.dll" }}
  4166. ,{ "pid":12345, "tid":5, "ts":1718093442375915, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Globalization.dll" }}
  4167. ,{ "pid":12345, "tid":5, "ts":1718093442376019, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4168. ,{ "pid":12345, "tid":5, "ts":1718093442376091, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.dll" }}
  4169. ,{ "pid":12345, "tid":5, "ts":1718093442376090, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.dll" }}
  4170. ,{ "pid":12345, "tid":5, "ts":1718093442376177, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4171. ,{ "pid":12345, "tid":5, "ts":1718093442376242, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.StackTrace.dll" }}
  4172. ,{ "pid":12345, "tid":5, "ts":1718093442376240, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.StackTrace.dll" }}
  4173. ,{ "pid":12345, "tid":5, "ts":1718093442376325, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4174. ,{ "pid":12345, "tid":5, "ts":1718093442376413, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Data.dll" }}
  4175. ,{ "pid":12345, "tid":5, "ts":1718093442376412, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Data.dll" }}
  4176. ,{ "pid":12345, "tid":5, "ts":1718093442376518, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4177. ,{ "pid":12345, "tid":5, "ts":1718093442376586, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ComponentModel.TypeConverter.dll" }}
  4178. ,{ "pid":12345, "tid":5, "ts":1718093442376578, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ComponentModel.TypeConverter.dll" }}
  4179. ,{ "pid":12345, "tid":5, "ts":1718093442376639, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4180. ,{ "pid":12345, "tid":5, "ts":1718093442376708, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Collections.Specialized.dll" }}
  4181. ,{ "pid":12345, "tid":5, "ts":1718093442376706, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Collections.Specialized.dll" }}
  4182. ,{ "pid":12345, "tid":5, "ts":1718093442376799, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4183. ,{ "pid":12345, "tid":5, "ts":1718093442376923, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/SharpYaml.dll" }}
  4184. ,{ "pid":12345, "tid":5, "ts":1718093442376921, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/SharpYaml.dll" }}
  4185. ,{ "pid":12345, "tid":5, "ts":1718093442376996, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4186. ,{ "pid":12345, "tid":5, "ts":1718093442377111, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/monolinker.pdb" }}
  4187. ,{ "pid":12345, "tid":5, "ts":1718093442377110, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/monolinker.pdb" }}
  4188. ,{ "pid":12345, "tid":5, "ts":1718093442377186, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4189. ,{ "pid":12345, "tid":5, "ts":1718093442377278, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.pdb" }}
  4190. ,{ "pid":12345, "tid":5, "ts":1718093442377276, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.pdb" }}
  4191. ,{ "pid":12345, "tid":5, "ts":1718093442377342, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4192. ,{ "pid":12345, "tid":5, "ts":1718093442377430, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Microsoft.VisualBasic.dll" }}
  4193. ,{ "pid":12345, "tid":5, "ts":1718093442377429, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Microsoft.VisualBasic.dll" }}
  4194. ,{ "pid":12345, "tid":5, "ts":1718093442377504, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4195. ,{ "pid":12345, "tid":5, "ts":1718093442377582, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libSystem.Net.Security.Native.dylib" }}
  4196. ,{ "pid":12345, "tid":5, "ts":1718093442377664, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4197. ,{ "pid":12345, "tid":5, "ts":1718093442377762, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libhostfxr.dylib" }}
  4198. ,{ "pid":12345, "tid":5, "ts":1718093442377846, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4199. ,{ "pid":12345, "tid":5, "ts":1718093442377947, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/il2cpp.pdb" }}
  4200. ,{ "pid":12345, "tid":5, "ts":1718093442377946, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/il2cpp.pdb" }}
  4201. ,{ "pid":12345, "tid":5, "ts":1718093442378031, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4202. ,{ "pid":12345, "tid":5, "ts":1718093442378096, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/bee_backend/mac-arm64/bee_backend" }}
  4203. ,{ "pid":12345, "tid":5, "ts":1718093442378187, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4204. ,{ "pid":12345, "tid":5, "ts":1718093442378300, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4205. ,{ "pid":12345, "tid":5, "ts":1718093442378391, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.VisualStudio.pdb" }}
  4206. ,{ "pid":12345, "tid":5, "ts":1718093442378389, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.VisualStudio.pdb" }}
  4207. ,{ "pid":12345, "tid":5, "ts":1718093442378488, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4208. ,{ "pid":12345, "tid":5, "ts":1718093442378558, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.TvOS.pdb" }}
  4209. ,{ "pid":12345, "tid":5, "ts":1718093442378557, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.TvOS.pdb" }}
  4210. ,{ "pid":12345, "tid":5, "ts":1718093442378638, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4211. ,{ "pid":12345, "tid":5, "ts":1718093442378730, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Linux.pdb" }}
  4212. ,{ "pid":12345, "tid":5, "ts":1718093442378729, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Linux.pdb" }}
  4213. ,{ "pid":12345, "tid":5, "ts":1718093442378811, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4214. ,{ "pid":12345, "tid":5, "ts":1718093442378910, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Emscripten.pdb" }}
  4215. ,{ "pid":12345, "tid":5, "ts":1718093442378908, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Emscripten.pdb" }}
  4216. ,{ "pid":12345, "tid":5, "ts":1718093442378976, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4217. ,{ "pid":12345, "tid":5, "ts":1718093442379056, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.TinyProfiler2.pdb" }}
  4218. ,{ "pid":12345, "tid":5, "ts":1718093442379055, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.TinyProfiler2.pdb" }}
  4219. ,{ "pid":12345, "tid":5, "ts":1718093442379182, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.DotNet.pdb" }}
  4220. ,{ "pid":12345, "tid":5, "ts":1718093442379181, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.DotNet.pdb" }}
  4221. ,{ "pid":12345, "tid":5, "ts":1718093442379349, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.BeeDriver.pdb" }}
  4222. ,{ "pid":12345, "tid":5, "ts":1718093442379348, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.BeeDriver.pdb" }}
  4223. ,{ "pid":12345, "tid":5, "ts":1718093442379440, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4224. ,{ "pid":12345, "tid":5, "ts":1718093442379512, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.Api.Output.pdb" }}
  4225. ,{ "pid":12345, "tid":5, "ts":1718093442379512, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.Api.Output.pdb" }}
  4226. ,{ "pid":12345, "tid":5, "ts":1718093442379594, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4227. ,{ "pid":12345, "tid":5, "ts":1718093442379683, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/VmThreadUtils.cpp" }}
  4228. ,{ "pid":12345, "tid":5, "ts":1718093442379682, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/VmThreadUtils.cpp" }}
  4229. ,{ "pid":12345, "tid":5, "ts":1718093442379740, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4230. ,{ "pid":12345, "tid":5, "ts":1718093442379824, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/UnityFramework/Info.plist" }}
  4231. ,{ "pid":12345, "tid":5, "ts":1718093442379905, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4232. ,{ "pid":12345, "tid":5, "ts":1718093442380002, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/MainApp/main.mm" }}
  4233. ,{ "pid":12345, "tid":5, "ts":1718093442380080, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4234. ,{ "pid":12345, "tid":5, "ts":1718093442380164, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityAppController+UnityInterface.mm" }}
  4235. ,{ "pid":12345, "tid":5, "ts":1718093442380307, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityWebRequest.mm" }}
  4236. ,{ "pid":12345, "tid":5, "ts":1718093442380386, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4237. ,{ "pid":12345, "tid":5, "ts":1718093442380464, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnityRendering.h" }}
  4238. ,{ "pid":12345, "tid":5, "ts":1718093442380463, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityRendering.h" }}
  4239. ,{ "pid":12345, "tid":5, "ts":1718093442380570, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4240. ,{ "pid":12345, "tid":5, "ts":1718093442380653, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/NoGraphicsHelper.mm" }}
  4241. ,{ "pid":12345, "tid":5, "ts":1718093442380727, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4242. ,{ "pid":12345, "tid":5, "ts":1718093442380798, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/FullScreenVideoPlayer.mm" }}
  4243. ,{ "pid":12345, "tid":5, "ts":1718093442380856, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4244. ,{ "pid":12345, "tid":5, "ts":1718093442380939, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/CVTextureCache.h" }}
  4245. ,{ "pid":12345, "tid":5, "ts":1718093442380938, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/CVTextureCache.h" }}
  4246. ,{ "pid":12345, "tid":5, "ts":1718093442381026, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4247. ,{ "pid":12345, "tid":5, "ts":1718093442381119, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/AVCapture.h" }}
  4248. ,{ "pid":12345, "tid":5, "ts":1718093442381118, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/AVCapture.h" }}
  4249. ,{ "pid":12345, "tid":5, "ts":1718093442381198, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4250. ,{ "pid":12345, "tid":5, "ts":1718093442381287, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase+tvOS.mm" }}
  4251. ,{ "pid":12345, "tid":5, "ts":1718093442381366, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4252. ,{ "pid":12345, "tid":5, "ts":1718093442381447, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView+tvOS.mm" }}
  4253. ,{ "pid":12345, "tid":5, "ts":1718093442381523, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4254. ,{ "pid":12345, "tid":5, "ts":1718093442381610, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityAppController+ViewHandling.h" }}
  4255. ,{ "pid":12345, "tid":5, "ts":1718093442381608, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityAppController+ViewHandling.h" }}
  4256. ,{ "pid":12345, "tid":5, "ts":1718093442381674, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4257. ,{ "pid":12345, "tid":5, "ts":1718093442381772, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/ActivityIndicator.h" }}
  4258. ,{ "pid":12345, "tid":5, "ts":1718093442381770, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/ActivityIndicator.h" }}
  4259. ,{ "pid":12345, "tid":5, "ts":1718093442381835, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4260. ,{ "pid":12345, "tid":5, "ts":1718093442381896, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PluginBase/RenderPluginDelegate.mm" }}
  4261. ,{ "pid":12345, "tid":5, "ts":1718093442381983, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/PluginBase/AppDelegateListener.h" }}
  4262. ,{ "pid":12345, "tid":5, "ts":1718093442381982, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PluginBase/AppDelegateListener.h" }}
  4263. ,{ "pid":12345, "tid":5, "ts":1718093442382091, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4264. ,{ "pid":12345, "tid":5, "ts":1718093442382192, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/VmThreadUtils.h" }}
  4265. ,{ "pid":12345, "tid":5, "ts":1718093442382190, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/VmThreadUtils.h" }}
  4266. ,{ "pid":12345, "tid":5, "ts":1718093442382257, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4267. ,{ "pid":12345, "tid":5, "ts":1718093442382319, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Assembly.cpp" }}
  4268. ,{ "pid":12345, "tid":5, "ts":1718093442382317, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Assembly.cpp" }}
  4269. ,{ "pid":12345, "tid":5, "ts":1718093442382389, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4270. ,{ "pid":12345, "tid":5, "ts":1718093442382468, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/CCW.h" }}
  4271. ,{ "pid":12345, "tid":5, "ts":1718093442382467, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/CCW.h" }}
  4272. ,{ "pid":12345, "tid":5, "ts":1718093442382535, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4273. ,{ "pid":12345, "tid":5, "ts":1718093442382617, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ClassInlines.h" }}
  4274. ,{ "pid":12345, "tid":5, "ts":1718093442382616, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ClassInlines.h" }}
  4275. ,{ "pid":12345, "tid":5, "ts":1718093442382696, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4276. ,{ "pid":12345, "tid":5, "ts":1718093442382780, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/COMEntryPoints.h" }}
  4277. ,{ "pid":12345, "tid":5, "ts":1718093442382778, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/COMEntryPoints.h" }}
  4278. ,{ "pid":12345, "tid":5, "ts":1718093442382859, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4279. ,{ "pid":12345, "tid":5, "ts":1718093442382932, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Enum.h" }}
  4280. ,{ "pid":12345, "tid":5, "ts":1718093442382930, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Enum.h" }}
  4281. ,{ "pid":12345, "tid":5, "ts":1718093442382990, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4282. ,{ "pid":12345, "tid":5, "ts":1718093442383073, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GenericClass.cpp" }}
  4283. ,{ "pid":12345, "tid":5, "ts":1718093442383072, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GenericClass.cpp" }}
  4284. ,{ "pid":12345, "tid":5, "ts":1718093442383202, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GlobalMetadataFileInternals.h" }}
  4285. ,{ "pid":12345, "tid":5, "ts":1718093442383200, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GlobalMetadataFileInternals.h" }}
  4286. ,{ "pid":12345, "tid":5, "ts":1718093442383262, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4287. ,{ "pid":12345, "tid":5, "ts":1718093442383332, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/InternalCalls.h" }}
  4288. ,{ "pid":12345, "tid":5, "ts":1718093442383330, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/InternalCalls.h" }}
  4289. ,{ "pid":12345, "tid":5, "ts":1718093442383399, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4290. ,{ "pid":12345, "tid":5, "ts":1718093442383470, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MarshalAlloc.h" }}
  4291. ,{ "pid":12345, "tid":5, "ts":1718093442383469, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MarshalAlloc.h" }}
  4292. ,{ "pid":12345, "tid":5, "ts":1718093442383531, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4293. ,{ "pid":12345, "tid":5, "ts":1718093442383609, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MetadataCache.h" }}
  4294. ,{ "pid":12345, "tid":5, "ts":1718093442383608, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MetadataCache.h" }}
  4295. ,{ "pid":12345, "tid":5, "ts":1718093442383742, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Module.cpp" }}
  4296. ,{ "pid":12345, "tid":5, "ts":1718093442383740, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Module.cpp" }}
  4297. ,{ "pid":12345, "tid":5, "ts":1718093442383811, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4298. ,{ "pid":12345, "tid":5, "ts":1718093442383868, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Object.h" }}
  4299. ,{ "pid":12345, "tid":5, "ts":1718093442383867, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Object.h" }}
  4300. ,{ "pid":12345, "tid":5, "ts":1718093442383948, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4301. ,{ "pid":12345, "tid":5, "ts":1718093442384013, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/PlatformInvoke.h" }}
  4302. ,{ "pid":12345, "tid":5, "ts":1718093442384011, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/PlatformInvoke.h" }}
  4303. ,{ "pid":12345, "tid":5, "ts":1718093442384071, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4304. ,{ "pid":12345, "tid":5, "ts":1718093442384142, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityBannerUnityWrapper.m" }}
  4305. ,{ "pid":12345, "tid":5, "ts":1718093442384201, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4306. ,{ "pid":12345, "tid":5, "ts":1718093442384275, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Property.cpp" }}
  4307. ,{ "pid":12345, "tid":5, "ts":1718093442384273, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Property.cpp" }}
  4308. ,{ "pid":12345, "tid":5, "ts":1718093442384371, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4309. ,{ "pid":12345, "tid":5, "ts":1718093442384490, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4310. ,{ "pid":12345, "tid":5, "ts":1718093442384559, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/StackTrace.cpp" }}
  4311. ,{ "pid":12345, "tid":5, "ts":1718093442384557, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/StackTrace.cpp" }}
  4312. ,{ "pid":12345, "tid":5, "ts":1718093442384611, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4313. ,{ "pid":12345, "tid":5, "ts":1718093442384685, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Thread.h" }}
  4314. ,{ "pid":12345, "tid":5, "ts":1718093442384682, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Thread.h" }}
  4315. ,{ "pid":12345, "tid":5, "ts":1718093442384745, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4316. ,{ "pid":12345, "tid":5, "ts":1718093442384823, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/WaitHandle.cpp" }}
  4317. ,{ "pid":12345, "tid":5, "ts":1718093442384822, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/WaitHandle.cpp" }}
  4318. ,{ "pid":12345, "tid":5, "ts":1718093442384913, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4319. ,{ "pid":12345, "tid":5, "ts":1718093442384984, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/eglib-config.hw" }}
  4320. ,{ "pid":12345, "tid":5, "ts":1718093442385041, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4321. ,{ "pid":12345, "tid":5, "ts":1718093442385274, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/LaunchScreen-iPhonePortrait.png" }}
  4322. ,{ "pid":12345, "tid":5, "ts":1718093442385399, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-180.png" }}
  4323. ,{ "pid":12345, "tid":5, "ts":1718093442385663, "dur":2967, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-180.png" }}
  4324. ,{ "pid":12345, "tid":5, "ts":1718093442388720, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Spotlight-40.png" }}
  4325. ,{ "pid":12345, "tid":5, "ts":1718093442389874, "dur":56, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }}
  4326. ,{ "pid":12345, "tid":5, "ts":1718093442388922, "dur":1051, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Spotlight-40.png" }}
  4327. ,{ "pid":12345, "tid":5, "ts":1718093442390022, "dur":1190, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Notification-20.png" }}
  4328. ,{ "pid":12345, "tid":5, "ts":1718093442391355, "dur":732, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-Store-1024.png" }}
  4329. ,{ "pid":12345, "tid":5, "ts":1718093442398044, "dur":135, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }}
  4330. ,{ "pid":12345, "tid":5, "ts":1718093442392120, "dur":6067, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets1.assets.resS" }}
  4331. ,{ "pid":12345, "tid":5, "ts":1718093442398244, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__13.cpp" }}
  4332. ,{ "pid":12345, "tid":5, "ts":1718093442398242, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__13.cpp" }}
  4333. ,{ "pid":12345, "tid":5, "ts":1718093442398338, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4334. ,{ "pid":12345, "tid":5, "ts":1718093442398419, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCTypeValuesTable.cpp" }}
  4335. ,{ "pid":12345, "tid":5, "ts":1718093442398418, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCTypeValuesTable.cpp" }}
  4336. ,{ "pid":12345, "tid":5, "ts":1718093442398498, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4337. ,{ "pid":12345, "tid":5, "ts":1718093442398584, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCalculateTypeValues1.cpp" }}
  4338. ,{ "pid":12345, "tid":5, "ts":1718093442398582, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCalculateTypeValues1.cpp" }}
  4339. ,{ "pid":12345, "tid":5, "ts":1718093442398672, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4340. ,{ "pid":12345, "tid":5, "ts":1718093442398751, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data.cpp" }}
  4341. ,{ "pid":12345, "tid":5, "ts":1718093442398750, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data.cpp" }}
  4342. ,{ "pid":12345, "tid":5, "ts":1718093442398822, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4343. ,{ "pid":12345, "tid":5, "ts":1718093442398898, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.2D.Animation.Runtime.cpp" }}
  4344. ,{ "pid":12345, "tid":5, "ts":1718093442398897, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.2D.Animation.Runtime.cpp" }}
  4345. ,{ "pid":12345, "tid":5, "ts":1718093442398977, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4346. ,{ "pid":12345, "tid":5, "ts":1718093442399066, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UI__4.cpp" }}
  4347. ,{ "pid":12345, "tid":5, "ts":1718093442399066, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UI__4.cpp" }}
  4348. ,{ "pid":12345, "tid":5, "ts":1718093442399133, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4349. ,{ "pid":12345, "tid":5, "ts":1718093442399205, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__8.cpp" }}
  4350. ,{ "pid":12345, "tid":5, "ts":1718093442399203, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__8.cpp" }}
  4351. ,{ "pid":12345, "tid":5, "ts":1718093442399280, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4352. ,{ "pid":12345, "tid":5, "ts":1718093442399376, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__1.cpp" }}
  4353. ,{ "pid":12345, "tid":5, "ts":1718093442399374, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__1.cpp" }}
  4354. ,{ "pid":12345, "tid":5, "ts":1718093442399445, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4355. ,{ "pid":12345, "tid":5, "ts":1718093442399521, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__10.cpp" }}
  4356. ,{ "pid":12345, "tid":5, "ts":1718093442399519, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__10.cpp" }}
  4357. ,{ "pid":12345, "tid":5, "ts":1718093442399586, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4358. ,{ "pid":12345, "tid":5, "ts":1718093442399666, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Mathematics_CodeGen.c" }}
  4359. ,{ "pid":12345, "tid":5, "ts":1718093442399665, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Mathematics_CodeGen.c" }}
  4360. ,{ "pid":12345, "tid":5, "ts":1718093442399732, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4361. ,{ "pid":12345, "tid":5, "ts":1718093442399807, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__20.cpp" }}
  4362. ,{ "pid":12345, "tid":5, "ts":1718093442399806, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__20.cpp" }}
  4363. ,{ "pid":12345, "tid":5, "ts":1718093442399869, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4364. ,{ "pid":12345, "tid":5, "ts":1718093442399945, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Internal_CodeGen.c" }}
  4365. ,{ "pid":12345, "tid":5, "ts":1718093442399944, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Internal_CodeGen.c" }}
  4366. ,{ "pid":12345, "tid":5, "ts":1718093442400010, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4367. ,{ "pid":12345, "tid":5, "ts":1718093442400083, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Device.cpp" }}
  4368. ,{ "pid":12345, "tid":5, "ts":1718093442400082, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Device.cpp" }}
  4369. ,{ "pid":12345, "tid":5, "ts":1718093442400144, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4370. ,{ "pid":12345, "tid":5, "ts":1718093442400242, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Numerics.cpp" }}
  4371. ,{ "pid":12345, "tid":5, "ts":1718093442400241, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Numerics.cpp" }}
  4372. ,{ "pid":12345, "tid":5, "ts":1718093442400312, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4373. ,{ "pid":12345, "tid":5, "ts":1718093442400395, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__6.cpp" }}
  4374. ,{ "pid":12345, "tid":5, "ts":1718093442400394, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__6.cpp" }}
  4375. ,{ "pid":12345, "tid":5, "ts":1718093442400469, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4376. ,{ "pid":12345, "tid":5, "ts":1718093442400539, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__5.cpp" }}
  4377. ,{ "pid":12345, "tid":5, "ts":1718093442400538, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__5.cpp" }}
  4378. ,{ "pid":12345, "tid":5, "ts":1718093442400603, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4379. ,{ "pid":12345, "tid":5, "ts":1718093442400712, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4380. ,{ "pid":12345, "tid":5, "ts":1718093442400790, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Core.cpp" }}
  4381. ,{ "pid":12345, "tid":5, "ts":1718093442400788, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Core.cpp" }}
  4382. ,{ "pid":12345, "tid":5, "ts":1718093442400850, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4383. ,{ "pid":12345, "tid":5, "ts":1718093442400927, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/__Generated.cpp" }}
  4384. ,{ "pid":12345, "tid":5, "ts":1718093442400926, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/__Generated.cpp" }}
  4385. ,{ "pid":12345, "tid":5, "ts":1718093442400987, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4386. ,{ "pid":12345, "tid":5, "ts":1718093442401070, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__11.cpp" }}
  4387. ,{ "pid":12345, "tid":5, "ts":1718093442401068, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__11.cpp" }}
  4388. ,{ "pid":12345, "tid":5, "ts":1718093442401130, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4389. ,{ "pid":12345, "tid":5, "ts":1718093442401200, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__14.cpp" }}
  4390. ,{ "pid":12345, "tid":5, "ts":1718093442401199, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__14.cpp" }}
  4391. ,{ "pid":12345, "tid":5, "ts":1718093442401454, "dur":2542, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets0.assets.resS" }}
  4392. ,{ "pid":12345, "tid":5, "ts":1718093442404004, "dur":72210, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  4393. ,{ "pid":12345, "tid":6, "ts":1718093442184388, "dur":92814, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  4394. ,{ "pid":12345, "tid":6, "ts":1718093442277206, "dur":1044, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4395. ,{ "pid":12345, "tid":6, "ts":1718093442278251, "dur":1039, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4396. ,{ "pid":12345, "tid":6, "ts":1718093442279290, "dur":973, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4397. ,{ "pid":12345, "tid":6, "ts":1718093442280263, "dur":991, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4398. ,{ "pid":12345, "tid":6, "ts":1718093442281254, "dur":1157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4399. ,{ "pid":12345, "tid":6, "ts":1718093442282412, "dur":22569, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  4400. ,{ "pid":12345, "tid":6, "ts":1718093442305114, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4401. ,{ "pid":12345, "tid":6, "ts":1718093442305319, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4402. ,{ "pid":12345, "tid":6, "ts":1718093442305408, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4403. ,{ "pid":12345, "tid":6, "ts":1718093442305509, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4404. ,{ "pid":12345, "tid":6, "ts":1718093442305683, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4405. ,{ "pid":12345, "tid":6, "ts":1718093442305828, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4406. ,{ "pid":12345, "tid":6, "ts":1718093442305949, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4407. ,{ "pid":12345, "tid":6, "ts":1718093442306233, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/UnityAds" }}
  4408. ,{ "pid":12345, "tid":6, "ts":1718093442306287, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4409. ,{ "pid":12345, "tid":6, "ts":1718093442306356, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftmodule" }}
  4410. ,{ "pid":12345, "tid":6, "ts":1718093442306445, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4411. ,{ "pid":12345, "tid":6, "ts":1718093442306551, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftmodule" }}
  4412. ,{ "pid":12345, "tid":6, "ts":1718093442306644, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4413. ,{ "pid":12345, "tid":6, "ts":1718093442306723, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/module.modulemap" }}
  4414. ,{ "pid":12345, "tid":6, "ts":1718093442306780, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4415. ,{ "pid":12345, "tid":6, "ts":1718093442306894, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/USRVJsonStorage.h" }}
  4416. ,{ "pid":12345, "tid":6, "ts":1718093442306889, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/USRVJsonStorage.h" }}
  4417. ,{ "pid":12345, "tid":6, "ts":1718093442306977, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4418. ,{ "pid":12345, "tid":6, "ts":1718093442307068, "dur":131, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityServices.h" }}
  4419. ,{ "pid":12345, "tid":6, "ts":1718093442307067, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityServices.h" }}
  4420. ,{ "pid":12345, "tid":6, "ts":1718093442307200, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4421. ,{ "pid":12345, "tid":6, "ts":1718093442307313, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowDelegate.h" }}
  4422. ,{ "pid":12345, "tid":6, "ts":1718093442307310, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowDelegate.h" }}
  4423. ,{ "pid":12345, "tid":6, "ts":1718093442307421, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4424. ,{ "pid":12345, "tid":6, "ts":1718093442307606, "dur":150, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationDelegate.h" }}
  4425. ,{ "pid":12345, "tid":6, "ts":1718093442307605, "dur":152, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationDelegate.h" }}
  4426. ,{ "pid":12345, "tid":6, "ts":1718093442307757, "dur":190, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4427. ,{ "pid":12345, "tid":6, "ts":1718093442307957, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAds.h" }}
  4428. ,{ "pid":12345, "tid":6, "ts":1718093442307956, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAds.h" }}
  4429. ,{ "pid":12345, "tid":6, "ts":1718093442308097, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4430. ,{ "pid":12345, "tid":6, "ts":1718093442308221, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONNativePromoAdapter.h" }}
  4431. ,{ "pid":12345, "tid":6, "ts":1718093442308220, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONNativePromoAdapter.h" }}
  4432. ,{ "pid":12345, "tid":6, "ts":1718093442308309, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4433. ,{ "pid":12345, "tid":6, "ts":1718093442308419, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSMetaData.h" }}
  4434. ,{ "pid":12345, "tid":6, "ts":1718093442308418, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSMetaData.h" }}
  4435. ,{ "pid":12345, "tid":6, "ts":1718093442308500, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4436. ,{ "pid":12345, "tid":6, "ts":1718093442308599, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ApplePrivacyManifestsMerge.txt" }}
  4437. ,{ "pid":12345, "tid":6, "ts":1718093442308591, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/UnityFramework/ApplePrivacyManifestsMerge.txt" }}
  4438. ,{ "pid":12345, "tid":6, "ts":1718093442308712, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4439. ,{ "pid":12345, "tid":6, "ts":1718093442308802, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/NativeSymbol.cpp" }}
  4440. ,{ "pid":12345, "tid":6, "ts":1718093442308800, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/NativeSymbol.cpp" }}
  4441. ,{ "pid":12345, "tid":6, "ts":1718093442308861, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4442. ,{ "pid":12345, "tid":6, "ts":1718093442309002, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System.Threading/Interlocked.h" }}
  4443. ,{ "pid":12345, "tid":6, "ts":1718093442308999, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System.Threading/Interlocked.h" }}
  4444. ,{ "pid":12345, "tid":6, "ts":1718093442309188, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/utf8-cpp/source/utf8/core.h" }}
  4445. ,{ "pid":12345, "tid":6, "ts":1718093442309187, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/utf8-cpp/source/utf8/core.h" }}
  4446. ,{ "pid":12345, "tid":6, "ts":1718093442309251, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4447. ,{ "pid":12345, "tid":6, "ts":1718093442309380, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/StringView.h" }}
  4448. ,{ "pid":12345, "tid":6, "ts":1718093442309378, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringView.h" }}
  4449. ,{ "pid":12345, "tid":6, "ts":1718093442309493, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4450. ,{ "pid":12345, "tid":6, "ts":1718093442309638, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Runtime.cpp" }}
  4451. ,{ "pid":12345, "tid":6, "ts":1718093442309636, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Runtime.cpp" }}
  4452. ,{ "pid":12345, "tid":6, "ts":1718093442309697, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4453. ,{ "pid":12345, "tid":6, "ts":1718093442309798, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/New.h" }}
  4454. ,{ "pid":12345, "tid":6, "ts":1718093442309796, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/New.h" }}
  4455. ,{ "pid":12345, "tid":6, "ts":1718093442309892, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4456. ,{ "pid":12345, "tid":6, "ts":1718093442309980, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryPoolAddressSanitizer.cpp" }}
  4457. ,{ "pid":12345, "tid":6, "ts":1718093442309978, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryPoolAddressSanitizer.cpp" }}
  4458. ,{ "pid":12345, "tid":6, "ts":1718093442310037, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4459. ,{ "pid":12345, "tid":6, "ts":1718093442310148, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Memory.cpp" }}
  4460. ,{ "pid":12345, "tid":6, "ts":1718093442310146, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Memory.cpp" }}
  4461. ,{ "pid":12345, "tid":6, "ts":1718093442310221, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4462. ,{ "pid":12345, "tid":6, "ts":1718093442310382, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/KeyWrapper.h" }}
  4463. ,{ "pid":12345, "tid":6, "ts":1718093442310362, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/KeyWrapper.h" }}
  4464. ,{ "pid":12345, "tid":6, "ts":1718093442310449, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4465. ,{ "pid":12345, "tid":6, "ts":1718093442310565, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Il2CppError.cpp" }}
  4466. ,{ "pid":12345, "tid":6, "ts":1718093442310563, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Il2CppError.cpp" }}
  4467. ,{ "pid":12345, "tid":6, "ts":1718093442310732, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Exception.h" }}
  4468. ,{ "pid":12345, "tid":6, "ts":1718093442310731, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Exception.h" }}
  4469. ,{ "pid":12345, "tid":6, "ts":1718093442310887, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/DirectoryUtils.h" }}
  4470. ,{ "pid":12345, "tid":6, "ts":1718093442310886, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/DirectoryUtils.h" }}
  4471. ,{ "pid":12345, "tid":6, "ts":1718093442310952, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4472. ,{ "pid":12345, "tid":6, "ts":1718093442311067, "dur":129, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/pch/pch-cpp.cpp" }}
  4473. ,{ "pid":12345, "tid":6, "ts":1718093442311066, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/pch/pch-cpp.cpp" }}
  4474. ,{ "pid":12345, "tid":6, "ts":1718093442311198, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4475. ,{ "pid":12345, "tid":6, "ts":1718093442311376, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4476. ,{ "pid":12345, "tid":6, "ts":1718093442311459, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/MarshalAlloc.cpp" }}
  4477. ,{ "pid":12345, "tid":6, "ts":1718093442311449, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/MarshalAlloc.cpp" }}
  4478. ,{ "pid":12345, "tid":6, "ts":1718093442311513, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4479. ,{ "pid":12345, "tid":6, "ts":1718093442311592, "dur":148, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/BrokeredFileSystem.cpp" }}
  4480. ,{ "pid":12345, "tid":6, "ts":1718093442311590, "dur":152, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/BrokeredFileSystem.cpp" }}
  4481. ,{ "pid":12345, "tid":6, "ts":1718093442311743, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4482. ,{ "pid":12345, "tid":6, "ts":1718093442311829, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/WindowsHelpers.cpp" }}
  4483. ,{ "pid":12345, "tid":6, "ts":1718093442311828, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsHelpers.cpp" }}
  4484. ,{ "pid":12345, "tid":6, "ts":1718093442311934, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4485. ,{ "pid":12345, "tid":6, "ts":1718093442312050, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ThreadImpl.cpp" }}
  4486. ,{ "pid":12345, "tid":6, "ts":1718093442312049, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ThreadImpl.cpp" }}
  4487. ,{ "pid":12345, "tid":6, "ts":1718093442312143, "dur":164, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4488. ,{ "pid":12345, "tid":6, "ts":1718093442312318, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ReaderWriterLockImpl.h" }}
  4489. ,{ "pid":12345, "tid":6, "ts":1718093442312316, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ReaderWriterLockImpl.h" }}
  4490. ,{ "pid":12345, "tid":6, "ts":1718093442312404, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/NativeMethods.cpp" }}
  4491. ,{ "pid":12345, "tid":6, "ts":1718093442312402, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/NativeMethods.cpp" }}
  4492. ,{ "pid":12345, "tid":6, "ts":1718093442312486, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4493. ,{ "pid":12345, "tid":6, "ts":1718093442312651, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/LastError.cpp" }}
  4494. ,{ "pid":12345, "tid":6, "ts":1718093442312649, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/LastError.cpp" }}
  4495. ,{ "pid":12345, "tid":6, "ts":1718093442312714, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4496. ,{ "pid":12345, "tid":6, "ts":1718093442312791, "dur":260, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Environment.cpp" }}
  4497. ,{ "pid":12345, "tid":6, "ts":1718093442312790, "dur":280, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Environment.cpp" }}
  4498. ,{ "pid":12345, "tid":6, "ts":1718093442313109, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Directory.cpp" }}
  4499. ,{ "pid":12345, "tid":6, "ts":1718093442313108, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Directory.cpp" }}
  4500. ,{ "pid":12345, "tid":6, "ts":1718093442313224, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4501. ,{ "pid":12345, "tid":6, "ts":1718093442313338, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ConditionVariableImpl.cpp" }}
  4502. ,{ "pid":12345, "tid":6, "ts":1718093442313337, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ConditionVariableImpl.cpp" }}
  4503. ,{ "pid":12345, "tid":6, "ts":1718093442313429, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4504. ,{ "pid":12345, "tid":6, "ts":1718093442313493, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ThreadLocalValue.h" }}
  4505. ,{ "pid":12345, "tid":6, "ts":1718093442313491, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ThreadLocalValue.h" }}
  4506. ,{ "pid":12345, "tid":6, "ts":1718093442313579, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4507. ,{ "pid":12345, "tid":6, "ts":1718093442313691, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4508. ,{ "pid":12345, "tid":6, "ts":1718093442313776, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Socket.cpp" }}
  4509. ,{ "pid":12345, "tid":6, "ts":1718093442313774, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Socket.cpp" }}
  4510. ,{ "pid":12345, "tid":6, "ts":1718093442313857, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4511. ,{ "pid":12345, "tid":6, "ts":1718093442313975, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Process.h" }}
  4512. ,{ "pid":12345, "tid":6, "ts":1718093442313973, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Process.h" }}
  4513. ,{ "pid":12345, "tid":6, "ts":1718093442314099, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4514. ,{ "pid":12345, "tid":6, "ts":1718093442314278, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4515. ,{ "pid":12345, "tid":6, "ts":1718093442314351, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/SocketImpl.cpp" }}
  4516. ,{ "pid":12345, "tid":6, "ts":1718093442314350, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/SocketImpl.cpp" }}
  4517. ,{ "pid":12345, "tid":6, "ts":1718093442314485, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4518. ,{ "pid":12345, "tid":6, "ts":1718093442314560, "dur":219, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/NetworkAccessHandlerStub.h" }}
  4519. ,{ "pid":12345, "tid":6, "ts":1718093442314557, "dur":222, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/NetworkAccessHandlerStub.h" }}
  4520. ,{ "pid":12345, "tid":6, "ts":1718093442314780, "dur":186, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4521. ,{ "pid":12345, "tid":6, "ts":1718093442314987, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/LastError.cpp" }}
  4522. ,{ "pid":12345, "tid":6, "ts":1718093442314971, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/LastError.cpp" }}
  4523. ,{ "pid":12345, "tid":6, "ts":1718093442315120, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4524. ,{ "pid":12345, "tid":6, "ts":1718093442315234, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Error.h" }}
  4525. ,{ "pid":12345, "tid":6, "ts":1718093442315233, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Error.h" }}
  4526. ,{ "pid":12345, "tid":6, "ts":1718093442315344, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4527. ,{ "pid":12345, "tid":6, "ts":1718093442315428, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Cryptography.cpp" }}
  4528. ,{ "pid":12345, "tid":6, "ts":1718093442315427, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Cryptography.cpp" }}
  4529. ,{ "pid":12345, "tid":6, "ts":1718093442315495, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4530. ,{ "pid":12345, "tid":6, "ts":1718093442315568, "dur":170, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Path.h" }}
  4531. ,{ "pid":12345, "tid":6, "ts":1718093442315567, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Path.h" }}
  4532. ,{ "pid":12345, "tid":6, "ts":1718093442315739, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4533. ,{ "pid":12345, "tid":6, "ts":1718093442315810, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/Image.cpp" }}
  4534. ,{ "pid":12345, "tid":6, "ts":1718093442315809, "dur":136, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/Image.cpp" }}
  4535. ,{ "pid":12345, "tid":6, "ts":1718093442315946, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4536. ,{ "pid":12345, "tid":6, "ts":1718093442316062, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/MemoryMappedFile.h" }}
  4537. ,{ "pid":12345, "tid":6, "ts":1718093442316061, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/MemoryMappedFile.h" }}
  4538. ,{ "pid":12345, "tid":6, "ts":1718093442316130, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4539. ,{ "pid":12345, "tid":6, "ts":1718093442316201, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/LibraryLoader.h" }}
  4540. ,{ "pid":12345, "tid":6, "ts":1718093442316200, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/LibraryLoader.h" }}
  4541. ,{ "pid":12345, "tid":6, "ts":1718093442316312, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4542. ,{ "pid":12345, "tid":6, "ts":1718093442316431, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Handle.h" }}
  4543. ,{ "pid":12345, "tid":6, "ts":1718093442316430, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Handle.h" }}
  4544. ,{ "pid":12345, "tid":6, "ts":1718093442316497, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4545. ,{ "pid":12345, "tid":6, "ts":1718093442316565, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SocketImpl.h" }}
  4546. ,{ "pid":12345, "tid":6, "ts":1718093442316564, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SocketImpl.h" }}
  4547. ,{ "pid":12345, "tid":6, "ts":1718093442316633, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4548. ,{ "pid":12345, "tid":6, "ts":1718093442316718, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/MarshalStringAlloc.cpp" }}
  4549. ,{ "pid":12345, "tid":6, "ts":1718093442316717, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/MarshalStringAlloc.cpp" }}
  4550. ,{ "pid":12345, "tid":6, "ts":1718093442316805, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4551. ,{ "pid":12345, "tid":6, "ts":1718093442316905, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Environment.cpp" }}
  4552. ,{ "pid":12345, "tid":6, "ts":1718093442316904, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Environment.cpp" }}
  4553. ,{ "pid":12345, "tid":6, "ts":1718093442316972, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4554. ,{ "pid":12345, "tid":6, "ts":1718093442317062, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Assert.cpp" }}
  4555. ,{ "pid":12345, "tid":6, "ts":1718093442317060, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Assert.cpp" }}
  4556. ,{ "pid":12345, "tid":6, "ts":1718093442317138, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4557. ,{ "pid":12345, "tid":6, "ts":1718093442317217, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Event.h" }}
  4558. ,{ "pid":12345, "tid":6, "ts":1718093442317216, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Event.h" }}
  4559. ,{ "pid":12345, "tid":6, "ts":1718093442317281, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4560. ,{ "pid":12345, "tid":6, "ts":1718093442317372, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Encoding.h" }}
  4561. ,{ "pid":12345, "tid":6, "ts":1718093442317371, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Encoding.h" }}
  4562. ,{ "pid":12345, "tid":6, "ts":1718093442317505, "dur":185, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4563. ,{ "pid":12345, "tid":6, "ts":1718093442317698, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/CrashHelpers.cpp" }}
  4564. ,{ "pid":12345, "tid":6, "ts":1718093442317697, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/CrashHelpers.cpp" }}
  4565. ,{ "pid":12345, "tid":6, "ts":1718093442317754, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4566. ,{ "pid":12345, "tid":6, "ts":1718093442317853, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/COM.h" }}
  4567. ,{ "pid":12345, "tid":6, "ts":1718093442317852, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/COM.h" }}
  4568. ,{ "pid":12345, "tid":6, "ts":1718093442317972, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4569. ,{ "pid":12345, "tid":6, "ts":1718093442318057, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_random.cpp" }}
  4570. ,{ "pid":12345, "tid":6, "ts":1718093442318056, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_random.cpp" }}
  4571. ,{ "pid":12345, "tid":6, "ts":1718093442318121, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4572. ,{ "pid":12345, "tid":6, "ts":1718093442318257, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4573. ,{ "pid":12345, "tid":6, "ts":1718093442318323, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/utf8_util.h" }}
  4574. ,{ "pid":12345, "tid":6, "ts":1718093442318322, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/utf8_util.h" }}
  4575. ,{ "pid":12345, "tid":6, "ts":1718093442318440, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4576. ,{ "pid":12345, "tid":6, "ts":1718093442318521, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/quality.h" }}
  4577. ,{ "pid":12345, "tid":6, "ts":1718093442318519, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/quality.h" }}
  4578. ,{ "pid":12345, "tid":6, "ts":1718093442318631, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4579. ,{ "pid":12345, "tid":6, "ts":1718093442318755, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/memory.c" }}
  4580. ,{ "pid":12345, "tid":6, "ts":1718093442318755, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/memory.c" }}
  4581. ,{ "pid":12345, "tid":6, "ts":1718093442318855, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4582. ,{ "pid":12345, "tid":6, "ts":1718093442318989, "dur":169, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_to_binary_tree_inc.h" }}
  4583. ,{ "pid":12345, "tid":6, "ts":1718093442318987, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_to_binary_tree_inc.h" }}
  4584. ,{ "pid":12345, "tid":6, "ts":1718093442319160, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4585. ,{ "pid":12345, "tid":6, "ts":1718093442319325, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/find_match_length.h" }}
  4586. ,{ "pid":12345, "tid":6, "ts":1718093442319324, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/find_match_length.h" }}
  4587. ,{ "pid":12345, "tid":6, "ts":1718093442319449, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4588. ,{ "pid":12345, "tid":6, "ts":1718093442319566, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/encoder_dict.c" }}
  4589. ,{ "pid":12345, "tid":6, "ts":1718093442319565, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/encoder_dict.c" }}
  4590. ,{ "pid":12345, "tid":6, "ts":1718093442319621, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4591. ,{ "pid":12345, "tid":6, "ts":1718093442319790, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment.h" }}
  4592. ,{ "pid":12345, "tid":6, "ts":1718093442319788, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment.h" }}
  4593. ,{ "pid":12345, "tid":6, "ts":1718093442319903, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4594. ,{ "pid":12345, "tid":6, "ts":1718093442319984, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster.h" }}
  4595. ,{ "pid":12345, "tid":6, "ts":1718093442319983, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster.h" }}
  4596. ,{ "pid":12345, "tid":6, "ts":1718093442320081, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4597. ,{ "pid":12345, "tid":6, "ts":1718093442320199, "dur":144, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter.c" }}
  4598. ,{ "pid":12345, "tid":6, "ts":1718093442320198, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter.c" }}
  4599. ,{ "pid":12345, "tid":6, "ts":1718093442320348, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4600. ,{ "pid":12345, "tid":6, "ts":1718093442320448, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost.c" }}
  4601. ,{ "pid":12345, "tid":6, "ts":1718093442320431, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost.c" }}
  4602. ,{ "pid":12345, "tid":6, "ts":1718093442320567, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4603. ,{ "pid":12345, "tid":6, "ts":1718093442320632, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/state.h" }}
  4604. ,{ "pid":12345, "tid":6, "ts":1718093442320631, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/state.h" }}
  4605. ,{ "pid":12345, "tid":6, "ts":1718093442320702, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4606. ,{ "pid":12345, "tid":6, "ts":1718093442320827, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/bit_reader.h" }}
  4607. ,{ "pid":12345, "tid":6, "ts":1718093442320929, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/platform.c" }}
  4608. ,{ "pid":12345, "tid":6, "ts":1718093442320928, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/platform.c" }}
  4609. ,{ "pid":12345, "tid":6, "ts":1718093442321039, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4610. ,{ "pid":12345, "tid":6, "ts":1718093442321145, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/constants.c" }}
  4611. ,{ "pid":12345, "tid":6, "ts":1718093442321144, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/constants.c" }}
  4612. ,{ "pid":12345, "tid":6, "ts":1718093442321211, "dur":185, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4613. ,{ "pid":12345, "tid":6, "ts":1718093442321409, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Socket.cpp" }}
  4614. ,{ "pid":12345, "tid":6, "ts":1718093442321407, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Socket.cpp" }}
  4615. ,{ "pid":12345, "tid":6, "ts":1718093442321483, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4616. ,{ "pid":12345, "tid":6, "ts":1718093442321547, "dur":52, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Socket.cpp" }}
  4617. ,{ "pid":12345, "tid":6, "ts":1718093442321602, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/il2cpp-config-platforms.h" }}
  4618. ,{ "pid":12345, "tid":6, "ts":1718093442321601, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/il2cpp-config-platforms.h" }}
  4619. ,{ "pid":12345, "tid":6, "ts":1718093442321689, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4620. ,{ "pid":12345, "tid":6, "ts":1718093442321820, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Error-c-api.h" }}
  4621. ,{ "pid":12345, "tid":6, "ts":1718093442321819, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Error-c-api.h" }}
  4622. ,{ "pid":12345, "tid":6, "ts":1718093442321914, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4623. ,{ "pid":12345, "tid":6, "ts":1718093442322024, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Allocator.h" }}
  4624. ,{ "pid":12345, "tid":6, "ts":1718093442322022, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Allocator.h" }}
  4625. ,{ "pid":12345, "tid":6, "ts":1718093442322096, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4626. ,{ "pid":12345, "tid":6, "ts":1718093442322176, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/StackTrace.cpp" }}
  4627. ,{ "pid":12345, "tid":6, "ts":1718093442322175, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/StackTrace.cpp" }}
  4628. ,{ "pid":12345, "tid":6, "ts":1718093442322293, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4629. ,{ "pid":12345, "tid":6, "ts":1718093442322436, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolWorkerThread.cpp" }}
  4630. ,{ "pid":12345, "tid":6, "ts":1718093442322435, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolWorkerThread.cpp" }}
  4631. ,{ "pid":12345, "tid":6, "ts":1718093442322544, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4632. ,{ "pid":12345, "tid":6, "ts":1718093442322620, "dur":161, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms.cpp" }}
  4633. ,{ "pid":12345, "tid":6, "ts":1718093442322620, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms.cpp" }}
  4634. ,{ "pid":12345, "tid":6, "ts":1718093442322783, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4635. ,{ "pid":12345, "tid":6, "ts":1718093442322894, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono-structs.h" }}
  4636. ,{ "pid":12345, "tid":6, "ts":1718093442322892, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono-structs.h" }}
  4637. ,{ "pid":12345, "tid":6, "ts":1718093442322986, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4638. ,{ "pid":12345, "tid":6, "ts":1718093442323088, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppSignature.cpp" }}
  4639. ,{ "pid":12345, "tid":6, "ts":1718093442323080, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppSignature.cpp" }}
  4640. ,{ "pid":12345, "tid":6, "ts":1718093442323152, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4641. ,{ "pid":12345, "tid":6, "ts":1718093442323240, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericInstHash.cpp" }}
  4642. ,{ "pid":12345, "tid":6, "ts":1718093442323239, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstHash.cpp" }}
  4643. ,{ "pid":12345, "tid":6, "ts":1718093442323308, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4644. ,{ "pid":12345, "tid":6, "ts":1718093442323387, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericClassHash.h" }}
  4645. ,{ "pid":12345, "tid":6, "ts":1718093442323386, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassHash.h" }}
  4646. ,{ "pid":12345, "tid":6, "ts":1718093442323479, "dur":164, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4647. ,{ "pid":12345, "tid":6, "ts":1718093442323672, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4648. ,{ "pid":12345, "tid":6, "ts":1718093442323749, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/FieldLayout.cpp" }}
  4649. ,{ "pid":12345, "tid":6, "ts":1718093442323747, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/FieldLayout.cpp" }}
  4650. ,{ "pid":12345, "tid":6, "ts":1718093442323864, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4651. ,{ "pid":12345, "tid":6, "ts":1718093442323951, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/ArrayMetadata.cpp" }}
  4652. ,{ "pid":12345, "tid":6, "ts":1718093442323950, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/ArrayMetadata.cpp" }}
  4653. ,{ "pid":12345, "tid":6, "ts":1718093442324028, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4654. ,{ "pid":12345, "tid":6, "ts":1718093442324146, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-sanitizers.h" }}
  4655. ,{ "pid":12345, "tid":6, "ts":1718093442324145, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-sanitizers.h" }}
  4656. ,{ "pid":12345, "tid":6, "ts":1718093442324206, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4657. ,{ "pid":12345, "tid":6, "ts":1718093442324301, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-number-formatter.h" }}
  4658. ,{ "pid":12345, "tid":6, "ts":1718093442324299, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-number-formatter.h" }}
  4659. ,{ "pid":12345, "tid":6, "ts":1718093442324353, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4660. ,{ "pid":12345, "tid":6, "ts":1718093442324480, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-class-internals.h" }}
  4661. ,{ "pid":12345, "tid":6, "ts":1718093442324479, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-class-internals.h" }}
  4662. ,{ "pid":12345, "tid":6, "ts":1718093442324588, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-api.h" }}
  4663. ,{ "pid":12345, "tid":6, "ts":1718093442324587, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-api.h" }}
  4664. ,{ "pid":12345, "tid":6, "ts":1718093442324659, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4665. ,{ "pid":12345, "tid":6, "ts":1718093442324720, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net/Dns.h" }}
  4666. ,{ "pid":12345, "tid":6, "ts":1718093442324719, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net/Dns.h" }}
  4667. ,{ "pid":12345, "tid":6, "ts":1718093442324798, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4668. ,{ "pid":12345, "tid":6, "ts":1718093442324877, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.NetworkInformation/MacOsIPInterfaceProperties.h" }}
  4669. ,{ "pid":12345, "tid":6, "ts":1718093442324874, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.NetworkInformation/MacOsIPInterfaceProperties.h" }}
  4670. ,{ "pid":12345, "tid":6, "ts":1718093442324949, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4671. ,{ "pid":12345, "tid":6, "ts":1718093442325038, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/Stopwatch.h" }}
  4672. ,{ "pid":12345, "tid":6, "ts":1718093442325036, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/Stopwatch.h" }}
  4673. ,{ "pid":12345, "tid":6, "ts":1718093442325096, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4674. ,{ "pid":12345, "tid":6, "ts":1718093442325166, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/DefaultTraceListener.h" }}
  4675. ,{ "pid":12345, "tid":6, "ts":1718093442325164, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/DefaultTraceListener.h" }}
  4676. ,{ "pid":12345, "tid":6, "ts":1718093442325296, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System.Core/System.IO.MemoryMappedFiles/MemoryMapImpl.h" }}
  4677. ,{ "pid":12345, "tid":6, "ts":1718093442325295, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System.Core/System.IO.MemoryMappedFiles/MemoryMapImpl.h" }}
  4678. ,{ "pid":12345, "tid":6, "ts":1718093442325356, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4679. ,{ "pid":12345, "tid":6, "ts":1718093442325423, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Type.h" }}
  4680. ,{ "pid":12345, "tid":6, "ts":1718093442325422, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Type.h" }}
  4681. ,{ "pid":12345, "tid":6, "ts":1718093442325489, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4682. ,{ "pid":12345, "tid":6, "ts":1718093442325569, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeTypeHandle.cpp" }}
  4683. ,{ "pid":12345, "tid":6, "ts":1718093442325567, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeTypeHandle.cpp" }}
  4684. ,{ "pid":12345, "tid":6, "ts":1718093442325692, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeFieldHandle.cpp" }}
  4685. ,{ "pid":12345, "tid":6, "ts":1718093442325689, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeFieldHandle.cpp" }}
  4686. ,{ "pid":12345, "tid":6, "ts":1718093442325771, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4687. ,{ "pid":12345, "tid":6, "ts":1718093442325851, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/MonoCustomAttrs.cpp" }}
  4688. ,{ "pid":12345, "tid":6, "ts":1718093442325849, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/MonoCustomAttrs.cpp" }}
  4689. ,{ "pid":12345, "tid":6, "ts":1718093442325915, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4690. ,{ "pid":12345, "tid":6, "ts":1718093442325974, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Environment.h" }}
  4691. ,{ "pid":12345, "tid":6, "ts":1718093442325972, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Environment.h" }}
  4692. ,{ "pid":12345, "tid":6, "ts":1718093442326038, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4693. ,{ "pid":12345, "tid":6, "ts":1718093442326110, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/DateTime.h" }}
  4694. ,{ "pid":12345, "tid":6, "ts":1718093442326109, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/DateTime.h" }}
  4695. ,{ "pid":12345, "tid":6, "ts":1718093442326185, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4696. ,{ "pid":12345, "tid":6, "ts":1718093442326259, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/CLRConfig.h" }}
  4697. ,{ "pid":12345, "tid":6, "ts":1718093442326257, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/CLRConfig.h" }}
  4698. ,{ "pid":12345, "tid":6, "ts":1718093442326319, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4699. ,{ "pid":12345, "tid":6, "ts":1718093442326421, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ArgIterator.h" }}
  4700. ,{ "pid":12345, "tid":6, "ts":1718093442326420, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ArgIterator.h" }}
  4701. ,{ "pid":12345, "tid":6, "ts":1718093442326485, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4702. ,{ "pid":12345, "tid":6, "ts":1718093442326544, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Timer.h" }}
  4703. ,{ "pid":12345, "tid":6, "ts":1718093442326543, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Timer.h" }}
  4704. ,{ "pid":12345, "tid":6, "ts":1718093442326635, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4705. ,{ "pid":12345, "tid":6, "ts":1718093442326695, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/OSSpecificSynchronizationContext.h" }}
  4706. ,{ "pid":12345, "tid":6, "ts":1718093442326745, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4707. ,{ "pid":12345, "tid":6, "ts":1718093442326858, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Monitor.h" }}
  4708. ,{ "pid":12345, "tid":6, "ts":1718093442326857, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Monitor.h" }}
  4709. ,{ "pid":12345, "tid":6, "ts":1718093442326921, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4710. ,{ "pid":12345, "tid":6, "ts":1718093442326998, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Text/EncodingHelper.h" }}
  4711. ,{ "pid":12345, "tid":6, "ts":1718093442326997, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Text/EncodingHelper.h" }}
  4712. ,{ "pid":12345, "tid":6, "ts":1718093442327071, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4713. ,{ "pid":12345, "tid":6, "ts":1718093442327132, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.h" }}
  4714. ,{ "pid":12345, "tid":6, "ts":1718093442327131, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.h" }}
  4715. ,{ "pid":12345, "tid":6, "ts":1718093442327202, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4716. ,{ "pid":12345, "tid":6, "ts":1718093442327343, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4717. ,{ "pid":12345, "tid":6, "ts":1718093442327459, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.cpp" }}
  4718. ,{ "pid":12345, "tid":6, "ts":1718093442327458, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.cpp" }}
  4719. ,{ "pid":12345, "tid":6, "ts":1718093442327526, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4720. ,{ "pid":12345, "tid":6, "ts":1718093442327633, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4721. ,{ "pid":12345, "tid":6, "ts":1718093442327710, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/Marshal.h" }}
  4722. ,{ "pid":12345, "tid":6, "ts":1718093442327708, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/Marshal.h" }}
  4723. ,{ "pid":12345, "tid":6, "ts":1718093442327799, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4724. ,{ "pid":12345, "tid":6, "ts":1718093442327872, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.CompilerServices/RuntimeHelpers.cpp" }}
  4725. ,{ "pid":12345, "tid":6, "ts":1718093442327870, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.CompilerServices/RuntimeHelpers.cpp" }}
  4726. ,{ "pid":12345, "tid":6, "ts":1718093442327931, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4727. ,{ "pid":12345, "tid":6, "ts":1718093442328035, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4728. ,{ "pid":12345, "tid":6, "ts":1718093442328168, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeEventInfo.h" }}
  4729. ,{ "pid":12345, "tid":6, "ts":1718093442328224, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4730. ,{ "pid":12345, "tid":6, "ts":1718093442328324, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeAssembly.cpp" }}
  4731. ,{ "pid":12345, "tid":6, "ts":1718093442328322, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeAssembly.cpp" }}
  4732. ,{ "pid":12345, "tid":6, "ts":1718093442328459, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4733. ,{ "pid":12345, "tid":6, "ts":1718093442328564, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MethodBase.h" }}
  4734. ,{ "pid":12345, "tid":6, "ts":1718093442328561, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MethodBase.h" }}
  4735. ,{ "pid":12345, "tid":6, "ts":1718093442328636, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4736. ,{ "pid":12345, "tid":6, "ts":1718093442328728, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/CustomAttributeData.h" }}
  4737. ,{ "pid":12345, "tid":6, "ts":1718093442328719, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/CustomAttributeData.h" }}
  4738. ,{ "pid":12345, "tid":6, "ts":1718093442328795, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4739. ,{ "pid":12345, "tid":6, "ts":1718093442328920, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/Path.h" }}
  4740. ,{ "pid":12345, "tid":6, "ts":1718093442328918, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/Path.h" }}
  4741. ,{ "pid":12345, "tid":6, "ts":1718093442329039, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4742. ,{ "pid":12345, "tid":6, "ts":1718093442329151, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/BrokeredFileSystem.h" }}
  4743. ,{ "pid":12345, "tid":6, "ts":1718093442329149, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/BrokeredFileSystem.h" }}
  4744. ,{ "pid":12345, "tid":6, "ts":1718093442329278, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4745. ,{ "pid":12345, "tid":6, "ts":1718093442329373, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfo.cpp" }}
  4746. ,{ "pid":12345, "tid":6, "ts":1718093442329371, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfo.cpp" }}
  4747. ,{ "pid":12345, "tid":6, "ts":1718093442329442, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4748. ,{ "pid":12345, "tid":6, "ts":1718093442329511, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CalendarData.h" }}
  4749. ,{ "pid":12345, "tid":6, "ts":1718093442329510, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CalendarData.h" }}
  4750. ,{ "pid":12345, "tid":6, "ts":1718093442329592, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4751. ,{ "pid":12345, "tid":6, "ts":1718093442329679, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/Debugger.h" }}
  4752. ,{ "pid":12345, "tid":6, "ts":1718093442329678, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/Debugger.h" }}
  4753. ,{ "pid":12345, "tid":6, "ts":1718093442329736, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4754. ,{ "pid":12345, "tid":6, "ts":1718093442329799, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeMarshal.cpp" }}
  4755. ,{ "pid":12345, "tid":6, "ts":1718093442329797, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeMarshal.cpp" }}
  4756. ,{ "pid":12345, "tid":6, "ts":1718093442329884, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4757. ,{ "pid":12345, "tid":6, "ts":1718093442329949, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/Runtime.h" }}
  4758. ,{ "pid":12345, "tid":6, "ts":1718093442329947, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/Runtime.h" }}
  4759. ,{ "pid":12345, "tid":6, "ts":1718093442330033, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4760. ,{ "pid":12345, "tid":6, "ts":1718093442330093, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Microsoft.Win32/NativeMethods.h" }}
  4761. ,{ "pid":12345, "tid":6, "ts":1718093442330092, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Microsoft.Win32/NativeMethods.h" }}
  4762. ,{ "pid":12345, "tid":6, "ts":1718093442330209, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4763. ,{ "pid":12345, "tid":6, "ts":1718093442330304, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/gc_wrapper.h" }}
  4764. ,{ "pid":12345, "tid":6, "ts":1718093442330303, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/gc_wrapper.h" }}
  4765. ,{ "pid":12345, "tid":6, "ts":1718093442330417, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4766. ,{ "pid":12345, "tid":6, "ts":1718093442330481, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/Allocator.h" }}
  4767. ,{ "pid":12345, "tid":6, "ts":1718093442330480, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/Allocator.h" }}
  4768. ,{ "pid":12345, "tid":6, "ts":1718093442330557, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4769. ,{ "pid":12345, "tid":6, "ts":1718093442330631, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-il2cpp.h" }}
  4770. ,{ "pid":12345, "tid":6, "ts":1718093442330629, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-il2cpp.h" }}
  4771. ,{ "pid":12345, "tid":6, "ts":1718093442330713, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4772. ,{ "pid":12345, "tid":6, "ts":1718093442330794, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/char-conversions.cpp" }}
  4773. ,{ "pid":12345, "tid":6, "ts":1718093442330793, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/char-conversions.cpp" }}
  4774. ,{ "pid":12345, "tid":6, "ts":1718093442330851, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4775. ,{ "pid":12345, "tid":6, "ts":1718093442330932, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/uncompr.c" }}
  4776. ,{ "pid":12345, "tid":6, "ts":1718093442330931, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/uncompr.c" }}
  4777. ,{ "pid":12345, "tid":6, "ts":1718093442331046, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4778. ,{ "pid":12345, "tid":6, "ts":1718093442331167, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inflate.c" }}
  4779. ,{ "pid":12345, "tid":6, "ts":1718093442331159, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inflate.c" }}
  4780. ,{ "pid":12345, "tid":6, "ts":1718093442331230, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4781. ,{ "pid":12345, "tid":6, "ts":1718093442331293, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzread.c" }}
  4782. ,{ "pid":12345, "tid":6, "ts":1718093442331291, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzread.c" }}
  4783. ,{ "pid":12345, "tid":6, "ts":1718093442331372, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4784. ,{ "pid":12345, "tid":6, "ts":1718093442331441, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/crc32.h" }}
  4785. ,{ "pid":12345, "tid":6, "ts":1718093442331439, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/crc32.h" }}
  4786. ,{ "pid":12345, "tid":6, "ts":1718093442331514, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4787. ,{ "pid":12345, "tid":6, "ts":1718093442331587, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/README.md" }}
  4788. ,{ "pid":12345, "tid":6, "ts":1718093442331650, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4789. ,{ "pid":12345, "tid":6, "ts":1718093442331744, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xamarin-android/logger.h" }}
  4790. ,{ "pid":12345, "tid":6, "ts":1718093442331741, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/logger.h" }}
  4791. ,{ "pid":12345, "tid":6, "ts":1718093442331804, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4792. ,{ "pid":12345, "tid":6, "ts":1718093442331871, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/w32api.h" }}
  4793. ,{ "pid":12345, "tid":6, "ts":1718093442331870, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/w32api.h" }}
  4794. ,{ "pid":12345, "tid":6, "ts":1718093442331941, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4795. ,{ "pid":12345, "tid":6, "ts":1718093442332005, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/strenc-internals.h" }}
  4796. ,{ "pid":12345, "tid":6, "ts":1718093442332004, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/strenc-internals.h" }}
  4797. ,{ "pid":12345, "tid":6, "ts":1718093442332075, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4798. ,{ "pid":12345, "tid":6, "ts":1718093442332192, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4799. ,{ "pid":12345, "tid":6, "ts":1718093442332310, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/monobitset.h" }}
  4800. ,{ "pid":12345, "tid":6, "ts":1718093442332309, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/monobitset.h" }}
  4801. ,{ "pid":12345, "tid":6, "ts":1718093442332380, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4802. ,{ "pid":12345, "tid":6, "ts":1718093442332483, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-tls.h" }}
  4803. ,{ "pid":12345, "tid":6, "ts":1718093442332481, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-tls.h" }}
  4804. ,{ "pid":12345, "tid":6, "ts":1718093442332543, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4805. ,{ "pid":12345, "tid":6, "ts":1718093442332613, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-windows.c" }}
  4806. ,{ "pid":12345, "tid":6, "ts":1718093442332611, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-windows.c" }}
  4807. ,{ "pid":12345, "tid":6, "ts":1718093442332680, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4808. ,{ "pid":12345, "tid":6, "ts":1718093442332765, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-mach-helper.c" }}
  4809. ,{ "pid":12345, "tid":6, "ts":1718093442332764, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-mach-helper.c" }}
  4810. ,{ "pid":12345, "tid":6, "ts":1718093442332857, "dur":715, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4811. ,{ "pid":12345, "tid":6, "ts":1718093442333582, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-string.h" }}
  4812. ,{ "pid":12345, "tid":6, "ts":1718093442333578, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-string.h" }}
  4813. ,{ "pid":12345, "tid":6, "ts":1718093442333674, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4814. ,{ "pid":12345, "tid":6, "ts":1718093442333739, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-sha1.c" }}
  4815. ,{ "pid":12345, "tid":6, "ts":1718093442333738, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-sha1.c" }}
  4816. ,{ "pid":12345, "tid":6, "ts":1718093442333862, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4817. ,{ "pid":12345, "tid":6, "ts":1718093442333980, "dur":154, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-proclib.c" }}
  4818. ,{ "pid":12345, "tid":6, "ts":1718093442333978, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-proclib.c" }}
  4819. ,{ "pid":12345, "tid":6, "ts":1718093442334135, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4820. ,{ "pid":12345, "tid":6, "ts":1718093442334215, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-wait.h" }}
  4821. ,{ "pid":12345, "tid":6, "ts":1718093442334214, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-wait.h" }}
  4822. ,{ "pid":12345, "tid":6, "ts":1718093442334287, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4823. ,{ "pid":12345, "tid":6, "ts":1718093442334375, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-mutex.c" }}
  4824. ,{ "pid":12345, "tid":6, "ts":1718093442334374, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-mutex.c" }}
  4825. ,{ "pid":12345, "tid":6, "ts":1718093442334432, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4826. ,{ "pid":12345, "tid":6, "ts":1718093442334523, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap-windows.c" }}
  4827. ,{ "pid":12345, "tid":6, "ts":1718093442334521, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap-windows.c" }}
  4828. ,{ "pid":12345, "tid":6, "ts":1718093442334637, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4829. ,{ "pid":12345, "tid":6, "ts":1718093442334716, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-math.c" }}
  4830. ,{ "pid":12345, "tid":6, "ts":1718093442334715, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-math.c" }}
  4831. ,{ "pid":12345, "tid":6, "ts":1718093442334788, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4832. ,{ "pid":12345, "tid":6, "ts":1718093442334879, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-unity.c" }}
  4833. ,{ "pid":12345, "tid":6, "ts":1718093442334877, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-unity.c" }}
  4834. ,{ "pid":12345, "tid":6, "ts":1718093442335052, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4835. ,{ "pid":12345, "tid":6, "ts":1718093442335222, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4836. ,{ "pid":12345, "tid":6, "ts":1718093442335308, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-vars.h" }}
  4837. ,{ "pid":12345, "tid":6, "ts":1718093442335307, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-vars.h" }}
  4838. ,{ "pid":12345, "tid":6, "ts":1718093442335415, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4839. ,{ "pid":12345, "tid":6, "ts":1718093442335486, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-error.h" }}
  4840. ,{ "pid":12345, "tid":6, "ts":1718093442335485, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-error.h" }}
  4841. ,{ "pid":12345, "tid":6, "ts":1718093442335568, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4842. ,{ "pid":12345, "tid":6, "ts":1718093442335635, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl.c" }}
  4843. ,{ "pid":12345, "tid":6, "ts":1718093442335633, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl.c" }}
  4844. ,{ "pid":12345, "tid":6, "ts":1718093442335729, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4845. ,{ "pid":12345, "tid":6, "ts":1718093442335834, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-fallback.h" }}
  4846. ,{ "pid":12345, "tid":6, "ts":1718093442335831, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-fallback.h" }}
  4847. ,{ "pid":12345, "tid":6, "ts":1718093442335940, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-coop-mutex.h" }}
  4848. ,{ "pid":12345, "tid":6, "ts":1718093442335939, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-coop-mutex.h" }}
  4849. ,{ "pid":12345, "tid":6, "ts":1718093442336001, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4850. ,{ "pid":12345, "tid":6, "ts":1718093442336089, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-compiler.h" }}
  4851. ,{ "pid":12345, "tid":6, "ts":1718093442336088, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-compiler.h" }}
  4852. ,{ "pid":12345, "tid":6, "ts":1718093442336188, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4853. ,{ "pid":12345, "tid":6, "ts":1718093442336275, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/memcheck.h" }}
  4854. ,{ "pid":12345, "tid":6, "ts":1718093442336274, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/memcheck.h" }}
  4855. ,{ "pid":12345, "tid":6, "ts":1718093442336355, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4856. ,{ "pid":12345, "tid":6, "ts":1718093442336433, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-queue.h" }}
  4857. ,{ "pid":12345, "tid":6, "ts":1718093442336431, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-queue.h" }}
  4858. ,{ "pid":12345, "tid":6, "ts":1718093442336506, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4859. ,{ "pid":12345, "tid":6, "ts":1718093442336596, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/linux_magic.h" }}
  4860. ,{ "pid":12345, "tid":6, "ts":1718093442336594, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/linux_magic.h" }}
  4861. ,{ "pid":12345, "tid":6, "ts":1718093442336670, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4862. ,{ "pid":12345, "tid":6, "ts":1718093442336805, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/hazard-pointer.c" }}
  4863. ,{ "pid":12345, "tid":6, "ts":1718093442336804, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/hazard-pointer.c" }}
  4864. ,{ "pid":12345, "tid":6, "ts":1718093442336947, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4865. ,{ "pid":12345, "tid":6, "ts":1718093442337044, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/checked-build.h" }}
  4866. ,{ "pid":12345, "tid":6, "ts":1718093442337042, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/checked-build.h" }}
  4867. ,{ "pid":12345, "tid":6, "ts":1718093442337115, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4868. ,{ "pid":12345, "tid":6, "ts":1718093442337238, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4869. ,{ "pid":12345, "tid":6, "ts":1718093442337329, "dur":68, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/atomic.c" }}
  4870. ,{ "pid":12345, "tid":6, "ts":1718093442337439, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4871. ,{ "pid":12345, "tid":6, "ts":1718093442337587, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-protocol-def.h" }}
  4872. ,{ "pid":12345, "tid":6, "ts":1718093442337585, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-protocol-def.h" }}
  4873. ,{ "pid":12345, "tid":6, "ts":1718093442337653, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4874. ,{ "pid":12345, "tid":6, "ts":1718093442337719, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-nursery-allocator.c" }}
  4875. ,{ "pid":12345, "tid":6, "ts":1718093442337716, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-nursery-allocator.c" }}
  4876. ,{ "pid":12345, "tid":6, "ts":1718093442337786, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4877. ,{ "pid":12345, "tid":6, "ts":1718093442337842, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-marksweep-drain-gray-stack.h" }}
  4878. ,{ "pid":12345, "tid":6, "ts":1718093442337840, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-marksweep-drain-gray-stack.h" }}
  4879. ,{ "pid":12345, "tid":6, "ts":1718093442337946, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4880. ,{ "pid":12345, "tid":6, "ts":1718093442338071, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-hash-table.h" }}
  4881. ,{ "pid":12345, "tid":6, "ts":1718093442338069, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-hash-table.h" }}
  4882. ,{ "pid":12345, "tid":6, "ts":1718093442338137, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4883. ,{ "pid":12345, "tid":6, "ts":1718093442338287, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gc.c" }}
  4884. ,{ "pid":12345, "tid":6, "ts":1718093442338286, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gc.c" }}
  4885. ,{ "pid":12345, "tid":6, "ts":1718093442338354, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4886. ,{ "pid":12345, "tid":6, "ts":1718093442338457, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-conf.h" }}
  4887. ,{ "pid":12345, "tid":6, "ts":1718093442338456, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-conf.h" }}
  4888. ,{ "pid":12345, "tid":6, "ts":1718093442338584, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-array-list.c" }}
  4889. ,{ "pid":12345, "tid":6, "ts":1718093442338583, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-array-list.c" }}
  4890. ,{ "pid":12345, "tid":6, "ts":1718093442338642, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4891. ,{ "pid":12345, "tid":6, "ts":1718093442338768, "dur":128, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-state-machine.c" }}
  4892. ,{ "pid":12345, "tid":6, "ts":1718093442338767, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-state-machine.c" }}
  4893. ,{ "pid":12345, "tid":6, "ts":1718093442338953, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/wrapper-types.h" }}
  4894. ,{ "pid":12345, "tid":6, "ts":1718093442338945, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/wrapper-types.h" }}
  4895. ,{ "pid":12345, "tid":6, "ts":1718093442339068, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4896. ,{ "pid":12345, "tid":6, "ts":1718093442339152, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32semaphore.h" }}
  4897. ,{ "pid":12345, "tid":6, "ts":1718093442339150, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32semaphore.h" }}
  4898. ,{ "pid":12345, "tid":6, "ts":1718093442339258, "dur":185, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4899. ,{ "pid":12345, "tid":6, "ts":1718093442339450, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-win32-internals.h" }}
  4900. ,{ "pid":12345, "tid":6, "ts":1718093442339448, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-win32-internals.h" }}
  4901. ,{ "pid":12345, "tid":6, "ts":1718093442339523, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4902. ,{ "pid":12345, "tid":6, "ts":1718093442339643, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32mutex.h" }}
  4903. ,{ "pid":12345, "tid":6, "ts":1718093442339642, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32mutex.h" }}
  4904. ,{ "pid":12345, "tid":6, "ts":1718093442339768, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4905. ,{ "pid":12345, "tid":6, "ts":1718093442339923, "dur":188, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32handle-namespace.c" }}
  4906. ,{ "pid":12345, "tid":6, "ts":1718093442339922, "dur":189, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32handle-namespace.c" }}
  4907. ,{ "pid":12345, "tid":6, "ts":1718093442340111, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4908. ,{ "pid":12345, "tid":6, "ts":1718093442340293, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-unix-glob.h" }}
  4909. ,{ "pid":12345, "tid":6, "ts":1718093442340274, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-unix-glob.h" }}
  4910. ,{ "pid":12345, "tid":6, "ts":1718093442340376, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4911. ,{ "pid":12345, "tid":6, "ts":1718093442340450, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32error.h" }}
  4912. ,{ "pid":12345, "tid":6, "ts":1718093442340448, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32error.h" }}
  4913. ,{ "pid":12345, "tid":6, "ts":1718093442340584, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/unity-utils.h" }}
  4914. ,{ "pid":12345, "tid":6, "ts":1718093442340582, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/unity-utils.h" }}
  4915. ,{ "pid":12345, "tid":6, "ts":1718093442340679, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4916. ,{ "pid":12345, "tid":6, "ts":1718093442340804, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threads.c" }}
  4917. ,{ "pid":12345, "tid":6, "ts":1718093442340803, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threads.c" }}
  4918. ,{ "pid":12345, "tid":6, "ts":1718093442340930, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4919. ,{ "pid":12345, "tid":6, "ts":1718093442341092, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4920. ,{ "pid":12345, "tid":6, "ts":1718093442341193, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/string-icalls.c" }}
  4921. ,{ "pid":12345, "tid":6, "ts":1718093442341192, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/string-icalls.c" }}
  4922. ,{ "pid":12345, "tid":6, "ts":1718093442341307, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4923. ,{ "pid":12345, "tid":6, "ts":1718093442341397, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-tarjan-bridge.c" }}
  4924. ,{ "pid":12345, "tid":6, "ts":1718093442341396, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-tarjan-bridge.c" }}
  4925. ,{ "pid":12345, "tid":6, "ts":1718093442341486, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4926. ,{ "pid":12345, "tid":6, "ts":1718093442341565, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-client-mono.h" }}
  4927. ,{ "pid":12345, "tid":6, "ts":1718093442341564, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-client-mono.h" }}
  4928. ,{ "pid":12345, "tid":6, "ts":1718093442341622, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4929. ,{ "pid":12345, "tid":6, "ts":1718093442341679, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/seq-points-data.c" }}
  4930. ,{ "pid":12345, "tid":6, "ts":1718093442341678, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/seq-points-data.c" }}
  4931. ,{ "pid":12345, "tid":6, "ts":1718093442341807, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/runtime.h" }}
  4932. ,{ "pid":12345, "tid":6, "ts":1718093442341806, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/runtime.h" }}
  4933. ,{ "pid":12345, "tid":6, "ts":1718093442341869, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4934. ,{ "pid":12345, "tid":6, "ts":1718093442341965, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/reflection.h" }}
  4935. ,{ "pid":12345, "tid":6, "ts":1718093442341964, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/reflection.h" }}
  4936. ,{ "pid":12345, "tid":6, "ts":1718093442342038, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4937. ,{ "pid":12345, "tid":6, "ts":1718093442342118, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/property-bag.c" }}
  4938. ,{ "pid":12345, "tid":6, "ts":1718093442342117, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/property-bag.c" }}
  4939. ,{ "pid":12345, "tid":6, "ts":1718093442342196, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4940. ,{ "pid":12345, "tid":6, "ts":1718093442342273, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/private/threadpool-io-poll.c" }}
  4941. ,{ "pid":12345, "tid":6, "ts":1718093442342272, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/private/threadpool-io-poll.c" }}
  4942. ,{ "pid":12345, "tid":6, "ts":1718093442342331, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4943. ,{ "pid":12345, "tid":6, "ts":1718093442342400, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object.c" }}
  4944. ,{ "pid":12345, "tid":6, "ts":1718093442342399, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object.c" }}
  4945. ,{ "pid":12345, "tid":6, "ts":1718093442342477, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4946. ,{ "pid":12345, "tid":6, "ts":1718093442342569, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/number-formatter.h" }}
  4947. ,{ "pid":12345, "tid":6, "ts":1718093442342567, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/number-formatter.h" }}
  4948. ,{ "pid":12345, "tid":6, "ts":1718093442342634, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4949. ,{ "pid":12345, "tid":6, "ts":1718093442342720, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-security-windows-internals.h" }}
  4950. ,{ "pid":12345, "tid":6, "ts":1718093442342719, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-security-windows-internals.h" }}
  4951. ,{ "pid":12345, "tid":6, "ts":1718093442342788, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4952. ,{ "pid":12345, "tid":6, "ts":1718093442342858, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-perfcounters.c" }}
  4953. ,{ "pid":12345, "tid":6, "ts":1718093442342857, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-perfcounters.c" }}
  4954. ,{ "pid":12345, "tid":6, "ts":1718093442342950, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4955. ,{ "pid":12345, "tid":6, "ts":1718093442343034, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-hash-internals.h" }}
  4956. ,{ "pid":12345, "tid":6, "ts":1718093442343033, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-hash-internals.h" }}
  4957. ,{ "pid":12345, "tid":6, "ts":1718093442343121, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4958. ,{ "pid":12345, "tid":6, "ts":1718093442343210, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-config.c" }}
  4959. ,{ "pid":12345, "tid":6, "ts":1718093442343209, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-config.c" }}
  4960. ,{ "pid":12345, "tid":6, "ts":1718093442343284, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4961. ,{ "pid":12345, "tid":6, "ts":1718093442343353, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-basic-block.c" }}
  4962. ,{ "pid":12345, "tid":6, "ts":1718093442343351, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-basic-block.c" }}
  4963. ,{ "pid":12345, "tid":6, "ts":1718093442343421, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4964. ,{ "pid":12345, "tid":6, "ts":1718093442343514, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata.c" }}
  4965. ,{ "pid":12345, "tid":6, "ts":1718093442343513, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata.c" }}
  4966. ,{ "pid":12345, "tid":6, "ts":1718093442343565, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4967. ,{ "pid":12345, "tid":6, "ts":1718093442343652, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mempool.c" }}
  4968. ,{ "pid":12345, "tid":6, "ts":1718093442343651, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mempool.c" }}
  4969. ,{ "pid":12345, "tid":6, "ts":1718093442343726, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4970. ,{ "pid":12345, "tid":6, "ts":1718093442343805, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal-internals.h" }}
  4971. ,{ "pid":12345, "tid":6, "ts":1718093442343803, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal-internals.h" }}
  4972. ,{ "pid":12345, "tid":6, "ts":1718093442343881, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4973. ,{ "pid":12345, "tid":6, "ts":1718093442343961, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/loader.c" }}
  4974. ,{ "pid":12345, "tid":6, "ts":1718093442343960, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/loader.c" }}
  4975. ,{ "pid":12345, "tid":6, "ts":1718093442344043, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4976. ,{ "pid":12345, "tid":6, "ts":1718093442344131, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/image-internals.h" }}
  4977. ,{ "pid":12345, "tid":6, "ts":1718093442344129, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/image-internals.h" }}
  4978. ,{ "pid":12345, "tid":6, "ts":1718093442344233, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4979. ,{ "pid":12345, "tid":6, "ts":1718093442344325, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall-def.h" }}
  4980. ,{ "pid":12345, "tid":6, "ts":1718093442344324, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall-def.h" }}
  4981. ,{ "pid":12345, "tid":6, "ts":1718093442344400, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4982. ,{ "pid":12345, "tid":6, "ts":1718093442344567, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4983. ,{ "pid":12345, "tid":6, "ts":1718093442344646, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/fdhandle.c" }}
  4984. ,{ "pid":12345, "tid":6, "ts":1718093442344644, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/fdhandle.c" }}
  4985. ,{ "pid":12345, "tid":6, "ts":1718093442344710, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4986. ,{ "pid":12345, "tid":6, "ts":1718093442344837, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4987. ,{ "pid":12345, "tid":6, "ts":1718093442344933, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/domain-internals.h" }}
  4988. ,{ "pid":12345, "tid":6, "ts":1718093442344924, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/domain-internals.h" }}
  4989. ,{ "pid":12345, "tid":6, "ts":1718093442345057, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-mono-ppdb.c" }}
  4990. ,{ "pid":12345, "tid":6, "ts":1718093442345055, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-mono-ppdb.c" }}
  4991. ,{ "pid":12345, "tid":6, "ts":1718093442345142, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4992. ,{ "pid":12345, "tid":6, "ts":1718093442345201, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/culture-info.h" }}
  4993. ,{ "pid":12345, "tid":6, "ts":1718093442345200, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/culture-info.h" }}
  4994. ,{ "pid":12345, "tid":6, "ts":1718093442345289, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4995. ,{ "pid":12345, "tid":6, "ts":1718093442345366, "dur":61, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/culture-info.h" }}
  4996. ,{ "pid":12345, "tid":6, "ts":1718093442345428, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class.c" }}
  4997. ,{ "pid":12345, "tid":6, "ts":1718093442345488, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4998. ,{ "pid":12345, "tid":6, "ts":1718093442345566, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/cil-coff.h" }}
  4999. ,{ "pid":12345, "tid":6, "ts":1718093442345559, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/cil-coff.h" }}
  5000. ,{ "pid":12345, "tid":6, "ts":1718093442345650, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5001. ,{ "pid":12345, "tid":6, "ts":1718093442345734, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/assembly.h" }}
  5002. ,{ "pid":12345, "tid":6, "ts":1718093442345732, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/assembly.h" }}
  5003. ,{ "pid":12345, "tid":6, "ts":1718093442345795, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5004. ,{ "pid":12345, "tid":6, "ts":1718093442345873, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/appdomain-icalls.h" }}
  5005. ,{ "pid":12345, "tid":6, "ts":1718093442345872, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/appdomain-icalls.h" }}
  5006. ,{ "pid":12345, "tid":6, "ts":1718093442345940, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5007. ,{ "pid":12345, "tid":6, "ts":1718093442346042, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5008. ,{ "pid":12345, "tid":6, "ts":1718093442346105, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gshell.c" }}
  5009. ,{ "pid":12345, "tid":6, "ts":1718093442346103, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gshell.c" }}
  5010. ,{ "pid":12345, "tid":6, "ts":1718093442346222, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gpath.c" }}
  5011. ,{ "pid":12345, "tid":6, "ts":1718093442346220, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gpath.c" }}
  5012. ,{ "pid":12345, "tid":6, "ts":1718093442346308, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5013. ,{ "pid":12345, "tid":6, "ts":1718093442346371, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/glist.c" }}
  5014. ,{ "pid":12345, "tid":6, "ts":1718093442346370, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/glist.c" }}
  5015. ,{ "pid":12345, "tid":6, "ts":1718093442346429, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5016. ,{ "pid":12345, "tid":6, "ts":1718093442346519, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gdir-unity.c" }}
  5017. ,{ "pid":12345, "tid":6, "ts":1718093442346517, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gdir-unity.c" }}
  5018. ,{ "pid":12345, "tid":6, "ts":1718093442346572, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5019. ,{ "pid":12345, "tid":6, "ts":1718093442346629, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/cil/opcode.def" }}
  5020. ,{ "pid":12345, "tid":6, "ts":1718093442346706, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5021. ,{ "pid":12345, "tid":6, "ts":1718093442346805, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5022. ,{ "pid":12345, "tid":6, "ts":1718093442346913, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/internal/sparsehashtable.h" }}
  5023. ,{ "pid":12345, "tid":6, "ts":1718093442346910, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/sparsehashtable.h" }}
  5024. ,{ "pid":12345, "tid":6, "ts":1718093442346970, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5025. ,{ "pid":12345, "tid":6, "ts":1718093442347060, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/dense_hash_map.h" }}
  5026. ,{ "pid":12345, "tid":6, "ts":1718093442347058, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/dense_hash_map.h" }}
  5027. ,{ "pid":12345, "tid":6, "ts":1718093442347118, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5028. ,{ "pid":12345, "tid":6, "ts":1718093442347193, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tools/setjmp_t.c" }}
  5029. ,{ "pid":12345, "tid":6, "ts":1718093442347191, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tools/setjmp_t.c" }}
  5030. ,{ "pid":12345, "tid":6, "ts":1718093442347253, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5031. ,{ "pid":12345, "tid":6, "ts":1718093442347342, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/test.c" }}
  5032. ,{ "pid":12345, "tid":6, "ts":1718093442347341, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/test.c" }}
  5033. ,{ "pid":12345, "tid":6, "ts":1718093442347409, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5034. ,{ "pid":12345, "tid":6, "ts":1718093442347485, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/middle.c" }}
  5035. ,{ "pid":12345, "tid":6, "ts":1718093442347483, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/middle.c" }}
  5036. ,{ "pid":12345, "tid":6, "ts":1718093442347557, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5037. ,{ "pid":12345, "tid":6, "ts":1718093442347626, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/specific.c" }}
  5038. ,{ "pid":12345, "tid":6, "ts":1718093442347625, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/specific.c" }}
  5039. ,{ "pid":12345, "tid":6, "ts":1718093442347681, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5040. ,{ "pid":12345, "tid":6, "ts":1718093442347755, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/pthread_start.c" }}
  5041. ,{ "pid":12345, "tid":6, "ts":1718093442347754, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/pthread_start.c" }}
  5042. ,{ "pid":12345, "tid":6, "ts":1718093442347812, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5043. ,{ "pid":12345, "tid":6, "ts":1718093442347874, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/mark_rts.c" }}
  5044. ,{ "pid":12345, "tid":6, "ts":1718093442347872, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/mark_rts.c" }}
  5045. ,{ "pid":12345, "tid":6, "ts":1718093442347951, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5046. ,{ "pid":12345, "tid":6, "ts":1718093442348028, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/test_and_set_t_is_ao_t.h" }}
  5047. ,{ "pid":12345, "tid":6, "ts":1718093442348026, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/test_and_set_t_is_ao_t.h" }}
  5048. ,{ "pid":12345, "tid":6, "ts":1718093442348091, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5049. ,{ "pid":12345, "tid":6, "ts":1718093442348172, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ordered.h" }}
  5050. ,{ "pid":12345, "tid":6, "ts":1718093442348170, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ordered.h" }}
  5051. ,{ "pid":12345, "tid":6, "ts":1718093442348237, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5052. ,{ "pid":12345, "tid":6, "ts":1718093442348331, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_acquire_release_volatile.h" }}
  5053. ,{ "pid":12345, "tid":6, "ts":1718093442348329, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_acquire_release_volatile.h" }}
  5054. ,{ "pid":12345, "tid":6, "ts":1718093442348416, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5055. ,{ "pid":12345, "tid":6, "ts":1718093442348486, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_atomic_store.h" }}
  5056. ,{ "pid":12345, "tid":6, "ts":1718093442348484, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_atomic_store.h" }}
  5057. ,{ "pid":12345, "tid":6, "ts":1718093442348552, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5058. ,{ "pid":12345, "tid":6, "ts":1718093442348617, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/acquire_release_volatile.h" }}
  5059. ,{ "pid":12345, "tid":6, "ts":1718093442348615, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/acquire_release_volatile.h" }}
  5060. ,{ "pid":12345, "tid":6, "ts":1718093442348691, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5061. ,{ "pid":12345, "tid":6, "ts":1718093442348760, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/x86.h" }}
  5062. ,{ "pid":12345, "tid":6, "ts":1718093442348758, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/x86.h" }}
  5063. ,{ "pid":12345, "tid":6, "ts":1718093442348867, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/mips.h" }}
  5064. ,{ "pid":12345, "tid":6, "ts":1718093442348865, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/mips.h" }}
  5065. ,{ "pid":12345, "tid":6, "ts":1718093442348937, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5066. ,{ "pid":12345, "tid":6, "ts":1718093442349008, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic-small.h" }}
  5067. ,{ "pid":12345, "tid":6, "ts":1718093442349006, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic-small.h" }}
  5068. ,{ "pid":12345, "tid":6, "ts":1718093442349089, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5069. ,{ "pid":12345, "tid":6, "ts":1718093442349177, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/aarch64.h" }}
  5070. ,{ "pid":12345, "tid":6, "ts":1718093442349174, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/aarch64.h" }}
  5071. ,{ "pid":12345, "tid":6, "ts":1718093442349253, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5072. ,{ "pid":12345, "tid":6, "ts":1718093442349332, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_aligned_atomic_load_store.h" }}
  5073. ,{ "pid":12345, "tid":6, "ts":1718093442349330, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_aligned_atomic_load_store.h" }}
  5074. ,{ "pid":12345, "tid":6, "ts":1718093442349396, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5075. ,{ "pid":12345, "tid":6, "ts":1718093442349459, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/ao_version.h" }}
  5076. ,{ "pid":12345, "tid":6, "ts":1718093442349457, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/ao_version.h" }}
  5077. ,{ "pid":12345, "tid":6, "ts":1718093442349547, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5078. ,{ "pid":12345, "tid":6, "ts":1718093442349617, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/weakpointer.h" }}
  5079. ,{ "pid":12345, "tid":6, "ts":1718093442349615, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/weakpointer.h" }}
  5080. ,{ "pid":12345, "tid":6, "ts":1718093442349733, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/gc_priv.h" }}
  5081. ,{ "pid":12345, "tid":6, "ts":1718093442349731, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/gc_priv.h" }}
  5082. ,{ "pid":12345, "tid":6, "ts":1718093442349833, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5083. ,{ "pid":12345, "tid":6, "ts":1718093442349920, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/darwin_stop_world.h" }}
  5084. ,{ "pid":12345, "tid":6, "ts":1718093442349918, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/darwin_stop_world.h" }}
  5085. ,{ "pid":12345, "tid":6, "ts":1718093442350025, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_version.h" }}
  5086. ,{ "pid":12345, "tid":6, "ts":1718093442350023, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_version.h" }}
  5087. ,{ "pid":12345, "tid":6, "ts":1718093442350107, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5088. ,{ "pid":12345, "tid":6, "ts":1718093442350192, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_inline.h" }}
  5089. ,{ "pid":12345, "tid":6, "ts":1718093442350183, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_inline.h" }}
  5090. ,{ "pid":12345, "tid":6, "ts":1718093442350258, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5091. ,{ "pid":12345, "tid":6, "ts":1718093442350402, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5092. ,{ "pid":12345, "tid":6, "ts":1718093442350488, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/cord_pos.h" }}
  5093. ,{ "pid":12345, "tid":6, "ts":1718093442350486, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/cord_pos.h" }}
  5094. ,{ "pid":12345, "tid":6, "ts":1718093442350727, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.CSharpSupport.dll" }}
  5095. ,{ "pid":12345, "tid":6, "ts":1718093442350673, "dur":277, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.TextCoreFontEngineModule-FeaturesChecked.txt" }}
  5096. ,{ "pid":12345, "tid":6, "ts":1718093442351005, "dur":358, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Registration-FeaturesChecked.txt" }}
  5097. ,{ "pid":12345, "tid":6, "ts":1718093442351421, "dur":260, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Ump.iOS-FeaturesChecked.txt" }}
  5098. ,{ "pid":12345, "tid":6, "ts":1718093442351728, "dur":205, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UIModule-FeaturesChecked.txt" }}
  5099. ,{ "pid":12345, "tid":6, "ts":1718093442352018, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/GoogleMobileAds.dll" }}
  5100. ,{ "pid":12345, "tid":6, "ts":1718093442352015, "dur":333, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds-FeaturesChecked.txt" }}
  5101. ,{ "pid":12345, "tid":6, "ts":1718093442352393, "dur":243, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UnityWebRequestModule-FeaturesChecked.txt" }}
  5102. ,{ "pid":12345, "tid":6, "ts":1718093442352657, "dur":455, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Firebase.Auth-FeaturesChecked.txt" }}
  5103. ,{ "pid":12345, "tid":6, "ts":1718093442353130, "dur":334, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.Security-FeaturesChecked.txt" }}
  5104. ,{ "pid":12345, "tid":6, "ts":1718093442353544, "dur":324, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Scheduler-FeaturesChecked.txt" }}
  5105. ,{ "pid":12345, "tid":6, "ts":1718093442353900, "dur":298, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Firebase.App-FeaturesChecked.txt" }}
  5106. ,{ "pid":12345, "tid":6, "ts":1718093442354550, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.IL2CPP.Api.dll" }}
  5107. ,{ "pid":12345, "tid":6, "ts":1718093442354250, "dur":494, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.GridModule-FeaturesChecked.txt" }}
  5108. ,{ "pid":12345, "tid":6, "ts":1718093442354939, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Tools.dll" }}
  5109. ,{ "pid":12345, "tid":6, "ts":1718093442355114, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.Data.dll" }}
  5110. ,{ "pid":12345, "tid":6, "ts":1718093442354790, "dur":481, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.PropertiesModule-FeaturesChecked.txt" }}
  5111. ,{ "pid":12345, "tid":6, "ts":1718093442355403, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.DotNet.dll" }}
  5112. ,{ "pid":12345, "tid":6, "ts":1718093442355597, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.Data.pdb" }}
  5113. ,{ "pid":12345, "tid":6, "ts":1718093442355681, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.pdb" }}
  5114. ,{ "pid":12345, "tid":6, "ts":1718093442355336, "dur":722, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.TextMeshPro-FeaturesChecked.txt" }}
  5115. ,{ "pid":12345, "tid":6, "ts":1718093442356373, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/System.Configuration-FeaturesChecked.txt" }}
  5116. ,{ "pid":12345, "tid":6, "ts":1718093442356681, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/Unity.2D.Animation.Runtime-FeaturesChecked.txt" }}
  5117. ,{ "pid":12345, "tid":6, "ts":1718093442356833, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/Unity.InternalAPIEngineBridge.001-FeaturesChecked.txt" }}
  5118. ,{ "pid":12345, "tid":6, "ts":1718093442357459, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing-FeaturesChecked.txt" }}
  5119. ,{ "pid":12345, "tid":6, "ts":1718093442357585, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.Stores-FeaturesChecked.txt" }}
  5120. ,{ "pid":12345, "tid":6, "ts":1718093442357761, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.TextRenderingModule-FeaturesChecked.txt" }}
  5121. ,{ "pid":12345, "tid":6, "ts":1718093442357816, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.TilemapModule-FeaturesChecked.txt" }}
  5122. ,{ "pid":12345, "tid":6, "ts":1718093442357923, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.UnityAnalyticsModule-FeaturesChecked.txt" }}
  5123. ,{ "pid":12345, "tid":6, "ts":1718093442356115, "dur":1969, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CollectRequiredReasonAPIs Library/Bee/artifacts/iOS/AppleRequiredReasonCSharpAPIs.txt" }}
  5124. ,{ "pid":12345, "tid":6, "ts":1718093442358084, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5125. ,{ "pid":12345, "tid":6, "ts":1718093442358309, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/OSX/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  5126. ,{ "pid":12345, "tid":6, "ts":1718093442358306, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/OSX/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  5127. ,{ "pid":12345, "tid":6, "ts":1718093442358403, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5128. ,{ "pid":12345, "tid":6, "ts":1718093442358480, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Linux/Include/C/Baselib_FileIO.inl.h" }}
  5129. ,{ "pid":12345, "tid":6, "ts":1718093442358478, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Linux/Include/C/Baselib_FileIO.inl.h" }}
  5130. ,{ "pid":12345, "tid":6, "ts":1718093442358543, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5131. ,{ "pid":12345, "tid":6, "ts":1718093442358623, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/IOS/Include/C/Baselib_ErrorState.inl.h" }}
  5132. ,{ "pid":12345, "tid":6, "ts":1718093442358621, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/IOS/Include/C/Baselib_ErrorState.inl.h" }}
  5133. ,{ "pid":12345, "tid":6, "ts":1718093442358712, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5134. ,{ "pid":12345, "tid":6, "ts":1718093442358796, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_DynamicLibrary.inl.h" }}
  5135. ,{ "pid":12345, "tid":6, "ts":1718093442358794, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_DynamicLibrary.inl.h" }}
  5136. ,{ "pid":12345, "tid":6, "ts":1718093442358870, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5137. ,{ "pid":12345, "tid":6, "ts":1718093442358933, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Android/Include/BaselibPlatformSpecificEnvironment.h" }}
  5138. ,{ "pid":12345, "tid":6, "ts":1718093442358931, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Android/Include/BaselibPlatformSpecificEnvironment.h" }}
  5139. ,{ "pid":12345, "tid":6, "ts":1718093442359013, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5140. ,{ "pid":12345, "tid":6, "ts":1718093442359157, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/RedefineCompilerMacros.h" }}
  5141. ,{ "pid":12345, "tid":6, "ts":1718093442359155, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/RedefineCompilerMacros.h" }}
  5142. ,{ "pid":12345, "tid":6, "ts":1718093442359231, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5143. ,{ "pid":12345, "tid":6, "ts":1718093442359311, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/Compiler/CompilerEnvironmentClang.h" }}
  5144. ,{ "pid":12345, "tid":6, "ts":1718093442359310, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/Compiler/CompilerEnvironmentClang.h" }}
  5145. ,{ "pid":12345, "tid":6, "ts":1718093442359386, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5146. ,{ "pid":12345, "tid":6, "ts":1718093442359502, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/External/utfcpp/source/utf8/core.h" }}
  5147. ,{ "pid":12345, "tid":6, "ts":1718093442359500, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/External/utfcpp/source/utf8/core.h" }}
  5148. ,{ "pid":12345, "tid":6, "ts":1718093442359557, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5149. ,{ "pid":12345, "tid":6, "ts":1718093442359696, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Thread.h" }}
  5150. ,{ "pid":12345, "tid":6, "ts":1718093442359695, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Thread.h" }}
  5151. ,{ "pid":12345, "tid":6, "ts":1718093442359761, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5152. ,{ "pid":12345, "tid":6, "ts":1718093442359835, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpsc_node_queue.h" }}
  5153. ,{ "pid":12345, "tid":6, "ts":1718093442359834, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpsc_node_queue.h" }}
  5154. ,{ "pid":12345, "tid":6, "ts":1718093442359907, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5155. ,{ "pid":12345, "tid":6, "ts":1718093442360007, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Lock.h" }}
  5156. ,{ "pid":12345, "tid":6, "ts":1718093442360005, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Lock.h" }}
  5157. ,{ "pid":12345, "tid":6, "ts":1718093442360065, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5158. ,{ "pid":12345, "tid":6, "ts":1718093442360141, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/ConditionVariable_SemaphoreBased.inl.h" }}
  5159. ,{ "pid":12345, "tid":6, "ts":1718093442360139, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/ConditionVariable_SemaphoreBased.inl.h" }}
  5160. ,{ "pid":12345, "tid":6, "ts":1718093442360209, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5161. ,{ "pid":12345, "tid":6, "ts":1718093442360319, "dur":164, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/chunked_allocator.inl.h" }}
  5162. ,{ "pid":12345, "tid":6, "ts":1718093442360317, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/chunked_allocator.inl.h" }}
  5163. ,{ "pid":12345, "tid":6, "ts":1718093442360484, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5164. ,{ "pid":12345, "tid":6, "ts":1718093442360570, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/CountdownTimer.h" }}
  5165. ,{ "pid":12345, "tid":6, "ts":1718093442360569, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/CountdownTimer.h" }}
  5166. ,{ "pid":12345, "tid":6, "ts":1718093442360682, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5167. ,{ "pid":12345, "tid":6, "ts":1718093442360778, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Barrier.h" }}
  5168. ,{ "pid":12345, "tid":6, "ts":1718093442360768, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Barrier.h" }}
  5169. ,{ "pid":12345, "tid":6, "ts":1718093442360907, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5170. ,{ "pid":12345, "tid":6, "ts":1718093442361048, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Gcc_Patch_PostInclude.h" }}
  5171. ,{ "pid":12345, "tid":6, "ts":1718093442361046, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Gcc_Patch_PostInclude.h" }}
  5172. ,{ "pid":12345, "tid":6, "ts":1718093442361116, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5173. ,{ "pid":12345, "tid":6, "ts":1718093442361198, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_Lock_SemaphoreBased.inl.h" }}
  5174. ,{ "pid":12345, "tid":6, "ts":1718093442361196, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_Lock_SemaphoreBased.inl.h" }}
  5175. ,{ "pid":12345, "tid":6, "ts":1718093442361278, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5176. ,{ "pid":12345, "tid":6, "ts":1718093442361392, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_EnumSizeCheck.h" }}
  5177. ,{ "pid":12345, "tid":6, "ts":1718093442361390, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_EnumSizeCheck.h" }}
  5178. ,{ "pid":12345, "tid":6, "ts":1718093442361458, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5179. ,{ "pid":12345, "tid":6, "ts":1718093442361562, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_SystemSemaphore.h" }}
  5180. ,{ "pid":12345, "tid":6, "ts":1718093442361559, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_SystemSemaphore.h" }}
  5181. ,{ "pid":12345, "tid":6, "ts":1718093442361685, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5182. ,{ "pid":12345, "tid":6, "ts":1718093442361769, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_RegisteredNetwork.h" }}
  5183. ,{ "pid":12345, "tid":6, "ts":1718093442361767, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_RegisteredNetwork.h" }}
  5184. ,{ "pid":12345, "tid":6, "ts":1718093442361840, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5185. ,{ "pid":12345, "tid":6, "ts":1718093442361920, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_HighCapacitySemaphore.h" }}
  5186. ,{ "pid":12345, "tid":6, "ts":1718093442361919, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_HighCapacitySemaphore.h" }}
  5187. ,{ "pid":12345, "tid":6, "ts":1718093442361987, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5188. ,{ "pid":12345, "tid":6, "ts":1718093442362073, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Debug.h" }}
  5189. ,{ "pid":12345, "tid":6, "ts":1718093442362071, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Debug.h" }}
  5190. ,{ "pid":12345, "tid":6, "ts":1718093442362159, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5191. ,{ "pid":12345, "tid":6, "ts":1718093442362252, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Atomic.h" }}
  5192. ,{ "pid":12345, "tid":6, "ts":1718093442362251, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Atomic.h" }}
  5193. ,{ "pid":12345, "tid":6, "ts":1718093442362325, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5194. ,{ "pid":12345, "tid":6, "ts":1718093442362418, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/UnityLinker.dll.config" }}
  5195. ,{ "pid":12345, "tid":6, "ts":1718093442362417, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker.dll.config" }}
  5196. ,{ "pid":12345, "tid":6, "ts":1718093442362513, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5197. ,{ "pid":12345, "tid":6, "ts":1718093442362606, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Options.dll" }}
  5198. ,{ "pid":12345, "tid":6, "ts":1718093442362605, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Options.dll" }}
  5199. ,{ "pid":12345, "tid":6, "ts":1718093442362680, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5200. ,{ "pid":12345, "tid":6, "ts":1718093442362791, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Shell.pdb" }}
  5201. ,{ "pid":12345, "tid":6, "ts":1718093442362788, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Shell.pdb" }}
  5202. ,{ "pid":12345, "tid":6, "ts":1718093442362844, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5203. ,{ "pid":12345, "tid":6, "ts":1718093442362929, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.CompilerServices.pdb" }}
  5204. ,{ "pid":12345, "tid":6, "ts":1718093442362928, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.CompilerServices.pdb" }}
  5205. ,{ "pid":12345, "tid":6, "ts":1718093442363065, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5206. ,{ "pid":12345, "tid":6, "ts":1718093442363147, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Building.pdb" }}
  5207. ,{ "pid":12345, "tid":6, "ts":1718093442363145, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Building.pdb" }}
  5208. ,{ "pid":12345, "tid":6, "ts":1718093442363226, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5209. ,{ "pid":12345, "tid":6, "ts":1718093442363314, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.pdb" }}
  5210. ,{ "pid":12345, "tid":6, "ts":1718093442363312, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.pdb" }}
  5211. ,{ "pid":12345, "tid":6, "ts":1718093442363380, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5212. ,{ "pid":12345, "tid":6, "ts":1718093442363486, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.dll" }}
  5213. ,{ "pid":12345, "tid":6, "ts":1718093442363483, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.VisionOS.dll" }}
  5214. ,{ "pid":12345, "tid":6, "ts":1718093442363569, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5215. ,{ "pid":12345, "tid":6, "ts":1718093442363644, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Linux.pdb" }}
  5216. ,{ "pid":12345, "tid":6, "ts":1718093442363642, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Linux.pdb" }}
  5217. ,{ "pid":12345, "tid":6, "ts":1718093442363708, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5218. ,{ "pid":12345, "tid":6, "ts":1718093442363776, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.pdb" }}
  5219. ,{ "pid":12345, "tid":6, "ts":1718093442363775, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.pdb" }}
  5220. ,{ "pid":12345, "tid":6, "ts":1718093442363838, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5221. ,{ "pid":12345, "tid":6, "ts":1718093442363914, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Api.Output.xml" }}
  5222. ,{ "pid":12345, "tid":6, "ts":1718093442363913, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Api.Output.xml" }}
  5223. ,{ "pid":12345, "tid":6, "ts":1718093442363993, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5224. ,{ "pid":12345, "tid":6, "ts":1718093442364081, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Cecil.Awesome.pdb" }}
  5225. ,{ "pid":12345, "tid":6, "ts":1718093442364078, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Cecil.Awesome.pdb" }}
  5226. ,{ "pid":12345, "tid":6, "ts":1718093442364153, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5227. ,{ "pid":12345, "tid":6, "ts":1718093442364236, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.XmlSerializer.dll" }}
  5228. ,{ "pid":12345, "tid":6, "ts":1718093442364234, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.XmlSerializer.dll" }}
  5229. ,{ "pid":12345, "tid":6, "ts":1718093442364313, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5230. ,{ "pid":12345, "tid":6, "ts":1718093442364404, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Windows.dll" }}
  5231. ,{ "pid":12345, "tid":6, "ts":1718093442364403, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Windows.dll" }}
  5232. ,{ "pid":12345, "tid":6, "ts":1718093442364492, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5233. ,{ "pid":12345, "tid":6, "ts":1718093442364598, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Timer.dll" }}
  5234. ,{ "pid":12345, "tid":6, "ts":1718093442364596, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Timer.dll" }}
  5235. ,{ "pid":12345, "tid":6, "ts":1718093442364690, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5236. ,{ "pid":12345, "tid":6, "ts":1718093442364798, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Overlapped.dll" }}
  5237. ,{ "pid":12345, "tid":6, "ts":1718093442364797, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Overlapped.dll" }}
  5238. ,{ "pid":12345, "tid":6, "ts":1718093442364860, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5239. ,{ "pid":12345, "tid":6, "ts":1718093442364931, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.Encodings.Web.dll" }}
  5240. ,{ "pid":12345, "tid":6, "ts":1718093442364983, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5241. ,{ "pid":12345, "tid":6, "ts":1718093442365047, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.SecureString.dll" }}
  5242. ,{ "pid":12345, "tid":6, "ts":1718093442365046, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.SecureString.dll" }}
  5243. ,{ "pid":12345, "tid":6, "ts":1718093442365192, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.Primitives.dll" }}
  5244. ,{ "pid":12345, "tid":6, "ts":1718093442365182, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.Primitives.dll" }}
  5245. ,{ "pid":12345, "tid":6, "ts":1718093442365294, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5246. ,{ "pid":12345, "tid":6, "ts":1718093442365376, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.AccessControl.dll" }}
  5247. ,{ "pid":12345, "tid":6, "ts":1718093442365374, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.AccessControl.dll" }}
  5248. ,{ "pid":12345, "tid":6, "ts":1718093442365441, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5249. ,{ "pid":12345, "tid":6, "ts":1718093442365530, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Numerics.dll" }}
  5250. ,{ "pid":12345, "tid":6, "ts":1718093442365529, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Numerics.dll" }}
  5251. ,{ "pid":12345, "tid":6, "ts":1718093442365600, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5252. ,{ "pid":12345, "tid":6, "ts":1718093442365680, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Extensions.dll" }}
  5253. ,{ "pid":12345, "tid":6, "ts":1718093442365680, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Extensions.dll" }}
  5254. ,{ "pid":12345, "tid":6, "ts":1718093442365739, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5255. ,{ "pid":12345, "tid":6, "ts":1718093442365809, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Resources.Reader.dll" }}
  5256. ,{ "pid":12345, "tid":6, "ts":1718093442365807, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Resources.Reader.dll" }}
  5257. ,{ "pid":12345, "tid":6, "ts":1718093442365874, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5258. ,{ "pid":12345, "tid":6, "ts":1718093442365963, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.Emit.ILGeneration.dll" }}
  5259. ,{ "pid":12345, "tid":6, "ts":1718093442365962, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Emit.ILGeneration.dll" }}
  5260. ,{ "pid":12345, "tid":6, "ts":1718093442366038, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5261. ,{ "pid":12345, "tid":6, "ts":1718093442366128, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Private.Uri.dll" }}
  5262. ,{ "pid":12345, "tid":6, "ts":1718093442366127, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Private.Uri.dll" }}
  5263. ,{ "pid":12345, "tid":6, "ts":1718093442366191, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5264. ,{ "pid":12345, "tid":6, "ts":1718093442366267, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.WebSockets.dll" }}
  5265. ,{ "pid":12345, "tid":6, "ts":1718093442366265, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.WebSockets.dll" }}
  5266. ,{ "pid":12345, "tid":6, "ts":1718093442366328, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5267. ,{ "pid":12345, "tid":6, "ts":1718093442366389, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.WebClient.dll" }}
  5268. ,{ "pid":12345, "tid":6, "ts":1718093442366388, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.WebClient.dll" }}
  5269. ,{ "pid":12345, "tid":6, "ts":1718093442366479, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5270. ,{ "pid":12345, "tid":6, "ts":1718093442366590, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Ping.dll" }}
  5271. ,{ "pid":12345, "tid":6, "ts":1718093442366589, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Ping.dll" }}
  5272. ,{ "pid":12345, "tid":6, "ts":1718093442366676, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5273. ,{ "pid":12345, "tid":6, "ts":1718093442366774, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Http.dll" }}
  5274. ,{ "pid":12345, "tid":6, "ts":1718093442366772, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Http.dll" }}
  5275. ,{ "pid":12345, "tid":6, "ts":1718093442366848, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5276. ,{ "pid":12345, "tid":6, "ts":1718093442366941, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Linq.dll" }}
  5277. ,{ "pid":12345, "tid":6, "ts":1718093442366940, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Linq.dll" }}
  5278. ,{ "pid":12345, "tid":6, "ts":1718093442367032, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5279. ,{ "pid":12345, "tid":6, "ts":1718093442367113, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.FileSystem.Watcher.dll" }}
  5280. ,{ "pid":12345, "tid":6, "ts":1718093442367111, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.FileSystem.Watcher.dll" }}
  5281. ,{ "pid":12345, "tid":6, "ts":1718093442367194, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5282. ,{ "pid":12345, "tid":6, "ts":1718093442367276, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.Compression.ZipFile.dll" }}
  5283. ,{ "pid":12345, "tid":6, "ts":1718093442367275, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.Compression.ZipFile.dll" }}
  5284. ,{ "pid":12345, "tid":6, "ts":1718093442367344, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5285. ,{ "pid":12345, "tid":6, "ts":1718093442367406, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Globalization.Calendars.dll" }}
  5286. ,{ "pid":12345, "tid":6, "ts":1718093442367405, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Globalization.Calendars.dll" }}
  5287. ,{ "pid":12345, "tid":6, "ts":1718093442367526, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.dll" }}
  5288. ,{ "pid":12345, "tid":6, "ts":1718093442367524, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.dll" }}
  5289. ,{ "pid":12345, "tid":6, "ts":1718093442367618, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5290. ,{ "pid":12345, "tid":6, "ts":1718093442367694, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.FileVersionInfo.dll" }}
  5291. ,{ "pid":12345, "tid":6, "ts":1718093442367692, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.FileVersionInfo.dll" }}
  5292. ,{ "pid":12345, "tid":6, "ts":1718093442367760, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5293. ,{ "pid":12345, "tid":6, "ts":1718093442367852, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Data.Common.dll" }}
  5294. ,{ "pid":12345, "tid":6, "ts":1718093442367850, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Data.Common.dll" }}
  5295. ,{ "pid":12345, "tid":6, "ts":1718093442367918, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5296. ,{ "pid":12345, "tid":6, "ts":1718093442368001, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ComponentModel.EventBasedAsync.dll" }}
  5297. ,{ "pid":12345, "tid":6, "ts":1718093442367999, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ComponentModel.EventBasedAsync.dll" }}
  5298. ,{ "pid":12345, "tid":6, "ts":1718093442368067, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5299. ,{ "pid":12345, "tid":6, "ts":1718093442368162, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Collections.Immutable.dll" }}
  5300. ,{ "pid":12345, "tid":6, "ts":1718093442368160, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Collections.Immutable.dll" }}
  5301. ,{ "pid":12345, "tid":6, "ts":1718093442368256, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5302. ,{ "pid":12345, "tid":6, "ts":1718093442368348, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/NiceIO.dll" }}
  5303. ,{ "pid":12345, "tid":6, "ts":1718093442368347, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/NiceIO.dll" }}
  5304. ,{ "pid":12345, "tid":6, "ts":1718093442368419, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5305. ,{ "pid":12345, "tid":6, "ts":1718093442368491, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.Rocks.pdb" }}
  5306. ,{ "pid":12345, "tid":6, "ts":1718093442368490, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.Rocks.pdb" }}
  5307. ,{ "pid":12345, "tid":6, "ts":1718093442368559, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5308. ,{ "pid":12345, "tid":6, "ts":1718093442368638, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.Mdb.dll" }}
  5309. ,{ "pid":12345, "tid":6, "ts":1718093442368637, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.Mdb.dll" }}
  5310. ,{ "pid":12345, "tid":6, "ts":1718093442368764, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Microsoft.VisualBasic.Core.dll" }}
  5311. ,{ "pid":12345, "tid":6, "ts":1718093442368762, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.VisualBasic.Core.dll" }}
  5312. ,{ "pid":12345, "tid":6, "ts":1718093442368831, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5313. ,{ "pid":12345, "tid":6, "ts":1718093442368913, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libSystem.Net.Security.Native.dylib" }}
  5314. ,{ "pid":12345, "tid":6, "ts":1718093442368996, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5315. ,{ "pid":12345, "tid":6, "ts":1718093442369099, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libhostfxr.dylib" }}
  5316. ,{ "pid":12345, "tid":6, "ts":1718093442369183, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5317. ,{ "pid":12345, "tid":6, "ts":1718093442369290, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/il2cpp.pdb" }}
  5318. ,{ "pid":12345, "tid":6, "ts":1718093442369288, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/il2cpp.pdb" }}
  5319. ,{ "pid":12345, "tid":6, "ts":1718093442369342, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5320. ,{ "pid":12345, "tid":6, "ts":1718093442369437, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/bee_backend/mac-x64/bee_backend" }}
  5321. ,{ "pid":12345, "tid":6, "ts":1718093442369522, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5322. ,{ "pid":12345, "tid":6, "ts":1718093442369605, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Tools.dll" }}
  5323. ,{ "pid":12345, "tid":6, "ts":1718093442369604, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Tools.dll" }}
  5324. ,{ "pid":12345, "tid":6, "ts":1718093442369678, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5325. ,{ "pid":12345, "tid":6, "ts":1718093442369763, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.VisualStudio.dll" }}
  5326. ,{ "pid":12345, "tid":6, "ts":1718093442369761, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.VisualStudio.dll" }}
  5327. ,{ "pid":12345, "tid":6, "ts":1718093442369841, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5328. ,{ "pid":12345, "tid":6, "ts":1718093442369916, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.TvOS.dll" }}
  5329. ,{ "pid":12345, "tid":6, "ts":1718093442369915, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.TvOS.dll" }}
  5330. ,{ "pid":12345, "tid":6, "ts":1718093442370023, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5331. ,{ "pid":12345, "tid":6, "ts":1718093442370136, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.IOS.dll" }}
  5332. ,{ "pid":12345, "tid":6, "ts":1718093442370135, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.IOS.dll" }}
  5333. ,{ "pid":12345, "tid":6, "ts":1718093442370202, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5334. ,{ "pid":12345, "tid":6, "ts":1718093442370272, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.EmbeddedLinux.dll" }}
  5335. ,{ "pid":12345, "tid":6, "ts":1718093442370271, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.EmbeddedLinux.dll" }}
  5336. ,{ "pid":12345, "tid":6, "ts":1718093442370356, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5337. ,{ "pid":12345, "tid":6, "ts":1718093442370442, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.NativeProgramSupport.pdb" }}
  5338. ,{ "pid":12345, "tid":6, "ts":1718093442370440, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.NativeProgramSupport.pdb" }}
  5339. ,{ "pid":12345, "tid":6, "ts":1718093442370544, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5340. ,{ "pid":12345, "tid":6, "ts":1718093442370625, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Core.pdb" }}
  5341. ,{ "pid":12345, "tid":6, "ts":1718093442370623, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Core.pdb" }}
  5342. ,{ "pid":12345, "tid":6, "ts":1718093442370712, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5343. ,{ "pid":12345, "tid":6, "ts":1718093442370780, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.pdb" }}
  5344. ,{ "pid":12345, "tid":6, "ts":1718093442370778, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.pdb" }}
  5345. ,{ "pid":12345, "tid":6, "ts":1718093442370847, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5346. ,{ "pid":12345, "tid":6, "ts":1718093442370934, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics" }}
  5347. ,{ "pid":12345, "tid":6, "ts":1718093442370998, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5348. ,{ "pid":12345, "tid":6, "ts":1718093442371092, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/UnityLinker.deps.json" }}
  5349. ,{ "pid":12345, "tid":6, "ts":1718093442371090, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker.deps.json" }}
  5350. ,{ "pid":12345, "tid":6, "ts":1718093442371155, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5351. ,{ "pid":12345, "tid":6, "ts":1718093442371244, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Linker.Api.pdb" }}
  5352. ,{ "pid":12345, "tid":6, "ts":1718093442371243, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Linker.Api.pdb" }}
  5353. ,{ "pid":12345, "tid":6, "ts":1718093442371346, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5354. ,{ "pid":12345, "tid":6, "ts":1718093442371438, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.pdb" }}
  5355. ,{ "pid":12345, "tid":6, "ts":1718093442371435, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.pdb" }}
  5356. ,{ "pid":12345, "tid":6, "ts":1718093442371502, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5357. ,{ "pid":12345, "tid":6, "ts":1718093442371598, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Common35.pdb" }}
  5358. ,{ "pid":12345, "tid":6, "ts":1718093442371595, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Common35.pdb" }}
  5359. ,{ "pid":12345, "tid":6, "ts":1718093442371670, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5360. ,{ "pid":12345, "tid":6, "ts":1718093442371757, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Building.dll" }}
  5361. ,{ "pid":12345, "tid":6, "ts":1718093442371755, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Building.dll" }}
  5362. ,{ "pid":12345, "tid":6, "ts":1718093442371835, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5363. ,{ "pid":12345, "tid":6, "ts":1718093442371915, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.dll" }}
  5364. ,{ "pid":12345, "tid":6, "ts":1718093442371913, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.dll" }}
  5365. ,{ "pid":12345, "tid":6, "ts":1718093442372014, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5366. ,{ "pid":12345, "tid":6, "ts":1718093442372089, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.dll" }}
  5367. ,{ "pid":12345, "tid":6, "ts":1718093442372088, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.dll" }}
  5368. ,{ "pid":12345, "tid":6, "ts":1718093442372150, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5369. ,{ "pid":12345, "tid":6, "ts":1718093442372233, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.iOS.pdb" }}
  5370. ,{ "pid":12345, "tid":6, "ts":1718093442372232, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.iOS.pdb" }}
  5371. ,{ "pid":12345, "tid":6, "ts":1718093442372295, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5372. ,{ "pid":12345, "tid":6, "ts":1718093442372380, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.dll" }}
  5373. ,{ "pid":12345, "tid":6, "ts":1718093442372379, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.AppleTV.dll" }}
  5374. ,{ "pid":12345, "tid":6, "ts":1718093442372456, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5375. ,{ "pid":12345, "tid":6, "ts":1718093442372527, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Api.Output.dll" }}
  5376. ,{ "pid":12345, "tid":6, "ts":1718093442372526, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Api.Output.dll" }}
  5377. ,{ "pid":12345, "tid":6, "ts":1718093442372601, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5378. ,{ "pid":12345, "tid":6, "ts":1718093442372685, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Api.Attributes.pdb" }}
  5379. ,{ "pid":12345, "tid":6, "ts":1718093442372683, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Api.Attributes.pdb" }}
  5380. ,{ "pid":12345, "tid":6, "ts":1718093442372747, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5381. ,{ "pid":12345, "tid":6, "ts":1718093442372827, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.XDocument.dll" }}
  5382. ,{ "pid":12345, "tid":6, "ts":1718093442372826, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.XDocument.dll" }}
  5383. ,{ "pid":12345, "tid":6, "ts":1718093442372889, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5384. ,{ "pid":12345, "tid":6, "ts":1718093442372969, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Web.dll" }}
  5385. ,{ "pid":12345, "tid":6, "ts":1718093442372968, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Web.dll" }}
  5386. ,{ "pid":12345, "tid":6, "ts":1718093442373065, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5387. ,{ "pid":12345, "tid":6, "ts":1718093442373159, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Thread.dll" }}
  5388. ,{ "pid":12345, "tid":6, "ts":1718093442373158, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Thread.dll" }}
  5389. ,{ "pid":12345, "tid":6, "ts":1718093442373240, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5390. ,{ "pid":12345, "tid":6, "ts":1718093442373321, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.dll" }}
  5391. ,{ "pid":12345, "tid":6, "ts":1718093442373319, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.dll" }}
  5392. ,{ "pid":12345, "tid":6, "ts":1718093442373384, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5393. ,{ "pid":12345, "tid":6, "ts":1718093442373444, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Text.Encoding.CodePages.dll" }}
  5394. ,{ "pid":12345, "tid":6, "ts":1718093442373443, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Text.Encoding.CodePages.dll" }}
  5395. ,{ "pid":12345, "tid":6, "ts":1718093442373522, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5396. ,{ "pid":12345, "tid":6, "ts":1718093442373599, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.dll" }}
  5397. ,{ "pid":12345, "tid":6, "ts":1718093442373598, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.dll" }}
  5398. ,{ "pid":12345, "tid":6, "ts":1718093442373672, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5399. ,{ "pid":12345, "tid":6, "ts":1718093442373759, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.Csp.dll" }}
  5400. ,{ "pid":12345, "tid":6, "ts":1718093442373758, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.Csp.dll" }}
  5401. ,{ "pid":12345, "tid":6, "ts":1718093442373841, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5402. ,{ "pid":12345, "tid":6, "ts":1718093442373932, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Serialization.Primitives.dll" }}
  5403. ,{ "pid":12345, "tid":6, "ts":1718093442373930, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Serialization.Primitives.dll" }}
  5404. ,{ "pid":12345, "tid":6, "ts":1718093442374013, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5405. ,{ "pid":12345, "tid":6, "ts":1718093442374111, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Intrinsics.dll" }}
  5406. ,{ "pid":12345, "tid":6, "ts":1718093442374110, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Intrinsics.dll" }}
  5407. ,{ "pid":12345, "tid":6, "ts":1718093442374193, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5408. ,{ "pid":12345, "tid":6, "ts":1718093442374305, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.CompilerServices.VisualC.dll" }}
  5409. ,{ "pid":12345, "tid":6, "ts":1718093442374303, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.CompilerServices.VisualC.dll" }}
  5410. ,{ "pid":12345, "tid":6, "ts":1718093442374380, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5411. ,{ "pid":12345, "tid":6, "ts":1718093442374460, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.Metadata.dll" }}
  5412. ,{ "pid":12345, "tid":6, "ts":1718093442374458, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.Metadata.dll" }}
  5413. ,{ "pid":12345, "tid":6, "ts":1718093442374526, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5414. ,{ "pid":12345, "tid":6, "ts":1718093442374639, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Private.Uri.dll" }}
  5415. ,{ "pid":12345, "tid":6, "ts":1718093442374638, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Private.Uri.dll" }}
  5416. ,{ "pid":12345, "tid":6, "ts":1718093442374708, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5417. ,{ "pid":12345, "tid":6, "ts":1718093442374789, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Numerics.dll" }}
  5418. ,{ "pid":12345, "tid":6, "ts":1718093442374787, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Numerics.dll" }}
  5419. ,{ "pid":12345, "tid":6, "ts":1718093442374867, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5420. ,{ "pid":12345, "tid":6, "ts":1718093442374979, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Sockets.dll" }}
  5421. ,{ "pid":12345, "tid":6, "ts":1718093442374976, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Sockets.dll" }}
  5422. ,{ "pid":12345, "tid":6, "ts":1718093442375043, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5423. ,{ "pid":12345, "tid":6, "ts":1718093442375128, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Ping.dll" }}
  5424. ,{ "pid":12345, "tid":6, "ts":1718093442375127, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Ping.dll" }}
  5425. ,{ "pid":12345, "tid":6, "ts":1718093442375199, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5426. ,{ "pid":12345, "tid":6, "ts":1718093442375273, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.dll" }}
  5427. ,{ "pid":12345, "tid":6, "ts":1718093442375271, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.dll" }}
  5428. ,{ "pid":12345, "tid":6, "ts":1718093442375336, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5429. ,{ "pid":12345, "tid":6, "ts":1718093442375438, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Linq.dll" }}
  5430. ,{ "pid":12345, "tid":6, "ts":1718093442375437, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Linq.dll" }}
  5431. ,{ "pid":12345, "tid":6, "ts":1718093442375521, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5432. ,{ "pid":12345, "tid":6, "ts":1718093442375602, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.IsolatedStorage.dll" }}
  5433. ,{ "pid":12345, "tid":6, "ts":1718093442375600, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.IsolatedStorage.dll" }}
  5434. ,{ "pid":12345, "tid":6, "ts":1718093442375656, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5435. ,{ "pid":12345, "tid":6, "ts":1718093442375725, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.FileSystem.AccessControl.dll" }}
  5436. ,{ "pid":12345, "tid":6, "ts":1718093442375723, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.FileSystem.AccessControl.dll" }}
  5437. ,{ "pid":12345, "tid":6, "ts":1718093442375826, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5438. ,{ "pid":12345, "tid":6, "ts":1718093442375906, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Globalization.Extensions.dll" }}
  5439. ,{ "pid":12345, "tid":6, "ts":1718093442375905, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Globalization.Extensions.dll" }}
  5440. ,{ "pid":12345, "tid":6, "ts":1718093442375996, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5441. ,{ "pid":12345, "tid":6, "ts":1718093442376076, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Drawing.dll" }}
  5442. ,{ "pid":12345, "tid":6, "ts":1718093442376075, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Drawing.dll" }}
  5443. ,{ "pid":12345, "tid":6, "ts":1718093442376151, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5444. ,{ "pid":12345, "tid":6, "ts":1718093442376240, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.TextWriterTraceListener.dll" }}
  5445. ,{ "pid":12345, "tid":6, "ts":1718093442376239, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.TextWriterTraceListener.dll" }}
  5446. ,{ "pid":12345, "tid":6, "ts":1718093442376314, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5447. ,{ "pid":12345, "tid":6, "ts":1718093442376405, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.Contracts.dll" }}
  5448. ,{ "pid":12345, "tid":6, "ts":1718093442376404, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.Contracts.dll" }}
  5449. ,{ "pid":12345, "tid":6, "ts":1718093442376502, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5450. ,{ "pid":12345, "tid":6, "ts":1718093442376588, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ComponentModel.Primitives.dll" }}
  5451. ,{ "pid":12345, "tid":6, "ts":1718093442376587, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ComponentModel.Primitives.dll" }}
  5452. ,{ "pid":12345, "tid":6, "ts":1718093442376665, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5453. ,{ "pid":12345, "tid":6, "ts":1718093442376747, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Collections.Immutable.dll" }}
  5454. ,{ "pid":12345, "tid":6, "ts":1718093442376746, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Collections.Immutable.dll" }}
  5455. ,{ "pid":12345, "tid":6, "ts":1718093442376841, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5456. ,{ "pid":12345, "tid":6, "ts":1718093442376949, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/NiceIO.pdb" }}
  5457. ,{ "pid":12345, "tid":6, "ts":1718093442376948, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/NiceIO.pdb" }}
  5458. ,{ "pid":12345, "tid":6, "ts":1718093442377028, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5459. ,{ "pid":12345, "tid":6, "ts":1718093442377119, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/monolinker.dll" }}
  5460. ,{ "pid":12345, "tid":6, "ts":1718093442377118, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/monolinker.dll" }}
  5461. ,{ "pid":12345, "tid":6, "ts":1718093442377202, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5462. ,{ "pid":12345, "tid":6, "ts":1718093442377291, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.Mdb.pdb" }}
  5463. ,{ "pid":12345, "tid":6, "ts":1718093442377290, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.Mdb.pdb" }}
  5464. ,{ "pid":12345, "tid":6, "ts":1718093442377361, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5465. ,{ "pid":12345, "tid":6, "ts":1718093442377436, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Microsoft.VisualBasic.Core.dll" }}
  5466. ,{ "pid":12345, "tid":6, "ts":1718093442377435, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Microsoft.VisualBasic.Core.dll" }}
  5467. ,{ "pid":12345, "tid":6, "ts":1718093442377513, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5468. ,{ "pid":12345, "tid":6, "ts":1718093442377587, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libSystem.Native.dylib" }}
  5469. ,{ "pid":12345, "tid":6, "ts":1718093442377673, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5470. ,{ "pid":12345, "tid":6, "ts":1718093442377768, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libdbgshim.dylib" }}
  5471. ,{ "pid":12345, "tid":6, "ts":1718093442377862, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5472. ,{ "pid":12345, "tid":6, "ts":1718093442377955, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/il2cpp.dll.config" }}
  5473. ,{ "pid":12345, "tid":6, "ts":1718093442377953, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/il2cpp.dll.config" }}
  5474. ,{ "pid":12345, "tid":6, "ts":1718093442378025, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5475. ,{ "pid":12345, "tid":6, "ts":1718093442378104, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.VisualStudioSolution.pdb" }}
  5476. ,{ "pid":12345, "tid":6, "ts":1718093442378102, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.VisualStudioSolution.pdb" }}
  5477. ,{ "pid":12345, "tid":6, "ts":1718093442378177, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5478. ,{ "pid":12345, "tid":6, "ts":1718093442378256, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Tools.dll" }}
  5479. ,{ "pid":12345, "tid":6, "ts":1718093442378255, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Tools.dll" }}
  5480. ,{ "pid":12345, "tid":6, "ts":1718093442378307, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5481. ,{ "pid":12345, "tid":6, "ts":1718093442378406, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.VisualStudio.dll" }}
  5482. ,{ "pid":12345, "tid":6, "ts":1718093442378405, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.VisualStudio.dll" }}
  5483. ,{ "pid":12345, "tid":6, "ts":1718093442378479, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5484. ,{ "pid":12345, "tid":6, "ts":1718093442378567, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.TvOS.dll" }}
  5485. ,{ "pid":12345, "tid":6, "ts":1718093442378566, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.TvOS.dll" }}
  5486. ,{ "pid":12345, "tid":6, "ts":1718093442378649, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5487. ,{ "pid":12345, "tid":6, "ts":1718093442378754, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Linux.dll" }}
  5488. ,{ "pid":12345, "tid":6, "ts":1718093442378753, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Linux.dll" }}
  5489. ,{ "pid":12345, "tid":6, "ts":1718093442378827, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5490. ,{ "pid":12345, "tid":6, "ts":1718093442378921, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Emscripten.dll" }}
  5491. ,{ "pid":12345, "tid":6, "ts":1718093442378919, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Emscripten.dll" }}
  5492. ,{ "pid":12345, "tid":6, "ts":1718093442378995, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5493. ,{ "pid":12345, "tid":6, "ts":1718093442379062, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.TinyProfiler2.dll" }}
  5494. ,{ "pid":12345, "tid":6, "ts":1718093442379060, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.TinyProfiler2.dll" }}
  5495. ,{ "pid":12345, "tid":6, "ts":1718093442379149, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5496. ,{ "pid":12345, "tid":6, "ts":1718093442379213, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.CSharpSupport.dll" }}
  5497. ,{ "pid":12345, "tid":6, "ts":1718093442379212, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.CSharpSupport.dll" }}
  5498. ,{ "pid":12345, "tid":6, "ts":1718093442379306, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5499. ,{ "pid":12345, "tid":6, "ts":1718093442379383, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.runtimeconfig.json" }}
  5500. ,{ "pid":12345, "tid":6, "ts":1718093442379381, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.runtimeconfig.json" }}
  5501. ,{ "pid":12345, "tid":6, "ts":1718093442379464, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5502. ,{ "pid":12345, "tid":6, "ts":1718093442379553, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.Api.Output.dll" }}
  5503. ,{ "pid":12345, "tid":6, "ts":1718093442379552, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.Api.Output.dll" }}
  5504. ,{ "pid":12345, "tid":6, "ts":1718093442379629, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5505. ,{ "pid":12345, "tid":6, "ts":1718093442379724, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/baselib.a" }}
  5506. ,{ "pid":12345, "tid":6, "ts":1718093442379795, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5507. ,{ "pid":12345, "tid":6, "ts":1718093442379871, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone Tests/Unity-iPhone Tests-Prefix.pch" }}
  5508. ,{ "pid":12345, "tid":6, "ts":1718093442379957, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5509. ,{ "pid":12345, "tid":6, "ts":1718093442380039, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Vector3.h" }}
  5510. ,{ "pid":12345, "tid":6, "ts":1718093442380039, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Vector3.h" }}
  5511. ,{ "pid":12345, "tid":6, "ts":1718093442380110, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5512. ,{ "pid":12345, "tid":6, "ts":1718093442380173, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UnityAppController+UnityInterface.h" }}
  5513. ,{ "pid":12345, "tid":6, "ts":1718093442380171, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityAppController+UnityInterface.h" }}
  5514. ,{ "pid":12345, "tid":6, "ts":1718093442380245, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5515. ,{ "pid":12345, "tid":6, "ts":1718093442380321, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnityTrampolineCompatibility.h" }}
  5516. ,{ "pid":12345, "tid":6, "ts":1718093442380319, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityTrampolineCompatibility.h" }}
  5517. ,{ "pid":12345, "tid":6, "ts":1718093442380415, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5518. ,{ "pid":12345, "tid":6, "ts":1718093442380526, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnityMetalSupport.h" }}
  5519. ,{ "pid":12345, "tid":6, "ts":1718093442380525, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityMetalSupport.h" }}
  5520. ,{ "pid":12345, "tid":6, "ts":1718093442380619, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5521. ,{ "pid":12345, "tid":6, "ts":1718093442380695, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/MetalHelper.mm" }}
  5522. ,{ "pid":12345, "tid":6, "ts":1718093442380775, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5523. ,{ "pid":12345, "tid":6, "ts":1718093442380854, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/DisplayManager.mm" }}
  5524. ,{ "pid":12345, "tid":6, "ts":1718093442380944, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5525. ,{ "pid":12345, "tid":6, "ts":1718093442381041, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/CMVideoSampling.h" }}
  5526. ,{ "pid":12345, "tid":6, "ts":1718093442381040, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/CMVideoSampling.h" }}
  5527. ,{ "pid":12345, "tid":6, "ts":1718093442381118, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5528. ,{ "pid":12345, "tid":6, "ts":1718093442381216, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase.mm" }}
  5529. ,{ "pid":12345, "tid":6, "ts":1718093442381288, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5530. ,{ "pid":12345, "tid":6, "ts":1718093442381359, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase+iOS.mm" }}
  5531. ,{ "pid":12345, "tid":6, "ts":1718093442381436, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5532. ,{ "pid":12345, "tid":6, "ts":1718093442381503, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView+iOS.mm" }}
  5533. ,{ "pid":12345, "tid":6, "ts":1718093442381581, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5534. ,{ "pid":12345, "tid":6, "ts":1718093442381672, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/OrientationSupport.h" }}
  5535. ,{ "pid":12345, "tid":6, "ts":1718093442381670, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/OrientationSupport.h" }}
  5536. ,{ "pid":12345, "tid":6, "ts":1718093442381781, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5537. ,{ "pid":12345, "tid":6, "ts":1718093442381898, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5538. ,{ "pid":12345, "tid":6, "ts":1718093442381962, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/PluginBase/AppDelegateListener.mm" }}
  5539. ,{ "pid":12345, "tid":6, "ts":1718093442382017, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5540. ,{ "pid":12345, "tid":6, "ts":1718093442382106, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/iPhone_Sensors.h" }}
  5541. ,{ "pid":12345, "tid":6, "ts":1718093442382105, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/iPhone_Sensors.h" }}
  5542. ,{ "pid":12345, "tid":6, "ts":1718093442382200, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5543. ,{ "pid":12345, "tid":6, "ts":1718093442382275, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Array.cpp" }}
  5544. ,{ "pid":12345, "tid":6, "ts":1718093442382273, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Array.cpp" }}
  5545. ,{ "pid":12345, "tid":6, "ts":1718093442382346, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5546. ,{ "pid":12345, "tid":6, "ts":1718093442382418, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/CachedCCWBase.h" }}
  5547. ,{ "pid":12345, "tid":6, "ts":1718093442382417, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/CachedCCWBase.h" }}
  5548. ,{ "pid":12345, "tid":6, "ts":1718093442382482, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5549. ,{ "pid":12345, "tid":6, "ts":1718093442382563, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Class.h" }}
  5550. ,{ "pid":12345, "tid":6, "ts":1718093442382561, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Class.h" }}
  5551. ,{ "pid":12345, "tid":6, "ts":1718093442382619, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5552. ,{ "pid":12345, "tid":6, "ts":1718093442382692, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/COM.cpp" }}
  5553. ,{ "pid":12345, "tid":6, "ts":1718093442382690, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/COM.cpp" }}
  5554. ,{ "pid":12345, "tid":6, "ts":1718093442382765, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5555. ,{ "pid":12345, "tid":6, "ts":1718093442382852, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Domain.cpp" }}
  5556. ,{ "pid":12345, "tid":6, "ts":1718093442382850, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Domain.cpp" }}
  5557. ,{ "pid":12345, "tid":6, "ts":1718093442382912, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5558. ,{ "pid":12345, "tid":6, "ts":1718093442382995, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Exception.cpp" }}
  5559. ,{ "pid":12345, "tid":6, "ts":1718093442382992, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Exception.cpp" }}
  5560. ,{ "pid":12345, "tid":6, "ts":1718093442383055, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5561. ,{ "pid":12345, "tid":6, "ts":1718093442383144, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GenericContainer.h" }}
  5562. ,{ "pid":12345, "tid":6, "ts":1718093442383142, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GenericContainer.h" }}
  5563. ,{ "pid":12345, "tid":6, "ts":1718093442383209, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5564. ,{ "pid":12345, "tid":6, "ts":1718093442383282, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Image.cpp" }}
  5565. ,{ "pid":12345, "tid":6, "ts":1718093442383281, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Image.cpp" }}
  5566. ,{ "pid":12345, "tid":6, "ts":1718093442383351, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5567. ,{ "pid":12345, "tid":6, "ts":1718093442383409, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Liveness.cpp" }}
  5568. ,{ "pid":12345, "tid":6, "ts":1718093442383407, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Liveness.cpp" }}
  5569. ,{ "pid":12345, "tid":6, "ts":1718093442383464, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5570. ,{ "pid":12345, "tid":6, "ts":1718093442383532, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MemoryInformation.h" }}
  5571. ,{ "pid":12345, "tid":6, "ts":1718093442383530, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MemoryInformation.h" }}
  5572. ,{ "pid":12345, "tid":6, "ts":1718093442383597, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5573. ,{ "pid":12345, "tid":6, "ts":1718093442383724, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5574. ,{ "pid":12345, "tid":6, "ts":1718093442383805, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Monitor.cpp" }}
  5575. ,{ "pid":12345, "tid":6, "ts":1718093442383803, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Monitor.cpp" }}
  5576. ,{ "pid":12345, "tid":6, "ts":1718093442383872, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5577. ,{ "pid":12345, "tid":6, "ts":1718093442383945, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Parameter.cpp" }}
  5578. ,{ "pid":12345, "tid":6, "ts":1718093442383943, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Parameter.cpp" }}
  5579. ,{ "pid":12345, "tid":6, "ts":1718093442384019, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5580. ,{ "pid":12345, "tid":6, "ts":1718093442384092, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Profiler.cpp" }}
  5581. ,{ "pid":12345, "tid":6, "ts":1718093442384091, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Profiler.cpp" }}
  5582. ,{ "pid":12345, "tid":6, "ts":1718093442384161, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5583. ,{ "pid":12345, "tid":6, "ts":1718093442384227, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Assets/Plugins/iOS/GADUAdNetworkExtras.h" }}
  5584. ,{ "pid":12345, "tid":6, "ts":1718093442384226, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/Plugins/iOS/GADUAdNetworkExtras.h" }}
  5585. ,{ "pid":12345, "tid":6, "ts":1718093442384298, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5586. ,{ "pid":12345, "tid":6, "ts":1718093442384391, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Random.h" }}
  5587. ,{ "pid":12345, "tid":6, "ts":1718093442384390, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Random.h" }}
  5588. ,{ "pid":12345, "tid":6, "ts":1718093442384509, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Runtime.h" }}
  5589. ,{ "pid":12345, "tid":6, "ts":1718093442384508, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Runtime.h" }}
  5590. ,{ "pid":12345, "tid":6, "ts":1718093442384579, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5591. ,{ "pid":12345, "tid":6, "ts":1718093442384683, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5592. ,{ "pid":12345, "tid":6, "ts":1718093442384745, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Type.h" }}
  5593. ,{ "pid":12345, "tid":6, "ts":1718093442384744, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Type.h" }}
  5594. ,{ "pid":12345, "tid":6, "ts":1718093442384813, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5595. ,{ "pid":12345, "tid":6, "ts":1718093442384888, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/WindowsRuntime.cpp" }}
  5596. ,{ "pid":12345, "tid":6, "ts":1718093442384887, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/WindowsRuntime.cpp" }}
  5597. ,{ "pid":12345, "tid":6, "ts":1718093442384962, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5598. ,{ "pid":12345, "tid":6, "ts":1718093442385067, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5599. ,{ "pid":12345, "tid":6, "ts":1718093442385244, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5600. ,{ "pid":12345, "tid":6, "ts":1718093442385307, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/LaunchScreen-iPad.png" }}
  5601. ,{ "pid":12345, "tid":6, "ts":1718093442385370, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5602. ,{ "pid":12345, "tid":6, "ts":1718093442385672, "dur":2674, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Settings-87.png" }}
  5603. ,{ "pid":12345, "tid":6, "ts":1718093442388451, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Spotlight-120.png" }}
  5604. ,{ "pid":12345, "tid":6, "ts":1718093442388749, "dur":1149, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Spotlight-120.png" }}
  5605. ,{ "pid":12345, "tid":6, "ts":1718093442389972, "dur":1275, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-76.png" }}
  5606. ,{ "pid":12345, "tid":6, "ts":1718093442391364, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5607. ,{ "pid":12345, "tid":6, "ts":1718093442391454, "dur":54, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/Plugins/iOS/Firebase/libFirebaseCppAuth.a" }}
  5608. ,{ "pid":12345, "tid":6, "ts":1718093442391510, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsShowListener.mm" }}
  5609. ,{ "pid":12345, "tid":6, "ts":1718093442391600, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5610. ,{ "pid":12345, "tid":6, "ts":1718093442391710, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5611. ,{ "pid":12345, "tid":6, "ts":1718093442391919, "dur":6151, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets2.assets" }}
  5612. ,{ "pid":12345, "tid":6, "ts":1718093442398157, "dur":77, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__5.cpp" }}
  5613. ,{ "pid":12345, "tid":6, "ts":1718093442398237, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__14.cpp" }}
  5614. ,{ "pid":12345, "tid":6, "ts":1718093442398235, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__14.cpp" }}
  5615. ,{ "pid":12345, "tid":6, "ts":1718093442398308, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5616. ,{ "pid":12345, "tid":6, "ts":1718093442398384, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCalculateFieldValues2.cpp" }}
  5617. ,{ "pid":12345, "tid":6, "ts":1718093442398383, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCalculateFieldValues2.cpp" }}
  5618. ,{ "pid":12345, "tid":6, "ts":1718093442398453, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5619. ,{ "pid":12345, "tid":6, "ts":1718093442398536, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.Advertisements_CodeGen.c" }}
  5620. ,{ "pid":12345, "tid":6, "ts":1718093442398535, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.Advertisements_CodeGen.c" }}
  5621. ,{ "pid":12345, "tid":6, "ts":1718093442398630, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5622. ,{ "pid":12345, "tid":6, "ts":1718093442398725, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Assembly-CSharp.cpp" }}
  5623. ,{ "pid":12345, "tid":6, "ts":1718093442398724, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Assembly-CSharp.cpp" }}
  5624. ,{ "pid":12345, "tid":6, "ts":1718093442398796, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5625. ,{ "pid":12345, "tid":6, "ts":1718093442398890, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__27.cpp" }}
  5626. ,{ "pid":12345, "tid":6, "ts":1718093442398889, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__27.cpp" }}
  5627. ,{ "pid":12345, "tid":6, "ts":1718093442398966, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5628. ,{ "pid":12345, "tid":6, "ts":1718093442399058, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Core__3.cpp" }}
  5629. ,{ "pid":12345, "tid":6, "ts":1718093442399057, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Core__3.cpp" }}
  5630. ,{ "pid":12345, "tid":6, "ts":1718093442399122, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5631. ,{ "pid":12345, "tid":6, "ts":1718093442399192, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Managed/Resources/I18N.CJK.dll-resources.dat" }}
  5632. ,{ "pid":12345, "tid":6, "ts":1718093442399265, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5633. ,{ "pid":12345, "tid":6, "ts":1718093442399351, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__6.cpp" }}
  5634. ,{ "pid":12345, "tid":6, "ts":1718093442399349, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__6.cpp" }}
  5635. ,{ "pid":12345, "tid":6, "ts":1718093442399417, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5636. ,{ "pid":12345, "tid":6, "ts":1718093442399496, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__16.cpp" }}
  5637. ,{ "pid":12345, "tid":6, "ts":1718093442399495, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__16.cpp" }}
  5638. ,{ "pid":12345, "tid":6, "ts":1718093442399562, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5639. ,{ "pid":12345, "tid":6, "ts":1718093442399643, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__19.cpp" }}
  5640. ,{ "pid":12345, "tid":6, "ts":1718093442399641, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__19.cpp" }}
  5641. ,{ "pid":12345, "tid":6, "ts":1718093442399709, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5642. ,{ "pid":12345, "tid":6, "ts":1718093442399786, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__6.cpp" }}
  5643. ,{ "pid":12345, "tid":6, "ts":1718093442399784, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__6.cpp" }}
  5644. ,{ "pid":12345, "tid":6, "ts":1718093442399850, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5645. ,{ "pid":12345, "tid":6, "ts":1718093442399919, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Threading_CodeGen.c" }}
  5646. ,{ "pid":12345, "tid":6, "ts":1718093442399917, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Threading_CodeGen.c" }}
  5647. ,{ "pid":12345, "tid":6, "ts":1718093442399983, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5648. ,{ "pid":12345, "tid":6, "ts":1718093442400051, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Registration_CodeGen.c" }}
  5649. ,{ "pid":12345, "tid":6, "ts":1718093442400050, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Registration_CodeGen.c" }}
  5650. ,{ "pid":12345, "tid":6, "ts":1718093442400117, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5651. ,{ "pid":12345, "tid":6, "ts":1718093442400195, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine_CodeGen.c" }}
  5652. ,{ "pid":12345, "tid":6, "ts":1718093442400193, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine_CodeGen.c" }}
  5653. ,{ "pid":12345, "tid":6, "ts":1718093442400271, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5654. ,{ "pid":12345, "tid":6, "ts":1718093442400333, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__4.cpp" }}
  5655. ,{ "pid":12345, "tid":6, "ts":1718093442400332, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__4.cpp" }}
  5656. ,{ "pid":12345, "tid":6, "ts":1718093442400404, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5657. ,{ "pid":12345, "tid":6, "ts":1718093442400498, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__55.cpp" }}
  5658. ,{ "pid":12345, "tid":6, "ts":1718093442400496, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__55.cpp" }}
  5659. ,{ "pid":12345, "tid":6, "ts":1718093442400560, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5660. ,{ "pid":12345, "tid":6, "ts":1718093442400646, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__50.cpp" }}
  5661. ,{ "pid":12345, "tid":6, "ts":1718093442400644, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__50.cpp" }}
  5662. ,{ "pid":12345, "tid":6, "ts":1718093442400699, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5663. ,{ "pid":12345, "tid":6, "ts":1718093442400775, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UI__2.cpp" }}
  5664. ,{ "pid":12345, "tid":6, "ts":1718093442400773, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UI__2.cpp" }}
  5665. ,{ "pid":12345, "tid":6, "ts":1718093442400837, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5666. ,{ "pid":12345, "tid":6, "ts":1718093442400913, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UI__3.cpp" }}
  5667. ,{ "pid":12345, "tid":6, "ts":1718093442400911, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UI__3.cpp" }}
  5668. ,{ "pid":12345, "tid":6, "ts":1718093442400976, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5669. ,{ "pid":12345, "tid":6, "ts":1718093442401044, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Managed/Resources/System.Drawing.dll-resources.dat" }}
  5670. ,{ "pid":12345, "tid":6, "ts":1718093442401134, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5671. ,{ "pid":12345, "tid":6, "ts":1718093442401205, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.ScreenCaptureModule.cpp" }}
  5672. ,{ "pid":12345, "tid":6, "ts":1718093442401204, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.ScreenCaptureModule.cpp" }}
  5673. ,{ "pid":12345, "tid":6, "ts":1718093442401262, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5674. ,{ "pid":12345, "tid":6, "ts":1718093442401372, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5675. ,{ "pid":12345, "tid":6, "ts":1718093442401569, "dur":2383, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/level1" }}
  5676. ,{ "pid":12345, "tid":6, "ts":1718093442403994, "dur":88, "ph":"X", "name": "EmitNodeStart", "args": { "detail":"" }}
  5677. ,{ "pid":12345, "tid":6, "ts":1718093442404086, "dur":827, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/globalgamemanagers" }}
  5678. ,{ "pid":12345, "tid":6, "ts":1718093442404922, "dur":71323, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  5679. ,{ "pid":12345, "tid":7, "ts":1718093442184392, "dur":92821, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  5680. ,{ "pid":12345, "tid":7, "ts":1718093442277217, "dur":1029, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  5681. ,{ "pid":12345, "tid":7, "ts":1718093442278247, "dur":1034, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  5682. ,{ "pid":12345, "tid":7, "ts":1718093442279281, "dur":963, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  5683. ,{ "pid":12345, "tid":7, "ts":1718093442280244, "dur":1022, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  5684. ,{ "pid":12345, "tid":7, "ts":1718093442281266, "dur":1157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  5685. ,{ "pid":12345, "tid":7, "ts":1718093442282424, "dur":22572, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  5686. ,{ "pid":12345, "tid":7, "ts":1718093442305018, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5687. ,{ "pid":12345, "tid":7, "ts":1718093442305156, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5688. ,{ "pid":12345, "tid":7, "ts":1718093442305224, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5689. ,{ "pid":12345, "tid":7, "ts":1718093442305318, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5690. ,{ "pid":12345, "tid":7, "ts":1718093442305415, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5691. ,{ "pid":12345, "tid":7, "ts":1718093442305505, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5692. ,{ "pid":12345, "tid":7, "ts":1718093442305632, "dur":169, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5693. ,{ "pid":12345, "tid":7, "ts":1718093442305826, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5694. ,{ "pid":12345, "tid":7, "ts":1718093442305954, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5695. ,{ "pid":12345, "tid":7, "ts":1718093442306135, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5696. ,{ "pid":12345, "tid":7, "ts":1718093442306204, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5697. ,{ "pid":12345, "tid":7, "ts":1718093442306295, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7.swiftdoc" }}
  5698. ,{ "pid":12345, "tid":7, "ts":1718093442306396, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5699. ,{ "pid":12345, "tid":7, "ts":1718093442306464, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64.swiftinterface" }}
  5700. ,{ "pid":12345, "tid":7, "ts":1718093442306572, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5701. ,{ "pid":12345, "tid":7, "ts":1718093442306684, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm.swiftinterface" }}
  5702. ,{ "pid":12345, "tid":7, "ts":1718093442306746, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5703. ,{ "pid":12345, "tid":7, "ts":1718093442306819, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/USRVUnityPurchasing.h" }}
  5704. ,{ "pid":12345, "tid":7, "ts":1718093442306813, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/USRVUnityPurchasing.h" }}
  5705. ,{ "pid":12345, "tid":7, "ts":1718093442306913, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5706. ,{ "pid":12345, "tid":7, "ts":1718093442307034, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURProduct.h" }}
  5707. ,{ "pid":12345, "tid":7, "ts":1718093442307033, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURProduct.h" }}
  5708. ,{ "pid":12345, "tid":7, "ts":1718093442307143, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5709. ,{ "pid":12345, "tid":7, "ts":1718093442307256, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdvertisement.h" }}
  5710. ,{ "pid":12345, "tid":7, "ts":1718093442307254, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdvertisement.h" }}
  5711. ,{ "pid":12345, "tid":7, "ts":1718093442307341, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5712. ,{ "pid":12345, "tid":7, "ts":1718093442307479, "dur":211, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationError.h" }}
  5713. ,{ "pid":12345, "tid":7, "ts":1718093442307478, "dur":214, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationError.h" }}
  5714. ,{ "pid":12345, "tid":7, "ts":1718093442307692, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5715. ,{ "pid":12345, "tid":7, "ts":1718093442307784, "dur":177, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsCore.h" }}
  5716. ,{ "pid":12345, "tid":7, "ts":1718093442307782, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsCore.h" }}
  5717. ,{ "pid":12345, "tid":7, "ts":1718093442307962, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5718. ,{ "pid":12345, "tid":7, "ts":1718093442308079, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONPromoAdPlacementContent.h" }}
  5719. ,{ "pid":12345, "tid":7, "ts":1718093442308078, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONPromoAdPlacementContent.h" }}
  5720. ,{ "pid":12345, "tid":7, "ts":1718093442308174, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5721. ,{ "pid":12345, "tid":7, "ts":1718093442308297, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSPurchasing.h" }}
  5722. ,{ "pid":12345, "tid":7, "ts":1718093442308296, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSPurchasing.h" }}
  5723. ,{ "pid":12345, "tid":7, "ts":1718093442308397, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5724. ,{ "pid":12345, "tid":7, "ts":1718093442308482, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBaseOptions.h" }}
  5725. ,{ "pid":12345, "tid":7, "ts":1718093442308482, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBaseOptions.h" }}
  5726. ,{ "pid":12345, "tid":7, "ts":1718093442308587, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5727. ,{ "pid":12345, "tid":7, "ts":1718093442308746, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/NativeSymbol.h" }}
  5728. ,{ "pid":12345, "tid":7, "ts":1718093442308744, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/NativeSymbol.h" }}
  5729. ,{ "pid":12345, "tid":7, "ts":1718093442308823, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5730. ,{ "pid":12345, "tid":7, "ts":1718093442308885, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System/Math.h" }}
  5731. ,{ "pid":12345, "tid":7, "ts":1718093442308885, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System/Math.h" }}
  5732. ,{ "pid":12345, "tid":7, "ts":1718093442309009, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5733. ,{ "pid":12345, "tid":7, "ts":1718093442309073, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/Finally.cpp" }}
  5734. ,{ "pid":12345, "tid":7, "ts":1718093442309072, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/Finally.cpp" }}
  5735. ,{ "pid":12345, "tid":7, "ts":1718093442309143, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5736. ,{ "pid":12345, "tid":7, "ts":1718093442309209, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/utf8-cpp/source/utf8/checked.h" }}
  5737. ,{ "pid":12345, "tid":7, "ts":1718093442309207, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/utf8-cpp/source/utf8/checked.h" }}
  5738. ,{ "pid":12345, "tid":7, "ts":1718093442309316, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5739. ,{ "pid":12345, "tid":7, "ts":1718093442309400, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/StringUtils.h" }}
  5740. ,{ "pid":12345, "tid":7, "ts":1718093442309399, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringUtils.h" }}
  5741. ,{ "pid":12345, "tid":7, "ts":1718093442309516, "dur":143, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5742. ,{ "pid":12345, "tid":7, "ts":1718093442309668, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/PathUtils.cpp" }}
  5743. ,{ "pid":12345, "tid":7, "ts":1718093442309719, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5744. ,{ "pid":12345, "tid":7, "ts":1718093442309826, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryUtils.h" }}
  5745. ,{ "pid":12345, "tid":7, "ts":1718093442309825, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryUtils.h" }}
  5746. ,{ "pid":12345, "tid":7, "ts":1718093442309943, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5747. ,{ "pid":12345, "tid":7, "ts":1718093442310017, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryPool.cpp" }}
  5748. ,{ "pid":12345, "tid":7, "ts":1718093442310012, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryPool.cpp" }}
  5749. ,{ "pid":12345, "tid":7, "ts":1718093442310121, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5750. ,{ "pid":12345, "tid":7, "ts":1718093442310207, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MarshalingUtils.h" }}
  5751. ,{ "pid":12345, "tid":7, "ts":1718093442310206, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MarshalingUtils.h" }}
  5752. ,{ "pid":12345, "tid":7, "ts":1718093442310278, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5753. ,{ "pid":12345, "tid":7, "ts":1718093442310434, "dur":154, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Il2CppHashSet.h" }}
  5754. ,{ "pid":12345, "tid":7, "ts":1718093442310433, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Il2CppHashSet.h" }}
  5755. ,{ "pid":12345, "tid":7, "ts":1718093442310589, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5756. ,{ "pid":12345, "tid":7, "ts":1718093442310711, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5757. ,{ "pid":12345, "tid":7, "ts":1718093442310819, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Environment.h" }}
  5758. ,{ "pid":12345, "tid":7, "ts":1718093442310817, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Environment.h" }}
  5759. ,{ "pid":12345, "tid":7, "ts":1718093442310939, "dur":189, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/CallOnce.h" }}
  5760. ,{ "pid":12345, "tid":7, "ts":1718093442310938, "dur":191, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/CallOnce.h" }}
  5761. ,{ "pid":12345, "tid":7, "ts":1718093442311163, "dur":141, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/pch/pch-c.c" }}
  5762. ,{ "pid":12345, "tid":7, "ts":1718093442311162, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/pch/pch-c.c" }}
  5763. ,{ "pid":12345, "tid":7, "ts":1718093442311305, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5764. ,{ "pid":12345, "tid":7, "ts":1718093442311391, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/SynchronousOperation.h" }}
  5765. ,{ "pid":12345, "tid":7, "ts":1718093442311390, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/SynchronousOperation.h" }}
  5766. ,{ "pid":12345, "tid":7, "ts":1718093442311458, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5767. ,{ "pid":12345, "tid":7, "ts":1718093442311518, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/File.cpp" }}
  5768. ,{ "pid":12345, "tid":7, "ts":1718093442311517, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/File.cpp" }}
  5769. ,{ "pid":12345, "tid":7, "ts":1718093442311576, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5770. ,{ "pid":12345, "tid":7, "ts":1718093442311725, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WindowsGames/Win32ApiWindowsGamesEmulation.cpp" }}
  5771. ,{ "pid":12345, "tid":7, "ts":1718093442311723, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WindowsGames/Win32ApiWindowsGamesEmulation.cpp" }}
  5772. ,{ "pid":12345, "tid":7, "ts":1718093442311793, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5773. ,{ "pid":12345, "tid":7, "ts":1718093442311927, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Time.cpp" }}
  5774. ,{ "pid":12345, "tid":7, "ts":1718093442311925, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Time.cpp" }}
  5775. ,{ "pid":12345, "tid":7, "ts":1718093442312019, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5776. ,{ "pid":12345, "tid":7, "ts":1718093442312111, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/SynchronizationContext.cpp" }}
  5777. ,{ "pid":12345, "tid":7, "ts":1718093442312108, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/SynchronizationContext.cpp" }}
  5778. ,{ "pid":12345, "tid":7, "ts":1718093442312214, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5779. ,{ "pid":12345, "tid":7, "ts":1718093442312348, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Process.cpp" }}
  5780. ,{ "pid":12345, "tid":7, "ts":1718093442312347, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Process.cpp" }}
  5781. ,{ "pid":12345, "tid":7, "ts":1718093442312426, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5782. ,{ "pid":12345, "tid":7, "ts":1718093442312546, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/MarshalStringAlloc.cpp" }}
  5783. ,{ "pid":12345, "tid":7, "ts":1718093442312544, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/MarshalStringAlloc.cpp" }}
  5784. ,{ "pid":12345, "tid":7, "ts":1718093442312653, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5785. ,{ "pid":12345, "tid":7, "ts":1718093442312729, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Image.cpp" }}
  5786. ,{ "pid":12345, "tid":7, "ts":1718093442312728, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Image.cpp" }}
  5787. ,{ "pid":12345, "tid":7, "ts":1718093442312798, "dur":225, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5788. ,{ "pid":12345, "tid":7, "ts":1718093442313090, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5789. ,{ "pid":12345, "tid":7, "ts":1718093442313148, "dur":158, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/CrashHelpers.cpp" }}
  5790. ,{ "pid":12345, "tid":7, "ts":1718093442313146, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/CrashHelpers.cpp" }}
  5791. ,{ "pid":12345, "tid":7, "ts":1718093442313307, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5792. ,{ "pid":12345, "tid":7, "ts":1718093442313453, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/TimeZone.h" }}
  5793. ,{ "pid":12345, "tid":7, "ts":1718093442313451, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/TimeZone.h" }}
  5794. ,{ "pid":12345, "tid":7, "ts":1718093442313507, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5795. ,{ "pid":12345, "tid":7, "ts":1718093442313578, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/SystemCertificates.h" }}
  5796. ,{ "pid":12345, "tid":7, "ts":1718093442313576, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/SystemCertificates.h" }}
  5797. ,{ "pid":12345, "tid":7, "ts":1718093442313694, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/StackTrace.cpp" }}
  5798. ,{ "pid":12345, "tid":7, "ts":1718093442313693, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/StackTrace.cpp" }}
  5799. ,{ "pid":12345, "tid":7, "ts":1718093442313797, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5800. ,{ "pid":12345, "tid":7, "ts":1718093442313890, "dur":185, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ReaderWriterLock.h" }}
  5801. ,{ "pid":12345, "tid":7, "ts":1718093442313889, "dur":187, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ReaderWriterLock.h" }}
  5802. ,{ "pid":12345, "tid":7, "ts":1718093442314076, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5803. ,{ "pid":12345, "tid":7, "ts":1718093442314211, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ThreadImpl.h" }}
  5804. ,{ "pid":12345, "tid":7, "ts":1718093442314209, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ThreadImpl.h" }}
  5805. ,{ "pid":12345, "tid":7, "ts":1718093442314291, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5806. ,{ "pid":12345, "tid":7, "ts":1718093442314369, "dur":164, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ReaderWriterLockImpl.h" }}
  5807. ,{ "pid":12345, "tid":7, "ts":1718093442314367, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ReaderWriterLockImpl.h" }}
  5808. ,{ "pid":12345, "tid":7, "ts":1718093442314534, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5809. ,{ "pid":12345, "tid":7, "ts":1718093442314639, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/MemoryMappedFile.cpp" }}
  5810. ,{ "pid":12345, "tid":7, "ts":1718093442314622, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/MemoryMappedFile.cpp" }}
  5811. ,{ "pid":12345, "tid":7, "ts":1718093442314757, "dur":202, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5812. ,{ "pid":12345, "tid":7, "ts":1718093442314966, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/LibraryLoader.cpp" }}
  5813. ,{ "pid":12345, "tid":7, "ts":1718093442314965, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/LibraryLoader.cpp" }}
  5814. ,{ "pid":12345, "tid":7, "ts":1718093442315097, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5815. ,{ "pid":12345, "tid":7, "ts":1718093442315258, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Error.cpp" }}
  5816. ,{ "pid":12345, "tid":7, "ts":1718093442315257, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Error.cpp" }}
  5817. ,{ "pid":12345, "tid":7, "ts":1718093442315354, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5818. ,{ "pid":12345, "tid":7, "ts":1718093442315439, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/CrashHelpers.cpp" }}
  5819. ,{ "pid":12345, "tid":7, "ts":1718093442315436, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/CrashHelpers.cpp" }}
  5820. ,{ "pid":12345, "tid":7, "ts":1718093442315502, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5821. ,{ "pid":12345, "tid":7, "ts":1718093442315580, "dur":175, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Path.cpp" }}
  5822. ,{ "pid":12345, "tid":7, "ts":1718093442315579, "dur":177, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Path.cpp" }}
  5823. ,{ "pid":12345, "tid":7, "ts":1718093442315756, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5824. ,{ "pid":12345, "tid":7, "ts":1718093442315881, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/NativeMethods.h" }}
  5825. ,{ "pid":12345, "tid":7, "ts":1718093442315880, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/NativeMethods.h" }}
  5826. ,{ "pid":12345, "tid":7, "ts":1718093442315995, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5827. ,{ "pid":12345, "tid":7, "ts":1718093442316086, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Memory.h" }}
  5828. ,{ "pid":12345, "tid":7, "ts":1718093442316084, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Memory.h" }}
  5829. ,{ "pid":12345, "tid":7, "ts":1718093442316147, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5830. ,{ "pid":12345, "tid":7, "ts":1718093442316281, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/LibraryLoader.cpp" }}
  5831. ,{ "pid":12345, "tid":7, "ts":1718093442316280, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/LibraryLoader.cpp" }}
  5832. ,{ "pid":12345, "tid":7, "ts":1718093442316346, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5833. ,{ "pid":12345, "tid":7, "ts":1718093442316452, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/WindowsRuntime.cpp" }}
  5834. ,{ "pid":12345, "tid":7, "ts":1718093442316451, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/WindowsRuntime.cpp" }}
  5835. ,{ "pid":12345, "tid":7, "ts":1718093442316517, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5836. ,{ "pid":12345, "tid":7, "ts":1718093442316576, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SocketImpl.cpp" }}
  5837. ,{ "pid":12345, "tid":7, "ts":1718093442316575, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SocketImpl.cpp" }}
  5838. ,{ "pid":12345, "tid":7, "ts":1718093442316651, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5839. ,{ "pid":12345, "tid":7, "ts":1718093442316754, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/LibraryLoader.cpp" }}
  5840. ,{ "pid":12345, "tid":7, "ts":1718093442316752, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/LibraryLoader.cpp" }}
  5841. ,{ "pid":12345, "tid":7, "ts":1718093442316824, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5842. ,{ "pid":12345, "tid":7, "ts":1718093442316935, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Debug.cpp" }}
  5843. ,{ "pid":12345, "tid":7, "ts":1718093442316933, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Debug.cpp" }}
  5844. ,{ "pid":12345, "tid":7, "ts":1718093442317017, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5845. ,{ "pid":12345, "tid":7, "ts":1718093442317086, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/FileSystemWatcher.h" }}
  5846. ,{ "pid":12345, "tid":7, "ts":1718093442317084, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/FileSystemWatcher.h" }}
  5847. ,{ "pid":12345, "tid":7, "ts":1718093442317162, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5848. ,{ "pid":12345, "tid":7, "ts":1718093442317235, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Event.cpp" }}
  5849. ,{ "pid":12345, "tid":7, "ts":1718093442317234, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Event.cpp" }}
  5850. ,{ "pid":12345, "tid":7, "ts":1718093442317315, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5851. ,{ "pid":12345, "tid":7, "ts":1718093442317478, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Emscripten/SocketBridge.cpp" }}
  5852. ,{ "pid":12345, "tid":7, "ts":1718093442317476, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Emscripten/SocketBridge.cpp" }}
  5853. ,{ "pid":12345, "tid":7, "ts":1718093442317578, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5854. ,{ "pid":12345, "tid":7, "ts":1718093442317685, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/CrashHelpers.h" }}
  5855. ,{ "pid":12345, "tid":7, "ts":1718093442317684, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/CrashHelpers.h" }}
  5856. ,{ "pid":12345, "tid":7, "ts":1718093442317760, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5857. ,{ "pid":12345, "tid":7, "ts":1718093442317819, "dur":143, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ConditionVariable.cpp" }}
  5858. ,{ "pid":12345, "tid":7, "ts":1718093442317818, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ConditionVariable.cpp" }}
  5859. ,{ "pid":12345, "tid":7, "ts":1718093442317963, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5860. ,{ "pid":12345, "tid":7, "ts":1718093442318029, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_sizecheck.h" }}
  5861. ,{ "pid":12345, "tid":7, "ts":1718093442318027, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_sizecheck.h" }}
  5862. ,{ "pid":12345, "tid":7, "ts":1718093442318096, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5863. ,{ "pid":12345, "tid":7, "ts":1718093442318166, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_io.cpp" }}
  5864. ,{ "pid":12345, "tid":7, "ts":1718093442318165, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_io.cpp" }}
  5865. ,{ "pid":12345, "tid":7, "ts":1718093442318238, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5866. ,{ "pid":12345, "tid":7, "ts":1718093442318314, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/write_bits.h" }}
  5867. ,{ "pid":12345, "tid":7, "ts":1718093442318312, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/write_bits.h" }}
  5868. ,{ "pid":12345, "tid":7, "ts":1718093442318419, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5869. ,{ "pid":12345, "tid":7, "ts":1718093442318508, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/ringbuffer.h" }}
  5870. ,{ "pid":12345, "tid":7, "ts":1718093442318506, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/ringbuffer.h" }}
  5871. ,{ "pid":12345, "tid":7, "ts":1718093442318575, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5872. ,{ "pid":12345, "tid":7, "ts":1718093442318733, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock.c" }}
  5873. ,{ "pid":12345, "tid":7, "ts":1718093442318732, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock.c" }}
  5874. ,{ "pid":12345, "tid":7, "ts":1718093442318834, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5875. ,{ "pid":12345, "tid":7, "ts":1718093442318945, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram.c" }}
  5876. ,{ "pid":12345, "tid":7, "ts":1718093442318944, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram.c" }}
  5877. ,{ "pid":12345, "tid":7, "ts":1718093442319010, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5878. ,{ "pid":12345, "tid":7, "ts":1718093442319157, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match64_inc.h" }}
  5879. ,{ "pid":12345, "tid":7, "ts":1718093442319156, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match64_inc.h" }}
  5880. ,{ "pid":12345, "tid":7, "ts":1718093442319291, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5881. ,{ "pid":12345, "tid":7, "ts":1718093442319432, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode_static.h" }}
  5882. ,{ "pid":12345, "tid":7, "ts":1718093442319431, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode_static.h" }}
  5883. ,{ "pid":12345, "tid":7, "ts":1718093442319555, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5884. ,{ "pid":12345, "tid":7, "ts":1718093442319656, "dur":146, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.h" }}
  5885. ,{ "pid":12345, "tid":7, "ts":1718093442319655, "dur":148, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.h" }}
  5886. ,{ "pid":12345, "tid":7, "ts":1718093442319803, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5887. ,{ "pid":12345, "tid":7, "ts":1718093442319932, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/command.h" }}
  5888. ,{ "pid":12345, "tid":7, "ts":1718093442319930, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/command.h" }}
  5889. ,{ "pid":12345, "tid":7, "ts":1718093442319999, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5890. ,{ "pid":12345, "tid":7, "ts":1718093442320123, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/brotli_bit_stream.c" }}
  5891. ,{ "pid":12345, "tid":7, "ts":1718093442320122, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/brotli_bit_stream.c" }}
  5892. ,{ "pid":12345, "tid":7, "ts":1718093442320257, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5893. ,{ "pid":12345, "tid":7, "ts":1718093442320320, "dur":155, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost_inc.h" }}
  5894. ,{ "pid":12345, "tid":7, "ts":1718093442320319, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost_inc.h" }}
  5895. ,{ "pid":12345, "tid":7, "ts":1718093442320476, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5896. ,{ "pid":12345, "tid":7, "ts":1718093442320592, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references.c" }}
  5897. ,{ "pid":12345, "tid":7, "ts":1718093442320644, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5898. ,{ "pid":12345, "tid":7, "ts":1718093442320757, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/decode.c" }}
  5899. ,{ "pid":12345, "tid":7, "ts":1718093442320757, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/decode.c" }}
  5900. ,{ "pid":12345, "tid":7, "ts":1718093442320916, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5901. ,{ "pid":12345, "tid":7, "ts":1718093442321040, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/dictionary.c" }}
  5902. ,{ "pid":12345, "tid":7, "ts":1718093442321038, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/dictionary.c" }}
  5903. ,{ "pid":12345, "tid":7, "ts":1718093442321151, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5904. ,{ "pid":12345, "tid":7, "ts":1718093442321321, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Time-c-api.h" }}
  5905. ,{ "pid":12345, "tid":7, "ts":1718093442321320, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Time-c-api.h" }}
  5906. ,{ "pid":12345, "tid":7, "ts":1718093442321428, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5907. ,{ "pid":12345, "tid":7, "ts":1718093442321549, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5908. ,{ "pid":12345, "tid":7, "ts":1718093442321638, "dur":220, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5909. ,{ "pid":12345, "tid":7, "ts":1718093442321895, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5910. ,{ "pid":12345, "tid":7, "ts":1718093442321954, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Console.cpp" }}
  5911. ,{ "pid":12345, "tid":7, "ts":1718093442321953, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Console.cpp" }}
  5912. ,{ "pid":12345, "tid":7, "ts":1718093442322053, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5913. ,{ "pid":12345, "tid":7, "ts":1718093442322129, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Assert.h" }}
  5914. ,{ "pid":12345, "tid":7, "ts":1718093442322128, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Assert.h" }}
  5915. ,{ "pid":12345, "tid":7, "ts":1718093442322216, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5916. ,{ "pid":12345, "tid":7, "ts":1718093442322352, "dur":157, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolWorkerThread.h" }}
  5917. ,{ "pid":12345, "tid":7, "ts":1718093442322350, "dur":159, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolWorkerThread.h" }}
  5918. ,{ "pid":12345, "tid":7, "ts":1718093442322510, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5919. ,{ "pid":12345, "tid":7, "ts":1718093442322603, "dur":157, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms.h" }}
  5920. ,{ "pid":12345, "tid":7, "ts":1718093442322602, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms.h" }}
  5921. ,{ "pid":12345, "tid":7, "ts":1718093442322760, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5922. ,{ "pid":12345, "tid":7, "ts":1718093442322853, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/MonoPosixHelper.h" }}
  5923. ,{ "pid":12345, "tid":7, "ts":1718093442322852, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/MonoPosixHelper.h" }}
  5924. ,{ "pid":12345, "tid":7, "ts":1718093442322930, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5925. ,{ "pid":12345, "tid":7, "ts":1718093442323053, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppTypeCompare.cpp" }}
  5926. ,{ "pid":12345, "tid":7, "ts":1718093442323052, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeCompare.cpp" }}
  5927. ,{ "pid":12345, "tid":7, "ts":1718093442323135, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5928. ,{ "pid":12345, "tid":7, "ts":1718093442323204, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericMethodCompare.cpp" }}
  5929. ,{ "pid":12345, "tid":7, "ts":1718093442323203, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodCompare.cpp" }}
  5930. ,{ "pid":12345, "tid":7, "ts":1718093442323274, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5931. ,{ "pid":12345, "tid":7, "ts":1718093442323356, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericContextHash.cpp" }}
  5932. ,{ "pid":12345, "tid":7, "ts":1718093442323354, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextHash.cpp" }}
  5933. ,{ "pid":12345, "tid":7, "ts":1718093442323468, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5934. ,{ "pid":12345, "tid":7, "ts":1718093442323632, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericSharing.cpp" }}
  5935. ,{ "pid":12345, "tid":7, "ts":1718093442323631, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericSharing.cpp" }}
  5936. ,{ "pid":12345, "tid":7, "ts":1718093442323698, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5937. ,{ "pid":12345, "tid":7, "ts":1718093442323813, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/CustomAttributeDataReader.cpp" }}
  5938. ,{ "pid":12345, "tid":7, "ts":1718093442323812, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeDataReader.cpp" }}
  5939. ,{ "pid":12345, "tid":7, "ts":1718093442323886, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5940. ,{ "pid":12345, "tid":7, "ts":1718093442323962, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/libil2cpp.icalls" }}
  5941. ,{ "pid":12345, "tid":7, "ts":1718093442324075, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5942. ,{ "pid":12345, "tid":7, "ts":1718093442324160, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-runtime-stats.h" }}
  5943. ,{ "pid":12345, "tid":7, "ts":1718093442324158, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-runtime-stats.h" }}
  5944. ,{ "pid":12345, "tid":7, "ts":1718093442324227, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5945. ,{ "pid":12345, "tid":7, "ts":1718093442324304, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-normalization-tables.h" }}
  5946. ,{ "pid":12345, "tid":7, "ts":1718093442324303, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-normalization-tables.h" }}
  5947. ,{ "pid":12345, "tid":7, "ts":1718093442324362, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5948. ,{ "pid":12345, "tid":7, "ts":1718093442324464, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-config-api.h" }}
  5949. ,{ "pid":12345, "tid":7, "ts":1718093442324463, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-config-api.h" }}
  5950. ,{ "pid":12345, "tid":7, "ts":1718093442324532, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5951. ,{ "pid":12345, "tid":7, "ts":1718093442324594, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-api.cpp" }}
  5952. ,{ "pid":12345, "tid":7, "ts":1718093442324593, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-api.cpp" }}
  5953. ,{ "pid":12345, "tid":7, "ts":1718093442324665, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5954. ,{ "pid":12345, "tid":7, "ts":1718093442324734, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net/Dns.cpp" }}
  5955. ,{ "pid":12345, "tid":7, "ts":1718093442324732, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net/Dns.cpp" }}
  5956. ,{ "pid":12345, "tid":7, "ts":1718093442324813, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5957. ,{ "pid":12345, "tid":7, "ts":1718093442324890, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.NetworkInformation/MacOsIPInterfaceProperties.cpp" }}
  5958. ,{ "pid":12345, "tid":7, "ts":1718093442324889, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.NetworkInformation/MacOsIPInterfaceProperties.cpp" }}
  5959. ,{ "pid":12345, "tid":7, "ts":1718093442324961, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5960. ,{ "pid":12345, "tid":7, "ts":1718093442325049, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/Stopwatch.cpp" }}
  5961. ,{ "pid":12345, "tid":7, "ts":1718093442325046, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/Stopwatch.cpp" }}
  5962. ,{ "pid":12345, "tid":7, "ts":1718093442325111, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5963. ,{ "pid":12345, "tid":7, "ts":1718093442325179, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/DefaultTraceListener.cpp" }}
  5964. ,{ "pid":12345, "tid":7, "ts":1718093442325177, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/DefaultTraceListener.cpp" }}
  5965. ,{ "pid":12345, "tid":7, "ts":1718093442325238, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5966. ,{ "pid":12345, "tid":7, "ts":1718093442325312, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System.Core/System.IO.MemoryMappedFiles/MemoryMapImpl.cpp" }}
  5967. ,{ "pid":12345, "tid":7, "ts":1718093442325311, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System.Core/System.IO.MemoryMappedFiles/MemoryMapImpl.cpp" }}
  5968. ,{ "pid":12345, "tid":7, "ts":1718093442325368, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5969. ,{ "pid":12345, "tid":7, "ts":1718093442325452, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Type.cpp" }}
  5970. ,{ "pid":12345, "tid":7, "ts":1718093442325451, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Type.cpp" }}
  5971. ,{ "pid":12345, "tid":7, "ts":1718093442325505, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5972. ,{ "pid":12345, "tid":7, "ts":1718093442325586, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeType.cpp" }}
  5973. ,{ "pid":12345, "tid":7, "ts":1718093442325584, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeType.cpp" }}
  5974. ,{ "pid":12345, "tid":7, "ts":1718093442325644, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5975. ,{ "pid":12345, "tid":7, "ts":1718093442325727, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Object.cpp" }}
  5976. ,{ "pid":12345, "tid":7, "ts":1718093442325725, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Object.cpp" }}
  5977. ,{ "pid":12345, "tid":7, "ts":1718093442325798, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5978. ,{ "pid":12345, "tid":7, "ts":1718093442325879, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/GC.h" }}
  5979. ,{ "pid":12345, "tid":7, "ts":1718093442325878, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/GC.h" }}
  5980. ,{ "pid":12345, "tid":7, "ts":1718093442325936, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5981. ,{ "pid":12345, "tid":7, "ts":1718093442326002, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Enum.h" }}
  5982. ,{ "pid":12345, "tid":7, "ts":1718093442326001, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Enum.h" }}
  5983. ,{ "pid":12345, "tid":7, "ts":1718093442326064, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5984. ,{ "pid":12345, "tid":7, "ts":1718093442326136, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/CurrentSystemTimeZone.h" }}
  5985. ,{ "pid":12345, "tid":7, "ts":1718093442326135, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/CurrentSystemTimeZone.h" }}
  5986. ,{ "pid":12345, "tid":7, "ts":1718093442326209, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5987. ,{ "pid":12345, "tid":7, "ts":1718093442326277, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Buffer.h" }}
  5988. ,{ "pid":12345, "tid":7, "ts":1718093442326276, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Buffer.h" }}
  5989. ,{ "pid":12345, "tid":7, "ts":1718093442326390, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5990. ,{ "pid":12345, "tid":7, "ts":1718093442326464, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/AppDomain.cpp" }}
  5991. ,{ "pid":12345, "tid":7, "ts":1718093442326463, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/AppDomain.cpp" }}
  5992. ,{ "pid":12345, "tid":7, "ts":1718093442326521, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5993. ,{ "pid":12345, "tid":7, "ts":1718093442326585, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Thread.h" }}
  5994. ,{ "pid":12345, "tid":7, "ts":1718093442326584, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Thread.h" }}
  5995. ,{ "pid":12345, "tid":7, "ts":1718093442326700, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5996. ,{ "pid":12345, "tid":7, "ts":1718093442326756, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Mutex.h" }}
  5997. ,{ "pid":12345, "tid":7, "ts":1718093442326755, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Mutex.h" }}
  5998. ,{ "pid":12345, "tid":7, "ts":1718093442326834, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  5999. ,{ "pid":12345, "tid":7, "ts":1718093442326914, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/InternalThread.cpp" }}
  6000. ,{ "pid":12345, "tid":7, "ts":1718093442326913, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/InternalThread.cpp" }}
  6001. ,{ "pid":12345, "tid":7, "ts":1718093442326982, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6002. ,{ "pid":12345, "tid":7, "ts":1718093442327052, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsPrincipal.cpp" }}
  6003. ,{ "pid":12345, "tid":7, "ts":1718093442327050, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsPrincipal.cpp" }}
  6004. ,{ "pid":12345, "tid":7, "ts":1718093442327116, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6005. ,{ "pid":12345, "tid":7, "ts":1718093442327193, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Policy/Evidence.cpp" }}
  6006. ,{ "pid":12345, "tid":7, "ts":1718093442327191, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Policy/Evidence.cpp" }}
  6007. ,{ "pid":12345, "tid":7, "ts":1718093442327313, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6008. ,{ "pid":12345, "tid":7, "ts":1718093442327437, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6009. ,{ "pid":12345, "tid":7, "ts":1718093442327525, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.cpp" }}
  6010. ,{ "pid":12345, "tid":7, "ts":1718093442327522, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.cpp" }}
  6011. ,{ "pid":12345, "tid":7, "ts":1718093442327584, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6012. ,{ "pid":12345, "tid":7, "ts":1718093442327671, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.cpp" }}
  6013. ,{ "pid":12345, "tid":7, "ts":1718093442327669, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.cpp" }}
  6014. ,{ "pid":12345, "tid":7, "ts":1718093442327734, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6015. ,{ "pid":12345, "tid":7, "ts":1718093442327841, "dur":61, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.cpp" }}
  6016. ,{ "pid":12345, "tid":7, "ts":1718093442327906, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimePropertyInfo.h" }}
  6017. ,{ "pid":12345, "tid":7, "ts":1718093442327904, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimePropertyInfo.h" }}
  6018. ,{ "pid":12345, "tid":7, "ts":1718093442327980, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6019. ,{ "pid":12345, "tid":7, "ts":1718093442328051, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.h" }}
  6020. ,{ "pid":12345, "tid":7, "ts":1718093442328049, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.h" }}
  6021. ,{ "pid":12345, "tid":7, "ts":1718093442328154, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6022. ,{ "pid":12345, "tid":7, "ts":1718093442328282, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeAssembly.h" }}
  6023. ,{ "pid":12345, "tid":7, "ts":1718093442328279, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeAssembly.h" }}
  6024. ,{ "pid":12345, "tid":7, "ts":1718093442328341, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6025. ,{ "pid":12345, "tid":7, "ts":1718093442328408, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethodInfo.cpp" }}
  6026. ,{ "pid":12345, "tid":7, "ts":1718093442328406, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethodInfo.cpp" }}
  6027. ,{ "pid":12345, "tid":7, "ts":1718093442328519, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6028. ,{ "pid":12345, "tid":7, "ts":1718093442328607, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/FieldInfo.cpp" }}
  6029. ,{ "pid":12345, "tid":7, "ts":1718093442328606, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/FieldInfo.cpp" }}
  6030. ,{ "pid":12345, "tid":7, "ts":1718093442328673, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6031. ,{ "pid":12345, "tid":7, "ts":1718093442328746, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/AssemblyName.cpp" }}
  6032. ,{ "pid":12345, "tid":7, "ts":1718093442328744, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/AssemblyName.cpp" }}
  6033. ,{ "pid":12345, "tid":7, "ts":1718093442328814, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6034. ,{ "pid":12345, "tid":7, "ts":1718093442328995, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/MonoIO.h" }}
  6035. ,{ "pid":12345, "tid":7, "ts":1718093442328981, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/MonoIO.h" }}
  6036. ,{ "pid":12345, "tid":7, "ts":1718093442329117, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6037. ,{ "pid":12345, "tid":7, "ts":1718093442329222, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/Generated/CultureInfoTablesNet_4_0.h" }}
  6038. ,{ "pid":12345, "tid":7, "ts":1718093442329219, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/Generated/CultureInfoTablesNet_4_0.h" }}
  6039. ,{ "pid":12345, "tid":7, "ts":1718093442329327, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6040. ,{ "pid":12345, "tid":7, "ts":1718093442329430, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureData.cpp" }}
  6041. ,{ "pid":12345, "tid":7, "ts":1718093442329428, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureData.cpp" }}
  6042. ,{ "pid":12345, "tid":7, "ts":1718093442329503, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6043. ,{ "pid":12345, "tid":7, "ts":1718093442329597, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/StackTrace.h" }}
  6044. ,{ "pid":12345, "tid":7, "ts":1718093442329596, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/StackTrace.h" }}
  6045. ,{ "pid":12345, "tid":7, "ts":1718093442329670, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6046. ,{ "pid":12345, "tid":7, "ts":1718093442329729, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/SafeStringMarshal.h" }}
  6047. ,{ "pid":12345, "tid":7, "ts":1718093442329727, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/SafeStringMarshal.h" }}
  6048. ,{ "pid":12345, "tid":7, "ts":1718093442329798, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6049. ,{ "pid":12345, "tid":7, "ts":1718093442329854, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeGPtrArrayHandle.cpp" }}
  6050. ,{ "pid":12345, "tid":7, "ts":1718093442329853, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeGPtrArrayHandle.cpp" }}
  6051. ,{ "pid":12345, "tid":7, "ts":1718093442329948, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6052. ,{ "pid":12345, "tid":7, "ts":1718093442330022, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono.Security.Cryptography/KeyPairPersistence.h" }}
  6053. ,{ "pid":12345, "tid":7, "ts":1718093442330020, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono.Security.Cryptography/KeyPairPersistence.h" }}
  6054. ,{ "pid":12345, "tid":7, "ts":1718093442330103, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6055. ,{ "pid":12345, "tid":7, "ts":1718093442330177, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/WriteBarrierValidation.h" }}
  6056. ,{ "pid":12345, "tid":7, "ts":1718093442330175, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/WriteBarrierValidation.h" }}
  6057. ,{ "pid":12345, "tid":7, "ts":1718093442330242, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6058. ,{ "pid":12345, "tid":7, "ts":1718093442330365, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6059. ,{ "pid":12345, "tid":7, "ts":1718093442330458, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/AppendOnlyGCHashMap.h" }}
  6060. ,{ "pid":12345, "tid":7, "ts":1718093442330457, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/AppendOnlyGCHashMap.h" }}
  6061. ,{ "pid":12345, "tid":7, "ts":1718093442330569, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-tiny.h" }}
  6062. ,{ "pid":12345, "tid":7, "ts":1718093442330567, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-tiny.h" }}
  6063. ,{ "pid":12345, "tid":7, "ts":1718093442330636, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6064. ,{ "pid":12345, "tid":7, "ts":1718093442330707, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-common.cpp" }}
  6065. ,{ "pid":12345, "tid":7, "ts":1718093442330706, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-common.cpp" }}
  6066. ,{ "pid":12345, "tid":7, "ts":1718093442330851, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/zlib.h" }}
  6067. ,{ "pid":12345, "tid":7, "ts":1718093442330849, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/zlib.h" }}
  6068. ,{ "pid":12345, "tid":7, "ts":1718093442330932, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6069. ,{ "pid":12345, "tid":7, "ts":1718093442331001, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inftrees.h" }}
  6070. ,{ "pid":12345, "tid":7, "ts":1718093442331000, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inftrees.h" }}
  6071. ,{ "pid":12345, "tid":7, "ts":1718093442331100, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6072. ,{ "pid":12345, "tid":7, "ts":1718093442331218, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inffast.c" }}
  6073. ,{ "pid":12345, "tid":7, "ts":1718093442331209, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inffast.c" }}
  6074. ,{ "pid":12345, "tid":7, "ts":1718093442331305, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6075. ,{ "pid":12345, "tid":7, "ts":1718093442331375, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/deflate.h" }}
  6076. ,{ "pid":12345, "tid":7, "ts":1718093442331374, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/deflate.h" }}
  6077. ,{ "pid":12345, "tid":7, "ts":1718093442331449, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6078. ,{ "pid":12345, "tid":7, "ts":1718093442331532, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xxHash/xxhash.c" }}
  6079. ,{ "pid":12345, "tid":7, "ts":1718093442331531, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/xxhash.c" }}
  6080. ,{ "pid":12345, "tid":7, "ts":1718093442331596, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6081. ,{ "pid":12345, "tid":7, "ts":1718093442331677, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/README" }}
  6082. ,{ "pid":12345, "tid":7, "ts":1718093442331734, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6083. ,{ "pid":12345, "tid":7, "ts":1718093442331796, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/ward.h" }}
  6084. ,{ "pid":12345, "tid":7, "ts":1718093442331795, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/ward.h" }}
  6085. ,{ "pid":12345, "tid":7, "ts":1718093442331854, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6086. ,{ "pid":12345, "tid":7, "ts":1718093442331926, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/unity-time.c" }}
  6087. ,{ "pid":12345, "tid":7, "ts":1718093442331924, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/unity-time.c" }}
  6088. ,{ "pid":12345, "tid":7, "ts":1718093442331985, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6089. ,{ "pid":12345, "tid":7, "ts":1718093442332071, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/parse.c" }}
  6090. ,{ "pid":12345, "tid":7, "ts":1718093442332069, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/parse.c" }}
  6091. ,{ "pid":12345, "tid":7, "ts":1718093442332135, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6092. ,{ "pid":12345, "tid":7, "ts":1718093442332251, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6093. ,{ "pid":12345, "tid":7, "ts":1718093442332355, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/monobitset.c" }}
  6094. ,{ "pid":12345, "tid":7, "ts":1718093442332354, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/monobitset.c" }}
  6095. ,{ "pid":12345, "tid":7, "ts":1718093442332413, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6096. ,{ "pid":12345, "tid":7, "ts":1718093442332494, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-tls.c" }}
  6097. ,{ "pid":12345, "tid":7, "ts":1718093442332493, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-tls.c" }}
  6098. ,{ "pid":12345, "tid":7, "ts":1718093442332558, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6099. ,{ "pid":12345, "tid":7, "ts":1718093442332636, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-unity.c" }}
  6100. ,{ "pid":12345, "tid":7, "ts":1718093442332635, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-unity.c" }}
  6101. ,{ "pid":12345, "tid":7, "ts":1718093442332723, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6102. ,{ "pid":12345, "tid":7, "ts":1718093442332801, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-debug.h" }}
  6103. ,{ "pid":12345, "tid":7, "ts":1718093442332799, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-debug.h" }}
  6104. ,{ "pid":12345, "tid":7, "ts":1718093442332864, "dur":755, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6105. ,{ "pid":12345, "tid":7, "ts":1718093442333628, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-stdlib.c" }}
  6106. ,{ "pid":12345, "tid":7, "ts":1718093442333626, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-stdlib.c" }}
  6107. ,{ "pid":12345, "tid":7, "ts":1718093442333752, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-rand.h" }}
  6108. ,{ "pid":12345, "tid":7, "ts":1718093442333751, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-rand.h" }}
  6109. ,{ "pid":12345, "tid":7, "ts":1718093442333838, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6110. ,{ "pid":12345, "tid":7, "ts":1718093442333967, "dur":142, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-proclib.h" }}
  6111. ,{ "pid":12345, "tid":7, "ts":1718093442333965, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-proclib.h" }}
  6112. ,{ "pid":12345, "tid":7, "ts":1718093442334111, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6113. ,{ "pid":12345, "tid":7, "ts":1718093442334195, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-path.c" }}
  6114. ,{ "pid":12345, "tid":7, "ts":1718093442334193, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-path.c" }}
  6115. ,{ "pid":12345, "tid":7, "ts":1718093442334260, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6116. ,{ "pid":12345, "tid":7, "ts":1718093442334386, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6117. ,{ "pid":12345, "tid":7, "ts":1718093442334464, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap.c" }}
  6118. ,{ "pid":12345, "tid":7, "ts":1718093442334462, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap.c" }}
  6119. ,{ "pid":12345, "tid":7, "ts":1718093442334542, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6120. ,{ "pid":12345, "tid":7, "ts":1718093442334642, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-md5.c" }}
  6121. ,{ "pid":12345, "tid":7, "ts":1718093442334628, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-md5.c" }}
  6122. ,{ "pid":12345, "tid":7, "ts":1718093442334721, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6123. ,{ "pid":12345, "tid":7, "ts":1718093442334808, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-logger-internals.h" }}
  6124. ,{ "pid":12345, "tid":7, "ts":1718093442334800, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-logger-internals.h" }}
  6125. ,{ "pid":12345, "tid":7, "ts":1718093442334904, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6126. ,{ "pid":12345, "tid":7, "ts":1718093442334994, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-linked-list-set.h" }}
  6127. ,{ "pid":12345, "tid":7, "ts":1718093442334993, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-linked-list-set.h" }}
  6128. ,{ "pid":12345, "tid":7, "ts":1718093442335126, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-internal-hash.h" }}
  6129. ,{ "pid":12345, "tid":7, "ts":1718093442335125, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-internal-hash.h" }}
  6130. ,{ "pid":12345, "tid":7, "ts":1718093442335252, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6131. ,{ "pid":12345, "tid":7, "ts":1718093442335338, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-arm.c" }}
  6132. ,{ "pid":12345, "tid":7, "ts":1718093442335337, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-arm.c" }}
  6133. ,{ "pid":12345, "tid":7, "ts":1718093442335444, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6134. ,{ "pid":12345, "tid":7, "ts":1718093442335521, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-error-internals.h" }}
  6135. ,{ "pid":12345, "tid":7, "ts":1718093442335520, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-error-internals.h" }}
  6136. ,{ "pid":12345, "tid":7, "ts":1718093442335598, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6137. ,{ "pid":12345, "tid":7, "ts":1718093442335670, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-windows.c" }}
  6138. ,{ "pid":12345, "tid":7, "ts":1718093442335669, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-windows.c" }}
  6139. ,{ "pid":12345, "tid":7, "ts":1718093442335773, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6140. ,{ "pid":12345, "tid":7, "ts":1718093442335843, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-digest.h" }}
  6141. ,{ "pid":12345, "tid":7, "ts":1718093442335841, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-digest.h" }}
  6142. ,{ "pid":12345, "tid":7, "ts":1718093442335906, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6143. ,{ "pid":12345, "tid":7, "ts":1718093442335984, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-context.c" }}
  6144. ,{ "pid":12345, "tid":7, "ts":1718093442335981, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-context.c" }}
  6145. ,{ "pid":12345, "tid":7, "ts":1718093442336060, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6146. ,{ "pid":12345, "tid":7, "ts":1718093442336152, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-codeman.c" }}
  6147. ,{ "pid":12345, "tid":7, "ts":1718093442336151, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-codeman.c" }}
  6148. ,{ "pid":12345, "tid":7, "ts":1718093442336238, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6149. ,{ "pid":12345, "tid":7, "ts":1718093442336338, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support-x86.c" }}
  6150. ,{ "pid":12345, "tid":7, "ts":1718093442336337, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support-x86.c" }}
  6151. ,{ "pid":12345, "tid":7, "ts":1718093442336419, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6152. ,{ "pid":12345, "tid":7, "ts":1718093442336508, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-array-queue.c" }}
  6153. ,{ "pid":12345, "tid":7, "ts":1718093442336507, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-array-queue.c" }}
  6154. ,{ "pid":12345, "tid":7, "ts":1718093442336597, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6155. ,{ "pid":12345, "tid":7, "ts":1718093442336748, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/hazard-pointer.h" }}
  6156. ,{ "pid":12345, "tid":7, "ts":1718093442336731, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/hazard-pointer.h" }}
  6157. ,{ "pid":12345, "tid":7, "ts":1718093442336853, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6158. ,{ "pid":12345, "tid":7, "ts":1718093442337001, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/freebsd-dwarf.h" }}
  6159. ,{ "pid":12345, "tid":7, "ts":1718093442337000, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/freebsd-dwarf.h" }}
  6160. ,{ "pid":12345, "tid":7, "ts":1718093442337063, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6161. ,{ "pid":12345, "tid":7, "ts":1718093442337166, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/bsearch.c" }}
  6162. ,{ "pid":12345, "tid":7, "ts":1718093442337164, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/bsearch.c" }}
  6163. ,{ "pid":12345, "tid":7, "ts":1718093442337232, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6164. ,{ "pid":12345, "tid":7, "ts":1718093442337292, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-thread-pool.c" }}
  6165. ,{ "pid":12345, "tid":7, "ts":1718093442337290, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-thread-pool.c" }}
  6166. ,{ "pid":12345, "tid":7, "ts":1718093442337390, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6167. ,{ "pid":12345, "tid":7, "ts":1718093442337501, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-protocol.h" }}
  6168. ,{ "pid":12345, "tid":7, "ts":1718093442337498, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-protocol.h" }}
  6169. ,{ "pid":12345, "tid":7, "ts":1718093442337576, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6170. ,{ "pid":12345, "tid":7, "ts":1718093442337654, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pinning.c" }}
  6171. ,{ "pid":12345, "tid":7, "ts":1718093442337653, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pinning.c" }}
  6172. ,{ "pid":12345, "tid":7, "ts":1718093442337712, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6173. ,{ "pid":12345, "tid":7, "ts":1718093442337779, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-memory-governor.h" }}
  6174. ,{ "pid":12345, "tid":7, "ts":1718093442337778, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-memory-governor.h" }}
  6175. ,{ "pid":12345, "tid":7, "ts":1718093442337843, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6176. ,{ "pid":12345, "tid":7, "ts":1718093442337949, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-layout-stats.h" }}
  6177. ,{ "pid":12345, "tid":7, "ts":1718093442337947, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-layout-stats.h" }}
  6178. ,{ "pid":12345, "tid":7, "ts":1718093442338058, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6179. ,{ "pid":12345, "tid":7, "ts":1718093442338187, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gchandles.c" }}
  6180. ,{ "pid":12345, "tid":7, "ts":1718093442338186, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gchandles.c" }}
  6181. ,{ "pid":12345, "tid":7, "ts":1718093442338293, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6182. ,{ "pid":12345, "tid":7, "ts":1718093442338367, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-debug.c" }}
  6183. ,{ "pid":12345, "tid":7, "ts":1718093442338366, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-debug.c" }}
  6184. ,{ "pid":12345, "tid":7, "ts":1718093442338429, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6185. ,{ "pid":12345, "tid":7, "ts":1718093442338515, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-cardtable.c" }}
  6186. ,{ "pid":12345, "tid":7, "ts":1718093442338513, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-cardtable.c" }}
  6187. ,{ "pid":12345, "tid":7, "ts":1718093442338571, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6188. ,{ "pid":12345, "tid":7, "ts":1718093442338650, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/gc-internal-agnostic.h" }}
  6189. ,{ "pid":12345, "tid":7, "ts":1718093442338641, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/gc-internal-agnostic.h" }}
  6190. ,{ "pid":12345, "tid":7, "ts":1718093442338737, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6191. ,{ "pid":12345, "tid":7, "ts":1718093442338931, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6192. ,{ "pid":12345, "tid":7, "ts":1718093442339054, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket-unix.c" }}
  6193. ,{ "pid":12345, "tid":7, "ts":1718093442339052, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket-unix.c" }}
  6194. ,{ "pid":12345, "tid":7, "ts":1718093442339118, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6195. ,{ "pid":12345, "tid":7, "ts":1718093442339224, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process.h" }}
  6196. ,{ "pid":12345, "tid":7, "ts":1718093442339223, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process.h" }}
  6197. ,{ "pid":12345, "tid":7, "ts":1718093442339348, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6198. ,{ "pid":12345, "tid":7, "ts":1718093442339524, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-unix-default.c" }}
  6199. ,{ "pid":12345, "tid":7, "ts":1718093442339522, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-unix-default.c" }}
  6200. ,{ "pid":12345, "tid":7, "ts":1718093442339649, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6201. ,{ "pid":12345, "tid":7, "ts":1718093442339767, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32handle.c" }}
  6202. ,{ "pid":12345, "tid":7, "ts":1718093442339766, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32handle.c" }}
  6203. ,{ "pid":12345, "tid":7, "ts":1718093442339876, "dur":209, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6204. ,{ "pid":12345, "tid":7, "ts":1718093442340093, "dur":143, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-win32-internals.h" }}
  6205. ,{ "pid":12345, "tid":7, "ts":1718093442340091, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-win32-internals.h" }}
  6206. ,{ "pid":12345, "tid":7, "ts":1718093442340237, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6207. ,{ "pid":12345, "tid":7, "ts":1718093442340392, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32event-unix.c" }}
  6208. ,{ "pid":12345, "tid":7, "ts":1718093442340391, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32event-unix.c" }}
  6209. ,{ "pid":12345, "tid":7, "ts":1718093442340458, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6210. ,{ "pid":12345, "tid":7, "ts":1718093442340567, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6211. ,{ "pid":12345, "tid":7, "ts":1718093442340669, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/tokentype.h" }}
  6212. ,{ "pid":12345, "tid":7, "ts":1718093442340667, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/tokentype.h" }}
  6213. ,{ "pid":12345, "tid":7, "ts":1718093442340741, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6214. ,{ "pid":12345, "tid":7, "ts":1718093442340907, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool-worker.h" }}
  6215. ,{ "pid":12345, "tid":7, "ts":1718093442340906, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool-worker.h" }}
  6216. ,{ "pid":12345, "tid":7, "ts":1718093442341002, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6217. ,{ "pid":12345, "tid":7, "ts":1718093442341081, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sysmath.c" }}
  6218. ,{ "pid":12345, "tid":7, "ts":1718093442341080, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sysmath.c" }}
  6219. ,{ "pid":12345, "tid":7, "ts":1718093442341157, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6220. ,{ "pid":12345, "tid":7, "ts":1718093442341286, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sre-encode.c" }}
  6221. ,{ "pid":12345, "tid":7, "ts":1718093442341284, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sre-encode.c" }}
  6222. ,{ "pid":12345, "tid":7, "ts":1718093442341361, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6223. ,{ "pid":12345, "tid":7, "ts":1718093442341456, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-new-bridge.c" }}
  6224. ,{ "pid":12345, "tid":7, "ts":1718093442341454, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-new-bridge.c" }}
  6225. ,{ "pid":12345, "tid":7, "ts":1718093442341524, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6226. ,{ "pid":12345, "tid":7, "ts":1718093442341615, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-bridge-internals.h" }}
  6227. ,{ "pid":12345, "tid":7, "ts":1718093442341612, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-bridge-internals.h" }}
  6228. ,{ "pid":12345, "tid":7, "ts":1718093442341736, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security-core-clr.h" }}
  6229. ,{ "pid":12345, "tid":7, "ts":1718093442341735, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security-core-clr.h" }}
  6230. ,{ "pid":12345, "tid":7, "ts":1718093442341861, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/remoting.h" }}
  6231. ,{ "pid":12345, "tid":7, "ts":1718093442341860, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/remoting.h" }}
  6232. ,{ "pid":12345, "tid":7, "ts":1718093442341938, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6233. ,{ "pid":12345, "tid":7, "ts":1718093442342041, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/rand.h" }}
  6234. ,{ "pid":12345, "tid":7, "ts":1718093442342039, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/rand.h" }}
  6235. ,{ "pid":12345, "tid":7, "ts":1718093442342140, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6236. ,{ "pid":12345, "tid":7, "ts":1718093442342214, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler-private.h" }}
  6237. ,{ "pid":12345, "tid":7, "ts":1718093442342212, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler-private.h" }}
  6238. ,{ "pid":12345, "tid":7, "ts":1718093442342283, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6239. ,{ "pid":12345, "tid":7, "ts":1718093442342353, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/opcodes.h" }}
  6240. ,{ "pid":12345, "tid":7, "ts":1718093442342351, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/opcodes.h" }}
  6241. ,{ "pid":12345, "tid":7, "ts":1718093442342419, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6242. ,{ "pid":12345, "tid":7, "ts":1718093442342524, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object-forward.h" }}
  6243. ,{ "pid":12345, "tid":7, "ts":1718093442342521, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object-forward.h" }}
  6244. ,{ "pid":12345, "tid":7, "ts":1718093442342594, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6245. ,{ "pid":12345, "tid":7, "ts":1718093442342676, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/normalization-tables.h" }}
  6246. ,{ "pid":12345, "tid":7, "ts":1718093442342674, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/normalization-tables.h" }}
  6247. ,{ "pid":12345, "tid":7, "ts":1718093442342747, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6248. ,{ "pid":12345, "tid":7, "ts":1718093442342822, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-ptr-array.h" }}
  6249. ,{ "pid":12345, "tid":7, "ts":1718093442342821, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-ptr-array.h" }}
  6250. ,{ "pid":12345, "tid":7, "ts":1718093442342893, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6251. ,{ "pid":12345, "tid":7, "ts":1718093442342994, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-hash.h" }}
  6252. ,{ "pid":12345, "tid":7, "ts":1718093442342992, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-hash.h" }}
  6253. ,{ "pid":12345, "tid":7, "ts":1718093442343081, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6254. ,{ "pid":12345, "tid":7, "ts":1718093442343162, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-debug.h" }}
  6255. ,{ "pid":12345, "tid":7, "ts":1718093442343161, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-debug.h" }}
  6256. ,{ "pid":12345, "tid":7, "ts":1718093442343242, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6257. ,{ "pid":12345, "tid":7, "ts":1718093442343299, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-config-dirs.c" }}
  6258. ,{ "pid":12345, "tid":7, "ts":1718093442343298, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-config-dirs.c" }}
  6259. ,{ "pid":12345, "tid":7, "ts":1718093442343359, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6260. ,{ "pid":12345, "tid":7, "ts":1718093442343437, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/monitor.c" }}
  6261. ,{ "pid":12345, "tid":7, "ts":1718093442343436, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/monitor.c" }}
  6262. ,{ "pid":12345, "tid":7, "ts":1718093442343513, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6263. ,{ "pid":12345, "tid":7, "ts":1718093442343580, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata-internals.h" }}
  6264. ,{ "pid":12345, "tid":7, "ts":1718093442343579, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata-internals.h" }}
  6265. ,{ "pid":12345, "tid":7, "ts":1718093442343661, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6266. ,{ "pid":12345, "tid":7, "ts":1718093442343742, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal.c" }}
  6267. ,{ "pid":12345, "tid":7, "ts":1718093442343740, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal.c" }}
  6268. ,{ "pid":12345, "tid":7, "ts":1718093442343809, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6269. ,{ "pid":12345, "tid":7, "ts":1718093442343926, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6270. ,{ "pid":12345, "tid":7, "ts":1718093442344012, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/jit-icall-reg.h" }}
  6271. ,{ "pid":12345, "tid":7, "ts":1718093442344010, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/jit-icall-reg.h" }}
  6272. ,{ "pid":12345, "tid":7, "ts":1718093442344102, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6273. ,{ "pid":12345, "tid":7, "ts":1718093442344183, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall-windows.c" }}
  6274. ,{ "pid":12345, "tid":7, "ts":1718093442344181, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall-windows.c" }}
  6275. ,{ "pid":12345, "tid":7, "ts":1718093442344279, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6276. ,{ "pid":12345, "tid":7, "ts":1718093442344373, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/handle-decl.h" }}
  6277. ,{ "pid":12345, "tid":7, "ts":1718093442344371, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/handle-decl.h" }}
  6278. ,{ "pid":12345, "tid":7, "ts":1718093442344463, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6279. ,{ "pid":12345, "tid":7, "ts":1718093442344547, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/file-mmap.h" }}
  6280. ,{ "pid":12345, "tid":7, "ts":1718093442344544, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/file-mmap.h" }}
  6281. ,{ "pid":12345, "tid":7, "ts":1718093442344628, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6282. ,{ "pid":12345, "tid":7, "ts":1718093442344711, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/exception.c" }}
  6283. ,{ "pid":12345, "tid":7, "ts":1718093442344709, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/exception.c" }}
  6284. ,{ "pid":12345, "tid":7, "ts":1718093442344852, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/dynamic-image-internals.h" }}
  6285. ,{ "pid":12345, "tid":7, "ts":1718093442344850, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/dynamic-image-internals.h" }}
  6286. ,{ "pid":12345, "tid":7, "ts":1718093442344922, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6287. ,{ "pid":12345, "tid":7, "ts":1718093442344995, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-mono-symfile.c" }}
  6288. ,{ "pid":12345, "tid":7, "ts":1718093442344993, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-mono-symfile.c" }}
  6289. ,{ "pid":12345, "tid":7, "ts":1718093442345062, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6290. ,{ "pid":12345, "tid":7, "ts":1718093442345136, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/custom-attrs.c" }}
  6291. ,{ "pid":12345, "tid":7, "ts":1718093442345134, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/custom-attrs.c" }}
  6292. ,{ "pid":12345, "tid":7, "ts":1718093442345239, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6293. ,{ "pid":12345, "tid":7, "ts":1718093442345430, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6294. ,{ "pid":12345, "tid":7, "ts":1718093442345502, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-getters.h" }}
  6295. ,{ "pid":12345, "tid":7, "ts":1718093442345501, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-getters.h" }}
  6296. ,{ "pid":12345, "tid":7, "ts":1718093442345578, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6297. ,{ "pid":12345, "tid":7, "ts":1718093442345714, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6298. ,{ "pid":12345, "tid":7, "ts":1718093442345778, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/assembly-internals.h" }}
  6299. ,{ "pid":12345, "tid":7, "ts":1718093442345777, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/assembly-internals.h" }}
  6300. ,{ "pid":12345, "tid":7, "ts":1718093442345849, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6301. ,{ "pid":12345, "tid":7, "ts":1718093442345908, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/unicode-data.h" }}
  6302. ,{ "pid":12345, "tid":7, "ts":1718093442345907, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/unicode-data.h" }}
  6303. ,{ "pid":12345, "tid":7, "ts":1718093442346043, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gstring.c" }}
  6304. ,{ "pid":12345, "tid":7, "ts":1718093442346041, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gstring.c" }}
  6305. ,{ "pid":12345, "tid":7, "ts":1718093442346129, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6306. ,{ "pid":12345, "tid":7, "ts":1718093442346190, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gptrarray.c" }}
  6307. ,{ "pid":12345, "tid":7, "ts":1718093442346189, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gptrarray.c" }}
  6308. ,{ "pid":12345, "tid":7, "ts":1718093442346246, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6309. ,{ "pid":12345, "tid":7, "ts":1718093442346327, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gmem.c" }}
  6310. ,{ "pid":12345, "tid":7, "ts":1718093442346326, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gmem.c" }}
  6311. ,{ "pid":12345, "tid":7, "ts":1718093442346399, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6312. ,{ "pid":12345, "tid":7, "ts":1718093442346459, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gfile.c" }}
  6313. ,{ "pid":12345, "tid":7, "ts":1718093442346458, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gfile.c" }}
  6314. ,{ "pid":12345, "tid":7, "ts":1718093442346519, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6315. ,{ "pid":12345, "tid":7, "ts":1718093442346577, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/garray.c" }}
  6316. ,{ "pid":12345, "tid":7, "ts":1718093442346576, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/garray.c" }}
  6317. ,{ "pid":12345, "tid":7, "ts":1718093442346629, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6318. ,{ "pid":12345, "tid":7, "ts":1718093442346696, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm/arm_vfpmacros.h" }}
  6319. ,{ "pid":12345, "tid":7, "ts":1718093442346694, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm/arm_vfpmacros.h" }}
  6320. ,{ "pid":12345, "tid":7, "ts":1718093442346869, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6321. ,{ "pid":12345, "tid":7, "ts":1718093442346936, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/libc_allocator_with_realloc.h" }}
  6322. ,{ "pid":12345, "tid":7, "ts":1718093442346988, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6323. ,{ "pid":12345, "tid":7, "ts":1718093442347076, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/windows-untested/stdafx.c" }}
  6324. ,{ "pid":12345, "tid":7, "ts":1718093442347074, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/windows-untested/stdafx.c" }}
  6325. ,{ "pid":12345, "tid":7, "ts":1718093442347127, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6326. ,{ "pid":12345, "tid":7, "ts":1718093442347185, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tools/threadlibs.c" }}
  6327. ,{ "pid":12345, "tid":7, "ts":1718093442347237, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6328. ,{ "pid":12345, "tid":7, "ts":1718093442347307, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/thread_leak_test.c" }}
  6329. ,{ "pid":12345, "tid":7, "ts":1718093442347305, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/thread_leak_test.c" }}
  6330. ,{ "pid":12345, "tid":7, "ts":1718093442347371, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6331. ,{ "pid":12345, "tid":7, "ts":1718093442347446, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/smash_test.c" }}
  6332. ,{ "pid":12345, "tid":7, "ts":1718093442347444, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/smash_test.c" }}
  6333. ,{ "pid":12345, "tid":7, "ts":1718093442347575, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/huge_test.c" }}
  6334. ,{ "pid":12345, "tid":7, "ts":1718093442347574, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/huge_test.c" }}
  6335. ,{ "pid":12345, "tid":7, "ts":1718093442347645, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6336. ,{ "pid":12345, "tid":7, "ts":1718093442347721, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/pthread_support.c" }}
  6337. ,{ "pid":12345, "tid":7, "ts":1718093442347719, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/pthread_support.c" }}
  6338. ,{ "pid":12345, "tid":7, "ts":1718093442347785, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6339. ,{ "pid":12345, "tid":7, "ts":1718093442347854, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/new_hblk.c" }}
  6340. ,{ "pid":12345, "tid":7, "ts":1718093442347852, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/new_hblk.c" }}
  6341. ,{ "pid":12345, "tid":7, "ts":1718093442347929, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6342. ,{ "pid":12345, "tid":7, "ts":1718093442348024, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/test_and_set_t_is_char.h" }}
  6343. ,{ "pid":12345, "tid":7, "ts":1718093442348021, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/test_and_set_t_is_char.h" }}
  6344. ,{ "pid":12345, "tid":7, "ts":1718093442348085, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6345. ,{ "pid":12345, "tid":7, "ts":1718093442348160, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ordered_except_wr.h" }}
  6346. ,{ "pid":12345, "tid":7, "ts":1718093442348158, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ordered_except_wr.h" }}
  6347. ,{ "pid":12345, "tid":7, "ts":1718093442348224, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6348. ,{ "pid":12345, "tid":7, "ts":1718093442348302, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_atomic_store.h" }}
  6349. ,{ "pid":12345, "tid":7, "ts":1718093442348300, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_atomic_store.h" }}
  6350. ,{ "pid":12345, "tid":7, "ts":1718093442348379, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6351. ,{ "pid":12345, "tid":7, "ts":1718093442348453, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_acquire_release_volatile.h" }}
  6352. ,{ "pid":12345, "tid":7, "ts":1718093442348451, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_acquire_release_volatile.h" }}
  6353. ,{ "pid":12345, "tid":7, "ts":1718093442348526, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6354. ,{ "pid":12345, "tid":7, "ts":1718093442348606, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/atomic_load.h" }}
  6355. ,{ "pid":12345, "tid":7, "ts":1718093442348604, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/atomic_load.h" }}
  6356. ,{ "pid":12345, "tid":7, "ts":1718093442348678, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6357. ,{ "pid":12345, "tid":7, "ts":1718093442348746, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/generic_pthread.h" }}
  6358. ,{ "pid":12345, "tid":7, "ts":1718093442348738, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/generic_pthread.h" }}
  6359. ,{ "pid":12345, "tid":7, "ts":1718093442348812, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6360. ,{ "pid":12345, "tid":7, "ts":1718093442348886, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/m68k.h" }}
  6361. ,{ "pid":12345, "tid":7, "ts":1718093442348885, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/m68k.h" }}
  6362. ,{ "pid":12345, "tid":7, "ts":1718093442348962, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6363. ,{ "pid":12345, "tid":7, "ts":1718093442349037, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic-arithm.h" }}
  6364. ,{ "pid":12345, "tid":7, "ts":1718093442349035, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic-arithm.h" }}
  6365. ,{ "pid":12345, "tid":7, "ts":1718093442349138, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6366. ,{ "pid":12345, "tid":7, "ts":1718093442349238, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/armcc/arm_v6.h" }}
  6367. ,{ "pid":12345, "tid":7, "ts":1718093442349223, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/armcc/arm_v6.h" }}
  6368. ,{ "pid":12345, "tid":7, "ts":1718093442349314, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6369. ,{ "pid":12345, "tid":7, "ts":1718093442349378, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/generalize.h" }}
  6370. ,{ "pid":12345, "tid":7, "ts":1718093442349377, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/generalize.h" }}
  6371. ,{ "pid":12345, "tid":7, "ts":1718093442349440, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6372. ,{ "pid":12345, "tid":7, "ts":1718093442349507, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops.c" }}
  6373. ,{ "pid":12345, "tid":7, "ts":1718093442349506, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops.c" }}
  6374. ,{ "pid":12345, "tid":7, "ts":1718093442349572, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6375. ,{ "pid":12345, "tid":7, "ts":1718093442349629, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/thread_local_alloc.h" }}
  6376. ,{ "pid":12345, "tid":7, "ts":1718093442349628, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/thread_local_alloc.h" }}
  6377. ,{ "pid":12345, "tid":7, "ts":1718093442349698, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6378. ,{ "pid":12345, "tid":7, "ts":1718093442349803, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6379. ,{ "pid":12345, "tid":7, "ts":1718093442349888, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/dbg_mlc.h" }}
  6380. ,{ "pid":12345, "tid":7, "ts":1718093442349881, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/dbg_mlc.h" }}
  6381. ,{ "pid":12345, "tid":7, "ts":1718093442349964, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6382. ,{ "pid":12345, "tid":7, "ts":1718093442350039, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_vector.h" }}
  6383. ,{ "pid":12345, "tid":7, "ts":1718093442350037, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_vector.h" }}
  6384. ,{ "pid":12345, "tid":7, "ts":1718093442350122, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6385. ,{ "pid":12345, "tid":7, "ts":1718093442350203, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_gcj.h" }}
  6386. ,{ "pid":12345, "tid":7, "ts":1718093442350201, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_gcj.h" }}
  6387. ,{ "pid":12345, "tid":7, "ts":1718093442350282, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6388. ,{ "pid":12345, "tid":7, "ts":1718093442350371, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_allocator.h" }}
  6389. ,{ "pid":12345, "tid":7, "ts":1718093442350369, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_allocator.h" }}
  6390. ,{ "pid":12345, "tid":7, "ts":1718093442350425, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6391. ,{ "pid":12345, "tid":7, "ts":1718093442350735, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.TundraBackend.dll" }}
  6392. ,{ "pid":12345, "tid":7, "ts":1718093442350628, "dur":271, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core-FeaturesChecked.txt" }}
  6393. ,{ "pid":12345, "tid":7, "ts":1718093442350963, "dur":195, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.TilemapModule-FeaturesChecked.txt" }}
  6394. ,{ "pid":12345, "tid":7, "ts":1718093442351158, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6395. ,{ "pid":12345, "tid":7, "ts":1718093442351233, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.WinRTCore.dll" }}
  6396. ,{ "pid":12345, "tid":7, "ts":1718093442351232, "dur":277, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.WinRTCore-FeaturesChecked.txt" }}
  6397. ,{ "pid":12345, "tid":7, "ts":1718093442351583, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Data.dll" }}
  6398. ,{ "pid":12345, "tid":7, "ts":1718093442351580, "dur":178, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Data-FeaturesChecked.txt" }}
  6399. ,{ "pid":12345, "tid":7, "ts":1718093442351794, "dur":197, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.AppleMacosStub-FeaturesChecked.txt" }}
  6400. ,{ "pid":12345, "tid":7, "ts":1718093442351991, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6401. ,{ "pid":12345, "tid":7, "ts":1718093442352085, "dur":236, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Xml.Linq-FeaturesChecked.txt" }}
  6402. ,{ "pid":12345, "tid":7, "ts":1718093442352342, "dur":281, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/I18N-FeaturesChecked.txt" }}
  6403. ,{ "pid":12345, "tid":7, "ts":1718093442352655, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/GoogleMobileAds.Core.dll" }}
  6404. ,{ "pid":12345, "tid":7, "ts":1718093442352653, "dur":396, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Core-FeaturesChecked.txt" }}
  6405. ,{ "pid":12345, "tid":7, "ts":1718093442353142, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Environments.Internal.dll" }}
  6406. ,{ "pid":12345, "tid":7, "ts":1718093442353085, "dur":378, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Environments.Internal-FeaturesChecked.txt" }}
  6407. ,{ "pid":12345, "tid":7, "ts":1718093442353531, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.InputLegacyModule.dll" }}
  6408. ,{ "pid":12345, "tid":7, "ts":1718093442353511, "dur":364, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.InputLegacyModule-FeaturesChecked.txt" }}
  6409. ,{ "pid":12345, "tid":7, "ts":1718093442353936, "dur":325, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Advertisements-FeaturesChecked.txt" }}
  6410. ,{ "pid":12345, "tid":7, "ts":1718093442354357, "dur":281, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.CoreModule-FeaturesChecked.txt" }}
  6411. ,{ "pid":12345, "tid":7, "ts":1718093442354638, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6412. ,{ "pid":12345, "tid":7, "ts":1718093442354920, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/NiceIO.dll" }}
  6413. ,{ "pid":12345, "tid":7, "ts":1718093442355126, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.Options.dll" }}
  6414. ,{ "pid":12345, "tid":7, "ts":1718093442354743, "dur":436, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.AndroidJNIModule-FeaturesChecked.txt" }}
  6415. ,{ "pid":12345, "tid":7, "ts":1718093442355408, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.pdb" }}
  6416. ,{ "pid":12345, "tid":7, "ts":1718093442355224, "dur":542, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Internal-FeaturesChecked.txt" }}
  6417. ,{ "pid":12345, "tid":7, "ts":1718093442356296, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Scheduler.dll" }}
  6418. ,{ "pid":12345, "tid":7, "ts":1718093442356361, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Telemetry.dll" }}
  6419. ,{ "pid":12345, "tid":7, "ts":1718093442356652, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.dll" }}
  6420. ,{ "pid":12345, "tid":7, "ts":1718093442355811, "dur":1356, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"GenerateNativePluginsForAssemblies Library/Bee/artifacts/iOS/AsyncPluginsFromLinker" }}
  6421. ,{ "pid":12345, "tid":7, "ts":1718093442357167, "dur":189, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6422. ,{ "pid":12345, "tid":7, "ts":1718093442357529, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6423. ,{ "pid":12345, "tid":7, "ts":1718093442357628, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Windows/Include/C/Baselib_DynamicLibrary.inl.h" }}
  6424. ,{ "pid":12345, "tid":7, "ts":1718093442357626, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Windows/Include/C/Baselib_DynamicLibrary.inl.h" }}
  6425. ,{ "pid":12345, "tid":7, "ts":1718093442357712, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6426. ,{ "pid":12345, "tid":7, "ts":1718093442357790, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WebGL/Include/BaselibPlatformSpecificEnvironment.h" }}
  6427. ,{ "pid":12345, "tid":7, "ts":1718093442357788, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WebGL/Include/BaselibPlatformSpecificEnvironment.h" }}
  6428. ,{ "pid":12345, "tid":7, "ts":1718093442357873, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6429. ,{ "pid":12345, "tid":7, "ts":1718093442357978, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/VisionOS/Include/BaselibPlatformSpecificEnvironment.h" }}
  6430. ,{ "pid":12345, "tid":7, "ts":1718093442357977, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/VisionOS/Include/BaselibPlatformSpecificEnvironment.h" }}
  6431. ,{ "pid":12345, "tid":7, "ts":1718093442358043, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6432. ,{ "pid":12345, "tid":7, "ts":1718093442358118, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_DynamicLibrary.inl.h" }}
  6433. ,{ "pid":12345, "tid":7, "ts":1718093442358117, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_DynamicLibrary.inl.h" }}
  6434. ,{ "pid":12345, "tid":7, "ts":1718093442358291, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6435. ,{ "pid":12345, "tid":7, "ts":1718093442358364, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/OSX/Include/C/Baselib_DynamicLibrary.inl.h" }}
  6436. ,{ "pid":12345, "tid":7, "ts":1718093442358362, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/OSX/Include/C/Baselib_DynamicLibrary.inl.h" }}
  6437. ,{ "pid":12345, "tid":7, "ts":1718093442358432, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6438. ,{ "pid":12345, "tid":7, "ts":1718093442358507, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Linux/Include/C/Baselib_DynamicLibrary.inl.h" }}
  6439. ,{ "pid":12345, "tid":7, "ts":1718093442358505, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Linux/Include/C/Baselib_DynamicLibrary.inl.h" }}
  6440. ,{ "pid":12345, "tid":7, "ts":1718093442358571, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6441. ,{ "pid":12345, "tid":7, "ts":1718093442358659, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/IOS/Include/BaselibPlatformSpecificEnvironment.h" }}
  6442. ,{ "pid":12345, "tid":7, "ts":1718093442358657, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/IOS/Include/BaselibPlatformSpecificEnvironment.h" }}
  6443. ,{ "pid":12345, "tid":7, "ts":1718093442358722, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6444. ,{ "pid":12345, "tid":7, "ts":1718093442358841, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Android/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  6445. ,{ "pid":12345, "tid":7, "ts":1718093442358832, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Android/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  6446. ,{ "pid":12345, "tid":7, "ts":1718093442358916, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6447. ,{ "pid":12345, "tid":7, "ts":1718093442359002, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/VerifyPlatformEnvironment.h" }}
  6448. ,{ "pid":12345, "tid":7, "ts":1718093442359001, "dur":139, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/VerifyPlatformEnvironment.h" }}
  6449. ,{ "pid":12345, "tid":7, "ts":1718093442359140, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6450. ,{ "pid":12345, "tid":7, "ts":1718093442359222, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/CoreMacros.h" }}
  6451. ,{ "pid":12345, "tid":7, "ts":1718093442359221, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/CoreMacros.h" }}
  6452. ,{ "pid":12345, "tid":7, "ts":1718093442359292, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6453. ,{ "pid":12345, "tid":7, "ts":1718093442359379, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/ArchitectureDetection.h" }}
  6454. ,{ "pid":12345, "tid":7, "ts":1718093442359378, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/ArchitectureDetection.h" }}
  6455. ,{ "pid":12345, "tid":7, "ts":1718093442359478, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6456. ,{ "pid":12345, "tid":7, "ts":1718093442359572, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/tlsf_allocator.h" }}
  6457. ,{ "pid":12345, "tid":7, "ts":1718093442359571, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/tlsf_allocator.h" }}
  6458. ,{ "pid":12345, "tid":7, "ts":1718093442359681, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6459. ,{ "pid":12345, "tid":7, "ts":1718093442359804, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/ReentrantLock.h" }}
  6460. ,{ "pid":12345, "tid":7, "ts":1718093442359801, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/ReentrantLock.h" }}
  6461. ,{ "pid":12345, "tid":7, "ts":1718093442359873, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6462. ,{ "pid":12345, "tid":7, "ts":1718093442359960, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpmc_node_queue.h" }}
  6463. ,{ "pid":12345, "tid":7, "ts":1718093442359959, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpmc_node_queue.h" }}
  6464. ,{ "pid":12345, "tid":7, "ts":1718093442360050, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6465. ,{ "pid":12345, "tid":7, "ts":1718093442360110, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/page_allocator.inl.h" }}
  6466. ,{ "pid":12345, "tid":7, "ts":1718093442360109, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/page_allocator.inl.h" }}
  6467. ,{ "pid":12345, "tid":7, "ts":1718093442360183, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6468. ,{ "pid":12345, "tid":7, "ts":1718093442360269, "dur":145, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/Compiler/Msvc/AlgorithmMsvc.inl.h" }}
  6469. ,{ "pid":12345, "tid":7, "ts":1718093442360267, "dur":148, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/Compiler/Msvc/AlgorithmMsvc.inl.h" }}
  6470. ,{ "pid":12345, "tid":7, "ts":1718093442360416, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6471. ,{ "pid":12345, "tid":7, "ts":1718093442360549, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/fallback_allocator.h" }}
  6472. ,{ "pid":12345, "tid":7, "ts":1718093442360548, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/fallback_allocator.h" }}
  6473. ,{ "pid":12345, "tid":7, "ts":1718093442360644, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6474. ,{ "pid":12345, "tid":7, "ts":1718093442360756, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Baselib_DynamicLibrary.h" }}
  6475. ,{ "pid":12345, "tid":7, "ts":1718093442360754, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Baselib_DynamicLibrary.h" }}
  6476. ,{ "pid":12345, "tid":7, "ts":1718093442360880, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6477. ,{ "pid":12345, "tid":7, "ts":1718093442361007, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Msvc.h" }}
  6478. ,{ "pid":12345, "tid":7, "ts":1718093442361005, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_Msvc.h" }}
  6479. ,{ "pid":12345, "tid":7, "ts":1718093442361073, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6480. ,{ "pid":12345, "tid":7, "ts":1718093442361152, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_Semaphore_SemaphoreBased.inl.h" }}
  6481. ,{ "pid":12345, "tid":7, "ts":1718093442361151, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_Semaphore_SemaphoreBased.inl.h" }}
  6482. ,{ "pid":12345, "tid":7, "ts":1718093442361233, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6483. ,{ "pid":12345, "tid":7, "ts":1718093442361311, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_HighCapacitySemaphore_FutexBased.inl.h" }}
  6484. ,{ "pid":12345, "tid":7, "ts":1718093442361309, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_HighCapacitySemaphore_FutexBased.inl.h" }}
  6485. ,{ "pid":12345, "tid":7, "ts":1718093442361389, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6486. ,{ "pid":12345, "tid":7, "ts":1718093442361485, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Timer.h" }}
  6487. ,{ "pid":12345, "tid":7, "ts":1718093442361484, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Timer.h" }}
  6488. ,{ "pid":12345, "tid":7, "ts":1718093442361560, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6489. ,{ "pid":12345, "tid":7, "ts":1718093442361703, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_SourceLocation.h" }}
  6490. ,{ "pid":12345, "tid":7, "ts":1718093442361701, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_SourceLocation.h" }}
  6491. ,{ "pid":12345, "tid":7, "ts":1718093442361779, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6492. ,{ "pid":12345, "tid":7, "ts":1718093442361882, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Memory.h" }}
  6493. ,{ "pid":12345, "tid":7, "ts":1718093442361879, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Memory.h" }}
  6494. ,{ "pid":12345, "tid":7, "ts":1718093442361958, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6495. ,{ "pid":12345, "tid":7, "ts":1718093442362024, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_ErrorCode.h" }}
  6496. ,{ "pid":12345, "tid":7, "ts":1718093442362023, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_ErrorCode.h" }}
  6497. ,{ "pid":12345, "tid":7, "ts":1718093442362115, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6498. ,{ "pid":12345, "tid":7, "ts":1718093442362206, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Atomic_Macros.h" }}
  6499. ,{ "pid":12345, "tid":7, "ts":1718093442362204, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Atomic_Macros.h" }}
  6500. ,{ "pid":12345, "tid":7, "ts":1718093442362283, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6501. ,{ "pid":12345, "tid":7, "ts":1718093442362361, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/UnityLinker.runtimeconfig.json" }}
  6502. ,{ "pid":12345, "tid":7, "ts":1718093442362359, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker.runtimeconfig.json" }}
  6503. ,{ "pid":12345, "tid":7, "ts":1718093442362452, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6504. ,{ "pid":12345, "tid":7, "ts":1718093442362537, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.TinyProfiler.pdb" }}
  6505. ,{ "pid":12345, "tid":7, "ts":1718093442362536, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.TinyProfiler.pdb" }}
  6506. ,{ "pid":12345, "tid":7, "ts":1718093442362619, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6507. ,{ "pid":12345, "tid":7, "ts":1718093442362705, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Linker.Api.Output.pdb" }}
  6508. ,{ "pid":12345, "tid":7, "ts":1718093442362703, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Linker.Api.Output.pdb" }}
  6509. ,{ "pid":12345, "tid":7, "ts":1718093442362786, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6510. ,{ "pid":12345, "tid":7, "ts":1718093442362880, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.dll" }}
  6511. ,{ "pid":12345, "tid":7, "ts":1718093442362879, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.dll" }}
  6512. ,{ "pid":12345, "tid":7, "ts":1718093442362967, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6513. ,{ "pid":12345, "tid":7, "ts":1718093442363113, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Common.pdb" }}
  6514. ,{ "pid":12345, "tid":7, "ts":1718093442363112, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Common.pdb" }}
  6515. ,{ "pid":12345, "tid":7, "ts":1718093442363195, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6516. ,{ "pid":12345, "tid":7, "ts":1718093442363275, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.pdb" }}
  6517. ,{ "pid":12345, "tid":7, "ts":1718093442363274, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.pdb" }}
  6518. ,{ "pid":12345, "tid":7, "ts":1718093442363343, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6519. ,{ "pid":12345, "tid":7, "ts":1718093442363423, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WebGL.dll" }}
  6520. ,{ "pid":12345, "tid":7, "ts":1718093442363422, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WebGL.dll" }}
  6521. ,{ "pid":12345, "tid":7, "ts":1718093442363526, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6522. ,{ "pid":12345, "tid":7, "ts":1718093442363606, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.dll" }}
  6523. ,{ "pid":12345, "tid":7, "ts":1718093442363605, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.dll" }}
  6524. ,{ "pid":12345, "tid":7, "ts":1718093442363671, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6525. ,{ "pid":12345, "tid":7, "ts":1718093442363733, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.dll" }}
  6526. ,{ "pid":12345, "tid":7, "ts":1718093442363731, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.dll" }}
  6527. ,{ "pid":12345, "tid":7, "ts":1718093442363807, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6528. ,{ "pid":12345, "tid":7, "ts":1718093442363888, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Api.pdb" }}
  6529. ,{ "pid":12345, "tid":7, "ts":1718093442363886, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Api.pdb" }}
  6530. ,{ "pid":12345, "tid":7, "ts":1718093442363979, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6531. ,{ "pid":12345, "tid":7, "ts":1718093442364070, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Cecil.Visitor.dll" }}
  6532. ,{ "pid":12345, "tid":7, "ts":1718093442364068, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Cecil.Visitor.dll" }}
  6533. ,{ "pid":12345, "tid":7, "ts":1718093442364130, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6534. ,{ "pid":12345, "tid":7, "ts":1718093442364223, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.XPath.dll" }}
  6535. ,{ "pid":12345, "tid":7, "ts":1718093442364222, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.XPath.dll" }}
  6536. ,{ "pid":12345, "tid":7, "ts":1718093442364296, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6537. ,{ "pid":12345, "tid":7, "ts":1718093442364386, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.Linq.dll" }}
  6538. ,{ "pid":12345, "tid":7, "ts":1718093442364385, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.Linq.dll" }}
  6539. ,{ "pid":12345, "tid":7, "ts":1718093442364482, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6540. ,{ "pid":12345, "tid":7, "ts":1718093442364587, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Transactions.dll" }}
  6541. ,{ "pid":12345, "tid":7, "ts":1718093442364586, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Transactions.dll" }}
  6542. ,{ "pid":12345, "tid":7, "ts":1718093442364659, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6543. ,{ "pid":12345, "tid":7, "ts":1718093442364741, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Tasks.dll" }}
  6544. ,{ "pid":12345, "tid":7, "ts":1718093442364739, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Tasks.dll" }}
  6545. ,{ "pid":12345, "tid":7, "ts":1718093442364833, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6546. ,{ "pid":12345, "tid":7, "ts":1718093442364893, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Text.Json.dll" }}
  6547. ,{ "pid":12345, "tid":7, "ts":1718093442364892, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.Json.dll" }}
  6548. ,{ "pid":12345, "tid":7, "ts":1718093442364963, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6549. ,{ "pid":12345, "tid":7, "ts":1718093442365036, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ServiceModel.Web.dll" }}
  6550. ,{ "pid":12345, "tid":7, "ts":1718093442365035, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ServiceModel.Web.dll" }}
  6551. ,{ "pid":12345, "tid":7, "ts":1718093442365104, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6552. ,{ "pid":12345, "tid":7, "ts":1718093442365203, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.OpenSsl.dll" }}
  6553. ,{ "pid":12345, "tid":7, "ts":1718093442365200, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.OpenSsl.dll" }}
  6554. ,{ "pid":12345, "tid":7, "ts":1718093442365278, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6555. ,{ "pid":12345, "tid":7, "ts":1718093442365352, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Claims.dll" }}
  6556. ,{ "pid":12345, "tid":7, "ts":1718093442365351, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Claims.dll" }}
  6557. ,{ "pid":12345, "tid":7, "ts":1718093442365411, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6558. ,{ "pid":12345, "tid":7, "ts":1718093442365493, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Serialization.dll" }}
  6559. ,{ "pid":12345, "tid":7, "ts":1718093442365491, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Serialization.dll" }}
  6560. ,{ "pid":12345, "tid":7, "ts":1718093442365556, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6561. ,{ "pid":12345, "tid":7, "ts":1718093442365635, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Handles.dll" }}
  6562. ,{ "pid":12345, "tid":7, "ts":1718093442365633, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Handles.dll" }}
  6563. ,{ "pid":12345, "tid":7, "ts":1718093442365689, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6564. ,{ "pid":12345, "tid":7, "ts":1718093442365756, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Resources.Writer.dll" }}
  6565. ,{ "pid":12345, "tid":7, "ts":1718093442365755, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Resources.Writer.dll" }}
  6566. ,{ "pid":12345, "tid":7, "ts":1718093442365824, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6567. ,{ "pid":12345, "tid":7, "ts":1718093442365938, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.Extensions.dll" }}
  6568. ,{ "pid":12345, "tid":7, "ts":1718093442365937, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Extensions.dll" }}
  6569. ,{ "pid":12345, "tid":7, "ts":1718093442366003, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6570. ,{ "pid":12345, "tid":7, "ts":1718093442366081, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Private.Xml.Linq.dll" }}
  6571. ,{ "pid":12345, "tid":7, "ts":1718093442366080, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Private.Xml.Linq.dll" }}
  6572. ,{ "pid":12345, "tid":7, "ts":1718093442366149, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6573. ,{ "pid":12345, "tid":7, "ts":1718093442366254, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Numerics.Vectors.dll" }}
  6574. ,{ "pid":12345, "tid":7, "ts":1718093442366251, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Numerics.Vectors.dll" }}
  6575. ,{ "pid":12345, "tid":7, "ts":1718093442366322, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6576. ,{ "pid":12345, "tid":7, "ts":1718093442366404, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Sockets.dll" }}
  6577. ,{ "pid":12345, "tid":7, "ts":1718093442366397, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Sockets.dll" }}
  6578. ,{ "pid":12345, "tid":7, "ts":1718093442366474, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6579. ,{ "pid":12345, "tid":7, "ts":1718093442366584, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Primitives.dll" }}
  6580. ,{ "pid":12345, "tid":7, "ts":1718093442366582, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Primitives.dll" }}
  6581. ,{ "pid":12345, "tid":7, "ts":1718093442366650, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6582. ,{ "pid":12345, "tid":7, "ts":1718093442366746, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Http.Json.dll" }}
  6583. ,{ "pid":12345, "tid":7, "ts":1718093442366743, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Http.Json.dll" }}
  6584. ,{ "pid":12345, "tid":7, "ts":1718093442366831, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6585. ,{ "pid":12345, "tid":7, "ts":1718093442366924, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Linq.Expressions.dll" }}
  6586. ,{ "pid":12345, "tid":7, "ts":1718093442366922, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Linq.Expressions.dll" }}
  6587. ,{ "pid":12345, "tid":7, "ts":1718093442367003, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6588. ,{ "pid":12345, "tid":7, "ts":1718093442367086, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.IsolatedStorage.dll" }}
  6589. ,{ "pid":12345, "tid":7, "ts":1718093442367085, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.IsolatedStorage.dll" }}
  6590. ,{ "pid":12345, "tid":7, "ts":1718093442367165, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6591. ,{ "pid":12345, "tid":7, "ts":1718093442367249, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.dll" }}
  6592. ,{ "pid":12345, "tid":7, "ts":1718093442367248, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.dll" }}
  6593. ,{ "pid":12345, "tid":7, "ts":1718093442367308, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6594. ,{ "pid":12345, "tid":7, "ts":1718093442367384, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Globalization.dll" }}
  6595. ,{ "pid":12345, "tid":7, "ts":1718093442367382, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Globalization.dll" }}
  6596. ,{ "pid":12345, "tid":7, "ts":1718093442367454, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6597. ,{ "pid":12345, "tid":7, "ts":1718093442367571, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6598. ,{ "pid":12345, "tid":7, "ts":1718093442367662, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.TextWriterTraceListener.dll" }}
  6599. ,{ "pid":12345, "tid":7, "ts":1718093442367661, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.TextWriterTraceListener.dll" }}
  6600. ,{ "pid":12345, "tid":7, "ts":1718093442367723, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6601. ,{ "pid":12345, "tid":7, "ts":1718093442367798, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.Contracts.dll" }}
  6602. ,{ "pid":12345, "tid":7, "ts":1718093442367797, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.Contracts.dll" }}
  6603. ,{ "pid":12345, "tid":7, "ts":1718093442367874, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6604. ,{ "pid":12345, "tid":7, "ts":1718093442367946, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Configuration.dll" }}
  6605. ,{ "pid":12345, "tid":7, "ts":1718093442367944, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Configuration.dll" }}
  6606. ,{ "pid":12345, "tid":7, "ts":1718093442368019, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6607. ,{ "pid":12345, "tid":7, "ts":1718093442368097, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ComponentModel.Annotations.dll" }}
  6608. ,{ "pid":12345, "tid":7, "ts":1718093442368095, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ComponentModel.Annotations.dll" }}
  6609. ,{ "pid":12345, "tid":7, "ts":1718093442368176, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6610. ,{ "pid":12345, "tid":7, "ts":1718093442368252, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Buffers.dll" }}
  6611. ,{ "pid":12345, "tid":7, "ts":1718093442368251, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Buffers.dll" }}
  6612. ,{ "pid":12345, "tid":7, "ts":1718093442368333, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6613. ,{ "pid":12345, "tid":7, "ts":1718093442368400, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/netstandard.dll" }}
  6614. ,{ "pid":12345, "tid":7, "ts":1718093442368398, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/netstandard.dll" }}
  6615. ,{ "pid":12345, "tid":7, "ts":1718093442368457, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6616. ,{ "pid":12345, "tid":7, "ts":1718093442368546, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.Pdb.pdb" }}
  6617. ,{ "pid":12345, "tid":7, "ts":1718093442368544, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.Pdb.pdb" }}
  6618. ,{ "pid":12345, "tid":7, "ts":1718093442368613, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6619. ,{ "pid":12345, "tid":7, "ts":1718093442368699, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Microsoft.Win32.Registry.dll" }}
  6620. ,{ "pid":12345, "tid":7, "ts":1718093442368697, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.Win32.Registry.dll" }}
  6621. ,{ "pid":12345, "tid":7, "ts":1718093442368777, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6622. ,{ "pid":12345, "tid":7, "ts":1718093442368863, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libSystem.Security.Cryptography.Native.OpenSsl.dylib" }}
  6623. ,{ "pid":12345, "tid":7, "ts":1718093442368948, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6624. ,{ "pid":12345, "tid":7, "ts":1718093442369032, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libmscordbi.dylib" }}
  6625. ,{ "pid":12345, "tid":7, "ts":1718093442369116, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6626. ,{ "pid":12345, "tid":7, "ts":1718093442369213, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libclrjit.dylib" }}
  6627. ,{ "pid":12345, "tid":7, "ts":1718093442369297, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6628. ,{ "pid":12345, "tid":7, "ts":1718093442369365, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/il2cpp.deps.json" }}
  6629. ,{ "pid":12345, "tid":7, "ts":1718093442369364, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/il2cpp.deps.json" }}
  6630. ,{ "pid":12345, "tid":7, "ts":1718093442369471, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6631. ,{ "pid":12345, "tid":7, "ts":1718093442369538, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.TundraBackend.pdb" }}
  6632. ,{ "pid":12345, "tid":7, "ts":1718093442369536, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.TundraBackend.pdb" }}
  6633. ,{ "pid":12345, "tid":7, "ts":1718093442369608, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6634. ,{ "pid":12345, "tid":7, "ts":1718093442369670, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Windows.pdb" }}
  6635. ,{ "pid":12345, "tid":7, "ts":1718093442369669, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Windows.pdb" }}
  6636. ,{ "pid":12345, "tid":7, "ts":1718093442369750, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6637. ,{ "pid":12345, "tid":7, "ts":1718093442369826, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.UWP.dll" }}
  6638. ,{ "pid":12345, "tid":7, "ts":1718093442369825, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.UWP.dll" }}
  6639. ,{ "pid":12345, "tid":7, "ts":1718093442369893, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6640. ,{ "pid":12345, "tid":7, "ts":1718093442369994, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.LLVM.dll" }}
  6641. ,{ "pid":12345, "tid":7, "ts":1718093442369994, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.LLVM.dll" }}
  6642. ,{ "pid":12345, "tid":7, "ts":1718093442370087, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6643. ,{ "pid":12345, "tid":7, "ts":1718093442370168, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.GNU.dll" }}
  6644. ,{ "pid":12345, "tid":7, "ts":1718093442370166, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.GNU.dll" }}
  6645. ,{ "pid":12345, "tid":7, "ts":1718093442370224, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6646. ,{ "pid":12345, "tid":7, "ts":1718093442370300, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Android.dll" }}
  6647. ,{ "pid":12345, "tid":7, "ts":1718093442370299, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Android.dll" }}
  6648. ,{ "pid":12345, "tid":7, "ts":1718093442370363, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6649. ,{ "pid":12345, "tid":7, "ts":1718093442370475, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.NativeProgramSupport.dll" }}
  6650. ,{ "pid":12345, "tid":7, "ts":1718093442370474, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.NativeProgramSupport.dll" }}
  6651. ,{ "pid":12345, "tid":7, "ts":1718093442370560, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6652. ,{ "pid":12345, "tid":7, "ts":1718093442370641, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Core.dll" }}
  6653. ,{ "pid":12345, "tid":7, "ts":1718093442370640, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Core.dll" }}
  6654. ,{ "pid":12345, "tid":7, "ts":1718093442370726, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6655. ,{ "pid":12345, "tid":7, "ts":1718093442370812, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.dll" }}
  6656. ,{ "pid":12345, "tid":7, "ts":1718093442370809, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.dll" }}
  6657. ,{ "pid":12345, "tid":7, "ts":1718093442370866, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6658. ,{ "pid":12345, "tid":7, "ts":1718093442370945, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/WindowsBase.dll" }}
  6659. ,{ "pid":12345, "tid":7, "ts":1718093442370943, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/WindowsBase.dll" }}
  6660. ,{ "pid":12345, "tid":7, "ts":1718093442371011, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6661. ,{ "pid":12345, "tid":7, "ts":1718093442371098, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker" }}
  6662. ,{ "pid":12345, "tid":7, "ts":1718093442371161, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6663. ,{ "pid":12345, "tid":7, "ts":1718093442371250, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Linker.Api.Output.xml" }}
  6664. ,{ "pid":12345, "tid":7, "ts":1718093442371249, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Linker.Api.Output.xml" }}
  6665. ,{ "pid":12345, "tid":7, "ts":1718093442371330, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6666. ,{ "pid":12345, "tid":7, "ts":1718093442371427, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Shell.dll" }}
  6667. ,{ "pid":12345, "tid":7, "ts":1718093442371424, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Shell.dll" }}
  6668. ,{ "pid":12345, "tid":7, "ts":1718093442371486, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6669. ,{ "pid":12345, "tid":7, "ts":1718093442371608, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.CompilerServices.dll" }}
  6670. ,{ "pid":12345, "tid":7, "ts":1718093442371588, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.CompilerServices.dll" }}
  6671. ,{ "pid":12345, "tid":7, "ts":1718093442371688, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6672. ,{ "pid":12345, "tid":7, "ts":1718093442371779, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.pdb" }}
  6673. ,{ "pid":12345, "tid":7, "ts":1718093442371777, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.pdb" }}
  6674. ,{ "pid":12345, "tid":7, "ts":1718093442371860, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6675. ,{ "pid":12345, "tid":7, "ts":1718093442371935, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WebGL.pdb" }}
  6676. ,{ "pid":12345, "tid":7, "ts":1718093442371934, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WebGL.pdb" }}
  6677. ,{ "pid":12345, "tid":7, "ts":1718093442371995, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6678. ,{ "pid":12345, "tid":7, "ts":1718093442372116, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.pdb" }}
  6679. ,{ "pid":12345, "tid":7, "ts":1718093442372115, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.pdb" }}
  6680. ,{ "pid":12345, "tid":7, "ts":1718093442372187, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6681. ,{ "pid":12345, "tid":7, "ts":1718093442372256, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.iOS.dll" }}
  6682. ,{ "pid":12345, "tid":7, "ts":1718093442372254, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.iOS.dll" }}
  6683. ,{ "pid":12345, "tid":7, "ts":1718093442372318, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6684. ,{ "pid":12345, "tid":7, "ts":1718093442372409, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Android.pdb" }}
  6685. ,{ "pid":12345, "tid":7, "ts":1718093442372407, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Android.pdb" }}
  6686. ,{ "pid":12345, "tid":7, "ts":1718093442372488, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6687. ,{ "pid":12345, "tid":7, "ts":1718093442372561, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Api.dll" }}
  6688. ,{ "pid":12345, "tid":7, "ts":1718093442372560, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Api.dll" }}
  6689. ,{ "pid":12345, "tid":7, "ts":1718093442372638, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6690. ,{ "pid":12345, "tid":7, "ts":1718093442372703, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Api.Attributes.dll" }}
  6691. ,{ "pid":12345, "tid":7, "ts":1718093442372701, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Api.Attributes.dll" }}
  6692. ,{ "pid":12345, "tid":7, "ts":1718093442372773, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6693. ,{ "pid":12345, "tid":7, "ts":1718093442372861, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.Serialization.dll" }}
  6694. ,{ "pid":12345, "tid":7, "ts":1718093442372859, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.Serialization.dll" }}
  6695. ,{ "pid":12345, "tid":7, "ts":1718093442372953, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Web.HttpUtility.dll" }}
  6696. ,{ "pid":12345, "tid":7, "ts":1718093442372951, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Web.HttpUtility.dll" }}
  6697. ,{ "pid":12345, "tid":7, "ts":1718093442373039, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6698. ,{ "pid":12345, "tid":7, "ts":1718093442373110, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.ThreadPool.dll" }}
  6699. ,{ "pid":12345, "tid":7, "ts":1718093442373108, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.ThreadPool.dll" }}
  6700. ,{ "pid":12345, "tid":7, "ts":1718093442373187, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6701. ,{ "pid":12345, "tid":7, "ts":1718093442373271, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Overlapped.dll" }}
  6702. ,{ "pid":12345, "tid":7, "ts":1718093442373270, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Overlapped.dll" }}
  6703. ,{ "pid":12345, "tid":7, "ts":1718093442373348, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6704. ,{ "pid":12345, "tid":7, "ts":1718093442373423, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Text.Encoding.Extensions.dll" }}
  6705. ,{ "pid":12345, "tid":7, "ts":1718093442373422, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Text.Encoding.Extensions.dll" }}
  6706. ,{ "pid":12345, "tid":7, "ts":1718093442373488, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6707. ,{ "pid":12345, "tid":7, "ts":1718093442373583, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Principal.Windows.dll" }}
  6708. ,{ "pid":12345, "tid":7, "ts":1718093442373581, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Principal.Windows.dll" }}
  6709. ,{ "pid":12345, "tid":7, "ts":1718093442373665, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6710. ,{ "pid":12345, "tid":7, "ts":1718093442373746, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.Encoding.dll" }}
  6711. ,{ "pid":12345, "tid":7, "ts":1718093442373745, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.Encoding.dll" }}
  6712. ,{ "pid":12345, "tid":7, "ts":1718093442373827, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6713. ,{ "pid":12345, "tid":7, "ts":1718093442373911, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Serialization.Xml.dll" }}
  6714. ,{ "pid":12345, "tid":7, "ts":1718093442373909, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Serialization.Xml.dll" }}
  6715. ,{ "pid":12345, "tid":7, "ts":1718093442373994, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6716. ,{ "pid":12345, "tid":7, "ts":1718093442374086, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Loader.dll" }}
  6717. ,{ "pid":12345, "tid":7, "ts":1718093442374085, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Loader.dll" }}
  6718. ,{ "pid":12345, "tid":7, "ts":1718093442374162, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6719. ,{ "pid":12345, "tid":7, "ts":1718093442374254, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.dll" }}
  6720. ,{ "pid":12345, "tid":7, "ts":1718093442374253, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.dll" }}
  6721. ,{ "pid":12345, "tid":7, "ts":1718093442374334, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6722. ,{ "pid":12345, "tid":7, "ts":1718093442374424, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.TypeExtensions.dll" }}
  6723. ,{ "pid":12345, "tid":7, "ts":1718093442374423, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.TypeExtensions.dll" }}
  6724. ,{ "pid":12345, "tid":7, "ts":1718093442374486, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6725. ,{ "pid":12345, "tid":7, "ts":1718093442374592, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6726. ,{ "pid":12345, "tid":7, "ts":1718093442374681, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Private.DataContractSerialization.dll" }}
  6727. ,{ "pid":12345, "tid":7, "ts":1718093442374680, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Private.DataContractSerialization.dll" }}
  6728. ,{ "pid":12345, "tid":7, "ts":1718093442374763, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6729. ,{ "pid":12345, "tid":7, "ts":1718093442374879, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.WebSockets.Client.dll" }}
  6730. ,{ "pid":12345, "tid":7, "ts":1718093442374877, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.WebSockets.Client.dll" }}
  6731. ,{ "pid":12345, "tid":7, "ts":1718093442374949, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6732. ,{ "pid":12345, "tid":7, "ts":1718093442375028, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Security.dll" }}
  6733. ,{ "pid":12345, "tid":7, "ts":1718093442375027, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Security.dll" }}
  6734. ,{ "pid":12345, "tid":7, "ts":1718093442375107, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6735. ,{ "pid":12345, "tid":7, "ts":1718093442375196, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.NameResolution.dll" }}
  6736. ,{ "pid":12345, "tid":7, "ts":1718093442375195, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.NameResolution.dll" }}
  6737. ,{ "pid":12345, "tid":7, "ts":1718093442375271, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6738. ,{ "pid":12345, "tid":7, "ts":1718093442375349, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Memory.dll" }}
  6739. ,{ "pid":12345, "tid":7, "ts":1718093442375348, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Memory.dll" }}
  6740. ,{ "pid":12345, "tid":7, "ts":1718093442375451, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6741. ,{ "pid":12345, "tid":7, "ts":1718093442375530, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.Pipes.dll" }}
  6742. ,{ "pid":12345, "tid":7, "ts":1718093442375529, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.Pipes.dll" }}
  6743. ,{ "pid":12345, "tid":7, "ts":1718093442375645, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.FileSystem.DriveInfo.dll" }}
  6744. ,{ "pid":12345, "tid":7, "ts":1718093442375644, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.FileSystem.DriveInfo.dll" }}
  6745. ,{ "pid":12345, "tid":7, "ts":1718093442375712, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6746. ,{ "pid":12345, "tid":7, "ts":1718093442375814, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.Compression.dll" }}
  6747. ,{ "pid":12345, "tid":7, "ts":1718093442375813, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.Compression.dll" }}
  6748. ,{ "pid":12345, "tid":7, "ts":1718093442375886, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6749. ,{ "pid":12345, "tid":7, "ts":1718093442375995, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Dynamic.Runtime.dll" }}
  6750. ,{ "pid":12345, "tid":7, "ts":1718093442375993, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Dynamic.Runtime.dll" }}
  6751. ,{ "pid":12345, "tid":7, "ts":1718093442376082, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6752. ,{ "pid":12345, "tid":7, "ts":1718093442376170, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.Tools.dll" }}
  6753. ,{ "pid":12345, "tid":7, "ts":1718093442376169, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.Tools.dll" }}
  6754. ,{ "pid":12345, "tid":7, "ts":1718093442376242, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6755. ,{ "pid":12345, "tid":7, "ts":1718093442376304, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.Debug.dll" }}
  6756. ,{ "pid":12345, "tid":7, "ts":1718093442376303, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.Debug.dll" }}
  6757. ,{ "pid":12345, "tid":7, "ts":1718093442376386, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6758. ,{ "pid":12345, "tid":7, "ts":1718093442376500, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Console.dll" }}
  6759. ,{ "pid":12345, "tid":7, "ts":1718093442376499, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Console.dll" }}
  6760. ,{ "pid":12345, "tid":7, "ts":1718093442376562, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6761. ,{ "pid":12345, "tid":7, "ts":1718093442376652, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ComponentModel.DataAnnotations.dll" }}
  6762. ,{ "pid":12345, "tid":7, "ts":1718093442376651, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ComponentModel.DataAnnotations.dll" }}
  6763. ,{ "pid":12345, "tid":7, "ts":1718093442376729, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6764. ,{ "pid":12345, "tid":7, "ts":1718093442376828, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Collections.Concurrent.dll" }}
  6765. ,{ "pid":12345, "tid":7, "ts":1718093442376827, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Collections.Concurrent.dll" }}
  6766. ,{ "pid":12345, "tid":7, "ts":1718093442376891, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6767. ,{ "pid":12345, "tid":7, "ts":1718093442376986, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Newtonsoft.Json.dll" }}
  6768. ,{ "pid":12345, "tid":7, "ts":1718093442376985, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Newtonsoft.Json.dll" }}
  6769. ,{ "pid":12345, "tid":7, "ts":1718093442377084, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6770. ,{ "pid":12345, "tid":7, "ts":1718093442377173, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.Rocks.dll" }}
  6771. ,{ "pid":12345, "tid":7, "ts":1718093442377172, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.Rocks.dll" }}
  6772. ,{ "pid":12345, "tid":7, "ts":1718093442377250, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6773. ,{ "pid":12345, "tid":7, "ts":1718093442377327, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.dll" }}
  6774. ,{ "pid":12345, "tid":7, "ts":1718093442377325, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.dll" }}
  6775. ,{ "pid":12345, "tid":7, "ts":1718093442377404, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6776. ,{ "pid":12345, "tid":7, "ts":1718093442377491, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Microsoft.Bcl.HashCode.dll" }}
  6777. ,{ "pid":12345, "tid":7, "ts":1718093442377489, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Microsoft.Bcl.HashCode.dll" }}
  6778. ,{ "pid":12345, "tid":7, "ts":1718093442377568, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6779. ,{ "pid":12345, "tid":7, "ts":1718093442377639, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libSystem.Globalization.Native.dylib" }}
  6780. ,{ "pid":12345, "tid":7, "ts":1718093442377721, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6781. ,{ "pid":12345, "tid":7, "ts":1718093442377829, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libcoreclr.dylib" }}
  6782. ,{ "pid":12345, "tid":7, "ts":1718093442377905, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6783. ,{ "pid":12345, "tid":7, "ts":1718093442377994, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/il2cpp.dll" }}
  6784. ,{ "pid":12345, "tid":7, "ts":1718093442377993, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/il2cpp.dll" }}
  6785. ,{ "pid":12345, "tid":7, "ts":1718093442378058, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6786. ,{ "pid":12345, "tid":7, "ts":1718093442378137, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.VisualStudioSolution.dll" }}
  6787. ,{ "pid":12345, "tid":7, "ts":1718093442378135, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.VisualStudioSolution.dll" }}
  6788. ,{ "pid":12345, "tid":7, "ts":1718093442378206, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6789. ,{ "pid":12345, "tid":7, "ts":1718093442378290, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Xcode.dll" }}
  6790. ,{ "pid":12345, "tid":7, "ts":1718093442378288, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Xcode.dll" }}
  6791. ,{ "pid":12345, "tid":7, "ts":1718093442378354, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6792. ,{ "pid":12345, "tid":7, "ts":1718093442378444, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.VisionOS.dll" }}
  6793. ,{ "pid":12345, "tid":7, "ts":1718093442378442, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.VisionOS.dll" }}
  6794. ,{ "pid":12345, "tid":7, "ts":1718093442378528, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6795. ,{ "pid":12345, "tid":7, "ts":1718093442378612, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.MacOS.dll" }}
  6796. ,{ "pid":12345, "tid":7, "ts":1718093442378611, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.MacOS.dll" }}
  6797. ,{ "pid":12345, "tid":7, "ts":1718093442378688, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6798. ,{ "pid":12345, "tid":7, "ts":1718093442378791, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.IOS.dll" }}
  6799. ,{ "pid":12345, "tid":7, "ts":1718093442378790, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.IOS.dll" }}
  6800. ,{ "pid":12345, "tid":7, "ts":1718093442378854, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6801. ,{ "pid":12345, "tid":7, "ts":1718093442378937, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.EmbeddedLinux.pdb" }}
  6802. ,{ "pid":12345, "tid":7, "ts":1718093442378991, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6803. ,{ "pid":12345, "tid":7, "ts":1718093442379072, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Stevedore.Program.pdb" }}
  6804. ,{ "pid":12345, "tid":7, "ts":1718093442379070, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Stevedore.Program.pdb" }}
  6805. ,{ "pid":12345, "tid":7, "ts":1718093442379231, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6806. ,{ "pid":12345, "tid":7, "ts":1718093442379337, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.BeeDriver.xml" }}
  6807. ,{ "pid":12345, "tid":7, "ts":1718093442379336, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.BeeDriver.xml" }}
  6808. ,{ "pid":12345, "tid":7, "ts":1718093442379413, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6809. ,{ "pid":12345, "tid":7, "ts":1718093442379503, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.Api.Output.xml" }}
  6810. ,{ "pid":12345, "tid":7, "ts":1718093442379502, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.Api.Output.xml" }}
  6811. ,{ "pid":12345, "tid":7, "ts":1718093442379574, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6812. ,{ "pid":12345, "tid":7, "ts":1718093442379670, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6813. ,{ "pid":12345, "tid":7, "ts":1718093442379755, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/libil2cpp.a" }}
  6814. ,{ "pid":12345, "tid":7, "ts":1718093442379839, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6815. ,{ "pid":12345, "tid":7, "ts":1718093442379919, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone Tests/Unity-iPhone Tests-Info.plist" }}
  6816. ,{ "pid":12345, "tid":7, "ts":1718093442379997, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6817. ,{ "pid":12345, "tid":7, "ts":1718093442380075, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UnityTrampolineConfigure.h" }}
  6818. ,{ "pid":12345, "tid":7, "ts":1718093442380073, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityTrampolineConfigure.h" }}
  6819. ,{ "pid":12345, "tid":7, "ts":1718093442380150, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6820. ,{ "pid":12345, "tid":7, "ts":1718093442380229, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UnityAppController+Rendering.h" }}
  6821. ,{ "pid":12345, "tid":7, "ts":1718093442380228, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityAppController+Rendering.h" }}
  6822. ,{ "pid":12345, "tid":7, "ts":1718093442380293, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6823. ,{ "pid":12345, "tid":7, "ts":1718093442380371, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityReplayKit_Scripting.mm" }}
  6824. ,{ "pid":12345, "tid":7, "ts":1718093442380448, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6825. ,{ "pid":12345, "tid":7, "ts":1718093442380567, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/UnityForwardDecls.h" }}
  6826. ,{ "pid":12345, "tid":7, "ts":1718093442380566, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityForwardDecls.h" }}
  6827. ,{ "pid":12345, "tid":7, "ts":1718093442380638, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6828. ,{ "pid":12345, "tid":7, "ts":1718093442380714, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/IUnityGraphicsMetal.h" }}
  6829. ,{ "pid":12345, "tid":7, "ts":1718093442380712, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/IUnityGraphicsMetal.h" }}
  6830. ,{ "pid":12345, "tid":7, "ts":1718093442380810, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6831. ,{ "pid":12345, "tid":7, "ts":1718093442380894, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/DeviceSettings.mm" }}
  6832. ,{ "pid":12345, "tid":7, "ts":1718093442380963, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6833. ,{ "pid":12345, "tid":7, "ts":1718093442381065, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/CameraCapture.h" }}
  6834. ,{ "pid":12345, "tid":7, "ts":1718093442381064, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/CameraCapture.h" }}
  6835. ,{ "pid":12345, "tid":7, "ts":1718093442381150, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6836. ,{ "pid":12345, "tid":7, "ts":1718093442381243, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase+visionOS.mm" }}
  6837. ,{ "pid":12345, "tid":7, "ts":1718093442381318, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6838. ,{ "pid":12345, "tid":7, "ts":1718093442381402, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityView.h" }}
  6839. ,{ "pid":12345, "tid":7, "ts":1718093442381400, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView.h" }}
  6840. ,{ "pid":12345, "tid":7, "ts":1718093442381456, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6841. ,{ "pid":12345, "tid":7, "ts":1718093442381547, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityAppController+ViewHandling.mm" }}
  6842. ,{ "pid":12345, "tid":7, "ts":1718093442381625, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6843. ,{ "pid":12345, "tid":7, "ts":1718093442381702, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/Keyboard.h" }}
  6844. ,{ "pid":12345, "tid":7, "ts":1718093442381701, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/Keyboard.h" }}
  6845. ,{ "pid":12345, "tid":7, "ts":1718093442381755, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6846. ,{ "pid":12345, "tid":7, "ts":1718093442381869, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6847. ,{ "pid":12345, "tid":7, "ts":1718093442381989, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6848. ,{ "pid":12345, "tid":7, "ts":1718093442382067, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/iPhone_Sensors.mm" }}
  6849. ,{ "pid":12345, "tid":7, "ts":1718093442382167, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6850. ,{ "pid":12345, "tid":7, "ts":1718093442382256, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/AndroidRuntime.h" }}
  6851. ,{ "pid":12345, "tid":7, "ts":1718093442382255, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/AndroidRuntime.h" }}
  6852. ,{ "pid":12345, "tid":7, "ts":1718093442382326, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6853. ,{ "pid":12345, "tid":7, "ts":1718093442382407, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/AssemblyName.h" }}
  6854. ,{ "pid":12345, "tid":7, "ts":1718093442382406, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/AssemblyName.h" }}
  6855. ,{ "pid":12345, "tid":7, "ts":1718093442382483, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6856. ,{ "pid":12345, "tid":7, "ts":1718093442382556, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Class.cpp" }}
  6857. ,{ "pid":12345, "tid":7, "ts":1718093442382555, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Class.cpp" }}
  6858. ,{ "pid":12345, "tid":7, "ts":1718093442382629, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6859. ,{ "pid":12345, "tid":7, "ts":1718093442382714, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/COM.h" }}
  6860. ,{ "pid":12345, "tid":7, "ts":1718093442382712, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/COM.h" }}
  6861. ,{ "pid":12345, "tid":7, "ts":1718093442382785, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6862. ,{ "pid":12345, "tid":7, "ts":1718093442382868, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Domain.h" }}
  6863. ,{ "pid":12345, "tid":7, "ts":1718093442382867, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Domain.h" }}
  6864. ,{ "pid":12345, "tid":7, "ts":1718093442382936, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6865. ,{ "pid":12345, "tid":7, "ts":1718093442382999, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Exception.h" }}
  6866. ,{ "pid":12345, "tid":7, "ts":1718093442382997, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Exception.h" }}
  6867. ,{ "pid":12345, "tid":7, "ts":1718093442383050, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6868. ,{ "pid":12345, "tid":7, "ts":1718093442383113, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GenericContainer.cpp" }}
  6869. ,{ "pid":12345, "tid":7, "ts":1718093442383112, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GenericContainer.cpp" }}
  6870. ,{ "pid":12345, "tid":7, "ts":1718093442383181, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6871. ,{ "pid":12345, "tid":7, "ts":1718093442383265, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Il2CppHStringReference.h" }}
  6872. ,{ "pid":12345, "tid":7, "ts":1718093442383263, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Il2CppHStringReference.h" }}
  6873. ,{ "pid":12345, "tid":7, "ts":1718093442383338, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6874. ,{ "pid":12345, "tid":7, "ts":1718093442383397, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/LastError.h" }}
  6875. ,{ "pid":12345, "tid":7, "ts":1718093442383395, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/LastError.h" }}
  6876. ,{ "pid":12345, "tid":7, "ts":1718093442383477, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6877. ,{ "pid":12345, "tid":7, "ts":1718093442383551, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MetadataAlloc.cpp" }}
  6878. ,{ "pid":12345, "tid":7, "ts":1718093442383549, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MetadataAlloc.cpp" }}
  6879. ,{ "pid":12345, "tid":7, "ts":1718093442383623, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6880. ,{ "pid":12345, "tid":7, "ts":1718093442383694, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MetadataLock.h" }}
  6881. ,{ "pid":12345, "tid":7, "ts":1718093442383692, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MetadataLock.h" }}
  6882. ,{ "pid":12345, "tid":7, "ts":1718093442383757, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6883. ,{ "pid":12345, "tid":7, "ts":1718093442383835, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Monitor.h" }}
  6884. ,{ "pid":12345, "tid":7, "ts":1718093442383833, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Monitor.h" }}
  6885. ,{ "pid":12345, "tid":7, "ts":1718093442383896, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6886. ,{ "pid":12345, "tid":7, "ts":1718093442383974, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Path.cpp" }}
  6887. ,{ "pid":12345, "tid":7, "ts":1718093442383973, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Path.cpp" }}
  6888. ,{ "pid":12345, "tid":7, "ts":1718093442384052, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6889. ,{ "pid":12345, "tid":7, "ts":1718093442384119, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsNativeObject.m" }}
  6890. ,{ "pid":12345, "tid":7, "ts":1718093442384181, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6891. ,{ "pid":12345, "tid":7, "ts":1718093442384262, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Profiler.h" }}
  6892. ,{ "pid":12345, "tid":7, "ts":1718093442384260, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Profiler.h" }}
  6893. ,{ "pid":12345, "tid":7, "ts":1718093442384329, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6894. ,{ "pid":12345, "tid":7, "ts":1718093442384423, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/RCW.h" }}
  6895. ,{ "pid":12345, "tid":7, "ts":1718093442384422, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/RCW.h" }}
  6896. ,{ "pid":12345, "tid":7, "ts":1718093442384475, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6897. ,{ "pid":12345, "tid":7, "ts":1718093442384551, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ScopedThreadAttacher.h" }}
  6898. ,{ "pid":12345, "tid":7, "ts":1718093442384541, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ScopedThreadAttacher.h" }}
  6899. ,{ "pid":12345, "tid":7, "ts":1718093442384628, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6900. ,{ "pid":12345, "tid":7, "ts":1718093442384693, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ThreadPoolMs.cpp" }}
  6901. ,{ "pid":12345, "tid":7, "ts":1718093442384692, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ThreadPoolMs.cpp" }}
  6902. ,{ "pid":12345, "tid":7, "ts":1718093442384756, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6903. ,{ "pid":12345, "tid":7, "ts":1718093442384830, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/WaitHandle.h" }}
  6904. ,{ "pid":12345, "tid":7, "ts":1718093442384829, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/WaitHandle.h" }}
  6905. ,{ "pid":12345, "tid":7, "ts":1718093442384906, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6906. ,{ "pid":12345, "tid":7, "ts":1718093442385023, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6907. ,{ "pid":12345, "tid":7, "ts":1718093442385121, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libmono/config/il2cpp-config-mono-web.h" }}
  6908. ,{ "pid":12345, "tid":7, "ts":1718093442385291, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/LaunchScreen-iPad.storyboard" }}
  6909. ,{ "pid":12345, "tid":7, "ts":1718093442385419, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Settings-58.png" }}
  6910. ,{ "pid":12345, "tid":7, "ts":1718093442385650, "dur":2828, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Settings-58.png" }}
  6911. ,{ "pid":12345, "tid":7, "ts":1718093442388590, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Settings-58.png" }}
  6912. ,{ "pid":12345, "tid":7, "ts":1718093442389876, "dur":83, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }}
  6913. ,{ "pid":12345, "tid":7, "ts":1718093442388803, "dur":1178, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Settings-58.png" }}
  6914. ,{ "pid":12345, "tid":7, "ts":1718093442391144, "dur":51, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }}
  6915. ,{ "pid":12345, "tid":7, "ts":1718093442390085, "dur":1148, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Notification-40.png" }}
  6916. ,{ "pid":12345, "tid":7, "ts":1718093442391314, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsUtilities.m" }}
  6917. ,{ "pid":12345, "tid":7, "ts":1718093442391377, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6918. ,{ "pid":12345, "tid":7, "ts":1718093442391631, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.purchasing/Plugins/UnityPurchasing/iOS/UnityPurchasing.m" }}
  6919. ,{ "pid":12345, "tid":7, "ts":1718093442391697, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6920. ,{ "pid":12345, "tid":7, "ts":1718093442391767, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsLoadListener.mm" }}
  6921. ,{ "pid":12345, "tid":7, "ts":1718093442391909, "dur":6104, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets2.resource" }}
  6922. ,{ "pid":12345, "tid":7, "ts":1718093442398047, "dur":67, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__10.cpp" }}
  6923. ,{ "pid":12345, "tid":7, "ts":1718093442398163, "dur":86, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__9.cpp" }}
  6924. ,{ "pid":12345, "tid":7, "ts":1718093442398252, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.UIElementsModule__12.cpp" }}
  6925. ,{ "pid":12345, "tid":7, "ts":1718093442398251, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.UIElementsModule__12.cpp" }}
  6926. ,{ "pid":12345, "tid":7, "ts":1718093442398320, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6927. ,{ "pid":12345, "tid":7, "ts":1718093442398396, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppCCalculateFieldValues1.cpp" }}
  6928. ,{ "pid":12345, "tid":7, "ts":1718093442398394, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppCCalculateFieldValues1.cpp" }}
  6929. ,{ "pid":12345, "tid":7, "ts":1718093442398468, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6930. ,{ "pid":12345, "tid":7, "ts":1718093442398557, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__12.cpp" }}
  6931. ,{ "pid":12345, "tid":7, "ts":1718093442398557, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__12.cpp" }}
  6932. ,{ "pid":12345, "tid":7, "ts":1718093442398628, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6933. ,{ "pid":12345, "tid":7, "ts":1718093442398700, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib_CodeGen.c" }}
  6934. ,{ "pid":12345, "tid":7, "ts":1718093442398699, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib_CodeGen.c" }}
  6935. ,{ "pid":12345, "tid":7, "ts":1718093442398770, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6936. ,{ "pid":12345, "tid":7, "ts":1718093442398855, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__58.cpp" }}
  6937. ,{ "pid":12345, "tid":7, "ts":1718093442398854, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__58.cpp" }}
  6938. ,{ "pid":12345, "tid":7, "ts":1718093442398933, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6939. ,{ "pid":12345, "tid":7, "ts":1718093442399023, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__8.cpp" }}
  6940. ,{ "pid":12345, "tid":7, "ts":1718093442399022, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__8.cpp" }}
  6941. ,{ "pid":12345, "tid":7, "ts":1718093442399094, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6942. ,{ "pid":12345, "tid":7, "ts":1718093442399162, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Core__2.cpp" }}
  6943. ,{ "pid":12345, "tid":7, "ts":1718093442399161, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Core__2.cpp" }}
  6944. ,{ "pid":12345, "tid":7, "ts":1718093442399233, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6945. ,{ "pid":12345, "tid":7, "ts":1718093442399315, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__7.cpp" }}
  6946. ,{ "pid":12345, "tid":7, "ts":1718093442399314, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__7.cpp" }}
  6947. ,{ "pid":12345, "tid":7, "ts":1718093442399387, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6948. ,{ "pid":12345, "tid":7, "ts":1718093442399466, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__15.cpp" }}
  6949. ,{ "pid":12345, "tid":7, "ts":1718093442399465, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__15.cpp" }}
  6950. ,{ "pid":12345, "tid":7, "ts":1718093442399532, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6951. ,{ "pid":12345, "tid":7, "ts":1718093442399615, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Configuration.cpp" }}
  6952. ,{ "pid":12345, "tid":7, "ts":1718093442399614, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Configuration.cpp" }}
  6953. ,{ "pid":12345, "tid":7, "ts":1718093442399687, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6954. ,{ "pid":12345, "tid":7, "ts":1718093442399759, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__32.cpp" }}
  6955. ,{ "pid":12345, "tid":7, "ts":1718093442399758, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__32.cpp" }}
  6956. ,{ "pid":12345, "tid":7, "ts":1718093442399828, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6957. ,{ "pid":12345, "tid":7, "ts":1718093442399911, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Scheduler_CodeGen.c" }}
  6958. ,{ "pid":12345, "tid":7, "ts":1718093442399910, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Scheduler_CodeGen.c" }}
  6959. ,{ "pid":12345, "tid":7, "ts":1718093442399991, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6960. ,{ "pid":12345, "tid":7, "ts":1718093442400063, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Internal.cpp" }}
  6961. ,{ "pid":12345, "tid":7, "ts":1718093442400062, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Internal.cpp" }}
  6962. ,{ "pid":12345, "tid":7, "ts":1718093442400123, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6963. ,{ "pid":12345, "tid":7, "ts":1718093442400207, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Xml__12.cpp" }}
  6964. ,{ "pid":12345, "tid":7, "ts":1718093442400205, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Xml__12.cpp" }}
  6965. ,{ "pid":12345, "tid":7, "ts":1718093442400289, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6966. ,{ "pid":12345, "tid":7, "ts":1718093442400379, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro__2.cpp" }}
  6967. ,{ "pid":12345, "tid":7, "ts":1718093442400376, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro__2.cpp" }}
  6968. ,{ "pid":12345, "tid":7, "ts":1718093442400444, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6969. ,{ "pid":12345, "tid":7, "ts":1718093442400519, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__11.cpp" }}
  6970. ,{ "pid":12345, "tid":7, "ts":1718093442400518, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__11.cpp" }}
  6971. ,{ "pid":12345, "tid":7, "ts":1718093442400579, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6972. ,{ "pid":12345, "tid":7, "ts":1718093442400699, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__9.cpp" }}
  6973. ,{ "pid":12345, "tid":7, "ts":1718093442400697, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__9.cpp" }}
  6974. ,{ "pid":12345, "tid":7, "ts":1718093442400761, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6975. ,{ "pid":12345, "tid":7, "ts":1718093442400830, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/AppleAuth.cpp" }}
  6976. ,{ "pid":12345, "tid":7, "ts":1718093442400829, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/AppleAuth.cpp" }}
  6977. ,{ "pid":12345, "tid":7, "ts":1718093442400894, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6978. ,{ "pid":12345, "tid":7, "ts":1718093442400979, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Core__4.cpp" }}
  6979. ,{ "pid":12345, "tid":7, "ts":1718093442401031, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6980. ,{ "pid":12345, "tid":7, "ts":1718093442401106, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Collections.cpp" }}
  6981. ,{ "pid":12345, "tid":7, "ts":1718093442401105, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Collections.cpp" }}
  6982. ,{ "pid":12345, "tid":7, "ts":1718093442401176, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6983. ,{ "pid":12345, "tid":7, "ts":1718093442401245, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.ScreenCaptureModule_CodeGen.c" }}
  6984. ,{ "pid":12345, "tid":7, "ts":1718093442401243, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.ScreenCaptureModule_CodeGen.c" }}
  6985. ,{ "pid":12345, "tid":7, "ts":1718093442401302, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6986. ,{ "pid":12345, "tid":7, "ts":1718093442401396, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6987. ,{ "pid":12345, "tid":7, "ts":1718093442403917, "dur":72, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }}
  6988. ,{ "pid":12345, "tid":7, "ts":1718093442401536, "dur":2463, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/level2" }}
  6989. ,{ "pid":12345, "tid":7, "ts":1718093442404009, "dur":72211, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  6990. ,{ "pid":12345, "tid":8, "ts":1718093442184420, "dur":92805, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  6991. ,{ "pid":12345, "tid":8, "ts":1718093442277227, "dur":1036, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  6992. ,{ "pid":12345, "tid":8, "ts":1718093442278263, "dur":1056, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  6993. ,{ "pid":12345, "tid":8, "ts":1718093442279320, "dur":962, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  6994. ,{ "pid":12345, "tid":8, "ts":1718093442280282, "dur":979, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  6995. ,{ "pid":12345, "tid":8, "ts":1718093442281262, "dur":1158, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  6996. ,{ "pid":12345, "tid":8, "ts":1718093442282420, "dur":22545, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  6997. ,{ "pid":12345, "tid":8, "ts":1718093442305030, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6998. ,{ "pid":12345, "tid":8, "ts":1718093442305127, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  6999. ,{ "pid":12345, "tid":8, "ts":1718093442305288, "dur":159, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7000. ,{ "pid":12345, "tid":8, "ts":1718093442305477, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7001. ,{ "pid":12345, "tid":8, "ts":1718093442305620, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7002. ,{ "pid":12345, "tid":8, "ts":1718093442305784, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7003. ,{ "pid":12345, "tid":8, "ts":1718093442305931, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7004. ,{ "pid":12345, "tid":8, "ts":1718093442306130, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7005. ,{ "pid":12345, "tid":8, "ts":1718093442306263, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/MuteSwitchDetection.aiff" }}
  7006. ,{ "pid":12345, "tid":8, "ts":1718093442306323, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7007. ,{ "pid":12345, "tid":8, "ts":1718093442306428, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftinterface" }}
  7008. ,{ "pid":12345, "tid":8, "ts":1718093442306501, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7009. ,{ "pid":12345, "tid":8, "ts":1718093442306610, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftinterface" }}
  7010. ,{ "pid":12345, "tid":8, "ts":1718093442306730, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7011. ,{ "pid":12345, "tid":8, "ts":1718093442306793, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBannerError.h" }}
  7012. ,{ "pid":12345, "tid":8, "ts":1718093442306788, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBannerError.h" }}
  7013. ,{ "pid":12345, "tid":8, "ts":1718093442306868, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7014. ,{ "pid":12345, "tid":8, "ts":1718093442307009, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionDetails.h" }}
  7015. ,{ "pid":12345, "tid":8, "ts":1718093442307008, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionDetails.h" }}
  7016. ,{ "pid":12345, "tid":8, "ts":1718093442307073, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7017. ,{ "pid":12345, "tid":8, "ts":1718093442307273, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7018. ,{ "pid":12345, "tid":8, "ts":1718093442307360, "dur":139, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowCompletionState.h" }}
  7019. ,{ "pid":12345, "tid":8, "ts":1718093442307359, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowCompletionState.h" }}
  7020. ,{ "pid":12345, "tid":8, "ts":1718093442307500, "dur":198, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7021. ,{ "pid":12345, "tid":8, "ts":1718093442307723, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsExtendedDelegate.h" }}
  7022. ,{ "pid":12345, "tid":8, "ts":1718093442307721, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsExtendedDelegate.h" }}
  7023. ,{ "pid":12345, "tid":8, "ts":1718093442307796, "dur":176, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7024. ,{ "pid":12345, "tid":8, "ts":1718093442307981, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAds-Swift.h" }}
  7025. ,{ "pid":12345, "tid":8, "ts":1718093442307980, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAds-Swift.h" }}
  7026. ,{ "pid":12345, "tid":8, "ts":1718093442308098, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7027. ,{ "pid":12345, "tid":8, "ts":1718093442308246, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONCustomEvent.h" }}
  7028. ,{ "pid":12345, "tid":8, "ts":1718093442308244, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONCustomEvent.h" }}
  7029. ,{ "pid":12345, "tid":8, "ts":1718093442308315, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7030. ,{ "pid":12345, "tid":8, "ts":1718093442308438, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSLoadOptions.h" }}
  7031. ,{ "pid":12345, "tid":8, "ts":1718093442308437, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSLoadOptions.h" }}
  7032. ,{ "pid":12345, "tid":8, "ts":1718093442308533, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7033. ,{ "pid":12345, "tid":8, "ts":1718093442308647, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/UnityFramework/PrivacyInfo.xcprivacy" }}
  7034. ,{ "pid":12345, "tid":8, "ts":1718093442308725, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7035. ,{ "pid":12345, "tid":8, "ts":1718093442308810, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/MethodDefinitionKey.h" }}
  7036. ,{ "pid":12345, "tid":8, "ts":1718093442308808, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/MethodDefinitionKey.h" }}
  7037. ,{ "pid":12345, "tid":8, "ts":1718093442308866, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7038. ,{ "pid":12345, "tid":8, "ts":1718093442309046, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7039. ,{ "pid":12345, "tid":8, "ts":1718093442309177, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/utf8-cpp/source/utf8/unchecked.h" }}
  7040. ,{ "pid":12345, "tid":8, "ts":1718093442309175, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/utf8-cpp/source/utf8/unchecked.h" }}
  7041. ,{ "pid":12345, "tid":8, "ts":1718093442309239, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7042. ,{ "pid":12345, "tid":8, "ts":1718093442309367, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/StringViewUtils.h" }}
  7043. ,{ "pid":12345, "tid":8, "ts":1718093442309366, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringViewUtils.h" }}
  7044. ,{ "pid":12345, "tid":8, "ts":1718093442309494, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7045. ,{ "pid":12345, "tid":8, "ts":1718093442309623, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Runtime.h" }}
  7046. ,{ "pid":12345, "tid":8, "ts":1718093442309622, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Runtime.h" }}
  7047. ,{ "pid":12345, "tid":8, "ts":1718093442309707, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7048. ,{ "pid":12345, "tid":8, "ts":1718093442309852, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7049. ,{ "pid":12345, "tid":8, "ts":1718093442309957, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryRead.cpp" }}
  7050. ,{ "pid":12345, "tid":8, "ts":1718093442309955, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryRead.cpp" }}
  7051. ,{ "pid":12345, "tid":8, "ts":1718093442310027, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7052. ,{ "pid":12345, "tid":8, "ts":1718093442310138, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Memory.h" }}
  7053. ,{ "pid":12345, "tid":8, "ts":1718093442310137, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Memory.h" }}
  7054. ,{ "pid":12345, "tid":8, "ts":1718093442310207, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7055. ,{ "pid":12345, "tid":8, "ts":1718093442310267, "dur":149, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Logging.h" }}
  7056. ,{ "pid":12345, "tid":8, "ts":1718093442310266, "dur":151, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Logging.h" }}
  7057. ,{ "pid":12345, "tid":8, "ts":1718093442310418, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7058. ,{ "pid":12345, "tid":8, "ts":1718093442310552, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Il2CppError.h" }}
  7059. ,{ "pid":12345, "tid":8, "ts":1718093442310550, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Il2CppError.h" }}
  7060. ,{ "pid":12345, "tid":8, "ts":1718093442310649, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7061. ,{ "pid":12345, "tid":8, "ts":1718093442310723, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/ExceptionSupportStack.h" }}
  7062. ,{ "pid":12345, "tid":8, "ts":1718093442310722, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/ExceptionSupportStack.h" }}
  7063. ,{ "pid":12345, "tid":8, "ts":1718093442310826, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7064. ,{ "pid":12345, "tid":8, "ts":1718093442310942, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7065. ,{ "pid":12345, "tid":8, "ts":1718093442311044, "dur":152, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/pch/pch-cpp.hpp" }}
  7066. ,{ "pid":12345, "tid":8, "ts":1718093442311043, "dur":153, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/pch/pch-cpp.hpp" }}
  7067. ,{ "pid":12345, "tid":8, "ts":1718093442311197, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7068. ,{ "pid":12345, "tid":8, "ts":1718093442311363, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Win32ApiSharedEmulation.cpp" }}
  7069. ,{ "pid":12345, "tid":8, "ts":1718093442311362, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Win32ApiSharedEmulation.cpp" }}
  7070. ,{ "pid":12345, "tid":8, "ts":1718093442311427, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7071. ,{ "pid":12345, "tid":8, "ts":1718093442311497, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Initialize.cpp" }}
  7072. ,{ "pid":12345, "tid":8, "ts":1718093442311496, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Initialize.cpp" }}
  7073. ,{ "pid":12345, "tid":8, "ts":1718093442311558, "dur":148, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7074. ,{ "pid":12345, "tid":8, "ts":1718093442311717, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WindowsGames/Win32ApiWindowsGamesEmulation.h" }}
  7075. ,{ "pid":12345, "tid":8, "ts":1718093442311715, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WindowsGames/Win32ApiWindowsGamesEmulation.h" }}
  7076. ,{ "pid":12345, "tid":8, "ts":1718093442311798, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7077. ,{ "pid":12345, "tid":8, "ts":1718093442311921, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/TimeZone.cpp" }}
  7078. ,{ "pid":12345, "tid":8, "ts":1718093442311919, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/TimeZone.cpp" }}
  7079. ,{ "pid":12345, "tid":8, "ts":1718093442311985, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7080. ,{ "pid":12345, "tid":8, "ts":1718093442312099, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/SystemCertificates.cpp" }}
  7081. ,{ "pid":12345, "tid":8, "ts":1718093442312098, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/SystemCertificates.cpp" }}
  7082. ,{ "pid":12345, "tid":8, "ts":1718093442312232, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7083. ,{ "pid":12345, "tid":8, "ts":1718093442312381, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Path.cpp" }}
  7084. ,{ "pid":12345, "tid":8, "ts":1718093442312380, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Path.cpp" }}
  7085. ,{ "pid":12345, "tid":8, "ts":1718093442312461, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7086. ,{ "pid":12345, "tid":8, "ts":1718093442312568, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/MarshalAlloc.cpp" }}
  7087. ,{ "pid":12345, "tid":8, "ts":1718093442312566, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/MarshalAlloc.cpp" }}
  7088. ,{ "pid":12345, "tid":8, "ts":1718093442312679, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7089. ,{ "pid":12345, "tid":8, "ts":1718093442312746, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/FileSystemWatcher.cpp" }}
  7090. ,{ "pid":12345, "tid":8, "ts":1718093442312745, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/FileSystemWatcher.cpp" }}
  7091. ,{ "pid":12345, "tid":8, "ts":1718093442312829, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7092. ,{ "pid":12345, "tid":8, "ts":1718093442312928, "dur":168, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/DllMain.h" }}
  7093. ,{ "pid":12345, "tid":8, "ts":1718093442312927, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/DllMain.h" }}
  7094. ,{ "pid":12345, "tid":8, "ts":1718093442313101, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7095. ,{ "pid":12345, "tid":8, "ts":1718093442313208, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Console.cpp" }}
  7096. ,{ "pid":12345, "tid":8, "ts":1718093442313207, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Console.cpp" }}
  7097. ,{ "pid":12345, "tid":8, "ts":1718093442313287, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7098. ,{ "pid":12345, "tid":8, "ts":1718093442313420, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Assert.cpp" }}
  7099. ,{ "pid":12345, "tid":8, "ts":1718093442313419, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Assert.cpp" }}
  7100. ,{ "pid":12345, "tid":8, "ts":1718093442313499, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7101. ,{ "pid":12345, "tid":8, "ts":1718093442313563, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Thread.cpp" }}
  7102. ,{ "pid":12345, "tid":8, "ts":1718093442313562, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Thread.cpp" }}
  7103. ,{ "pid":12345, "tid":8, "ts":1718093442313640, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7104. ,{ "pid":12345, "tid":8, "ts":1718093442313714, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/SocketBridge.h" }}
  7105. ,{ "pid":12345, "tid":8, "ts":1718093442313777, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7106. ,{ "pid":12345, "tid":8, "ts":1718093442313852, "dur":166, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Semaphore.cpp" }}
  7107. ,{ "pid":12345, "tid":8, "ts":1718093442313851, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Semaphore.cpp" }}
  7108. ,{ "pid":12345, "tid":8, "ts":1718093442314019, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7109. ,{ "pid":12345, "tid":8, "ts":1718093442314120, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Time.cpp" }}
  7110. ,{ "pid":12345, "tid":8, "ts":1718093442314119, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Time.cpp" }}
  7111. ,{ "pid":12345, "tid":8, "ts":1718093442314280, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/StackTrace.cpp" }}
  7112. ,{ "pid":12345, "tid":8, "ts":1718093442314279, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/StackTrace.cpp" }}
  7113. ,{ "pid":12345, "tid":8, "ts":1718093442314341, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7114. ,{ "pid":12345, "tid":8, "ts":1718093442314457, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Path.cpp" }}
  7115. ,{ "pid":12345, "tid":8, "ts":1718093442314456, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Path.cpp" }}
  7116. ,{ "pid":12345, "tid":8, "ts":1718093442314545, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7117. ,{ "pid":12345, "tid":8, "ts":1718093442314726, "dur":199, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Memory.cpp" }}
  7118. ,{ "pid":12345, "tid":8, "ts":1718093442314725, "dur":201, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Memory.cpp" }}
  7119. ,{ "pid":12345, "tid":8, "ts":1718093442314926, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7120. ,{ "pid":12345, "tid":8, "ts":1718093442315057, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/FileSystemWatcher.cpp" }}
  7121. ,{ "pid":12345, "tid":8, "ts":1718093442315056, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/FileSystemWatcher.cpp" }}
  7122. ,{ "pid":12345, "tid":8, "ts":1718093442315158, "dur":152, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7123. ,{ "pid":12345, "tid":8, "ts":1718093442315338, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Environment.cpp" }}
  7124. ,{ "pid":12345, "tid":8, "ts":1718093442315336, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Environment.cpp" }}
  7125. ,{ "pid":12345, "tid":8, "ts":1718093442315431, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7126. ,{ "pid":12345, "tid":8, "ts":1718093442315489, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Console.cpp" }}
  7127. ,{ "pid":12345, "tid":8, "ts":1718093442315488, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Console.cpp" }}
  7128. ,{ "pid":12345, "tid":8, "ts":1718093442315552, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7129. ,{ "pid":12345, "tid":8, "ts":1718093442315698, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/SystemCertificates.cpp" }}
  7130. ,{ "pid":12345, "tid":8, "ts":1718093442315697, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/SystemCertificates.cpp" }}
  7131. ,{ "pid":12345, "tid":8, "ts":1718093442315843, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7132. ,{ "pid":12345, "tid":8, "ts":1718093442315989, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Mutex.cpp" }}
  7133. ,{ "pid":12345, "tid":8, "ts":1718093442315989, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Mutex.cpp" }}
  7134. ,{ "pid":12345, "tid":8, "ts":1718093442316069, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7135. ,{ "pid":12345, "tid":8, "ts":1718093442316141, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/MarshalAlloc.h" }}
  7136. ,{ "pid":12345, "tid":8, "ts":1718093442316139, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/MarshalAlloc.h" }}
  7137. ,{ "pid":12345, "tid":8, "ts":1718093442316250, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7138. ,{ "pid":12345, "tid":8, "ts":1718093442316327, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Initialize.h" }}
  7139. ,{ "pid":12345, "tid":8, "ts":1718093442316326, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Initialize.h" }}
  7140. ,{ "pid":12345, "tid":8, "ts":1718093442316434, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7141. ,{ "pid":12345, "tid":8, "ts":1718093442316498, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/WaitObject.cpp" }}
  7142. ,{ "pid":12345, "tid":8, "ts":1718093442316496, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/WaitObject.cpp" }}
  7143. ,{ "pid":12345, "tid":8, "ts":1718093442316554, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7144. ,{ "pid":12345, "tid":8, "ts":1718093442316633, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SemaphoreImpl.h" }}
  7145. ,{ "pid":12345, "tid":8, "ts":1718093442316632, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SemaphoreImpl.h" }}
  7146. ,{ "pid":12345, "tid":8, "ts":1718093442316694, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7147. ,{ "pid":12345, "tid":8, "ts":1718093442316799, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Handle.cpp" }}
  7148. ,{ "pid":12345, "tid":8, "ts":1718093442316798, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Handle.cpp" }}
  7149. ,{ "pid":12345, "tid":8, "ts":1718093442316916, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7150. ,{ "pid":12345, "tid":8, "ts":1718093442316991, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/CrashHelpers.cpp" }}
  7151. ,{ "pid":12345, "tid":8, "ts":1718093442316990, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/CrashHelpers.cpp" }}
  7152. ,{ "pid":12345, "tid":8, "ts":1718093442317057, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7153. ,{ "pid":12345, "tid":8, "ts":1718093442317136, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/FastReaderReaderWriterLockImpl.h" }}
  7154. ,{ "pid":12345, "tid":8, "ts":1718093442317135, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/FastReaderReaderWriterLockImpl.h" }}
  7155. ,{ "pid":12345, "tid":8, "ts":1718093442317205, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7156. ,{ "pid":12345, "tid":8, "ts":1718093442317282, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ErrorCodes.h" }}
  7157. ,{ "pid":12345, "tid":8, "ts":1718093442317280, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ErrorCodes.h" }}
  7158. ,{ "pid":12345, "tid":8, "ts":1718093442317362, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7159. ,{ "pid":12345, "tid":8, "ts":1718093442317538, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Emscripten/pal_emscripten.h" }}
  7160. ,{ "pid":12345, "tid":8, "ts":1718093442317537, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Emscripten/pal_emscripten.h" }}
  7161. ,{ "pid":12345, "tid":8, "ts":1718093442317654, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7162. ,{ "pid":12345, "tid":8, "ts":1718093442317775, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ConsoleExtension.h" }}
  7163. ,{ "pid":12345, "tid":8, "ts":1718093442317774, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ConsoleExtension.h" }}
  7164. ,{ "pid":12345, "tid":8, "ts":1718093442317892, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7165. ,{ "pid":12345, "tid":8, "ts":1718093442317993, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_uid.cpp" }}
  7166. ,{ "pid":12345, "tid":8, "ts":1718093442317992, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_uid.cpp" }}
  7167. ,{ "pid":12345, "tid":8, "ts":1718093442318046, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7168. ,{ "pid":12345, "tid":8, "ts":1718093442318172, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7169. ,{ "pid":12345, "tid":8, "ts":1718093442318238, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/port.h" }}
  7170. ,{ "pid":12345, "tid":8, "ts":1718093442318236, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/port.h" }}
  7171. ,{ "pid":12345, "tid":8, "ts":1718093442318302, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7172. ,{ "pid":12345, "tid":8, "ts":1718093442318422, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict_lut.h" }}
  7173. ,{ "pid":12345, "tid":8, "ts":1718093442318421, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict_lut.h" }}
  7174. ,{ "pid":12345, "tid":8, "ts":1718093442318485, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7175. ,{ "pid":12345, "tid":8, "ts":1718093442318553, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/params.h" }}
  7176. ,{ "pid":12345, "tid":8, "ts":1718093442318552, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/params.h" }}
  7177. ,{ "pid":12345, "tid":8, "ts":1718093442318656, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7178. ,{ "pid":12345, "tid":8, "ts":1718093442318748, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/memory.h" }}
  7179. ,{ "pid":12345, "tid":8, "ts":1718093442318747, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/memory.h" }}
  7180. ,{ "pid":12345, "tid":8, "ts":1718093442318801, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7181. ,{ "pid":12345, "tid":8, "ts":1718093442318919, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram.h" }}
  7182. ,{ "pid":12345, "tid":8, "ts":1718093442318918, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram.h" }}
  7183. ,{ "pid":12345, "tid":8, "ts":1718093442319012, "dur":175, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7184. ,{ "pid":12345, "tid":8, "ts":1718093442319193, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_forgetful_chain_inc.h" }}
  7185. ,{ "pid":12345, "tid":8, "ts":1718093442319192, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_forgetful_chain_inc.h" }}
  7186. ,{ "pid":12345, "tid":8, "ts":1718093442319254, "dur":167, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7187. ,{ "pid":12345, "tid":8, "ts":1718093442319429, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/fast_log.c" }}
  7188. ,{ "pid":12345, "tid":8, "ts":1718093442319428, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/fast_log.c" }}
  7189. ,{ "pid":12345, "tid":8, "ts":1718093442319520, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7190. ,{ "pid":12345, "tid":8, "ts":1718093442319596, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/encode.c" }}
  7191. ,{ "pid":12345, "tid":8, "ts":1718093442319595, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/encode.c" }}
  7192. ,{ "pid":12345, "tid":8, "ts":1718093442319704, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7193. ,{ "pid":12345, "tid":8, "ts":1718093442319846, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment.c" }}
  7194. ,{ "pid":12345, "tid":8, "ts":1718093442319844, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment.c" }}
  7195. ,{ "pid":12345, "tid":8, "ts":1718093442319964, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7196. ,{ "pid":12345, "tid":8, "ts":1718093442320080, "dur":160, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/brotli_bit_stream.h" }}
  7197. ,{ "pid":12345, "tid":8, "ts":1718093442320079, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/brotli_bit_stream.h" }}
  7198. ,{ "pid":12345, "tid":8, "ts":1718093442320241, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7199. ,{ "pid":12345, "tid":8, "ts":1718093442320410, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost.h" }}
  7200. ,{ "pid":12345, "tid":8, "ts":1718093442320409, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost.h" }}
  7201. ,{ "pid":12345, "tid":8, "ts":1718093442320567, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references.h" }}
  7202. ,{ "pid":12345, "tid":8, "ts":1718093442320565, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references.h" }}
  7203. ,{ "pid":12345, "tid":8, "ts":1718093442320711, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/huffman.c" }}
  7204. ,{ "pid":12345, "tid":8, "ts":1718093442320710, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/huffman.c" }}
  7205. ,{ "pid":12345, "tid":8, "ts":1718093442320825, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7206. ,{ "pid":12345, "tid":8, "ts":1718093442320920, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/platform.h" }}
  7207. ,{ "pid":12345, "tid":8, "ts":1718093442320918, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/platform.h" }}
  7208. ,{ "pid":12345, "tid":8, "ts":1718093442321002, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7209. ,{ "pid":12345, "tid":8, "ts":1718093442321131, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/constants.h" }}
  7210. ,{ "pid":12345, "tid":8, "ts":1718093442321130, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/constants.h" }}
  7211. ,{ "pid":12345, "tid":8, "ts":1718093442321208, "dur":175, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7212. ,{ "pid":12345, "tid":8, "ts":1718093442321399, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Thread-c-api.h" }}
  7213. ,{ "pid":12345, "tid":8, "ts":1718093442321397, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Thread-c-api.h" }}
  7214. ,{ "pid":12345, "tid":8, "ts":1718093442321461, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7215. ,{ "pid":12345, "tid":8, "ts":1718093442321598, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Locale-c-api.h" }}
  7216. ,{ "pid":12345, "tid":8, "ts":1718093442321596, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Locale-c-api.h" }}
  7217. ,{ "pid":12345, "tid":8, "ts":1718093442321662, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7218. ,{ "pid":12345, "tid":8, "ts":1718093442321849, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Environment.cpp" }}
  7219. ,{ "pid":12345, "tid":8, "ts":1718093442321848, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Environment.cpp" }}
  7220. ,{ "pid":12345, "tid":8, "ts":1718093442321937, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7221. ,{ "pid":12345, "tid":8, "ts":1718093442322053, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Allocator.cpp" }}
  7222. ,{ "pid":12345, "tid":8, "ts":1718093442322052, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Allocator.cpp" }}
  7223. ,{ "pid":12345, "tid":8, "ts":1718093442322137, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7224. ,{ "pid":12345, "tid":8, "ts":1718093442322270, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/Initialize.cpp" }}
  7225. ,{ "pid":12345, "tid":8, "ts":1718093442322269, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/Initialize.cpp" }}
  7226. ,{ "pid":12345, "tid":8, "ts":1718093442322376, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7227. ,{ "pid":12345, "tid":8, "ts":1718093442322523, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolMacros.h" }}
  7228. ,{ "pid":12345, "tid":8, "ts":1718093442322521, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolMacros.h" }}
  7229. ,{ "pid":12345, "tid":8, "ts":1718093442322583, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7230. ,{ "pid":12345, "tid":8, "ts":1718093442322734, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms-io-poll.h" }}
  7231. ,{ "pid":12345, "tid":8, "ts":1718093442322733, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms-io-poll.h" }}
  7232. ,{ "pid":12345, "tid":8, "ts":1718093442322832, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7233. ,{ "pid":12345, "tid":8, "ts":1718093442322913, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppTypeHash.cpp" }}
  7234. ,{ "pid":12345, "tid":8, "ts":1718093442322911, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeHash.cpp" }}
  7235. ,{ "pid":12345, "tid":8, "ts":1718093442323035, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7236. ,{ "pid":12345, "tid":8, "ts":1718093442323113, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericMethodHash.cpp" }}
  7237. ,{ "pid":12345, "tid":8, "ts":1718093442323112, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodHash.cpp" }}
  7238. ,{ "pid":12345, "tid":8, "ts":1718093442323179, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7239. ,{ "pid":12345, "tid":8, "ts":1718093442323247, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericInstCompare.h" }}
  7240. ,{ "pid":12345, "tid":8, "ts":1718093442323246, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstCompare.h" }}
  7241. ,{ "pid":12345, "tid":8, "ts":1718093442323299, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7242. ,{ "pid":12345, "tid":8, "ts":1718093442323374, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericContextCompare.cpp" }}
  7243. ,{ "pid":12345, "tid":8, "ts":1718093442323373, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextCompare.cpp" }}
  7244. ,{ "pid":12345, "tid":8, "ts":1718093442323463, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7245. ,{ "pid":12345, "tid":8, "ts":1718093442323605, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassCompare.cpp" }}
  7246. ,{ "pid":12345, "tid":8, "ts":1718093442323657, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7247. ,{ "pid":12345, "tid":8, "ts":1718093442323724, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericMetadata.h" }}
  7248. ,{ "pid":12345, "tid":8, "ts":1718093442323723, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMetadata.h" }}
  7249. ,{ "pid":12345, "tid":8, "ts":1718093442323829, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7250. ,{ "pid":12345, "tid":8, "ts":1718093442323925, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/CustomAttributeCreator.h" }}
  7251. ,{ "pid":12345, "tid":8, "ts":1718093442323924, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeCreator.h" }}
  7252. ,{ "pid":12345, "tid":8, "ts":1718093442323996, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7253. ,{ "pid":12345, "tid":8, "ts":1718093442324113, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-tokentype.h" }}
  7254. ,{ "pid":12345, "tid":8, "ts":1718093442324112, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-tokentype.h" }}
  7255. ,{ "pid":12345, "tid":8, "ts":1718093442324200, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7256. ,{ "pid":12345, "tid":8, "ts":1718093442324269, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-pinvoke-support.h" }}
  7257. ,{ "pid":12345, "tid":8, "ts":1718093442324267, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-pinvoke-support.h" }}
  7258. ,{ "pid":12345, "tid":8, "ts":1718093442324333, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7259. ,{ "pid":12345, "tid":8, "ts":1718093442324439, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-mono-api-functions.h" }}
  7260. ,{ "pid":12345, "tid":8, "ts":1718093442324438, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-mono-api-functions.h" }}
  7261. ,{ "pid":12345, "tid":8, "ts":1718093442324513, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7262. ,{ "pid":12345, "tid":8, "ts":1718093442324576, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-benchmark-support.cpp" }}
  7263. ,{ "pid":12345, "tid":8, "ts":1718093442324574, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-benchmark-support.cpp" }}
  7264. ,{ "pid":12345, "tid":8, "ts":1718093442324640, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7265. ,{ "pid":12345, "tid":8, "ts":1718093442324710, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Threading/Semaphore.cpp" }}
  7266. ,{ "pid":12345, "tid":8, "ts":1718093442324709, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Threading/Semaphore.cpp" }}
  7267. ,{ "pid":12345, "tid":8, "ts":1718093442324781, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7268. ,{ "pid":12345, "tid":8, "ts":1718093442324844, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.Sockets/Socket.h" }}
  7269. ,{ "pid":12345, "tid":8, "ts":1718093442324843, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.Sockets/Socket.h" }}
  7270. ,{ "pid":12345, "tid":8, "ts":1718093442324902, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7271. ,{ "pid":12345, "tid":8, "ts":1718093442324981, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.NetworkInformation/LinuxNetworkInterface.cpp" }}
  7272. ,{ "pid":12345, "tid":8, "ts":1718093442324979, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.NetworkInformation/LinuxNetworkInterface.cpp" }}
  7273. ,{ "pid":12345, "tid":8, "ts":1718093442325054, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7274. ,{ "pid":12345, "tid":8, "ts":1718093442325112, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/Process.cpp" }}
  7275. ,{ "pid":12345, "tid":8, "ts":1718093442325111, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/Process.cpp" }}
  7276. ,{ "pid":12345, "tid":8, "ts":1718093442325179, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7277. ,{ "pid":12345, "tid":8, "ts":1718093442325297, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7278. ,{ "pid":12345, "tid":8, "ts":1718093442325369, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ValueType.cpp" }}
  7279. ,{ "pid":12345, "tid":8, "ts":1718093442325367, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ValueType.cpp" }}
  7280. ,{ "pid":12345, "tid":8, "ts":1718093442325440, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7281. ,{ "pid":12345, "tid":8, "ts":1718093442325500, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/String.cpp" }}
  7282. ,{ "pid":12345, "tid":8, "ts":1718093442325498, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/String.cpp" }}
  7283. ,{ "pid":12345, "tid":8, "ts":1718093442325557, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7284. ,{ "pid":12345, "tid":8, "ts":1718093442325622, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeMethodHandle.cpp" }}
  7285. ,{ "pid":12345, "tid":8, "ts":1718093442325620, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeMethodHandle.cpp" }}
  7286. ,{ "pid":12345, "tid":8, "ts":1718093442325708, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7287. ,{ "pid":12345, "tid":8, "ts":1718093442325796, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/NumberFormatter.cpp" }}
  7288. ,{ "pid":12345, "tid":8, "ts":1718093442325795, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/NumberFormatter.cpp" }}
  7289. ,{ "pid":12345, "tid":8, "ts":1718093442325865, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7290. ,{ "pid":12345, "tid":8, "ts":1718093442325935, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Exception.h" }}
  7291. ,{ "pid":12345, "tid":8, "ts":1718093442325933, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Exception.h" }}
  7292. ,{ "pid":12345, "tid":8, "ts":1718093442326006, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7293. ,{ "pid":12345, "tid":8, "ts":1718093442326076, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Delegate.h" }}
  7294. ,{ "pid":12345, "tid":8, "ts":1718093442326075, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Delegate.h" }}
  7295. ,{ "pid":12345, "tid":8, "ts":1718093442326158, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7296. ,{ "pid":12345, "tid":8, "ts":1718093442326233, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ConsoleDriver.cpp" }}
  7297. ,{ "pid":12345, "tid":8, "ts":1718093442326232, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ConsoleDriver.cpp" }}
  7298. ,{ "pid":12345, "tid":8, "ts":1718093442326289, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7299. ,{ "pid":12345, "tid":8, "ts":1718093442326407, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Array.cpp" }}
  7300. ,{ "pid":12345, "tid":8, "ts":1718093442326406, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Array.cpp" }}
  7301. ,{ "pid":12345, "tid":8, "ts":1718093442326470, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7302. ,{ "pid":12345, "tid":8, "ts":1718093442326533, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/WaitHandle.cpp" }}
  7303. ,{ "pid":12345, "tid":8, "ts":1718093442326532, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/WaitHandle.cpp" }}
  7304. ,{ "pid":12345, "tid":8, "ts":1718093442326601, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7305. ,{ "pid":12345, "tid":8, "ts":1718093442326711, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/OSSpecificSynchronizationContext.cpp" }}
  7306. ,{ "pid":12345, "tid":8, "ts":1718093442326710, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/OSSpecificSynchronizationContext.cpp" }}
  7307. ,{ "pid":12345, "tid":8, "ts":1718093442326777, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7308. ,{ "pid":12345, "tid":8, "ts":1718093442326864, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Monitor.cpp" }}
  7309. ,{ "pid":12345, "tid":8, "ts":1718093442326863, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Monitor.cpp" }}
  7310. ,{ "pid":12345, "tid":8, "ts":1718093442326957, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7311. ,{ "pid":12345, "tid":8, "ts":1718093442327015, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Text/EncodingHelper.cpp" }}
  7312. ,{ "pid":12345, "tid":8, "ts":1718093442327014, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Text/EncodingHelper.cpp" }}
  7313. ,{ "pid":12345, "tid":8, "ts":1718093442327083, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7314. ,{ "pid":12345, "tid":8, "ts":1718093442327141, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.cpp" }}
  7315. ,{ "pid":12345, "tid":8, "ts":1718093442327139, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.cpp" }}
  7316. ,{ "pid":12345, "tid":8, "ts":1718093442327295, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime/RuntimeImports.h" }}
  7317. ,{ "pid":12345, "tid":8, "ts":1718093442327294, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime/RuntimeImports.h" }}
  7318. ,{ "pid":12345, "tid":8, "ts":1718093442327421, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.h" }}
  7319. ,{ "pid":12345, "tid":8, "ts":1718093442327419, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.h" }}
  7320. ,{ "pid":12345, "tid":8, "ts":1718093442327490, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7321. ,{ "pid":12345, "tid":8, "ts":1718093442327583, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Contexts/Context.h" }}
  7322. ,{ "pid":12345, "tid":8, "ts":1718093442327581, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Contexts/Context.h" }}
  7323. ,{ "pid":12345, "tid":8, "ts":1718093442327677, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7324. ,{ "pid":12345, "tid":8, "ts":1718093442327742, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/Marshal.cpp" }}
  7325. ,{ "pid":12345, "tid":8, "ts":1718093442327741, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/Marshal.cpp" }}
  7326. ,{ "pid":12345, "tid":8, "ts":1718093442327922, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimePropertyInfo.cpp" }}
  7327. ,{ "pid":12345, "tid":8, "ts":1718093442327919, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimePropertyInfo.cpp" }}
  7328. ,{ "pid":12345, "tid":8, "ts":1718093442327983, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7329. ,{ "pid":12345, "tid":8, "ts":1718093442328057, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.cpp" }}
  7330. ,{ "pid":12345, "tid":8, "ts":1718093442328056, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.cpp" }}
  7331. ,{ "pid":12345, "tid":8, "ts":1718093442328181, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7332. ,{ "pid":12345, "tid":8, "ts":1718093442328276, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeConstructorInfo.cpp" }}
  7333. ,{ "pid":12345, "tid":8, "ts":1718093442328338, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7334. ,{ "pid":12345, "tid":8, "ts":1718093442328397, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethodInfo.h" }}
  7335. ,{ "pid":12345, "tid":8, "ts":1718093442328395, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethodInfo.h" }}
  7336. ,{ "pid":12345, "tid":8, "ts":1718093442328467, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7337. ,{ "pid":12345, "tid":8, "ts":1718093442328593, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MethodBase.cpp" }}
  7338. ,{ "pid":12345, "tid":8, "ts":1718093442328590, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MethodBase.cpp" }}
  7339. ,{ "pid":12345, "tid":8, "ts":1718093442328649, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7340. ,{ "pid":12345, "tid":8, "ts":1718093442328742, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/AssemblyName.h" }}
  7341. ,{ "pid":12345, "tid":8, "ts":1718093442328740, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/AssemblyName.h" }}
  7342. ,{ "pid":12345, "tid":8, "ts":1718093442328861, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7343. ,{ "pid":12345, "tid":8, "ts":1718093442328968, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/Path.cpp" }}
  7344. ,{ "pid":12345, "tid":8, "ts":1718093442328967, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/Path.cpp" }}
  7345. ,{ "pid":12345, "tid":8, "ts":1718093442329071, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7346. ,{ "pid":12345, "tid":8, "ts":1718093442329160, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/BrokeredFileSystem.cpp" }}
  7347. ,{ "pid":12345, "tid":8, "ts":1718093442329158, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/BrokeredFileSystem.cpp" }}
  7348. ,{ "pid":12345, "tid":8, "ts":1718093442329243, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7349. ,{ "pid":12345, "tid":8, "ts":1718093442329354, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfo.h" }}
  7350. ,{ "pid":12345, "tid":8, "ts":1718093442329353, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfo.h" }}
  7351. ,{ "pid":12345, "tid":8, "ts":1718093442329417, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7352. ,{ "pid":12345, "tid":8, "ts":1718093442329491, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CompareInfo.cpp" }}
  7353. ,{ "pid":12345, "tid":8, "ts":1718093442329488, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CompareInfo.cpp" }}
  7354. ,{ "pid":12345, "tid":8, "ts":1718093442329581, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7355. ,{ "pid":12345, "tid":8, "ts":1718093442329660, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/StackFrame.cpp" }}
  7356. ,{ "pid":12345, "tid":8, "ts":1718093442329658, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/StackFrame.cpp" }}
  7357. ,{ "pid":12345, "tid":8, "ts":1718093442329716, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7358. ,{ "pid":12345, "tid":8, "ts":1718093442329816, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeGPtrArrayHandle.h" }}
  7359. ,{ "pid":12345, "tid":8, "ts":1718093442329815, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeGPtrArrayHandle.h" }}
  7360. ,{ "pid":12345, "tid":8, "ts":1718093442329903, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7361. ,{ "pid":12345, "tid":8, "ts":1718093442329978, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono.Unity/UnityTls.h" }}
  7362. ,{ "pid":12345, "tid":8, "ts":1718093442329977, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono.Unity/UnityTls.h" }}
  7363. ,{ "pid":12345, "tid":8, "ts":1718093442330053, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7364. ,{ "pid":12345, "tid":8, "ts":1718093442330167, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7365. ,{ "pid":12345, "tid":8, "ts":1718093442330243, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/WriteBarrier.h" }}
  7366. ,{ "pid":12345, "tid":8, "ts":1718093442330240, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/WriteBarrier.h" }}
  7367. ,{ "pid":12345, "tid":8, "ts":1718093442330366, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/GarbageCollector.h" }}
  7368. ,{ "pid":12345, "tid":8, "ts":1718093442330364, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/GarbageCollector.h" }}
  7369. ,{ "pid":12345, "tid":8, "ts":1718093442330423, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7370. ,{ "pid":12345, "tid":8, "ts":1718093442330511, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/debugger/il2cpp-api-debugger.cpp" }}
  7371. ,{ "pid":12345, "tid":8, "ts":1718093442330510, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/debugger/il2cpp-api-debugger.cpp" }}
  7372. ,{ "pid":12345, "tid":8, "ts":1718093442330624, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-metadata.h" }}
  7373. ,{ "pid":12345, "tid":8, "ts":1718093442330622, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-metadata.h" }}
  7374. ,{ "pid":12345, "tid":8, "ts":1718093442330697, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7375. ,{ "pid":12345, "tid":8, "ts":1718093442330802, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/zutil.h" }}
  7376. ,{ "pid":12345, "tid":8, "ts":1718093442330800, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/zutil.h" }}
  7377. ,{ "pid":12345, "tid":8, "ts":1718093442330864, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7378. ,{ "pid":12345, "tid":8, "ts":1718093442330979, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/trees.c" }}
  7379. ,{ "pid":12345, "tid":8, "ts":1718093442330977, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/trees.c" }}
  7380. ,{ "pid":12345, "tid":8, "ts":1718093442331054, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7381. ,{ "pid":12345, "tid":8, "ts":1718093442331182, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inffixed.h" }}
  7382. ,{ "pid":12345, "tid":8, "ts":1718093442331180, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inffixed.h" }}
  7383. ,{ "pid":12345, "tid":8, "ts":1718093442331250, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7384. ,{ "pid":12345, "tid":8, "ts":1718093442331330, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzlib.c" }}
  7385. ,{ "pid":12345, "tid":8, "ts":1718093442331329, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzlib.c" }}
  7386. ,{ "pid":12345, "tid":8, "ts":1718093442331395, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7387. ,{ "pid":12345, "tid":8, "ts":1718093442331466, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/crc32.c" }}
  7388. ,{ "pid":12345, "tid":8, "ts":1718093442331464, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/crc32.c" }}
  7389. ,{ "pid":12345, "tid":8, "ts":1718093442331549, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7390. ,{ "pid":12345, "tid":8, "ts":1718093442331611, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/cmake_unofficial/README.md" }}
  7391. ,{ "pid":12345, "tid":8, "ts":1718093442331672, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7392. ,{ "pid":12345, "tid":8, "ts":1718093442331748, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/support/libm/math_private.h" }}
  7393. ,{ "pid":12345, "tid":8, "ts":1718093442331745, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/support/libm/math_private.h" }}
  7394. ,{ "pid":12345, "tid":8, "ts":1718093442331894, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/valgrind.h" }}
  7395. ,{ "pid":12345, "tid":8, "ts":1718093442331891, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/valgrind.h" }}
  7396. ,{ "pid":12345, "tid":8, "ts":1718093442331952, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7397. ,{ "pid":12345, "tid":8, "ts":1718093442332058, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7398. ,{ "pid":12345, "tid":8, "ts":1718093442332137, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/os-event-unix.c" }}
  7399. ,{ "pid":12345, "tid":8, "ts":1718093442332134, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/os-event-unix.c" }}
  7400. ,{ "pid":12345, "tid":8, "ts":1718093442332235, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7401. ,{ "pid":12345, "tid":8, "ts":1718093442332307, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking-missing.c" }}
  7402. ,{ "pid":12345, "tid":8, "ts":1718093442332305, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking-missing.c" }}
  7403. ,{ "pid":12345, "tid":8, "ts":1718093442332367, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7404. ,{ "pid":12345, "tid":8, "ts":1718093442332432, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-uri.h" }}
  7405. ,{ "pid":12345, "tid":8, "ts":1718093442332430, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-uri.h" }}
  7406. ,{ "pid":12345, "tid":8, "ts":1718093442332510, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7407. ,{ "pid":12345, "tid":8, "ts":1718093442332594, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads.h" }}
  7408. ,{ "pid":12345, "tid":8, "ts":1718093442332592, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads.h" }}
  7409. ,{ "pid":12345, "tid":8, "ts":1718093442332656, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7410. ,{ "pid":12345, "tid":8, "ts":1718093442332748, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-posix-signals.c" }}
  7411. ,{ "pid":12345, "tid":8, "ts":1718093442332746, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-posix-signals.c" }}
  7412. ,{ "pid":12345, "tid":8, "ts":1718093442332815, "dur":725, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7413. ,{ "pid":12345, "tid":8, "ts":1718093442333553, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-api.h" }}
  7414. ,{ "pid":12345, "tid":8, "ts":1718093442333550, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-api.h" }}
  7415. ,{ "pid":12345, "tid":8, "ts":1718093442333627, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7416. ,{ "pid":12345, "tid":8, "ts":1718093442333695, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-signal-handler.h" }}
  7417. ,{ "pid":12345, "tid":8, "ts":1718093442333693, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-signal-handler.h" }}
  7418. ,{ "pid":12345, "tid":8, "ts":1718093442333756, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7419. ,{ "pid":12345, "tid":8, "ts":1718093442333819, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-publib.c" }}
  7420. ,{ "pid":12345, "tid":8, "ts":1718093442333818, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-publib.c" }}
  7421. ,{ "pid":12345, "tid":8, "ts":1718093442333926, "dur":173, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7422. ,{ "pid":12345, "tid":8, "ts":1718093442334105, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-poll.c" }}
  7423. ,{ "pid":12345, "tid":8, "ts":1718093442334104, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-poll.c" }}
  7424. ,{ "pid":12345, "tid":8, "ts":1718093442334178, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7425. ,{ "pid":12345, "tid":8, "ts":1718093442334248, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-wait-win32.c" }}
  7426. ,{ "pid":12345, "tid":8, "ts":1718093442334246, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-wait-win32.c" }}
  7427. ,{ "pid":12345, "tid":8, "ts":1718093442334312, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7428. ,{ "pid":12345, "tid":8, "ts":1718093442334389, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-once.h" }}
  7429. ,{ "pid":12345, "tid":8, "ts":1718093442334387, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-once.h" }}
  7430. ,{ "pid":12345, "tid":8, "ts":1718093442334470, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7431. ,{ "pid":12345, "tid":8, "ts":1718093442334535, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap-windows-internals.h" }}
  7432. ,{ "pid":12345, "tid":8, "ts":1718093442334534, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap-windows-internals.h" }}
  7433. ,{ "pid":12345, "tid":8, "ts":1718093442334609, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7434. ,{ "pid":12345, "tid":8, "ts":1718093442334688, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-math.h" }}
  7435. ,{ "pid":12345, "tid":8, "ts":1718093442334687, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-math.h" }}
  7436. ,{ "pid":12345, "tid":8, "ts":1718093442334775, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7437. ,{ "pid":12345, "tid":8, "ts":1718093442334870, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-windows.c" }}
  7438. ,{ "pid":12345, "tid":8, "ts":1718093442334967, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-android.c" }}
  7439. ,{ "pid":12345, "tid":8, "ts":1718093442334966, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-android.c" }}
  7440. ,{ "pid":12345, "tid":8, "ts":1718093442335064, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7441. ,{ "pid":12345, "tid":8, "ts":1718093442335136, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-internal-hash.c" }}
  7442. ,{ "pid":12345, "tid":8, "ts":1718093442335134, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-internal-hash.c" }}
  7443. ,{ "pid":12345, "tid":8, "ts":1718093442335231, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7444. ,{ "pid":12345, "tid":8, "ts":1718093442335316, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-arm64.c" }}
  7445. ,{ "pid":12345, "tid":8, "ts":1718093442335315, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-arm64.c" }}
  7446. ,{ "pid":12345, "tid":8, "ts":1718093442335429, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7447. ,{ "pid":12345, "tid":8, "ts":1718093442335507, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-error.c" }}
  7448. ,{ "pid":12345, "tid":8, "ts":1718093442335506, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-error.c" }}
  7449. ,{ "pid":12345, "tid":8, "ts":1718093442335571, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7450. ,{ "pid":12345, "tid":8, "ts":1718093442335710, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-windows-uwp.c" }}
  7451. ,{ "pid":12345, "tid":8, "ts":1718093442335709, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-windows-uwp.c" }}
  7452. ,{ "pid":12345, "tid":8, "ts":1718093442335879, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7453. ,{ "pid":12345, "tid":8, "ts":1718093442335960, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-context.h" }}
  7454. ,{ "pid":12345, "tid":8, "ts":1718093442335959, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-context.h" }}
  7455. ,{ "pid":12345, "tid":8, "ts":1718093442336030, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7456. ,{ "pid":12345, "tid":8, "ts":1718093442336101, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-codeman.h" }}
  7457. ,{ "pid":12345, "tid":8, "ts":1718093442336100, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-codeman.h" }}
  7458. ,{ "pid":12345, "tid":8, "ts":1718093442336209, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7459. ,{ "pid":12345, "tid":8, "ts":1718093442336316, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support.c" }}
  7460. ,{ "pid":12345, "tid":8, "ts":1718093442336315, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support.c" }}
  7461. ,{ "pid":12345, "tid":8, "ts":1718093442336380, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7462. ,{ "pid":12345, "tid":8, "ts":1718093442336486, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7463. ,{ "pid":12345, "tid":8, "ts":1718093442336577, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-alloc.c" }}
  7464. ,{ "pid":12345, "tid":8, "ts":1718093442336575, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-alloc.c" }}
  7465. ,{ "pid":12345, "tid":8, "ts":1718093442336662, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7466. ,{ "pid":12345, "tid":8, "ts":1718093442336838, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/freebsd-elf_common.h" }}
  7467. ,{ "pid":12345, "tid":8, "ts":1718093442336836, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/freebsd-elf_common.h" }}
  7468. ,{ "pid":12345, "tid":8, "ts":1718093442336964, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7469. ,{ "pid":12345, "tid":8, "ts":1718093442337033, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/dlmalloc.h" }}
  7470. ,{ "pid":12345, "tid":8, "ts":1718093442337031, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/dlmalloc.h" }}
  7471. ,{ "pid":12345, "tid":8, "ts":1718093442337102, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7472. ,{ "pid":12345, "tid":8, "ts":1718093442337211, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-workers.c" }}
  7473. ,{ "pid":12345, "tid":8, "ts":1718093442337209, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-workers.c" }}
  7474. ,{ "pid":12345, "tid":8, "ts":1718093442337271, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7475. ,{ "pid":12345, "tid":8, "ts":1718093442337412, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-qsort.h" }}
  7476. ,{ "pid":12345, "tid":8, "ts":1718093442337409, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-qsort.h" }}
  7477. ,{ "pid":12345, "tid":8, "ts":1718093442337527, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7478. ,{ "pid":12345, "tid":8, "ts":1718093442337602, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pointer-queue.c" }}
  7479. ,{ "pid":12345, "tid":8, "ts":1718093442337601, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pointer-queue.c" }}
  7480. ,{ "pid":12345, "tid":8, "ts":1718093442337681, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7481. ,{ "pid":12345, "tid":8, "ts":1718093442337754, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-minor-copy-object.h" }}
  7482. ,{ "pid":12345, "tid":8, "ts":1718093442337743, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-minor-copy-object.h" }}
  7483. ,{ "pid":12345, "tid":8, "ts":1718093442337814, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7484. ,{ "pid":12345, "tid":8, "ts":1718093442337881, "dur":141, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-los.c" }}
  7485. ,{ "pid":12345, "tid":8, "ts":1718093442337880, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-los.c" }}
  7486. ,{ "pid":12345, "tid":8, "ts":1718093442338023, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7487. ,{ "pid":12345, "tid":8, "ts":1718093442338115, "dur":141, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gray.h" }}
  7488. ,{ "pid":12345, "tid":8, "ts":1718093442338113, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gray.h" }}
  7489. ,{ "pid":12345, "tid":8, "ts":1718093442338259, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7490. ,{ "pid":12345, "tid":8, "ts":1718093442338341, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-descriptor.h" }}
  7491. ,{ "pid":12345, "tid":8, "ts":1718093442338339, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-descriptor.h" }}
  7492. ,{ "pid":12345, "tid":8, "ts":1718093442338416, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7493. ,{ "pid":12345, "tid":8, "ts":1718093442338502, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-cardtable.h" }}
  7494. ,{ "pid":12345, "tid":8, "ts":1718093442338501, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-cardtable.h" }}
  7495. ,{ "pid":12345, "tid":8, "ts":1718093442338590, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7496. ,{ "pid":12345, "tid":8, "ts":1718093442338660, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/mini-arm.h" }}
  7497. ,{ "pid":12345, "tid":8, "ts":1718093442338659, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/mini-arm.h" }}
  7498. ,{ "pid":12345, "tid":8, "ts":1718093442338716, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7499. ,{ "pid":12345, "tid":8, "ts":1718093442338924, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7500. ,{ "pid":12345, "tid":8, "ts":1718093442339039, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket-win32.c" }}
  7501. ,{ "pid":12345, "tid":8, "ts":1718093442339038, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket-win32.c" }}
  7502. ,{ "pid":12345, "tid":8, "ts":1718093442339131, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7503. ,{ "pid":12345, "tid":8, "ts":1718093442339237, "dur":181, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process.c" }}
  7504. ,{ "pid":12345, "tid":8, "ts":1718093442339236, "dur":183, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process.c" }}
  7505. ,{ "pid":12345, "tid":8, "ts":1718093442339420, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7506. ,{ "pid":12345, "tid":8, "ts":1718093442339514, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-unix-internals.h" }}
  7507. ,{ "pid":12345, "tid":8, "ts":1718093442339512, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-unix-internals.h" }}
  7508. ,{ "pid":12345, "tid":8, "ts":1718093442339613, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7509. ,{ "pid":12345, "tid":8, "ts":1718093442339747, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32handle.h" }}
  7510. ,{ "pid":12345, "tid":8, "ts":1718093442339746, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32handle.h" }}
  7511. ,{ "pid":12345, "tid":8, "ts":1718093442339868, "dur":210, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7512. ,{ "pid":12345, "tid":8, "ts":1718093442340085, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-win32.c" }}
  7513. ,{ "pid":12345, "tid":8, "ts":1718093442340084, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-win32.c" }}
  7514. ,{ "pid":12345, "tid":8, "ts":1718093442340223, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7515. ,{ "pid":12345, "tid":8, "ts":1718093442340351, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32event.h" }}
  7516. ,{ "pid":12345, "tid":8, "ts":1718093442340349, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32event.h" }}
  7517. ,{ "pid":12345, "tid":8, "ts":1718093442340439, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7518. ,{ "pid":12345, "tid":8, "ts":1718093442340565, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/verify-internals.h" }}
  7519. ,{ "pid":12345, "tid":8, "ts":1718093442340563, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/verify-internals.h" }}
  7520. ,{ "pid":12345, "tid":8, "ts":1718093442340656, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7521. ,{ "pid":12345, "tid":8, "ts":1718093442340773, "dur":142, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threads.h" }}
  7522. ,{ "pid":12345, "tid":8, "ts":1718093442340772, "dur":144, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threads.h" }}
  7523. ,{ "pid":12345, "tid":8, "ts":1718093442340917, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7524. ,{ "pid":12345, "tid":8, "ts":1718093442341020, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool-worker-default.c" }}
  7525. ,{ "pid":12345, "tid":8, "ts":1718093442341019, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool-worker-default.c" }}
  7526. ,{ "pid":12345, "tid":8, "ts":1718093442341085, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7527. ,{ "pid":12345, "tid":8, "ts":1718093442341170, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/string-icalls.h" }}
  7528. ,{ "pid":12345, "tid":8, "ts":1718093442341169, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/string-icalls.h" }}
  7529. ,{ "pid":12345, "tid":8, "ts":1718093442341292, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7530. ,{ "pid":12345, "tid":8, "ts":1718093442341383, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-toggleref.c" }}
  7531. ,{ "pid":12345, "tid":8, "ts":1718093442341381, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-toggleref.c" }}
  7532. ,{ "pid":12345, "tid":8, "ts":1718093442341467, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7533. ,{ "pid":12345, "tid":8, "ts":1718093442341562, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-dynarray.h" }}
  7534. ,{ "pid":12345, "tid":8, "ts":1718093442341560, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-dynarray.h" }}
  7535. ,{ "pid":12345, "tid":8, "ts":1718093442341632, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7536. ,{ "pid":12345, "tid":8, "ts":1718093442341734, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security-manager.c" }}
  7537. ,{ "pid":12345, "tid":8, "ts":1718093442341718, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security-manager.c" }}
  7538. ,{ "pid":12345, "tid":8, "ts":1718093442341798, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7539. ,{ "pid":12345, "tid":8, "ts":1718093442341883, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/remoting.c" }}
  7540. ,{ "pid":12345, "tid":8, "ts":1718093442341882, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/remoting.c" }}
  7541. ,{ "pid":12345, "tid":8, "ts":1718093442341975, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7542. ,{ "pid":12345, "tid":8, "ts":1718093442342060, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/rand.c" }}
  7543. ,{ "pid":12345, "tid":8, "ts":1718093442342058, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/rand.c" }}
  7544. ,{ "pid":12345, "tid":8, "ts":1718093442342153, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7545. ,{ "pid":12345, "tid":8, "ts":1718093442342218, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler-legacy.h" }}
  7546. ,{ "pid":12345, "tid":8, "ts":1718093442342217, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler-legacy.h" }}
  7547. ,{ "pid":12345, "tid":8, "ts":1718093442342287, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7548. ,{ "pid":12345, "tid":8, "ts":1718093442342377, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/opcodes.c" }}
  7549. ,{ "pid":12345, "tid":8, "ts":1718093442342375, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/opcodes.c" }}
  7550. ,{ "pid":12345, "tid":8, "ts":1718093442342450, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7551. ,{ "pid":12345, "tid":8, "ts":1718093442342541, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/number-ms.h" }}
  7552. ,{ "pid":12345, "tid":8, "ts":1718093442342540, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/number-ms.h" }}
  7553. ,{ "pid":12345, "tid":8, "ts":1718093442342607, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7554. ,{ "pid":12345, "tid":8, "ts":1718093442342688, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-security.c" }}
  7555. ,{ "pid":12345, "tid":8, "ts":1718093442342686, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-security.c" }}
  7556. ,{ "pid":12345, "tid":8, "ts":1718093442342756, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7557. ,{ "pid":12345, "tid":8, "ts":1718093442342834, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-perfcounters.h" }}
  7558. ,{ "pid":12345, "tid":8, "ts":1718093442342832, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-perfcounters.h" }}
  7559. ,{ "pid":12345, "tid":8, "ts":1718093442342912, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7560. ,{ "pid":12345, "tid":8, "ts":1718093442343009, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-hash.c" }}
  7561. ,{ "pid":12345, "tid":8, "ts":1718093442343007, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-hash.c" }}
  7562. ,{ "pid":12345, "tid":8, "ts":1718093442343091, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7563. ,{ "pid":12345, "tid":8, "ts":1718093442343179, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-debug.c" }}
  7564. ,{ "pid":12345, "tid":8, "ts":1718093442343178, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-debug.c" }}
  7565. ,{ "pid":12345, "tid":8, "ts":1718093442343256, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7566. ,{ "pid":12345, "tid":8, "ts":1718093442343351, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-conc-hash.c" }}
  7567. ,{ "pid":12345, "tid":8, "ts":1718093442343349, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-conc-hash.c" }}
  7568. ,{ "pid":12345, "tid":8, "ts":1718093442343418, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7569. ,{ "pid":12345, "tid":8, "ts":1718093442343502, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/method-builder.c" }}
  7570. ,{ "pid":12345, "tid":8, "ts":1718093442343501, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/method-builder.c" }}
  7571. ,{ "pid":12345, "tid":8, "ts":1718093442343558, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7572. ,{ "pid":12345, "tid":8, "ts":1718093442343633, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mempool.h" }}
  7573. ,{ "pid":12345, "tid":8, "ts":1718093442343631, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mempool.h" }}
  7574. ,{ "pid":12345, "tid":8, "ts":1718093442343706, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7575. ,{ "pid":12345, "tid":8, "ts":1718093442343797, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal-windows-internals.h" }}
  7576. ,{ "pid":12345, "tid":8, "ts":1718093442343795, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal-windows-internals.h" }}
  7577. ,{ "pid":12345, "tid":8, "ts":1718093442343870, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7578. ,{ "pid":12345, "tid":8, "ts":1718093442343954, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/loader.h" }}
  7579. ,{ "pid":12345, "tid":8, "ts":1718093442343952, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/loader.h" }}
  7580. ,{ "pid":12345, "tid":8, "ts":1718093442344026, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7581. ,{ "pid":12345, "tid":8, "ts":1718093442344120, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/image.c" }}
  7582. ,{ "pid":12345, "tid":8, "ts":1718093442344118, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/image.c" }}
  7583. ,{ "pid":12345, "tid":8, "ts":1718093442344204, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7584. ,{ "pid":12345, "tid":8, "ts":1718093442344305, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall-internals.h" }}
  7585. ,{ "pid":12345, "tid":8, "ts":1718093442344304, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall-internals.h" }}
  7586. ,{ "pid":12345, "tid":8, "ts":1718093442344388, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7587. ,{ "pid":12345, "tid":8, "ts":1718093442344570, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/file-mmap-windows.c" }}
  7588. ,{ "pid":12345, "tid":8, "ts":1718093442344568, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/file-mmap-windows.c" }}
  7589. ,{ "pid":12345, "tid":8, "ts":1718093442344646, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7590. ,{ "pid":12345, "tid":8, "ts":1718093442344726, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/exception-internals.h" }}
  7591. ,{ "pid":12345, "tid":8, "ts":1718093442344725, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/exception-internals.h" }}
  7592. ,{ "pid":12345, "tid":8, "ts":1718093442344784, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7593. ,{ "pid":12345, "tid":8, "ts":1718093442344867, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/domain.c" }}
  7594. ,{ "pid":12345, "tid":8, "ts":1718093442344866, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/domain.c" }}
  7595. ,{ "pid":12345, "tid":8, "ts":1718093442344932, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7596. ,{ "pid":12345, "tid":8, "ts":1718093442345001, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-mono-ppdb.h" }}
  7597. ,{ "pid":12345, "tid":8, "ts":1718093442345000, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-mono-ppdb.h" }}
  7598. ,{ "pid":12345, "tid":8, "ts":1718093442345080, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7599. ,{ "pid":12345, "tid":8, "ts":1718093442345142, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/custom-attrs-internals.h" }}
  7600. ,{ "pid":12345, "tid":8, "ts":1718093442345140, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/custom-attrs-internals.h" }}
  7601. ,{ "pid":12345, "tid":8, "ts":1718093442345205, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7602. ,{ "pid":12345, "tid":8, "ts":1718093442345293, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/coree-internals.h" }}
  7603. ,{ "pid":12345, "tid":8, "ts":1718093442345291, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/coree-internals.h" }}
  7604. ,{ "pid":12345, "tid":8, "ts":1718093442345399, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/cominterop.h" }}
  7605. ,{ "pid":12345, "tid":8, "ts":1718093442345398, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/cominterop.h" }}
  7606. ,{ "pid":12345, "tid":8, "ts":1718093442345459, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7607. ,{ "pid":12345, "tid":8, "ts":1718093442345526, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-accessors.c" }}
  7608. ,{ "pid":12345, "tid":8, "ts":1718093442345525, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-accessors.c" }}
  7609. ,{ "pid":12345, "tid":8, "ts":1718093442345602, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7610. ,{ "pid":12345, "tid":8, "ts":1718093442345677, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/attach.h" }}
  7611. ,{ "pid":12345, "tid":8, "ts":1718093442345676, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/attach.h" }}
  7612. ,{ "pid":12345, "tid":8, "ts":1718093442345738, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7613. ,{ "pid":12345, "tid":8, "ts":1718093442345857, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7614. ,{ "pid":12345, "tid":8, "ts":1718093442345921, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/sort.frag.h" }}
  7615. ,{ "pid":12345, "tid":8, "ts":1718093442345919, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/sort.frag.h" }}
  7616. ,{ "pid":12345, "tid":8, "ts":1718093442345980, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7617. ,{ "pid":12345, "tid":8, "ts":1718093442346090, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gspawn.c" }}
  7618. ,{ "pid":12345, "tid":8, "ts":1718093442346087, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gspawn.c" }}
  7619. ,{ "pid":12345, "tid":8, "ts":1718093442346146, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7620. ,{ "pid":12345, "tid":8, "ts":1718093442346206, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gpattern.c" }}
  7621. ,{ "pid":12345, "tid":8, "ts":1718093442346204, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gpattern.c" }}
  7622. ,{ "pid":12345, "tid":8, "ts":1718093442346258, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7623. ,{ "pid":12345, "tid":8, "ts":1718093442346341, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gmarkup.c" }}
  7624. ,{ "pid":12345, "tid":8, "ts":1718093442346339, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gmarkup.c" }}
  7625. ,{ "pid":12345, "tid":8, "ts":1718093442346403, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7626. ,{ "pid":12345, "tid":8, "ts":1718093442346479, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gfile-unity.c" }}
  7627. ,{ "pid":12345, "tid":8, "ts":1718093442346477, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gfile-unity.c" }}
  7628. ,{ "pid":12345, "tid":8, "ts":1718093442346531, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7629. ,{ "pid":12345, "tid":8, "ts":1718093442346604, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/cil/tables.def" }}
  7630. ,{ "pid":12345, "tid":8, "ts":1718093442346663, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7631. ,{ "pid":12345, "tid":8, "ts":1718093442346760, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7632. ,{ "pid":12345, "tid":8, "ts":1718093442346857, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7633. ,{ "pid":12345, "tid":8, "ts":1718093442346932, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/internal/sparseconfig.h" }}
  7634. ,{ "pid":12345, "tid":8, "ts":1718093442346930, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/sparseconfig.h" }}
  7635. ,{ "pid":12345, "tid":8, "ts":1718093442346999, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7636. ,{ "pid":12345, "tid":8, "ts":1718093442347067, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/windows-untested/stdafx.h" }}
  7637. ,{ "pid":12345, "tid":8, "ts":1718093442347066, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/windows-untested/stdafx.h" }}
  7638. ,{ "pid":12345, "tid":8, "ts":1718093442347131, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7639. ,{ "pid":12345, "tid":8, "ts":1718093442347207, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tools/if_not_there.c" }}
  7640. ,{ "pid":12345, "tid":8, "ts":1718093442347205, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tools/if_not_there.c" }}
  7641. ,{ "pid":12345, "tid":8, "ts":1718093442347258, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7642. ,{ "pid":12345, "tid":8, "ts":1718093442347321, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/threadkey_test.c" }}
  7643. ,{ "pid":12345, "tid":8, "ts":1718093442347320, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/threadkey_test.c" }}
  7644. ,{ "pid":12345, "tid":8, "ts":1718093442347381, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7645. ,{ "pid":12345, "tid":8, "ts":1718093442347457, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/realloc_test.c" }}
  7646. ,{ "pid":12345, "tid":8, "ts":1718093442347455, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/realloc_test.c" }}
  7647. ,{ "pid":12345, "tid":8, "ts":1718093442347536, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7648. ,{ "pid":12345, "tid":8, "ts":1718093442347616, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/disclaim_bench.c" }}
  7649. ,{ "pid":12345, "tid":8, "ts":1718093442347614, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/disclaim_bench.c" }}
  7650. ,{ "pid":12345, "tid":8, "ts":1718093442347669, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7651. ,{ "pid":12345, "tid":8, "ts":1718093442347746, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/pthread_stop_world.c" }}
  7652. ,{ "pid":12345, "tid":8, "ts":1718093442347745, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/pthread_stop_world.c" }}
  7653. ,{ "pid":12345, "tid":8, "ts":1718093442347803, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7654. ,{ "pid":12345, "tid":8, "ts":1718093442347897, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/mark.c" }}
  7655. ,{ "pid":12345, "tid":8, "ts":1718093442347895, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/mark.c" }}
  7656. ,{ "pid":12345, "tid":8, "ts":1718093442347964, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7657. ,{ "pid":12345, "tid":8, "ts":1718093442348036, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/sunc/x86.h" }}
  7658. ,{ "pid":12345, "tid":8, "ts":1718093442348034, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/sunc/x86.h" }}
  7659. ,{ "pid":12345, "tid":8, "ts":1718093442348104, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7660. ,{ "pid":12345, "tid":8, "ts":1718093442348189, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/x86_64.h" }}
  7661. ,{ "pid":12345, "tid":8, "ts":1718093442348187, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/x86_64.h" }}
  7662. ,{ "pid":12345, "tid":8, "ts":1718093442348248, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7663. ,{ "pid":12345, "tid":8, "ts":1718093442348383, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/ordered_loads_only.h" }}
  7664. ,{ "pid":12345, "tid":8, "ts":1718093442348380, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/ordered_loads_only.h" }}
  7665. ,{ "pid":12345, "tid":8, "ts":1718093442348465, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7666. ,{ "pid":12345, "tid":8, "ts":1718093442348540, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/atomic_store.h" }}
  7667. ,{ "pid":12345, "tid":8, "ts":1718093442348538, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/atomic_store.h" }}
  7668. ,{ "pid":12345, "tid":8, "ts":1718093442348599, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7669. ,{ "pid":12345, "tid":8, "ts":1718093442348678, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/hpc/hppa.h" }}
  7670. ,{ "pid":12345, "tid":8, "ts":1718093442348677, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/hpc/hppa.h" }}
  7671. ,{ "pid":12345, "tid":8, "ts":1718093442348796, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/sh.h" }}
  7672. ,{ "pid":12345, "tid":8, "ts":1718093442348794, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/sh.h" }}
  7673. ,{ "pid":12345, "tid":8, "ts":1718093442348854, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7674. ,{ "pid":12345, "tid":8, "ts":1718093442348934, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/hppa.h" }}
  7675. ,{ "pid":12345, "tid":8, "ts":1718093442348931, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/hppa.h" }}
  7676. ,{ "pid":12345, "tid":8, "ts":1718093442348993, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7677. ,{ "pid":12345, "tid":8, "ts":1718093442349082, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/avr32.h" }}
  7678. ,{ "pid":12345, "tid":8, "ts":1718093442349080, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/avr32.h" }}
  7679. ,{ "pid":12345, "tid":8, "ts":1718093442349188, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7680. ,{ "pid":12345, "tid":8, "ts":1718093442349273, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_atomic_only_load.h" }}
  7681. ,{ "pid":12345, "tid":8, "ts":1718093442349271, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_atomic_only_load.h" }}
  7682. ,{ "pid":12345, "tid":8, "ts":1718093442349383, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/generalize-small.h" }}
  7683. ,{ "pid":12345, "tid":8, "ts":1718093442349381, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/generalize-small.h" }}
  7684. ,{ "pid":12345, "tid":8, "ts":1718093442349471, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7685. ,{ "pid":12345, "tid":8, "ts":1718093442349534, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/doc/README.txt" }}
  7686. ,{ "pid":12345, "tid":8, "ts":1718093442349532, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/doc/README.txt" }}
  7687. ,{ "pid":12345, "tid":8, "ts":1718093442349596, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7688. ,{ "pid":12345, "tid":8, "ts":1718093442349679, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/specific.h" }}
  7689. ,{ "pid":12345, "tid":8, "ts":1718093442349670, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/specific.h" }}
  7690. ,{ "pid":12345, "tid":8, "ts":1718093442349818, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/private/gc_locks.h" }}
  7691. ,{ "pid":12345, "tid":8, "ts":1718093442349817, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/private/gc_locks.h" }}
  7692. ,{ "pid":12345, "tid":8, "ts":1718093442349898, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7693. ,{ "pid":12345, "tid":8, "ts":1718093442350004, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7694. ,{ "pid":12345, "tid":8, "ts":1718093442350094, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_tiny_fl.h" }}
  7695. ,{ "pid":12345, "tid":8, "ts":1718093442350093, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_tiny_fl.h" }}
  7696. ,{ "pid":12345, "tid":8, "ts":1718093442350171, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7697. ,{ "pid":12345, "tid":8, "ts":1718093442350248, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/gc_cpp.h" }}
  7698. ,{ "pid":12345, "tid":8, "ts":1718093442350246, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/gc_cpp.h" }}
  7699. ,{ "pid":12345, "tid":8, "ts":1718093442350317, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7700. ,{ "pid":12345, "tid":8, "ts":1718093442350383, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/include/extra/gc_cpp.h" }}
  7701. ,{ "pid":12345, "tid":8, "ts":1718093442350381, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/include/extra/gc_cpp.h" }}
  7702. ,{ "pid":12345, "tid":8, "ts":1718093442350477, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7703. ,{ "pid":12345, "tid":8, "ts":1718093442350731, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Core.dll" }}
  7704. ,{ "pid":12345, "tid":8, "ts":1718093442350647, "dur":261, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Ump-FeaturesChecked.txt" }}
  7705. ,{ "pid":12345, "tid":8, "ts":1718093442350909, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7706. ,{ "pid":12345, "tid":8, "ts":1718093442350986, "dur":223, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UnityAnalyticsModule-FeaturesChecked.txt" }}
  7707. ,{ "pid":12345, "tid":8, "ts":1718093442351214, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7708. ,{ "pid":12345, "tid":8, "ts":1718093442351298, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.IMGUIModule.dll" }}
  7709. ,{ "pid":12345, "tid":8, "ts":1718093442351374, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Toolchain.Xcode.dll" }}
  7710. ,{ "pid":12345, "tid":8, "ts":1718093442351296, "dur":219, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.IMGUIModule-FeaturesChecked.txt" }}
  7711. ,{ "pid":12345, "tid":8, "ts":1718093442351598, "dur":202, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Burst-FeaturesChecked.txt" }}
  7712. ,{ "pid":12345, "tid":8, "ts":1718093442352098, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Toolchain.LLVM.dll" }}
  7713. ,{ "pid":12345, "tid":8, "ts":1718093442351866, "dur":499, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Numerics-FeaturesChecked.txt" }}
  7714. ,{ "pid":12345, "tid":8, "ts":1718093442352430, "dur":209, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.ImageConversionModule-FeaturesChecked.txt" }}
  7715. ,{ "pid":12345, "tid":8, "ts":1718093442352688, "dur":218, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/I18N.West-FeaturesChecked.txt" }}
  7716. ,{ "pid":12345, "tid":8, "ts":1718093442352971, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Physics2DModule.dll" }}
  7717. ,{ "pid":12345, "tid":8, "ts":1718093442353205, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.pdb" }}
  7718. ,{ "pid":12345, "tid":8, "ts":1718093442352969, "dur":356, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Physics2DModule-FeaturesChecked.txt" }}
  7719. ,{ "pid":12345, "tid":8, "ts":1718093442353333, "dur":50, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Physics2DModule-FeaturesChecked.txt" }}
  7720. ,{ "pid":12345, "tid":8, "ts":1718093442353487, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.Data.pdb" }}
  7721. ,{ "pid":12345, "tid":8, "ts":1718093442353392, "dur":359, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.SecurityCore-FeaturesChecked.txt" }}
  7722. ,{ "pid":12345, "tid":8, "ts":1718093442353812, "dur":343, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.SpriteShapeModule-FeaturesChecked.txt" }}
  7723. ,{ "pid":12345, "tid":8, "ts":1718093442354295, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.DotNet.dll" }}
  7724. ,{ "pid":12345, "tid":8, "ts":1718093442354555, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/SharpYaml.dll" }}
  7725. ,{ "pid":12345, "tid":8, "ts":1718093442354651, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.Cecil.Pdb.dll" }}
  7726. ,{ "pid":12345, "tid":8, "ts":1718093442354206, "dur":578, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UI-FeaturesChecked.txt" }}
  7727. ,{ "pid":12345, "tid":8, "ts":1718093442354882, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.TundraBackend.dll" }}
  7728. ,{ "pid":12345, "tid":8, "ts":1718093442354944, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.VisualStudioSolution.dll" }}
  7729. ,{ "pid":12345, "tid":8, "ts":1718093442354815, "dur":417, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Runtime.Serialization-FeaturesChecked.txt" }}
  7730. ,{ "pid":12345, "tid":8, "ts":1718093442355401, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.VisualStudioSolution.dll" }}
  7731. ,{ "pid":12345, "tid":8, "ts":1718093442355591, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.Data.pdb" }}
  7732. ,{ "pid":12345, "tid":8, "ts":1718093442355686, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.pdb" }}
  7733. ,{ "pid":12345, "tid":8, "ts":1718093442355266, "dur":549, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Collections-FeaturesChecked.txt" }}
  7734. ,{ "pid":12345, "tid":8, "ts":1718093442356386, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.Cecil.Pdb.dll" }}
  7735. ,{ "pid":12345, "tid":8, "ts":1718093442355879, "dur":657, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ClassRegistrationGenerator /Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/UnityClassRegistration.cpp" }}
  7736. ,{ "pid":12345, "tid":8, "ts":1718093442356536, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7737. ,{ "pid":12345, "tid":8, "ts":1718093442356643, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7738. ,{ "pid":12345, "tid":8, "ts":1718093442356733, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/extra/AmigaOS.c" }}
  7739. ,{ "pid":12345, "tid":8, "ts":1718093442356732, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/extra/AmigaOS.c" }}
  7740. ,{ "pid":12345, "tid":8, "ts":1718093442356790, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7741. ,{ "pid":12345, "tid":8, "ts":1718093442356885, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/tests/de_win.h" }}
  7742. ,{ "pid":12345, "tid":8, "ts":1718093442356884, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/tests/de_win.h" }}
  7743. ,{ "pid":12345, "tid":8, "ts":1718093442356940, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7744. ,{ "pid":12345, "tid":8, "ts":1718093442357027, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/cord/tests/cordtest.c" }}
  7745. ,{ "pid":12345, "tid":8, "ts":1718093442357024, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/cord/tests/cordtest.c" }}
  7746. ,{ "pid":12345, "tid":8, "ts":1718093442357099, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7747. ,{ "pid":12345, "tid":8, "ts":1718093442357171, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/checksums.c" }}
  7748. ,{ "pid":12345, "tid":8, "ts":1718093442357170, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/checksums.c" }}
  7749. ,{ "pid":12345, "tid":8, "ts":1718093442357306, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/allchblk.c" }}
  7750. ,{ "pid":12345, "tid":8, "ts":1718093442357305, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/allchblk.c" }}
  7751. ,{ "pid":12345, "tid":8, "ts":1718093442357428, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WindowsGames/Include/C/Baselib_DynamicLibrary.inl.h" }}
  7752. ,{ "pid":12345, "tid":8, "ts":1718093442357425, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WindowsGames/Include/C/Baselib_DynamicLibrary.inl.h" }}
  7753. ,{ "pid":12345, "tid":8, "ts":1718093442357560, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Windows/Include/C/Baselib_ErrorState.inl.h" }}
  7754. ,{ "pid":12345, "tid":8, "ts":1718093442357557, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Windows/Include/C/Baselib_ErrorState.inl.h" }}
  7755. ,{ "pid":12345, "tid":8, "ts":1718093442357694, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/WebGL/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7756. ,{ "pid":12345, "tid":8, "ts":1718093442357692, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/WebGL/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7757. ,{ "pid":12345, "tid":8, "ts":1718093442357783, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7758. ,{ "pid":12345, "tid":8, "ts":1718093442357843, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/VisionOS/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7759. ,{ "pid":12345, "tid":8, "ts":1718093442357842, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/VisionOS/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7760. ,{ "pid":12345, "tid":8, "ts":1718093442357904, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7761. ,{ "pid":12345, "tid":8, "ts":1718093442358035, "dur":147, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7762. ,{ "pid":12345, "tid":8, "ts":1718093442358033, "dur":151, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/UniversalWindows/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7763. ,{ "pid":12345, "tid":8, "ts":1718093442358185, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7764. ,{ "pid":12345, "tid":8, "ts":1718093442358300, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Tvos/Include/BaselibPlatformSpecificEnvironment.h" }}
  7765. ,{ "pid":12345, "tid":8, "ts":1718093442358297, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Tvos/Include/BaselibPlatformSpecificEnvironment.h" }}
  7766. ,{ "pid":12345, "tid":8, "ts":1718093442358380, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7767. ,{ "pid":12345, "tid":8, "ts":1718093442358459, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Linux/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7768. ,{ "pid":12345, "tid":8, "ts":1718093442358458, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Linux/Include/C/Baselib_ThreadLocalStorage.inl.h" }}
  7769. ,{ "pid":12345, "tid":8, "ts":1718093442358524, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7770. ,{ "pid":12345, "tid":8, "ts":1718093442358581, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/IOS/Include/C/Baselib_FileIO.inl.h" }}
  7771. ,{ "pid":12345, "tid":8, "ts":1718093442358580, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/IOS/Include/C/Baselib_FileIO.inl.h" }}
  7772. ,{ "pid":12345, "tid":8, "ts":1718093442358672, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7773. ,{ "pid":12345, "tid":8, "ts":1718093442358768, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_ErrorState.inl.h" }}
  7774. ,{ "pid":12345, "tid":8, "ts":1718093442358766, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/EmbeddedLinux/Include/C/Baselib_ErrorState.inl.h" }}
  7775. ,{ "pid":12345, "tid":8, "ts":1718093442358904, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Platforms/Android/Include/C/Baselib_DynamicLibrary.inl.h" }}
  7776. ,{ "pid":12345, "tid":8, "ts":1718093442358903, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Platforms/Android/Include/C/Baselib_DynamicLibrary.inl.h" }}
  7777. ,{ "pid":12345, "tid":8, "ts":1718093442358985, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7778. ,{ "pid":12345, "tid":8, "ts":1718093442359112, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/UndefineCompilerMacros.h" }}
  7779. ,{ "pid":12345, "tid":8, "ts":1718093442359111, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/UndefineCompilerMacros.h" }}
  7780. ,{ "pid":12345, "tid":8, "ts":1718093442359203, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7781. ,{ "pid":12345, "tid":8, "ts":1718093442359278, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Internal/Compiler/CompilerEnvironmentGcc.h" }}
  7782. ,{ "pid":12345, "tid":8, "ts":1718093442359276, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Internal/Compiler/CompilerEnvironmentGcc.h" }}
  7783. ,{ "pid":12345, "tid":8, "ts":1718093442359359, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7784. ,{ "pid":12345, "tid":8, "ts":1718093442359480, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/External/utfcpp/source/utf8/cpp17.h" }}
  7785. ,{ "pid":12345, "tid":8, "ts":1718093442359478, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/External/utfcpp/source/utf8/cpp17.h" }}
  7786. ,{ "pid":12345, "tid":8, "ts":1718093442359542, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7787. ,{ "pid":12345, "tid":8, "ts":1718093442359650, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/ThreadLocalStorage.h" }}
  7788. ,{ "pid":12345, "tid":8, "ts":1718093442359648, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/ThreadLocalStorage.h" }}
  7789. ,{ "pid":12345, "tid":8, "ts":1718093442359754, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7790. ,{ "pid":12345, "tid":8, "ts":1718093442359817, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpsc_node_stack.h" }}
  7791. ,{ "pid":12345, "tid":8, "ts":1718093442359815, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpsc_node_stack.h" }}
  7792. ,{ "pid":12345, "tid":8, "ts":1718093442359894, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7793. ,{ "pid":12345, "tid":8, "ts":1718093442359997, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/mpmc_fixed_queue.h" }}
  7794. ,{ "pid":12345, "tid":8, "ts":1718093442359995, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/mpmc_fixed_queue.h" }}
  7795. ,{ "pid":12345, "tid":8, "ts":1718093442360059, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7796. ,{ "pid":12345, "tid":8, "ts":1718093442360150, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/ConditionVariable_FutexBased.inl.h" }}
  7797. ,{ "pid":12345, "tid":8, "ts":1718093442360148, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/ConditionVariable_FutexBased.inl.h" }}
  7798. ,{ "pid":12345, "tid":8, "ts":1718093442360235, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7799. ,{ "pid":12345, "tid":8, "ts":1718093442360331, "dur":168, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Internal/Algorithm.inl.h" }}
  7800. ,{ "pid":12345, "tid":8, "ts":1718093442360330, "dur":170, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Internal/Algorithm.inl.h" }}
  7801. ,{ "pid":12345, "tid":8, "ts":1718093442360500, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7802. ,{ "pid":12345, "tid":8, "ts":1718093442360583, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/ConditionVariable.h" }}
  7803. ,{ "pid":12345, "tid":8, "ts":1718093442360582, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/ConditionVariable.h" }}
  7804. ,{ "pid":12345, "tid":8, "ts":1718093442360695, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7805. ,{ "pid":12345, "tid":8, "ts":1718093442360776, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/Cpp/Atomic.h" }}
  7806. ,{ "pid":12345, "tid":8, "ts":1718093442360775, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/Cpp/Atomic.h" }}
  7807. ,{ "pid":12345, "tid":8, "ts":1718093442360885, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7808. ,{ "pid":12345, "tid":8, "ts":1718093442361017, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_LLSC_Gcc.inl.h" }}
  7809. ,{ "pid":12345, "tid":8, "ts":1718093442361016, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Compiler/Baselib_Atomic_LLSC_Gcc.inl.h" }}
  7810. ,{ "pid":12345, "tid":8, "ts":1718093442361102, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7811. ,{ "pid":12345, "tid":8, "ts":1718093442361185, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_ReentrantLock.inl.h" }}
  7812. ,{ "pid":12345, "tid":8, "ts":1718093442361183, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_ReentrantLock.inl.h" }}
  7813. ,{ "pid":12345, "tid":8, "ts":1718093442361253, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7814. ,{ "pid":12345, "tid":8, "ts":1718093442361355, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Internal/Baselib_EventSemaphore_FutexBased.inl.h" }}
  7815. ,{ "pid":12345, "tid":8, "ts":1718093442361353, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Internal/Baselib_EventSemaphore_FutexBased.inl.h" }}
  7816. ,{ "pid":12345, "tid":8, "ts":1718093442361431, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7817. ,{ "pid":12345, "tid":8, "ts":1718093442361502, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_ThreadLocalStorage.h" }}
  7818. ,{ "pid":12345, "tid":8, "ts":1718093442361501, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_ThreadLocalStorage.h" }}
  7819. ,{ "pid":12345, "tid":8, "ts":1718093442361639, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7820. ,{ "pid":12345, "tid":8, "ts":1718093442361726, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Socket.h" }}
  7821. ,{ "pid":12345, "tid":8, "ts":1718093442361725, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Socket.h" }}
  7822. ,{ "pid":12345, "tid":8, "ts":1718093442361790, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7823. ,{ "pid":12345, "tid":8, "ts":1718093442361909, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7824. ,{ "pid":12345, "tid":8, "ts":1718093442362005, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_ErrorState.h" }}
  7825. ,{ "pid":12345, "tid":8, "ts":1718093442362004, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_ErrorState.h" }}
  7826. ,{ "pid":12345, "tid":8, "ts":1718093442362083, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7827. ,{ "pid":12345, "tid":8, "ts":1718093442362182, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/baselib/Include/C/Baselib_Atomic_TypeSafe.h" }}
  7828. ,{ "pid":12345, "tid":8, "ts":1718093442362180, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/baselib/Include/C/Baselib_Atomic_TypeSafe.h" }}
  7829. ,{ "pid":12345, "tid":8, "ts":1718093442362260, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7830. ,{ "pid":12345, "tid":8, "ts":1718093442362320, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/WindowsBase.dll" }}
  7831. ,{ "pid":12345, "tid":8, "ts":1718093442362319, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/WindowsBase.dll" }}
  7832. ,{ "pid":12345, "tid":8, "ts":1718093442362398, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7833. ,{ "pid":12345, "tid":8, "ts":1718093442362498, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/UnityLinker" }}
  7834. ,{ "pid":12345, "tid":8, "ts":1718093442362581, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7835. ,{ "pid":12345, "tid":8, "ts":1718093442362662, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Linker.Api.Output.xml" }}
  7836. ,{ "pid":12345, "tid":8, "ts":1718093442362660, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Linker.Api.Output.xml" }}
  7837. ,{ "pid":12345, "tid":8, "ts":1718093442362738, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7838. ,{ "pid":12345, "tid":8, "ts":1718093442362837, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.pdb" }}
  7839. ,{ "pid":12345, "tid":8, "ts":1718093442362835, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.pdb" }}
  7840. ,{ "pid":12345, "tid":8, "ts":1718093442362895, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7841. ,{ "pid":12345, "tid":8, "ts":1718093442362979, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Common35.pdb" }}
  7842. ,{ "pid":12345, "tid":8, "ts":1718093442362978, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Common35.pdb" }}
  7843. ,{ "pid":12345, "tid":8, "ts":1718093442363088, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7844. ,{ "pid":12345, "tid":8, "ts":1718093442363163, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Building.dll" }}
  7845. ,{ "pid":12345, "tid":8, "ts":1718093442363161, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Building.dll" }}
  7846. ,{ "pid":12345, "tid":8, "ts":1718093442363245, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7847. ,{ "pid":12345, "tid":8, "ts":1718093442363327, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.dll" }}
  7848. ,{ "pid":12345, "tid":8, "ts":1718093442363325, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.dll" }}
  7849. ,{ "pid":12345, "tid":8, "ts":1718093442363398, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7850. ,{ "pid":12345, "tid":8, "ts":1718093442363534, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.pdb" }}
  7851. ,{ "pid":12345, "tid":8, "ts":1718093442363531, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.pdb" }}
  7852. ,{ "pid":12345, "tid":8, "ts":1718093442363621, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7853. ,{ "pid":12345, "tid":8, "ts":1718093442363709, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.iOS.dll" }}
  7854. ,{ "pid":12345, "tid":8, "ts":1718093442363708, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.iOS.dll" }}
  7855. ,{ "pid":12345, "tid":8, "ts":1718093442363775, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7856. ,{ "pid":12345, "tid":8, "ts":1718093442363866, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Android.pdb" }}
  7857. ,{ "pid":12345, "tid":8, "ts":1718093442363865, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Bee.BuildLogic.Android.pdb" }}
  7858. ,{ "pid":12345, "tid":8, "ts":1718093442363960, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7859. ,{ "pid":12345, "tid":8, "ts":1718093442364044, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.IL2CPP.Api.dll" }}
  7860. ,{ "pid":12345, "tid":8, "ts":1718093442364044, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.IL2CPP.Api.dll" }}
  7861. ,{ "pid":12345, "tid":8, "ts":1718093442364107, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7862. ,{ "pid":12345, "tid":8, "ts":1718093442364187, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Unity.Api.Attributes.dll" }}
  7863. ,{ "pid":12345, "tid":8, "ts":1718093442364186, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Unity.Api.Attributes.dll" }}
  7864. ,{ "pid":12345, "tid":8, "ts":1718093442364259, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7865. ,{ "pid":12345, "tid":8, "ts":1718093442364338, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Xml.Serialization.dll" }}
  7866. ,{ "pid":12345, "tid":8, "ts":1718093442364336, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Xml.Serialization.dll" }}
  7867. ,{ "pid":12345, "tid":8, "ts":1718093442364422, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7868. ,{ "pid":12345, "tid":8, "ts":1718093442364515, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Web.dll" }}
  7869. ,{ "pid":12345, "tid":8, "ts":1718093442364513, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Web.dll" }}
  7870. ,{ "pid":12345, "tid":8, "ts":1718093442364601, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7871. ,{ "pid":12345, "tid":8, "ts":1718093442364680, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.Thread.dll" }}
  7872. ,{ "pid":12345, "tid":8, "ts":1718093442364678, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.Thread.dll" }}
  7873. ,{ "pid":12345, "tid":8, "ts":1718093442364764, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7874. ,{ "pid":12345, "tid":8, "ts":1718093442364849, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Threading.dll" }}
  7875. ,{ "pid":12345, "tid":8, "ts":1718093442364848, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Threading.dll" }}
  7876. ,{ "pid":12345, "tid":8, "ts":1718093442364901, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7877. ,{ "pid":12345, "tid":8, "ts":1718093442364981, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Text.Encoding.dll" }}
  7878. ,{ "pid":12345, "tid":8, "ts":1718093442364980, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Text.Encoding.dll" }}
  7879. ,{ "pid":12345, "tid":8, "ts":1718093442365049, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7880. ,{ "pid":12345, "tid":8, "ts":1718093442365113, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Principal.dll" }}
  7881. ,{ "pid":12345, "tid":8, "ts":1718093442365112, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Principal.dll" }}
  7882. ,{ "pid":12345, "tid":8, "ts":1718093442365219, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7883. ,{ "pid":12345, "tid":8, "ts":1718093442365310, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Security.Cryptography.Algorithms.dll" }}
  7884. ,{ "pid":12345, "tid":8, "ts":1718093442365309, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Security.Cryptography.Algorithms.dll" }}
  7885. ,{ "pid":12345, "tid":8, "ts":1718093442365384, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7886. ,{ "pid":12345, "tid":8, "ts":1718093442365462, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Serialization.Json.dll" }}
  7887. ,{ "pid":12345, "tid":8, "ts":1718093442365451, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Serialization.Json.dll" }}
  7888. ,{ "pid":12345, "tid":8, "ts":1718093442365529, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7889. ,{ "pid":12345, "tid":8, "ts":1718093442365590, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.Intrinsics.dll" }}
  7890. ,{ "pid":12345, "tid":8, "ts":1718093442365588, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Intrinsics.dll" }}
  7891. ,{ "pid":12345, "tid":8, "ts":1718093442365647, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7892. ,{ "pid":12345, "tid":8, "ts":1718093442365723, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Runtime.CompilerServices.VisualC.dll" }}
  7893. ,{ "pid":12345, "tid":8, "ts":1718093442365722, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.CompilerServices.VisualC.dll" }}
  7894. ,{ "pid":12345, "tid":8, "ts":1718093442365794, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7895. ,{ "pid":12345, "tid":8, "ts":1718093442365898, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.Primitives.dll" }}
  7896. ,{ "pid":12345, "tid":8, "ts":1718093442365896, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Primitives.dll" }}
  7897. ,{ "pid":12345, "tid":8, "ts":1718093442365975, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7898. ,{ "pid":12345, "tid":8, "ts":1718093442366049, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Reflection.dll" }}
  7899. ,{ "pid":12345, "tid":8, "ts":1718093442366048, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.dll" }}
  7900. ,{ "pid":12345, "tid":8, "ts":1718093442366124, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7901. ,{ "pid":12345, "tid":8, "ts":1718093442366199, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Private.CoreLib.dll" }}
  7902. ,{ "pid":12345, "tid":8, "ts":1718093442366197, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Private.CoreLib.dll" }}
  7903. ,{ "pid":12345, "tid":8, "ts":1718093442366255, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7904. ,{ "pid":12345, "tid":8, "ts":1718093442366349, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.WebProxy.dll" }}
  7905. ,{ "pid":12345, "tid":8, "ts":1718093442366348, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.WebProxy.dll" }}
  7906. ,{ "pid":12345, "tid":8, "ts":1718093442366439, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7907. ,{ "pid":12345, "tid":8, "ts":1718093442366535, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Requests.dll" }}
  7908. ,{ "pid":12345, "tid":8, "ts":1718093442366532, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Requests.dll" }}
  7909. ,{ "pid":12345, "tid":8, "ts":1718093442366613, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7910. ,{ "pid":12345, "tid":8, "ts":1718093442366712, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Net.Mail.dll" }}
  7911. ,{ "pid":12345, "tid":8, "ts":1718093442366710, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Mail.dll" }}
  7912. ,{ "pid":12345, "tid":8, "ts":1718093442366786, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7913. ,{ "pid":12345, "tid":8, "ts":1718093442366881, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Linq.Queryable.dll" }}
  7914. ,{ "pid":12345, "tid":8, "ts":1718093442366879, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Linq.Queryable.dll" }}
  7915. ,{ "pid":12345, "tid":8, "ts":1718093442366977, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7916. ,{ "pid":12345, "tid":8, "ts":1718093442367068, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.MemoryMappedFiles.dll" }}
  7917. ,{ "pid":12345, "tid":8, "ts":1718093442367067, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.MemoryMappedFiles.dll" }}
  7918. ,{ "pid":12345, "tid":8, "ts":1718093442367137, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7919. ,{ "pid":12345, "tid":8, "ts":1718093442367229, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.IO.FileSystem.AccessControl.dll" }}
  7920. ,{ "pid":12345, "tid":8, "ts":1718093442367228, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.IO.FileSystem.AccessControl.dll" }}
  7921. ,{ "pid":12345, "tid":8, "ts":1718093442367294, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7922. ,{ "pid":12345, "tid":8, "ts":1718093442367379, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Globalization.Extensions.dll" }}
  7923. ,{ "pid":12345, "tid":8, "ts":1718093442367377, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Globalization.Extensions.dll" }}
  7924. ,{ "pid":12345, "tid":8, "ts":1718093442367443, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7925. ,{ "pid":12345, "tid":8, "ts":1718093442367520, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Drawing.dll" }}
  7926. ,{ "pid":12345, "tid":8, "ts":1718093442367519, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Drawing.dll" }}
  7927. ,{ "pid":12345, "tid":8, "ts":1718093442367602, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7928. ,{ "pid":12345, "tid":8, "ts":1718093442367674, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Diagnostics.Process.dll" }}
  7929. ,{ "pid":12345, "tid":8, "ts":1718093442367673, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Diagnostics.Process.dll" }}
  7930. ,{ "pid":12345, "tid":8, "ts":1718093442367748, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7931. ,{ "pid":12345, "tid":8, "ts":1718093442367819, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Data.dll" }}
  7932. ,{ "pid":12345, "tid":8, "ts":1718093442367818, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Data.dll" }}
  7933. ,{ "pid":12345, "tid":8, "ts":1718093442367895, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7934. ,{ "pid":12345, "tid":8, "ts":1718093442367974, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.ComponentModel.TypeConverter.dll" }}
  7935. ,{ "pid":12345, "tid":8, "ts":1718093442367973, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ComponentModel.TypeConverter.dll" }}
  7936. ,{ "pid":12345, "tid":8, "ts":1718093442368045, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7937. ,{ "pid":12345, "tid":8, "ts":1718093442368132, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.Collections.Specialized.dll" }}
  7938. ,{ "pid":12345, "tid":8, "ts":1718093442368130, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Collections.Specialized.dll" }}
  7939. ,{ "pid":12345, "tid":8, "ts":1718093442368217, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7940. ,{ "pid":12345, "tid":8, "ts":1718093442368312, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/System.AppContext.dll" }}
  7941. ,{ "pid":12345, "tid":8, "ts":1718093442368311, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.AppContext.dll" }}
  7942. ,{ "pid":12345, "tid":8, "ts":1718093442368376, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7943. ,{ "pid":12345, "tid":8, "ts":1718093442368443, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/mscorlib.dll" }}
  7944. ,{ "pid":12345, "tid":8, "ts":1718093442368442, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/mscorlib.dll" }}
  7945. ,{ "pid":12345, "tid":8, "ts":1718093442368518, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7946. ,{ "pid":12345, "tid":8, "ts":1718093442368602, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Mono.Cecil.Pdb.dll" }}
  7947. ,{ "pid":12345, "tid":8, "ts":1718093442368601, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Mono.Cecil.Pdb.dll" }}
  7948. ,{ "pid":12345, "tid":8, "ts":1718093442368672, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7949. ,{ "pid":12345, "tid":8, "ts":1718093442368747, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Microsoft.Win32.Primitives.dll" }}
  7950. ,{ "pid":12345, "tid":8, "ts":1718093442368746, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Microsoft.Win32.Primitives.dll" }}
  7951. ,{ "pid":12345, "tid":8, "ts":1718093442368824, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7952. ,{ "pid":12345, "tid":8, "ts":1718093442368895, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libSystem.Security.Cryptography.Native.Apple.dylib" }}
  7953. ,{ "pid":12345, "tid":8, "ts":1718093442368964, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7954. ,{ "pid":12345, "tid":8, "ts":1718093442369052, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/libmscordaccore.dylib" }}
  7955. ,{ "pid":12345, "tid":8, "ts":1718093442369153, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7956. ,{ "pid":12345, "tid":8, "ts":1718093442369253, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/JetBrains.Profiler.Api.dll" }}
  7957. ,{ "pid":12345, "tid":8, "ts":1718093442369252, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/JetBrains.Profiler.Api.dll" }}
  7958. ,{ "pid":12345, "tid":8, "ts":1718093442369325, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7959. ,{ "pid":12345, "tid":8, "ts":1718093442369416, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/createdump" }}
  7960. ,{ "pid":12345, "tid":8, "ts":1718093442369511, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7961. ,{ "pid":12345, "tid":8, "ts":1718093442369585, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Tools.pdb" }}
  7962. ,{ "pid":12345, "tid":8, "ts":1718093442369583, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Tools.pdb" }}
  7963. ,{ "pid":12345, "tid":8, "ts":1718093442369648, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7964. ,{ "pid":12345, "tid":8, "ts":1718093442369729, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.VisualStudio.pdb" }}
  7965. ,{ "pid":12345, "tid":8, "ts":1718093442369728, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.VisualStudio.pdb" }}
  7966. ,{ "pid":12345, "tid":8, "ts":1718093442369792, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7967. ,{ "pid":12345, "tid":8, "ts":1718093442369869, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.TvOS.pdb" }}
  7968. ,{ "pid":12345, "tid":8, "ts":1718093442369868, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.TvOS.pdb" }}
  7969. ,{ "pid":12345, "tid":8, "ts":1718093442369940, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7970. ,{ "pid":12345, "tid":8, "ts":1718093442370046, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Linux.pdb" }}
  7971. ,{ "pid":12345, "tid":8, "ts":1718093442370045, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Linux.pdb" }}
  7972. ,{ "pid":12345, "tid":8, "ts":1718093442370113, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7973. ,{ "pid":12345, "tid":8, "ts":1718093442370185, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.Toolchain.Emscripten.pdb" }}
  7974. ,{ "pid":12345, "tid":8, "ts":1718093442370183, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.Toolchain.Emscripten.pdb" }}
  7975. ,{ "pid":12345, "tid":8, "ts":1718093442370241, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7976. ,{ "pid":12345, "tid":8, "ts":1718093442370314, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.TinyProfiler2.pdb" }}
  7977. ,{ "pid":12345, "tid":8, "ts":1718093442370312, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.TinyProfiler2.pdb" }}
  7978. ,{ "pid":12345, "tid":8, "ts":1718093442370391, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7979. ,{ "pid":12345, "tid":8, "ts":1718093442370499, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.DotNet.pdb" }}
  7980. ,{ "pid":12345, "tid":8, "ts":1718093442370498, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.DotNet.pdb" }}
  7981. ,{ "pid":12345, "tid":8, "ts":1718093442370566, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7982. ,{ "pid":12345, "tid":8, "ts":1718093442370654, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Bee.BeeDriver.xml" }}
  7983. ,{ "pid":12345, "tid":8, "ts":1718093442370652, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Bee.BeeDriver.xml" }}
  7984. ,{ "pid":12345, "tid":8, "ts":1718093442370733, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7985. ,{ "pid":12345, "tid":8, "ts":1718093442370821, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_x86_64/Analytics.deps.json" }}
  7986. ,{ "pid":12345, "tid":8, "ts":1718093442370819, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/Analytics.deps.json" }}
  7987. ,{ "pid":12345, "tid":8, "ts":1718093442370900, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7988. ,{ "pid":12345, "tid":8, "ts":1718093442370980, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/UnityLinker.runtimeconfig.json" }}
  7989. ,{ "pid":12345, "tid":8, "ts":1718093442370978, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/UnityLinker.runtimeconfig.json" }}
  7990. ,{ "pid":12345, "tid":8, "ts":1718093442371052, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7991. ,{ "pid":12345, "tid":8, "ts":1718093442371136, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.TinyProfiler.pdb" }}
  7992. ,{ "pid":12345, "tid":8, "ts":1718093442371134, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.TinyProfiler.pdb" }}
  7993. ,{ "pid":12345, "tid":8, "ts":1718093442371221, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7994. ,{ "pid":12345, "tid":8, "ts":1718093442371305, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Linker.Api.Output.pdb" }}
  7995. ,{ "pid":12345, "tid":8, "ts":1718093442371304, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Linker.Api.Output.pdb" }}
  7996. ,{ "pid":12345, "tid":8, "ts":1718093442371379, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  7997. ,{ "pid":12345, "tid":8, "ts":1718093442371462, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.dll" }}
  7998. ,{ "pid":12345, "tid":8, "ts":1718093442371453, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.dll" }}
  7999. ,{ "pid":12345, "tid":8, "ts":1718093442371543, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8000. ,{ "pid":12345, "tid":8, "ts":1718093442371677, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Common35.dll" }}
  8001. ,{ "pid":12345, "tid":8, "ts":1718093442371675, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Common35.dll" }}
  8002. ,{ "pid":12345, "tid":8, "ts":1718093442371743, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8003. ,{ "pid":12345, "tid":8, "ts":1718093442371819, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.dll" }}
  8004. ,{ "pid":12345, "tid":8, "ts":1718093442371817, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.dll" }}
  8005. ,{ "pid":12345, "tid":8, "ts":1718093442371892, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8006. ,{ "pid":12345, "tid":8, "ts":1718093442371990, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WebGL.dll" }}
  8007. ,{ "pid":12345, "tid":8, "ts":1718093442371988, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.WebGL.dll" }}
  8008. ,{ "pid":12345, "tid":8, "ts":1718093442372058, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8009. ,{ "pid":12345, "tid":8, "ts":1718093442372143, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.dll" }}
  8010. ,{ "pid":12345, "tid":8, "ts":1718093442372141, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.MacOSX.dll" }}
  8011. ,{ "pid":12345, "tid":8, "ts":1718093442372266, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.pdb" }}
  8012. ,{ "pid":12345, "tid":8, "ts":1718093442372264, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.pdb" }}
  8013. ,{ "pid":12345, "tid":8, "ts":1718093442372330, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8014. ,{ "pid":12345, "tid":8, "ts":1718093442372435, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Android.dll" }}
  8015. ,{ "pid":12345, "tid":8, "ts":1718093442372434, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.IL2CPP.Bee.BuildLogic.Android.dll" }}
  8016. ,{ "pid":12345, "tid":8, "ts":1718093442372506, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8017. ,{ "pid":12345, "tid":8, "ts":1718093442372585, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Unity.Cecil.Visitor.pdb" }}
  8018. ,{ "pid":12345, "tid":8, "ts":1718093442372583, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Unity.Cecil.Visitor.pdb" }}
  8019. ,{ "pid":12345, "tid":8, "ts":1718093442372672, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8020. ,{ "pid":12345, "tid":8, "ts":1718093442372759, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.XPath.XDocument.dll" }}
  8021. ,{ "pid":12345, "tid":8, "ts":1718093442372757, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.XPath.XDocument.dll" }}
  8022. ,{ "pid":12345, "tid":8, "ts":1718093442372838, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8023. ,{ "pid":12345, "tid":8, "ts":1718093442372917, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Xml.dll" }}
  8024. ,{ "pid":12345, "tid":8, "ts":1718093442372916, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Xml.dll" }}
  8025. ,{ "pid":12345, "tid":8, "ts":1718093442373033, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ValueTuple.dll" }}
  8026. ,{ "pid":12345, "tid":8, "ts":1718093442373032, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ValueTuple.dll" }}
  8027. ,{ "pid":12345, "tid":8, "ts":1718093442373136, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8028. ,{ "pid":12345, "tid":8, "ts":1718093442373222, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Threading.Tasks.Dataflow.dll" }}
  8029. ,{ "pid":12345, "tid":8, "ts":1718093442373220, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Threading.Tasks.Dataflow.dll" }}
  8030. ,{ "pid":12345, "tid":8, "ts":1718093442373299, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8031. ,{ "pid":12345, "tid":8, "ts":1718093442373393, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8032. ,{ "pid":12345, "tid":8, "ts":1718093442373461, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ServiceProcess.dll" }}
  8033. ,{ "pid":12345, "tid":8, "ts":1718093442373459, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ServiceProcess.dll" }}
  8034. ,{ "pid":12345, "tid":8, "ts":1718093442373532, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8035. ,{ "pid":12345, "tid":8, "ts":1718093442373621, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.Cryptography.X509Certificates.dll" }}
  8036. ,{ "pid":12345, "tid":8, "ts":1718093442373619, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.Cryptography.X509Certificates.dll" }}
  8037. ,{ "pid":12345, "tid":8, "ts":1718093442373703, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8038. ,{ "pid":12345, "tid":8, "ts":1718093442373827, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Security.AccessControl.dll" }}
  8039. ,{ "pid":12345, "tid":8, "ts":1718093442373825, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Security.AccessControl.dll" }}
  8040. ,{ "pid":12345, "tid":8, "ts":1718093442373894, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8041. ,{ "pid":12345, "tid":8, "ts":1718093442373987, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Numerics.dll" }}
  8042. ,{ "pid":12345, "tid":8, "ts":1718093442373986, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Numerics.dll" }}
  8043. ,{ "pid":12345, "tid":8, "ts":1718093442374067, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8044. ,{ "pid":12345, "tid":8, "ts":1718093442374154, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Runtime.Extensions.dll" }}
  8045. ,{ "pid":12345, "tid":8, "ts":1718093442374153, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Runtime.Extensions.dll" }}
  8046. ,{ "pid":12345, "tid":8, "ts":1718093442374231, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8047. ,{ "pid":12345, "tid":8, "ts":1718093442374339, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Resources.Reader.dll" }}
  8048. ,{ "pid":12345, "tid":8, "ts":1718093442374338, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Resources.Reader.dll" }}
  8049. ,{ "pid":12345, "tid":8, "ts":1718093442374406, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8050. ,{ "pid":12345, "tid":8, "ts":1718093442374466, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.Extensions.dll" }}
  8051. ,{ "pid":12345, "tid":8, "ts":1718093442374466, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.Extensions.dll" }}
  8052. ,{ "pid":12345, "tid":8, "ts":1718093442374535, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8053. ,{ "pid":12345, "tid":8, "ts":1718093442374603, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Reflection.DispatchProxy.dll" }}
  8054. ,{ "pid":12345, "tid":8, "ts":1718093442374602, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Reflection.DispatchProxy.dll" }}
  8055. ,{ "pid":12345, "tid":8, "ts":1718093442374680, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8056. ,{ "pid":12345, "tid":8, "ts":1718093442374755, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ObjectModel.dll" }}
  8057. ,{ "pid":12345, "tid":8, "ts":1718093442374753, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ObjectModel.dll" }}
  8058. ,{ "pid":12345, "tid":8, "ts":1718093442374815, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8059. ,{ "pid":12345, "tid":8, "ts":1718093442374911, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.WebProxy.dll" }}
  8060. ,{ "pid":12345, "tid":8, "ts":1718093442374909, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.WebProxy.dll" }}
  8061. ,{ "pid":12345, "tid":8, "ts":1718093442374999, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8062. ,{ "pid":12345, "tid":8, "ts":1718093442375076, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Requests.dll" }}
  8063. ,{ "pid":12345, "tid":8, "ts":1718093442375075, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Requests.dll" }}
  8064. ,{ "pid":12345, "tid":8, "ts":1718093442375150, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8065. ,{ "pid":12345, "tid":8, "ts":1718093442375230, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Net.Mail.dll" }}
  8066. ,{ "pid":12345, "tid":8, "ts":1718093442375228, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Net.Mail.dll" }}
  8067. ,{ "pid":12345, "tid":8, "ts":1718093442375295, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8068. ,{ "pid":12345, "tid":8, "ts":1718093442375383, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Linq.Queryable.dll" }}
  8069. ,{ "pid":12345, "tid":8, "ts":1718093442375382, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Linq.Queryable.dll" }}
  8070. ,{ "pid":12345, "tid":8, "ts":1718093442375476, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8071. ,{ "pid":12345, "tid":8, "ts":1718093442375565, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.Pipes.AccessControl.dll" }}
  8072. ,{ "pid":12345, "tid":8, "ts":1718093442375562, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.Pipes.AccessControl.dll" }}
  8073. ,{ "pid":12345, "tid":8, "ts":1718093442375622, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8074. ,{ "pid":12345, "tid":8, "ts":1718093442375694, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.FileSystem.dll" }}
  8075. ,{ "pid":12345, "tid":8, "ts":1718093442375692, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.FileSystem.dll" }}
  8076. ,{ "pid":12345, "tid":8, "ts":1718093442375794, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8077. ,{ "pid":12345, "tid":8, "ts":1718093442375873, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.IO.Compression.Brotli.dll" }}
  8078. ,{ "pid":12345, "tid":8, "ts":1718093442375872, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.Compression.Brotli.dll" }}
  8079. ,{ "pid":12345, "tid":8, "ts":1718093442375970, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8080. ,{ "pid":12345, "tid":8, "ts":1718093442376073, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Drawing.Primitives.dll" }}
  8081. ,{ "pid":12345, "tid":8, "ts":1718093442376072, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Drawing.Primitives.dll" }}
  8082. ,{ "pid":12345, "tid":8, "ts":1718093442376156, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8083. ,{ "pid":12345, "tid":8, "ts":1718093442376249, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Diagnostics.Process.dll" }}
  8084. ,{ "pid":12345, "tid":8, "ts":1718093442376247, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.Process.dll" }}
  8085. ,{ "pid":12345, "tid":8, "ts":1718093442376319, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8086. ,{ "pid":12345, "tid":8, "ts":1718093442376420, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.Data.DataSetExtensions.dll" }}
  8087. ,{ "pid":12345, "tid":8, "ts":1718093442376419, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Data.DataSetExtensions.dll" }}
  8088. ,{ "pid":12345, "tid":8, "ts":1718093442376495, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8089. ,{ "pid":12345, "tid":8, "ts":1718093442376703, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.ComponentModel.Annotations.dll" }}
  8090. ,{ "pid":12345, "tid":8, "ts":1718093442376702, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.ComponentModel.Annotations.dll" }}
  8091. ,{ "pid":12345, "tid":8, "ts":1718093442376816, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8092. ,{ "pid":12345, "tid":8, "ts":1718093442376889, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/System.AppContext.dll" }}
  8093. ,{ "pid":12345, "tid":8, "ts":1718093442376888, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.AppContext.dll" }}
  8094. ,{ "pid":12345, "tid":8, "ts":1718093442376972, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8095. ,{ "pid":12345, "tid":8, "ts":1718093442377078, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/mscorlib.dll" }}
  8096. ,{ "pid":12345, "tid":8, "ts":1718093442377077, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/mscorlib.dll" }}
  8097. ,{ "pid":12345, "tid":8, "ts":1718093442377146, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8098. ,{ "pid":12345, "tid":8, "ts":1718093442377244, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Mono.Cecil.Pdb.dll" }}
  8099. ,{ "pid":12345, "tid":8, "ts":1718093442377243, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Mono.Cecil.Pdb.dll" }}
  8100. ,{ "pid":12345, "tid":8, "ts":1718093442377303, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8101. ,{ "pid":12345, "tid":8, "ts":1718093442377369, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Microsoft.Win32.Registry.dll" }}
  8102. ,{ "pid":12345, "tid":8, "ts":1718093442377367, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Microsoft.Win32.Registry.dll" }}
  8103. ,{ "pid":12345, "tid":8, "ts":1718093442377468, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8104. ,{ "pid":12345, "tid":8, "ts":1718093442377533, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libSystem.Security.Cryptography.Native.OpenSsl.dylib" }}
  8105. ,{ "pid":12345, "tid":8, "ts":1718093442377615, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8106. ,{ "pid":12345, "tid":8, "ts":1718093442377703, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libmscordbi.dylib" }}
  8107. ,{ "pid":12345, "tid":8, "ts":1718093442377805, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8108. ,{ "pid":12345, "tid":8, "ts":1718093442377885, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/libclrjit.dylib" }}
  8109. ,{ "pid":12345, "tid":8, "ts":1718093442377968, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8110. ,{ "pid":12345, "tid":8, "ts":1718093442378052, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/il2cpp.deps.json" }}
  8111. ,{ "pid":12345, "tid":8, "ts":1718093442378051, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/il2cpp.deps.json" }}
  8112. ,{ "pid":12345, "tid":8, "ts":1718093442378116, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8113. ,{ "pid":12345, "tid":8, "ts":1718093442378177, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.TundraBackend.pdb" }}
  8114. ,{ "pid":12345, "tid":8, "ts":1718093442378176, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.TundraBackend.pdb" }}
  8115. ,{ "pid":12345, "tid":8, "ts":1718093442378244, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8116. ,{ "pid":12345, "tid":8, "ts":1718093442378329, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Windows.pdb" }}
  8117. ,{ "pid":12345, "tid":8, "ts":1718093442378328, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Windows.pdb" }}
  8118. ,{ "pid":12345, "tid":8, "ts":1718093442378413, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8119. ,{ "pid":12345, "tid":8, "ts":1718093442378507, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.UWP.pdb" }}
  8120. ,{ "pid":12345, "tid":8, "ts":1718093442378506, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.UWP.pdb" }}
  8121. ,{ "pid":12345, "tid":8, "ts":1718093442378573, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8122. ,{ "pid":12345, "tid":8, "ts":1718093442378662, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.LLVM.pdb" }}
  8123. ,{ "pid":12345, "tid":8, "ts":1718093442378661, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.LLVM.pdb" }}
  8124. ,{ "pid":12345, "tid":8, "ts":1718093442378764, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8125. ,{ "pid":12345, "tid":8, "ts":1718093442378847, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.GNU.pdb" }}
  8126. ,{ "pid":12345, "tid":8, "ts":1718093442378846, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.GNU.pdb" }}
  8127. ,{ "pid":12345, "tid":8, "ts":1718093442378927, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8128. ,{ "pid":12345, "tid":8, "ts":1718093442379005, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Toolchain.Android.pdb" }}
  8129. ,{ "pid":12345, "tid":8, "ts":1718093442379003, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Toolchain.Android.pdb" }}
  8130. ,{ "pid":12345, "tid":8, "ts":1718093442379069, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8131. ,{ "pid":12345, "tid":8, "ts":1718093442379177, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8132. ,{ "pid":12345, "tid":8, "ts":1718093442379251, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Bee.Core.pdb" }}
  8133. ,{ "pid":12345, "tid":8, "ts":1718093442379250, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Bee.Core.pdb" }}
  8134. ,{ "pid":12345, "tid":8, "ts":1718093442379364, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8135. ,{ "pid":12345, "tid":8, "ts":1718093442379456, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/build/deploy_arm64/Analytics.dll" }}
  8136. ,{ "pid":12345, "tid":8, "ts":1718093442379454, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/Analytics.dll" }}
  8137. ,{ "pid":12345, "tid":8, "ts":1718093442379534, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8138. ,{ "pid":12345, "tid":8, "ts":1718093442379621, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/etc/mono/4.0/machine.config" }}
  8139. ,{ "pid":12345, "tid":8, "ts":1718093442379620, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/Managed/mono/4.0/machine.config" }}
  8140. ,{ "pid":12345, "tid":8, "ts":1718093442379701, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8141. ,{ "pid":12345, "tid":8, "ts":1718093442379788, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/UnityFramework/UnityFramework.h" }}
  8142. ,{ "pid":12345, "tid":8, "ts":1718093442379787, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/UnityFramework/UnityFramework.h" }}
  8143. ,{ "pid":12345, "tid":8, "ts":1718093442379855, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8144. ,{ "pid":12345, "tid":8, "ts":1718093442379942, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/process_symbols.sh" }}
  8145. ,{ "pid":12345, "tid":8, "ts":1718093442380024, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8146. ,{ "pid":12345, "tid":8, "ts":1718093442380106, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UnityAppController.h" }}
  8147. ,{ "pid":12345, "tid":8, "ts":1718093442380104, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UnityAppController.h" }}
  8148. ,{ "pid":12345, "tid":8, "ts":1718093442380171, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8149. ,{ "pid":12345, "tid":8, "ts":1718093442380241, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/VideoPlayer.mm" }}
  8150. ,{ "pid":12345, "tid":8, "ts":1718093442380312, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8151. ,{ "pid":12345, "tid":8, "ts":1718093442380380, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/UnityReplayKit.mm" }}
  8152. ,{ "pid":12345, "tid":8, "ts":1718093442380453, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8153. ,{ "pid":12345, "tid":8, "ts":1718093442380574, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/OnDemandResources.mm" }}
  8154. ,{ "pid":12345, "tid":8, "ts":1718093442380642, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8155. ,{ "pid":12345, "tid":8, "ts":1718093442380727, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/IUnityGraphics.h" }}
  8156. ,{ "pid":12345, "tid":8, "ts":1718093442380726, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/IUnityGraphics.h" }}
  8157. ,{ "pid":12345, "tid":8, "ts":1718093442380789, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8158. ,{ "pid":12345, "tid":8, "ts":1718093442380876, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/Unity/DisplayManager.h" }}
  8159. ,{ "pid":12345, "tid":8, "ts":1718093442380875, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/DisplayManager.h" }}
  8160. ,{ "pid":12345, "tid":8, "ts":1718093442380950, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8161. ,{ "pid":12345, "tid":8, "ts":1718093442381052, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/Unity/CameraCapture.mm" }}
  8162. ,{ "pid":12345, "tid":8, "ts":1718093442381139, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8163. ,{ "pid":12345, "tid":8, "ts":1718093442381251, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/UI/UnityViewControllerBase+visionOS.h" }}
  8164. ,{ "pid":12345, "tid":8, "ts":1718093442381249, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityViewControllerBase+visionOS.h" }}
  8165. ,{ "pid":12345, "tid":8, "ts":1718093442381320, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8166. ,{ "pid":12345, "tid":8, "ts":1718093442381430, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8167. ,{ "pid":12345, "tid":8, "ts":1718093442381498, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/UnityView+Keyboard.mm" }}
  8168. ,{ "pid":12345, "tid":8, "ts":1718093442381570, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8169. ,{ "pid":12345, "tid":8, "ts":1718093442381657, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/UI/OrientationSupport.mm" }}
  8170. ,{ "pid":12345, "tid":8, "ts":1718093442381728, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8171. ,{ "pid":12345, "tid":8, "ts":1718093442381825, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Trampoline/Classes/RedefinePlatforms.h" }}
  8172. ,{ "pid":12345, "tid":8, "ts":1718093442381823, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/RedefinePlatforms.h" }}
  8173. ,{ "pid":12345, "tid":8, "ts":1718093442381983, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8174. ,{ "pid":12345, "tid":8, "ts":1718093442382059, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Classes/main.mm" }}
  8175. ,{ "pid":12345, "tid":8, "ts":1718093442382152, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8176. ,{ "pid":12345, "tid":8, "ts":1718093442382246, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/AndroidRuntime.cpp" }}
  8177. ,{ "pid":12345, "tid":8, "ts":1718093442382245, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/AndroidRuntime.cpp" }}
  8178. ,{ "pid":12345, "tid":8, "ts":1718093442382308, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8179. ,{ "pid":12345, "tid":8, "ts":1718093442382388, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/AssemblyName.cpp" }}
  8180. ,{ "pid":12345, "tid":8, "ts":1718093442382387, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/AssemblyName.cpp" }}
  8181. ,{ "pid":12345, "tid":8, "ts":1718093442382451, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8182. ,{ "pid":12345, "tid":8, "ts":1718093442382529, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/CCWBase.h" }}
  8183. ,{ "pid":12345, "tid":8, "ts":1718093442382528, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/CCWBase.h" }}
  8184. ,{ "pid":12345, "tid":8, "ts":1718093442382600, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8185. ,{ "pid":12345, "tid":8, "ts":1718093442382680, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ClassLibraryPAL.h" }}
  8186. ,{ "pid":12345, "tid":8, "ts":1718093442382678, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ClassLibraryPAL.h" }}
  8187. ,{ "pid":12345, "tid":8, "ts":1718093442382753, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8188. ,{ "pid":12345, "tid":8, "ts":1718093442382832, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ComObjectBase.h" }}
  8189. ,{ "pid":12345, "tid":8, "ts":1718093442382831, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ComObjectBase.h" }}
  8190. ,{ "pid":12345, "tid":8, "ts":1718093442382900, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8191. ,{ "pid":12345, "tid":8, "ts":1718093442383036, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8192. ,{ "pid":12345, "tid":8, "ts":1718093442383100, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/GenericClass.h" }}
  8193. ,{ "pid":12345, "tid":8, "ts":1718093442383099, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/GenericClass.h" }}
  8194. ,{ "pid":12345, "tid":8, "ts":1718093442383169, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8195. ,{ "pid":12345, "tid":8, "ts":1718093442383243, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Il2CppHStringReference.cpp" }}
  8196. ,{ "pid":12345, "tid":8, "ts":1718093442383242, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Il2CppHStringReference.cpp" }}
  8197. ,{ "pid":12345, "tid":8, "ts":1718093442383310, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8198. ,{ "pid":12345, "tid":8, "ts":1718093442383385, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/LastError.cpp" }}
  8199. ,{ "pid":12345, "tid":8, "ts":1718093442383384, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/LastError.cpp" }}
  8200. ,{ "pid":12345, "tid":8, "ts":1718093442383435, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8201. ,{ "pid":12345, "tid":8, "ts":1718093442383510, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/MemoryInformation.cpp" }}
  8202. ,{ "pid":12345, "tid":8, "ts":1718093442383508, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/MemoryInformation.cpp" }}
  8203. ,{ "pid":12345, "tid":8, "ts":1718093442383577, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8204. ,{ "pid":12345, "tid":8, "ts":1718093442383713, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8205. ,{ "pid":12345, "tid":8, "ts":1718093442383801, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Module.h" }}
  8206. ,{ "pid":12345, "tid":8, "ts":1718093442383799, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Module.h" }}
  8207. ,{ "pid":12345, "tid":8, "ts":1718093442383882, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8208. ,{ "pid":12345, "tid":8, "ts":1718093442383959, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/Parameter.h" }}
  8209. ,{ "pid":12345, "tid":8, "ts":1718093442383957, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Parameter.h" }}
  8210. ,{ "pid":12345, "tid":8, "ts":1718093442384027, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8211. ,{ "pid":12345, "tid":8, "ts":1718093442384106, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAdsLoadListener.h" }}
  8212. ,{ "pid":12345, "tid":8, "ts":1718093442384105, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.ads/Plugins/iOS/UnityAdsLoadListener.h" }}
  8213. ,{ "pid":12345, "tid":8, "ts":1718093442384172, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8214. ,{ "pid":12345, "tid":8, "ts":1718093442384247, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.purchasing@4.11.0/Plugins/UnityPurchasing/iOS/UnityEarlyTransactionObserver.h" }}
  8215. ,{ "pid":12345, "tid":8, "ts":1718093442384245, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.purchasing/Plugins/UnityPurchasing/iOS/UnityEarlyTransactionObserver.h" }}
  8216. ,{ "pid":12345, "tid":8, "ts":1718093442384317, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8217. ,{ "pid":12345, "tid":8, "ts":1718093442384409, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/RCW.cpp" }}
  8218. ,{ "pid":12345, "tid":8, "ts":1718093442384408, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/RCW.cpp" }}
  8219. ,{ "pid":12345, "tid":8, "ts":1718093442384472, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8220. ,{ "pid":12345, "tid":8, "ts":1718093442384536, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/ScopedThreadAttacher.cpp" }}
  8221. ,{ "pid":12345, "tid":8, "ts":1718093442384534, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/ScopedThreadAttacher.cpp" }}
  8222. ,{ "pid":12345, "tid":8, "ts":1718093442384598, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8223. ,{ "pid":12345, "tid":8, "ts":1718093442384722, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8224. ,{ "pid":12345, "tid":8, "ts":1718093442384806, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/VisualizerHelpers.cpp" }}
  8225. ,{ "pid":12345, "tid":8, "ts":1718093442384805, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/VisualizerHelpers.cpp" }}
  8226. ,{ "pid":12345, "tid":8, "ts":1718093442384860, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8227. ,{ "pid":12345, "tid":8, "ts":1718093442384955, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm/WindowsRuntime.h" }}
  8228. ,{ "pid":12345, "tid":8, "ts":1718093442384954, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/WindowsRuntime.h" }}
  8229. ,{ "pid":12345, "tid":8, "ts":1718093442385012, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8230. ,{ "pid":12345, "tid":8, "ts":1718093442385138, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8231. ,{ "pid":12345, "tid":8, "ts":1718093442385226, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8232. ,{ "pid":12345, "tid":8, "ts":1718093442385286, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/LaunchScreen-iPhoneLandscape.png" }}
  8233. ,{ "pid":12345, "tid":8, "ts":1718093442385354, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8234. ,{ "pid":12345, "tid":8, "ts":1718093442385648, "dur":2731, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Settings-29.png" }}
  8235. ,{ "pid":12345, "tid":8, "ts":1718093442388474, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Notification-40.png" }}
  8236. ,{ "pid":12345, "tid":8, "ts":1718093442388760, "dur":1108, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-Notification-40.png" }}
  8237. ,{ "pid":12345, "tid":8, "ts":1718093442389897, "dur":82, "ph":"X", "name": "EmitNodeStart", "args": { "detail":"" }}
  8238. ,{ "pid":12345, "tid":8, "ts":1718093442391209, "dur":56, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }}
  8239. ,{ "pid":12345, "tid":8, "ts":1718093442389984, "dur":1290, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPad-Spotlight-80.png" }}
  8240. ,{ "pid":12345, "tid":8, "ts":1718093442391350, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.purchasing/Plugins/UnityPurchasing/iOS/UnityEarlyTransactionObserver.mm" }}
  8241. ,{ "pid":12345, "tid":8, "ts":1718093442391418, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8242. ,{ "pid":12345, "tid":8, "ts":1718093442391550, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8243. ,{ "pid":12345, "tid":8, "ts":1718093442391610, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.purchasing@4.11.0/Plugins/UnityPurchasing/iOS/UnityPurchasing.h" }}
  8244. ,{ "pid":12345, "tid":8, "ts":1718093442391608, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/com.unity.purchasing/Plugins/UnityPurchasing/iOS/UnityPurchasing.h" }}
  8245. ,{ "pid":12345, "tid":8, "ts":1718093442391680, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8246. ,{ "pid":12345, "tid":8, "ts":1718093442391744, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/AppleAuth/Native/iOS/AppleAuthSerializer.m" }}
  8247. ,{ "pid":12345, "tid":8, "ts":1718093442391807, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8248. ,{ "pid":12345, "tid":8, "ts":1718093442397954, "dur":94, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }}
  8249. ,{ "pid":12345, "tid":8, "ts":1718093442391932, "dur":6127, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets2.assets.resS" }}
  8250. ,{ "pid":12345, "tid":8, "ts":1718093442398081, "dur":108, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__15.cpp" }}
  8251. ,{ "pid":12345, "tid":8, "ts":1718093442398220, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8252. ,{ "pid":12345, "tid":8, "ts":1718093442398278, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/UnityEngine.TilemapModule.cpp" }}
  8253. ,{ "pid":12345, "tid":8, "ts":1718093442398277, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.TilemapModule.cpp" }}
  8254. ,{ "pid":12345, "tid":8, "ts":1718093442398365, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8255. ,{ "pid":12345, "tid":8, "ts":1718093442398451, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/mscorlib__22.cpp" }}
  8256. ,{ "pid":12345, "tid":8, "ts":1718093442398450, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/mscorlib__22.cpp" }}
  8257. ,{ "pid":12345, "tid":8, "ts":1718093442398517, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8258. ,{ "pid":12345, "tid":8, "ts":1718093442398609, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Firebase.Auth.cpp" }}
  8259. ,{ "pid":12345, "tid":8, "ts":1718093442398608, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Firebase.Auth.cpp" }}
  8260. ,{ "pid":12345, "tid":8, "ts":1718093442398682, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8261. ,{ "pid":12345, "tid":8, "ts":1718093442398763, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/I18N.CJK.cpp" }}
  8262. ,{ "pid":12345, "tid":8, "ts":1718093442398762, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/I18N.CJK.cpp" }}
  8263. ,{ "pid":12345, "tid":8, "ts":1718093442398845, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8264. ,{ "pid":12345, "tid":8, "ts":1718093442398926, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.2D.Animation.Runtime_CodeGen.c" }}
  8265. ,{ "pid":12345, "tid":8, "ts":1718093442398924, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.2D.Animation.Runtime_CodeGen.c" }}
  8266. ,{ "pid":12345, "tid":8, "ts":1718093442399000, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8267. ,{ "pid":12345, "tid":8, "ts":1718093442399088, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Mono.Security__1.cpp" }}
  8268. ,{ "pid":12345, "tid":8, "ts":1718093442399087, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Mono.Security__1.cpp" }}
  8269. ,{ "pid":12345, "tid":8, "ts":1718093442399148, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8270. ,{ "pid":12345, "tid":8, "ts":1718093442399224, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Generics__4.cpp" }}
  8271. ,{ "pid":12345, "tid":8, "ts":1718093442399222, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Generics__4.cpp" }}
  8272. ,{ "pid":12345, "tid":8, "ts":1718093442399299, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8273. ,{ "pid":12345, "tid":8, "ts":1718093442399380, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__14.cpp" }}
  8274. ,{ "pid":12345, "tid":8, "ts":1718093442399379, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__14.cpp" }}
  8275. ,{ "pid":12345, "tid":8, "ts":1718093442399448, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8276. ,{ "pid":12345, "tid":8, "ts":1718093442399528, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GoogleMobileAds.iOS.cpp" }}
  8277. ,{ "pid":12345, "tid":8, "ts":1718093442399526, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GoogleMobileAds.iOS.cpp" }}
  8278. ,{ "pid":12345, "tid":8, "ts":1718093442399591, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8279. ,{ "pid":12345, "tid":8, "ts":1718093442399674, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GenericMethods__6.cpp" }}
  8280. ,{ "pid":12345, "tid":8, "ts":1718093442399673, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GenericMethods__6.cpp" }}
  8281. ,{ "pid":12345, "tid":8, "ts":1718093442399739, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8282. ,{ "pid":12345, "tid":8, "ts":1718093442399811, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System_CodeGen.c" }}
  8283. ,{ "pid":12345, "tid":8, "ts":1718093442399810, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System_CodeGen.c" }}
  8284. ,{ "pid":12345, "tid":8, "ts":1718093442399872, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8285. ,{ "pid":12345, "tid":8, "ts":1718093442399958, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core.Configuration.cpp" }}
  8286. ,{ "pid":12345, "tid":8, "ts":1718093442399957, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core.Configuration.cpp" }}
  8287. ,{ "pid":12345, "tid":8, "ts":1718093442400022, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8288. ,{ "pid":12345, "tid":8, "ts":1718093442400097, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.Services.Core_CodeGen.c" }}
  8289. ,{ "pid":12345, "tid":8, "ts":1718093442400095, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.Services.Core_CodeGen.c" }}
  8290. ,{ "pid":12345, "tid":8, "ts":1718093442400154, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8291. ,{ "pid":12345, "tid":8, "ts":1718093442400270, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Unity.TextMeshPro_CodeGen.c" }}
  8292. ,{ "pid":12345, "tid":8, "ts":1718093442400268, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Unity.TextMeshPro_CodeGen.c" }}
  8293. ,{ "pid":12345, "tid":8, "ts":1718093442400335, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8294. ,{ "pid":12345, "tid":8, "ts":1718093442400450, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8295. ,{ "pid":12345, "tid":8, "ts":1718093442400571, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8296. ,{ "pid":12345, "tid":8, "ts":1718093442400654, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Data__12.cpp" }}
  8297. ,{ "pid":12345, "tid":8, "ts":1718093442400652, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Data__12.cpp" }}
  8298. ,{ "pid":12345, "tid":8, "ts":1718093442400726, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8299. ,{ "pid":12345, "tid":8, "ts":1718093442400782, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System__4.cpp" }}
  8300. ,{ "pid":12345, "tid":8, "ts":1718093442400781, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System__4.cpp" }}
  8301. ,{ "pid":12345, "tid":8, "ts":1718093442400843, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8302. ,{ "pid":12345, "tid":8, "ts":1718093442400925, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/Il2CppInteropDataTable.cpp" }}
  8303. ,{ "pid":12345, "tid":8, "ts":1718093442400923, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/Il2CppInteropDataTable.cpp" }}
  8304. ,{ "pid":12345, "tid":8, "ts":1718093442400994, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8305. ,{ "pid":12345, "tid":8, "ts":1718093442401063, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/GoogleMobileAds.iOS_CodeGen.c" }}
  8306. ,{ "pid":12345, "tid":8, "ts":1718093442401062, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/GoogleMobileAds.iOS_CodeGen.c" }}
  8307. ,{ "pid":12345, "tid":8, "ts":1718093442401115, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8308. ,{ "pid":12345, "tid":8, "ts":1718093442401194, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/cpp/System.Transactions.cpp" }}
  8309. ,{ "pid":12345, "tid":8, "ts":1718093442401192, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/System.Transactions.cpp" }}
  8310. ,{ "pid":12345, "tid":8, "ts":1718093442401251, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  8311. ,{ "pid":12345, "tid":8, "ts":1718093442401454, "dur":2482, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/sharedassets0.assets" }}
  8312. ,{ "pid":12345, "tid":8, "ts":1718093442403985, "dur":73, "ph":"X", "name": "EmitNodeStart", "args": { "detail":"" }}
  8313. ,{ "pid":12345, "tid":8, "ts":1718093442404063, "dur":884, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Data/globalgamemanagers.assets" }}
  8314. ,{ "pid":12345, "tid":8, "ts":1718093442404956, "dur":71318, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  8315. ,{ "pid":12345, "tid":0, "ts":1718093442484465, "dur":8810, "ph":"X", "name": "ProfilerWriteOutput" }
  8316. ,