project.pbxproj 350 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  10. 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  11. 2C1D5D7723E2DE5F00334ABB /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  12. 2C1D5D7823E2DE6A00334ABB /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  13. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  14. 2C1D5D7A23E2DEBF00334ABB /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F781996822636BFA00EBDF6A /* HCFeatures.m */; };
  15. 2C1D5D7B23E2DED200334ABB /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACDA22FC2D15008AB646 /* NCComments.m */; };
  16. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C33C48123E2C475005F963B /* NotificationService.swift */; };
  17. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  18. 2C59AC5823E2DFEE00733BE8 /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  19. 2C59AC5923E2E00F00733BE8 /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  20. 2C59AC5A23E2E01A00733BE8 /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  21. 2C59AC5B23E2E02700733BE8 /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  22. 2C59AC5C23E2E03400733BE8 /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  23. 2CB7D1C923E2E40B00376EF9 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  24. 2CB7D1CA23E2EDCB00376EF9 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  25. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3704EB2923D5A58400455C5B /* NCMenu.storyboard */; };
  26. 371B5A2E23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 371B5A2D23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift */; };
  27. 371B5A3323D0BD5500FAFAE9 /* FloatingPanel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */; };
  28. 3757A35523D9D76300EC369E /* NCMenuPanelController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3757A35423D9D76300EC369E /* NCMenuPanelController.swift */; };
  29. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */; };
  30. 3781B9B223DB2B9F006B4B1D /* CCMain+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9B123DB2B9F006B4B1D /* CCMain+Menu.swift */; };
  31. 3781B9B423DB2BC9006B4B1D /* CCFavorites+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9B323DB2BC9006B4B1D /* CCFavorites+Menu.swift */; };
  32. 37ECC83B23D0C7410082EFA2 /* NCMenuAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37ECC83A23D0C7400082EFA2 /* NCMenuAction.swift */; };
  33. F700222C1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  34. F700222D1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  35. F70022B31EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  36. F70022B41EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  37. F70022B61EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  38. F70022B71EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  39. F70022B91EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  40. F70022BA1EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  41. F70022BC1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  42. F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  43. F70022BF1EC4C9100080073F /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  44. F70022C01EC4C9100080073F /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  45. F70022C21EC4C9100080073F /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  46. F70022C31EC4C9100080073F /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  47. F70022C51EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  48. F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  49. F70022C81EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  50. F70022C91EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  51. F70022CB1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  52. F70022CC1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  53. F70022CE1EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  54. F70022CF1EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  55. F70022D11EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  56. F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  57. F70022D41EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  58. F70022D51EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  59. F70022D71EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  60. F70022D81EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  61. F70022DA1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  62. F70022DB1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  63. F70022DD1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  64. F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  65. F70022E61EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  66. F70022E71EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  67. F70022E91EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  68. F70022EA1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  69. F70022EC1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  70. F70022ED1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  71. F70022FB1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  72. F70022FC1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  73. F70022FE1EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  74. F70022FF1EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  75. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F700510022DF63AC003A3356 /* NCShare.storyboard */; };
  76. F700510322DF6897003A3356 /* Parchment.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F700510222DF6897003A3356 /* Parchment.framework */; };
  77. F700510522DF6A89003A3356 /* NCShare.swift in Sources */ = {isa = PBXBuildFile; fileRef = F700510422DF6A89003A3356 /* NCShare.swift */; };
  78. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */; };
  79. F704FA5C232A343F00BBA952 /* IMImagemeterViewer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704FA5B232A343F00BBA952 /* IMImagemeterViewer.swift */; };
  80. F7063DED2199E55F003F38DA /* SVGKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7063DEC2199E55F003F38DA /* SVGKit.framework */; };
  81. F7063DEF2199E568003F38DA /* CocoaLumberjack.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */; };
  82. F7063DF12199E56F003F38DA /* CocoaLumberjackSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */; };
  83. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */ = {isa = PBXBuildFile; fileRef = F707C26421A2DC5200F6181E /* NCStoreReview.swift */; };
  84. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  85. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  86. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  87. F70CEF5623E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  88. F70CEF5723E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  89. F70CEF5823E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  90. F70CEF5923E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  91. F70F2BA5225F2D8900EBB73E /* ZIPFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */; };
  92. F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F42405770F00A6033D /* NCViewerPDF.swift */; };
  93. F710D1F724057C9400A6033D /* NCDetailNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F624057C9400A6033D /* NCDetailNavigationController.swift */; };
  94. F710D1F924057C9D00A6033D /* NCDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F824057C9D00A6033D /* NCDetailViewController.swift */; };
  95. F710D1FE24057E5E00A6033D /* NCActionSheetHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1FB24057E5E00A6033D /* NCActionSheetHeader.swift */; };
  96. F710D1FF24057E5E00A6033D /* NCActionSheetHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1FC24057E5E00A6033D /* NCActionSheetHeaderView.swift */; };
  97. F710D20024057E5E00A6033D /* NCActionSheetHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F710D1FD24057E5E00A6033D /* NCActionSheetHeaderView.xib */; };
  98. F710D2022405826100A6033D /* NCDetailNavigationController+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D2012405826100A6033D /* NCDetailNavigationController+Menu.swift */; };
  99. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */; };
  100. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  101. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  102. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  103. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  104. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C0F46F1C8880540059EC54 /* ShareViewController.m */; };
  105. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  106. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  107. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  108. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  109. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  110. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  111. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7296A661C8880ED001A7809 /* CCloadItemData.swift */; };
  112. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  113. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  114. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A181EE590930086BD69 /* NCShares.m */; };
  115. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A1A1EE590930086BD69 /* NCSharesCell.m */; };
  116. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7169A1B1EE590930086BD69 /* NCSharesCell.xib */; };
  117. F716FE7823795E5000FABE50 /* NCCommunication.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F716FE7723795E5000FABE50 /* NCCommunication.framework */; settings = {ATTRIBUTES = (Required, ); }; };
  118. F716FE7A23795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F716FE7923795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift */; };
  119. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7226EDB1EE4089300EBECB1 /* Main.storyboard */; };
  120. F722814323C8C34500C41898 /* NCRichWorkspace.xib in Resources */ = {isa = PBXBuildFile; fileRef = F722814223C8C34500C41898 /* NCRichWorkspace.xib */; };
  121. F72382C02295856A005B8A07 /* FirebaseMLVisionTextModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F72382BB22958569005B8A07 /* FirebaseMLVisionTextModel.framework */; };
  122. F72382C22295856A005B8A07 /* GoogleMVTextDetectorResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F72382BE22958569005B8A07 /* GoogleMVTextDetectorResources.bundle */; };
  123. F72382C32295856A005B8A07 /* GoogleToolboxForMac.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F72382BF22958569005B8A07 /* GoogleToolboxForMac.framework */; };
  124. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */; };
  125. F7267A82225DFCE100D6DB7D /* AFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7267A81225DFCE100D6DB7D /* AFNetworking.framework */; };
  126. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */; };
  127. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */; };
  128. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */; };
  129. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  130. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */; };
  131. F72E0B9D21AD60BC00898D7B /* WeScan.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F72E0B9C21AD60BC00898D7B /* WeScan.framework */; };
  132. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  133. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  134. F733B65221997CC2001C1FFA /* TLPhotoPicker.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */; };
  135. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */; };
  136. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7381EDA218218C9000B1560 /* NCOffline.swift */; };
  137. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7381EDE218218C9000B1560 /* NCOffline.storyboard */; };
  138. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */; };
  139. F739513A221B127F00D986C8 /* NCSectionMediaHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7395139221B127F00D986C8 /* NCSectionMediaHeader.xib */; };
  140. F73B4EEE1F470D9100BBEE4B /* Big5Freq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */; };
  141. F73B4EEF1F470D9100BBEE4B /* CharDistribution.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */; };
  142. F73B4EF01F470D9100BBEE4B /* CMakeLists.txt in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */; };
  143. F73B4EF11F470D9100BBEE4B /* EUCKRFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */; };
  144. F73B4EF21F470D9100BBEE4B /* EUCTWFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */; };
  145. F73B4EF31F470D9100BBEE4B /* GB2312Freq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */; };
  146. F73B4EF41F470D9100BBEE4B /* JISFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB41F470D9100BBEE4B /* JISFreq.tab */; };
  147. F73B4EF51F470D9100BBEE4B /* JpCntx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */; };
  148. F73B4EF61F470D9100BBEE4B /* LangArabicModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */; };
  149. F73B4EF71F470D9100BBEE4B /* LangBulgarianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */; };
  150. F73B4EF81F470D9100BBEE4B /* LangDanishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */; };
  151. F73B4EF91F470D9100BBEE4B /* LangEsperantoModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */; };
  152. F73B4EFA1F470D9100BBEE4B /* LangFrenchModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */; };
  153. F73B4EFB1F470D9100BBEE4B /* LangGermanModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */; };
  154. F73B4EFC1F470D9100BBEE4B /* LangGreekModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */; };
  155. F73B4EFD1F470D9100BBEE4B /* LangHebrewModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */; };
  156. F73B4EFE1F470D9100BBEE4B /* LangHungarianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */; };
  157. F73B4EFF1F470D9100BBEE4B /* LangRussianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */; };
  158. F73B4F001F470D9100BBEE4B /* LangSpanishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */; };
  159. F73B4F011F470D9100BBEE4B /* LangThaiModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */; };
  160. F73B4F021F470D9100BBEE4B /* LangTurkishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */; };
  161. F73B4F031F470D9100BBEE4B /* LangVietnameseModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */; };
  162. F73B4F041F470D9100BBEE4B /* nsBig5Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */; };
  163. F73B4F051F470D9100BBEE4B /* nsCharSetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */; };
  164. F73B4F061F470D9100BBEE4B /* nsEscCharsetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */; };
  165. F73B4F071F470D9100BBEE4B /* nsEscSM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */; };
  166. F73B4F081F470D9100BBEE4B /* nsEUCJPProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */; };
  167. F73B4F091F470D9100BBEE4B /* nsEUCKRProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */; };
  168. F73B4F0A1F470D9100BBEE4B /* nsEUCTWProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */; };
  169. F73B4F0B1F470D9100BBEE4B /* nsGB2312Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */; };
  170. F73B4F0C1F470D9100BBEE4B /* nsHebrewProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */; };
  171. F73B4F0D1F470D9100BBEE4B /* nsLatin1Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */; };
  172. F73B4F0E1F470D9100BBEE4B /* nsMBCSGroupProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */; };
  173. F73B4F0F1F470D9100BBEE4B /* nsMBCSSM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */; };
  174. F73B4F101F470D9100BBEE4B /* nsSBCharSetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */; };
  175. F73B4F111F470D9100BBEE4B /* nsSBCSGroupProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */; };
  176. F73B4F121F470D9100BBEE4B /* nsSJISProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */; };
  177. F73B4F131F470D9100BBEE4B /* nsUniversalDetector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */; };
  178. F73B4F141F470D9100BBEE4B /* nsUTF8Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */; };
  179. F73B4F151F470D9100BBEE4B /* symbols.cmake in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EEA1F470D9100BBEE4B /* symbols.cmake */; };
  180. F73B4F171F470D9100BBEE4B /* uchardet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */; };
  181. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */; };
  182. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  183. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  184. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  185. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  186. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  187. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  188. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  189. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  190. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  191. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  192. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  193. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  194. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  195. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  196. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  197. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  198. F73D71621F2673C200E233EB /* NCText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D71611F2673C200E233EB /* NCText.swift */; };
  199. F73D71641F2674A400E233EB /* NCText.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73D71631F2674A400E233EB /* NCText.storyboard */; };
  200. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73F537E1E929C8500F8678D /* CCMore.swift */; };
  201. F7417DB3216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */; };
  202. F7421EAF2294044B00C4B7C1 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7421EAE2294044B00C4B7C1 /* Accelerate.framework */; };
  203. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  204. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  205. F7434B3720E23FF200417916 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  206. F7434B3820E2400600417916 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  207. F7434B3A20E2403500417916 /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  208. F7434B3B20E2403900417916 /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  209. F7434B3C20E2403D00417916 /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  210. F7434B3D20E2404300417916 /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  211. F7434B3E20E2404700417916 /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  212. F7434B3F20E2404B00417916 /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  213. F7434B4020E2404E00417916 /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  214. F7434B4120E2405200417916 /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  215. F7434B4220E2405500417916 /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  216. F7434B4320E2405900417916 /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  217. F7434B4420E2405C00417916 /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  218. F7434B4B20E2408000417916 /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  219. F7434B4C20E2408300417916 /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  220. F7434B4D20E2408600417916 /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  221. F7434B4E20E2408A00417916 /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  222. F7434B5120E2409500417916 /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  223. F7434B5220E2409900417916 /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  224. F7434B5320E2409E00417916 /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  225. F7434B5420E240A300417916 /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  226. F7434B5520E240A900417916 /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  227. F7434B5620E2412900417916 /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  228. F7434B5820E241B100417916 /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  229. F7434B5920E241B600417916 /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  230. F7434B5A20E241BB00417916 /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  231. F7434B5B20E241D100417916 /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  232. F7434B5C20E241D500417916 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  233. F7434B5D20E241E800417916 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  234. F7434B5E20E241EC00417916 /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  235. F7434B6020E2445200417916 /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  236. F7434B6220E249F700417916 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  237. F7434B6320E249FB00417916 /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  238. F745B251222D871800346520 /* QRCodeReader.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F745B250222D871800346520 /* QRCodeReader.framework */; };
  239. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F745B252222D88AE00346520 /* NCLoginQRCode.swift */; };
  240. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */; };
  241. F749C10B23C4A5340027D966 /* NCIntroCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */; };
  242. F749C10C23C4A5340027D966 /* NCIntroViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749C10823C4A5330027D966 /* NCIntroViewController.swift */; };
  243. F749C10D23C4A5340027D966 /* NCIntro.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F749C10923C4A5330027D966 /* NCIntro.storyboard */; };
  244. F749C10E23C4A5340027D966 /* NCIntroCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */; };
  245. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  246. F74AFCE922E8B025003DE61F /* FSCalendar.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F74AFCE822E8B024003DE61F /* FSCalendar.framework */; };
  247. F74C4FBB2328C3C200A23E25 /* OpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */; };
  248. F74E432620B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  249. F74E432720B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  250. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7501C302212E57400FB1415 /* NCMedia.storyboard */; };
  251. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7501C312212E57400FB1415 /* NCMedia.swift */; };
  252. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037441DBFA91A008FB480 /* ALView+PureLayout.m */; };
  253. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */; };
  254. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */; };
  255. F75153242226920200323DDC /* FastScroll.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F75153232226920200323DDC /* FastScroll.framework */; };
  256. F754EEC921772B6100BB1CDF /* DropdownItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754EEC421772B6100BB1CDF /* DropdownItem.swift */; };
  257. F754EECA21772B6100BB1CDF /* DropUpMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754EEC521772B6100BB1CDF /* DropUpMenu.swift */; };
  258. F754EECB21772B6100BB1CDF /* DropdownMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754EEC721772B6100BB1CDF /* DropdownMenu.swift */; };
  259. F754EECC21772B6100BB1CDF /* SectionHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754EEC821772B6100BB1CDF /* SectionHeader.swift */; };
  260. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F755BD9A20594AC7008C5FBB /* NCService.swift */; };
  261. F758B45A212C564000515F55 /* Scan.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F758B457212C564000515F55 /* Scan.storyboard */; };
  262. F758B45E212C569D00515F55 /* ScanCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45D212C569C00515F55 /* ScanCell.swift */; };
  263. F758B460212C56A400515F55 /* ScanCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45F212C56A400515F55 /* ScanCollectionView.swift */; };
  264. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  265. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  266. F75A9EE823796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  267. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */; };
  268. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */; };
  269. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */; };
  270. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */; };
  271. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */; };
  272. F760F77B21F21F61006B1A73 /* icomoon.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F760F75721F21F61006B1A73 /* icomoon.ttf */; };
  273. F760F77C21F21F61006B1A73 /* StickersViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F75821F21F61006B1A73 /* StickersViewController.xib */; };
  274. F760F77D21F21F61006B1A73 /* ColorsCollectionViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75921F21F61006B1A73 /* ColorsCollectionViewDelegate.swift */; };
  275. F760F77E21F21F61006B1A73 /* PhotoEditor+Keyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75A21F21F61006B1A73 /* PhotoEditor+Keyboard.swift */; };
  276. F760F77F21F21F61006B1A73 /* PhotoEditor+Controls.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75B21F21F61006B1A73 /* PhotoEditor+Controls.swift */; };
  277. F760F78021F21F61006B1A73 /* PhotoEditorViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F75C21F21F61006B1A73 /* PhotoEditorViewController.xib */; };
  278. F760F78121F21F61006B1A73 /* PhotoEditor+StickersViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75D21F21F61006B1A73 /* PhotoEditor+StickersViewController.swift */; };
  279. F760F78221F21F61006B1A73 /* PhotoEditor+UITextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75E21F21F61006B1A73 /* PhotoEditor+UITextView.swift */; };
  280. F760F78321F21F61006B1A73 /* UIImageView+Alpha.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75F21F21F61006B1A73 /* UIImageView+Alpha.swift */; };
  281. F760F78421F21F61006B1A73 /* ColorCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F76021F21F61006B1A73 /* ColorCollectionViewCell.xib */; };
  282. F760F78521F21F61006B1A73 /* EmojiCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F76121F21F61006B1A73 /* EmojiCollectionViewCell.xib */; };
  283. F760F78621F21F61006B1A73 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F760F76221F21F61006B1A73 /* LaunchScreen.storyboard */; };
  284. F760F78721F21F61006B1A73 /* PhotoEditor+Font.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76421F21F61006B1A73 /* PhotoEditor+Font.swift */; };
  285. F760F78821F21F61006B1A73 /* PhotoCropEditorBorder@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F760F76521F21F61006B1A73 /* PhotoCropEditorBorder@2x.png */; };
  286. F760F78921F21F61006B1A73 /* UIView+Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76621F21F61006B1A73 /* UIView+Image.swift */; };
  287. F760F78A21F21F61006B1A73 /* UIImage+Size.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76721F21F61006B1A73 /* UIImage+Size.swift */; };
  288. F760F78B21F21F61006B1A73 /* UIImage+Crop.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76821F21F61006B1A73 /* UIImage+Crop.swift */; };
  289. F760F78C21F21F61006B1A73 /* StickersViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76921F21F61006B1A73 /* StickersViewController.swift */; };
  290. F760F78D21F21F61006B1A73 /* Protocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76A21F21F61006B1A73 /* Protocols.swift */; };
  291. F760F78E21F21F61006B1A73 /* PhotoEditor+Drawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76B21F21F61006B1A73 /* PhotoEditor+Drawing.swift */; };
  292. F760F78F21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F760F76C21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png */; };
  293. F760F79021F21F61006B1A73 /* PhotoCropEditorBorder.png in Resources */ = {isa = PBXBuildFile; fileRef = F760F76D21F21F61006B1A73 /* PhotoCropEditorBorder.png */; };
  294. F760F79121F21F61006B1A73 /* EmojiCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76E21F21F61006B1A73 /* EmojiCollectionViewCell.swift */; };
  295. F760F79221F21F61006B1A73 /* EmojisCollectionViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76F21F21F61006B1A73 /* EmojisCollectionViewDelegate.swift */; };
  296. F760F79321F21F61006B1A73 /* CropView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77021F21F61006B1A73 /* CropView.swift */; };
  297. F760F79421F21F61006B1A73 /* ResizeControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77121F21F61006B1A73 /* ResizeControl.swift */; };
  298. F760F79521F21F61006B1A73 /* PhotoEditor+Gestures.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77221F21F61006B1A73 /* PhotoEditor+Gestures.swift */; };
  299. F760F79621F21F61006B1A73 /* PhotoEditorViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77321F21F61006B1A73 /* PhotoEditorViewController.swift */; };
  300. F760F79721F21F61006B1A73 /* StickerCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F77421F21F61006B1A73 /* StickerCollectionViewCell.xib */; };
  301. F760F79821F21F61006B1A73 /* StickerCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77521F21F61006B1A73 /* StickerCollectionViewCell.swift */; };
  302. F760F79921F21F61006B1A73 /* CropViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77621F21F61006B1A73 /* CropViewController.swift */; };
  303. F760F79A21F21F61006B1A73 /* PhotoEditor+Crop.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77721F21F61006B1A73 /* PhotoEditor+Crop.swift */; };
  304. F760F79B21F21F61006B1A73 /* ColorCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77821F21F61006B1A73 /* ColorCollectionViewCell.swift */; };
  305. F760F79C21F21F61006B1A73 /* GradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77921F21F61006B1A73 /* GradientView.swift */; };
  306. F760F79D21F21F61006B1A73 /* CropRectView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77A21F21F61006B1A73 /* CropRectView.swift */; };
  307. F762CAF71EACB66200B38484 /* XLFormBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA41EACB66200B38484 /* XLFormBaseCell.m */; };
  308. F762CAF81EACB66200B38484 /* XLFormButtonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA61EACB66200B38484 /* XLFormButtonCell.m */; };
  309. F762CAF91EACB66200B38484 /* XLFormCheckCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA81EACB66200B38484 /* XLFormCheckCell.m */; };
  310. F762CAFA1EACB66200B38484 /* XLFormDateCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAA1EACB66200B38484 /* XLFormDateCell.m */; };
  311. F762CAFB1EACB66200B38484 /* XLFormDatePickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */; };
  312. F762CAFC1EACB66200B38484 /* XLFormImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAF1EACB66200B38484 /* XLFormImageCell.m */; };
  313. F762CAFD1EACB66200B38484 /* XLFormInlineSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */; };
  314. F762CAFE1EACB66200B38484 /* XLFormLeftRightSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */; };
  315. F762CAFF1EACB66200B38484 /* XLFormPickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB61EACB66200B38484 /* XLFormPickerCell.m */; };
  316. F762CB001EACB66200B38484 /* XLFormSegmentedCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */; };
  317. F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */; };
  318. F762CB021EACB66200B38484 /* XLFormSliderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABC1EACB66200B38484 /* XLFormSliderCell.m */; };
  319. F762CB031EACB66200B38484 /* XLFormStepCounterCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */; };
  320. F762CB041EACB66200B38484 /* XLFormSwitchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */; };
  321. F762CB051EACB66200B38484 /* XLFormTextFieldCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */; };
  322. F762CB061EACB66200B38484 /* XLFormTextViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */; };
  323. F762CB071EACB66200B38484 /* XLFormOptionsObject.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */; };
  324. F762CB081EACB66200B38484 /* XLFormOptionsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */; };
  325. F762CB091EACB66200B38484 /* XLFormViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CACC1EACB66200B38484 /* XLFormViewController.m */; };
  326. F762CB0A1EACB66200B38484 /* XLFormDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CACF1EACB66200B38484 /* XLFormDescriptor.m */; };
  327. F762CB0B1EACB66200B38484 /* XLFormRowDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */; };
  328. F762CB0C1EACB66200B38484 /* XLFormSectionDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */; };
  329. F762CB0D1EACB66200B38484 /* NSArray+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */; };
  330. F762CB0E1EACB66200B38484 /* NSExpression+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */; };
  331. F762CB0F1EACB66200B38484 /* NSObject+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */; };
  332. F762CB101EACB66200B38484 /* NSPredicate+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */; };
  333. F762CB111EACB66200B38484 /* NSString+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */; };
  334. F762CB121EACB66200B38484 /* UIView+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */; };
  335. F762CB131EACB66200B38484 /* XLFormRightDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */; };
  336. F762CB141EACB66200B38484 /* XLFormRightImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */; };
  337. F762CB151EACB66200B38484 /* XLFormRowNavigationAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */; };
  338. F762CB161EACB66200B38484 /* XLFormTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAEA1EACB66200B38484 /* XLFormTextView.m */; };
  339. F762CB171EACB66200B38484 /* XLFormRegexValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */; };
  340. F762CB181EACB66200B38484 /* XLFormValidationStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */; };
  341. F762CB191EACB66200B38484 /* XLFormValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAF11EACB66200B38484 /* XLFormValidator.m */; };
  342. F762CB1A1EACB66200B38484 /* XLForm.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAF41EACB66200B38484 /* XLForm.m */; };
  343. F762CB1B1EACB66200B38484 /* XLForm.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F762CAF51EACB66200B38484 /* XLForm.bundle */; };
  344. F7632FBF21832F8700721B71 /* NCTrashSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */; };
  345. F7632FC1218353AA00721B71 /* NCTrashSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */; };
  346. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */; };
  347. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */; };
  348. F765608723BF806D00765969 /* QuickLayout.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F765608623BF806C00765969 /* QuickLayout.framework */; };
  349. F765608B23BF80A400765969 /* SwiftEntryKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F765608A23BF80A400765969 /* SwiftEntryKit.framework */; };
  350. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  351. F765609023BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  352. F765609123BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  353. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EC22C901F5007ED366 /* FileProviderDomain.swift */; };
  354. F76673EE22C901F6007ED366 /* FileProviderDomain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EC22C901F5007ED366 /* FileProviderDomain.swift */; };
  355. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EF22C90433007ED366 /* FileProviderUtility.swift */; };
  356. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */; };
  357. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453B22E9CFFF000A798A /* NCShareUserCell.xib */; };
  358. F769453E22E9E97E000A798A /* NCShareUserMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */; };
  359. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769453F22E9F077000A798A /* NCSharePaging.swift */; };
  360. F769454222E9F0EE000A798A /* NCShareLinkMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */; };
  361. F769454422E9F142000A798A /* NCShareUserMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454322E9F142000A798A /* NCShareUserMenuView.swift */; };
  362. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454522E9F1B0000A798A /* NCShareCommon.swift */; };
  363. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454722E9F20D000A798A /* NCShareNetworking.swift */; };
  364. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  365. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  366. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */; };
  367. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D420E2392D00AFB62D /* FileProviderItem.swift */; };
  368. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */; };
  369. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  370. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F220E239A600AFB62D /* FileProviderData.swift */; };
  371. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */; };
  372. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */; };
  373. F774264122EB3F7300B23912 /* DropDown.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F774264022EB3F7300B23912 /* DropDown.framework */; };
  374. F774264A22EB4D0000B23912 /* NCShareUserDropDownCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */; };
  375. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F322281649000D5EB0 /* NCGridMediaCell.swift */; };
  376. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F77444F422281649000D5EB0 /* NCGridMediaCell.xib */; };
  377. F77444F8222816D5000D5EB0 /* NCPhotosPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F7222816D5000D5EB0 /* NCPhotosPickerViewController.swift */; };
  378. F774DF0F1FCC26BE002AF9FC /* iTunesArtwork@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */; };
  379. F774DF101FCC26BE002AF9FC /* iTunesArtwork@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */; };
  380. F774DF111FCC26BE002AF9FC /* iTunesArtwork@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */; };
  381. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */ = {isa = PBXBuildFile; fileRef = F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */; };
  382. F77B0DF41D118A16002130FE /* CCMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211FB1BAC56E9003FC03E /* CCMain.m */; };
  383. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  384. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  385. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  386. F77B0E141D118A16002130FE /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  387. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  388. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  389. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BFCCC11B68C21900548E76 /* CCManageLocation.m */; };
  390. F77B0E301D118A16002130FE /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  391. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  392. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */; };
  393. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* CCSettings.m */; };
  394. F77B0E671D118A16002130FE /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  395. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */; };
  396. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */; };
  397. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
  398. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  399. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  400. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F51BAC56E9003FC03E /* CCCellMain.m */; };
  401. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
  402. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */ = {isa = PBXBuildFile; fileRef = F777F0311C29717F00CE81CB /* PHAsset+Utility.m */; };
  403. F77B0ED91D118A16002130FE /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F67BAD1A24D27800EE80DA /* main.m */; };
  404. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */; };
  405. F77B0F481D118A16002130FE /* synchronized.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344751BF259A800188725 /* synchronized.gif */; };
  406. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344761BF259A800188725 /* synchronizedcrypto.gif */; };
  407. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */ = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */; };
  408. F77B0F631D118A16002130FE /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  409. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  410. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F61BAC56E9003FC03E /* CCCellMain.xib */; };
  411. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */; };
  412. F77D49A91DC238E500CDC568 /* loading.gif in Resources */ = {isa = PBXBuildFile; fileRef = F77D49A71DC238E500CDC568 /* loading.gif */; };
  413. F77EB6281EC08036003F814F /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  414. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  415. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  416. F781996922636BFA00EBDF6A /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F781996822636BFA00EBDF6A /* HCFeatures.m */; };
  417. F781996A22636BFA00EBDF6A /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F781996822636BFA00EBDF6A /* HCFeatures.m */; };
  418. F781996B22636BFA00EBDF6A /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F781996822636BFA00EBDF6A /* HCFeatures.m */; };
  419. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  420. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F787704E22E7019900F287A9 /* NCShareLinkCell.xib */; };
  421. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */; };
  422. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */; };
  423. F78AA20621F783E900D0F205 /* SwiftRichString.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F78AA20521F783E900D0F205 /* SwiftRichString.framework */; };
  424. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD3F21903CC20088454D /* NCGridCell.swift */; };
  425. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4121903CE00088454D /* NCListCell.swift */; };
  426. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4321903CF20088454D /* NCListCell.xib */; };
  427. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4521903D010088454D /* NCGridCell.xib */; };
  428. F78ACD4A21903F850088454D /* NCTrashListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4821903F850088454D /* NCTrashListCell.swift */; };
  429. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4921903F850088454D /* NCTrashListCell.xib */; };
  430. F78ACD4F2190440D0088454D /* NCLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4E2190440D0088454D /* NCLayout.swift */; };
  431. F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */; };
  432. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD53219047D40088454D /* NCSectionFooter.xib */; };
  433. F78ACD56219047E90088454D /* NCSectionHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD55219047E90088454D /* NCSectionHeader.xib */; };
  434. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */; };
  435. F78B9685234F785300F54315 /* NCSelectDestination.m in Sources */ = {isa = PBXBuildFile; fileRef = F78B9682234F785300F54315 /* NCSelectDestination.m */; };
  436. F78B9686234F785300F54315 /* NCSelectDestination.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78B9684234F785300F54315 /* NCSelectDestination.storyboard */; };
  437. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */; };
  438. F78E7065219F096B006F23E4 /* NCAvatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E7064219F096B006F23E4 /* NCAvatar.swift */; };
  439. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78F74332163757000C2ADAD /* NCTrash.storyboard */; };
  440. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78F74352163781100C2ADAD /* NCTrash.swift */; };
  441. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */; };
  442. F79018B6240962C7007C9B6D /* DismissAnimationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79018B2240962C7007C9B6D /* DismissAnimationController.swift */; };
  443. F79018B7240962C7007C9B6D /* MediaContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79018B3240962C7007C9B6D /* MediaContentView.swift */; };
  444. F79018B8240962C7007C9B6D /* MediaBrowserViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79018B4240962C7007C9B6D /* MediaBrowserViewController.swift */; };
  445. F79018B9240962C7007C9B6D /* ContentTransformers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79018B5240962C7007C9B6D /* ContentTransformers.swift */; };
  446. F79630EE215527D40015EEA5 /* NCViewerMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79630ED215527D40015EEA5 /* NCViewerMedia.swift */; };
  447. F79728D422F96F2E003CACA7 /* NCShareLinkFolderMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */; };
  448. F79728D622F9A0B1003CACA7 /* NCShareUserFolderMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */; };
  449. F79918A221997FA300C2E308 /* UICKeyChainStore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F79918A021997F9000C2E308 /* UICKeyChainStore.framework */; };
  450. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */; };
  451. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79A65C52191D95E00FF6DCC /* NCSelect.swift */; };
  452. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3214F1E9E2A070069AD1B /* CCFavorites.m */; };
  453. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */; };
  454. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */; };
  455. F7A377161EB2364A002856D3 /* Crashlytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7A377141EB2364A002856D3 /* Crashlytics.framework */; };
  456. F7A3771A1EB2364A002856D3 /* Fabric.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7A377151EB2364A002856D3 /* Fabric.framework */; };
  457. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */; };
  458. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */; };
  459. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */; };
  460. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */; };
  461. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */; };
  462. F7B174C822FAC0A8000B7579 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B174C722FAC0A8000B7579 /* AppDelegate.m */; };
  463. F7B2DEF01F976854007CF4D2 /* NYMnemonic.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */; };
  464. F7B2DEF11F976859007CF4D2 /* english.txt in Resources */ = {isa = PBXBuildFile; fileRef = F7B2DEED1F976785007CF4D2 /* english.txt */; };
  465. F7B4F1CB1F44356F00B53B42 /* NCUchardet.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B4F1C81F44356F00B53B42 /* NCUchardet.m */; };
  466. F7B6ACD622FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */; };
  467. F7B6ACD722FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */; };
  468. F7B6ACD822FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */; };
  469. F7B6ACDB22FC2D15008AB646 /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACDA22FC2D15008AB646 /* NCComments.m */; };
  470. F7B6ACDC22FC2D15008AB646 /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACDA22FC2D15008AB646 /* NCComments.m */; };
  471. F7B6ACDD22FC2D15008AB646 /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACDA22FC2D15008AB646 /* NCComments.m */; };
  472. F7B7504B2397D38F004E13EC /* UIImage+fixedOrientation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+fixedOrientation.swift */; };
  473. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  474. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  475. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  476. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  477. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BF1B401D51E893000854F6 /* CCLogin.m */; };
  478. F7C40BE521998D5B0004137E /* MGSwipeTableCell.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */; };
  479. F7C40BE721998F410004137E /* DZNEmptyDataSet.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */; };
  480. F7C40BEF219994ED0004137E /* KTVCocoaHTTPServer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */; };
  481. F7C40BF1219994F20004137E /* KTVHTTPCache.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BF0219994F20004137E /* KTVHTTPCache.framework */; };
  482. F7C40BF32199978B0004137E /* MBProgressHUD.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BF22199978B0004137E /* MBProgressHUD.framework */; };
  483. F7C40C102199BA5D0004137E /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40C0F2199BA5D0004137E /* Realm.framework */; };
  484. F7C40C122199BA620004137E /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40C112199BA620004137E /* RealmSwift.framework */; };
  485. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C5259F1E3B48B700FFE02C /* CCNotification.swift */; };
  486. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */; };
  487. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C9555221F0C4CA0024296E /* NCActivity.storyboard */; };
  488. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9555421F0C5470024296E /* NCActivity.swift */; };
  489. F7CA1ED020E7E3FE002CC65E /* UIImage+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */; };
  490. F7CA1ED120E7E3FE002CC65E /* PKCircleProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */; };
  491. F7CA1ED220E7E3FE002CC65E /* PKCircleView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */; };
  492. F7CA1ED320E7E3FE002CC65E /* PKStopDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */; };
  493. F7CA1ED420E7E3FE002CC65E /* PKPendingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */; };
  494. F7CA1ED620E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */; };
  495. F7CA1ED720E7E3FE002CC65E /* PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */; };
  496. F7CA1ED820E7E3FE002CC65E /* PKBorderedButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */; };
  497. F7CA1ED920E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */; };
  498. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */; };
  499. F7D2D127230804E000FD3ED7 /* NCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */; };
  500. F7D2D128230804E000FD3ED7 /* NCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */; };
  501. F7D2D129230804E000FD3ED7 /* NCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */; };
  502. F7D4B6852295663D000C2C86 /* GoogleAppMeasurement.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B67D2295663D000C2C86 /* GoogleAppMeasurement.framework */; };
  503. F7D4B6862295663D000C2C86 /* FirebaseCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B67E2295663D000C2C86 /* FirebaseCore.framework */; };
  504. F7D4B6872295663D000C2C86 /* FirebaseAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B67F2295663D000C2C86 /* FirebaseAnalytics.framework */; };
  505. F7D4B6882295663D000C2C86 /* GoogleUtilities.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6802295663D000C2C86 /* GoogleUtilities.framework */; };
  506. F7D4B6892295663D000C2C86 /* nanopb.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6812295663D000C2C86 /* nanopb.framework */; };
  507. F7D4B68A2295663D000C2C86 /* FIRAnalyticsConnector.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6822295663D000C2C86 /* FIRAnalyticsConnector.framework */; };
  508. F7D4B68B2295663D000C2C86 /* FirebaseInstanceID.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6832295663D000C2C86 /* FirebaseInstanceID.framework */; };
  509. F7D4B68C2295663D000C2C86 /* FirebaseCoreDiagnostics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6842295663D000C2C86 /* FirebaseCoreDiagnostics.framework */; };
  510. F7D4B6952295666E000C2C86 /* Protobuf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B68E2295666E000C2C86 /* Protobuf.framework */; };
  511. F7D4B6962295666E000C2C86 /* GTMSessionFetcher.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B68F2295666E000C2C86 /* GTMSessionFetcher.framework */; };
  512. F7D4B6972295666E000C2C86 /* GoogleAPIClientForREST.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6902295666E000C2C86 /* GoogleAPIClientForREST.framework */; };
  513. F7D4B6982295666E000C2C86 /* FirebaseMLVision.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6912295666E000C2C86 /* FirebaseMLVision.framework */; };
  514. F7D4B6992295666E000C2C86 /* GoogleToolboxForMac.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6922295666E000C2C86 /* GoogleToolboxForMac.framework */; };
  515. F7D4B69A2295666E000C2C86 /* FirebaseMLCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6932295666E000C2C86 /* FirebaseMLCommon.framework */; };
  516. F7D4B69B2295666E000C2C86 /* GoogleMobileVision.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6942295666E000C2C86 /* GoogleMobileVision.framework */; };
  517. F7D6650720FF341600BFBA9E /* NCMainCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D6650620FF341600BFBA9E /* NCMainCommon.swift */; };
  518. F7D91AAA23FBDED60038FC09 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  519. F7DBC37C23325E02001A85BA /* NCAppConfigView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */; };
  520. F7DBC37F23325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */; };
  521. F7DBC38023325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */; };
  522. F7DBC38123325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */; };
  523. F7DBD82C23E46A4700ECB7C6 /* MarkdownKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */; };
  524. F7DFAA8A22E22EF100FC4527 /* NCShareLinkMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */; };
  525. F7DFB7E0219C312D00680748 /* NCRichDocumentTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */; };
  526. F7DFB7E1219C312D00680748 /* NCRichDocumentTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */; };
  527. F7DFB7E2219C312D00680748 /* NCRichDocumentTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */; };
  528. F7DFB7F0219C5B8000680748 /* NCCreateFormUploadAssets.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */; };
  529. F7DFB7F2219C5C0000680748 /* NCCreateFormUploadFileText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7F1219C5C0000680748 /* NCCreateFormUploadFileText.swift */; };
  530. F7DFB7F4219C5CA800680748 /* NCCreateFormUploadScanDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */; };
  531. F7E09CE323E3088000FB3E9E /* NCMainRefreshControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E09CE223E3087F00FB3E9E /* NCMainRefreshControl.swift */; };
  532. F7E09CE523E3088C00FB3E9E /* NCSplitViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E09CE423E3088A00FB3E9E /* NCSplitViewController.swift */; };
  533. F7E09CE723E308AD00FB3E9E /* NCMasterNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E09CE623E308AD00FB3E9E /* NCMasterNavigationController.swift */; };
  534. F7E0E1DC22327885006B0911 /* NCAudioRecorderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E0E1DB22327885006B0911 /* NCAudioRecorderViewController.swift */; };
  535. F7E0E1DE22327DBA006B0911 /* NCAudioRecorderViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7E0E1DD22327DBA006B0911 /* NCAudioRecorderViewController.storyboard */; };
  536. F7E4D9C422ED929B003675FD /* NCShareComments.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E4D9C322ED929B003675FD /* NCShareComments.swift */; };
  537. F7E9C41B20F4CA870040CF18 /* CCTransfers.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E9C41820F4CA870040CF18 /* CCTransfers.m */; };
  538. F7F4B1D823C74B3E00D82A6E /* NCRichWorkspace.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F4B1D723C74B3E00D82A6E /* NCRichWorkspace.swift */; };
  539. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CAF1E5B14C700E19C62 /* ImageError.png */; };
  540. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */; };
  541. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */; };
  542. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */; };
  543. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */; };
  544. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */; };
  545. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */; };
  546. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */; };
  547. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */; };
  548. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */; };
  549. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */; };
  550. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */; };
  551. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */; };
  552. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */; };
  553. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */; };
  554. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */; };
  555. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */; };
  556. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */; };
  557. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */; };
  558. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */; };
  559. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */; };
  560. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */; };
  561. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */; };
  562. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */; };
  563. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */; };
  564. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */; };
  565. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */; };
  566. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */; };
  567. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */; };
  568. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */; };
  569. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */; };
  570. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */; };
  571. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */; };
  572. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */; };
  573. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD81E5B14C700E19C62 /* MWPhoto.m */; };
  574. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */; };
  575. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */; };
  576. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */; };
  577. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */; };
  578. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */; };
  579. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  580. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  581. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */; };
  582. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */; };
  583. F7FB1D3E215E191D00D669EA /* NCViewerDocumentWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7FB1D3D215E191D00D669EA /* NCViewerDocumentWeb.swift */; };
  584. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F7FC7D551DC1F93800BB2C6A /* libz.tbd */; };
  585. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */; };
  586. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */; };
  587. /* End PBXBuildFile section */
  588. /* Begin PBXContainerItemProxy section */
  589. 2C33C48423E2C475005F963B /* PBXContainerItemProxy */ = {
  590. isa = PBXContainerItemProxy;
  591. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  592. proxyType = 1;
  593. remoteGlobalIDString = 2C33C47E23E2C475005F963B;
  594. remoteInfo = "Notification Service Extension";
  595. };
  596. F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */ = {
  597. isa = PBXContainerItemProxy;
  598. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  599. proxyType = 1;
  600. remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
  601. remoteInfo = "Share Ext Nextcloud";
  602. };
  603. F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */ = {
  604. isa = PBXContainerItemProxy;
  605. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  606. proxyType = 1;
  607. remoteGlobalIDString = F771E3CF20E2392D00AFB62D;
  608. remoteInfo = "File Provider Extension";
  609. };
  610. /* End PBXContainerItemProxy section */
  611. /* Begin PBXCopyFilesBuildPhase section */
  612. F736B556234DCF7C008A5C9F /* Embed Frameworks */ = {
  613. isa = PBXCopyFilesBuildPhase;
  614. buildActionMask = 2147483647;
  615. dstPath = "";
  616. dstSubfolderSpec = 10;
  617. files = (
  618. );
  619. name = "Embed Frameworks";
  620. runOnlyForDeploymentPostprocessing = 0;
  621. };
  622. F736B559234DCF93008A5C9F /* Embed Frameworks */ = {
  623. isa = PBXCopyFilesBuildPhase;
  624. buildActionMask = 2147483647;
  625. dstPath = "";
  626. dstSubfolderSpec = 10;
  627. files = (
  628. );
  629. name = "Embed Frameworks";
  630. runOnlyForDeploymentPostprocessing = 0;
  631. };
  632. F77B0F981D118A16002130FE /* Embed App Extensions */ = {
  633. isa = PBXCopyFilesBuildPhase;
  634. buildActionMask = 2147483647;
  635. dstPath = "";
  636. dstSubfolderSpec = 13;
  637. files = (
  638. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */,
  639. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */,
  640. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed App Extensions */,
  641. );
  642. name = "Embed App Extensions";
  643. runOnlyForDeploymentPostprocessing = 0;
  644. };
  645. /* End PBXCopyFilesBuildPhase section */
  646. /* Begin PBXFileReference section */
  647. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  648. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  649. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  650. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  651. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  652. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Notification Service Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  653. 2C33C48123E2C475005F963B /* NotificationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = "<group>"; };
  654. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Notification_Service_Extension-Bridging-Header.h"; sourceTree = "<group>"; };
  655. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCMenu.storyboard; sourceTree = "<group>"; };
  656. 371B5A2D23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainMenuTableViewController.swift; sourceTree = "<group>"; };
  657. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FloatingPanel.framework; path = Carthage/Build/iOS/FloatingPanel.framework; sourceTree = "<group>"; };
  658. 3757A35423D9D76300EC369E /* NCMenuPanelController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenuPanelController.swift; sourceTree = "<group>"; };
  659. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Menu.swift"; sourceTree = "<group>"; };
  660. 3781B9B123DB2B9F006B4B1D /* CCMain+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CCMain+Menu.swift"; sourceTree = "<group>"; };
  661. 3781B9B323DB2BC9006B4B1D /* CCFavorites+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CCFavorites+Menu.swift"; sourceTree = "<group>"; };
  662. 37ECC83A23D0C7400082EFA2 /* NCMenuAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenuAction.swift; sourceTree = "<group>"; };
  663. F700222B1EC479840080073F /* Custom.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Custom.xcassets; sourceTree = "<group>"; };
  664. F70022661EC4C9100080073F /* OCActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCActivity.h; sourceTree = "<group>"; };
  665. F70022671EC4C9100080073F /* OCActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCActivity.m; sourceTree = "<group>"; };
  666. F70022681EC4C9100080073F /* OCCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCapabilities.h; sourceTree = "<group>"; };
  667. F70022691EC4C9100080073F /* OCCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCapabilities.m; sourceTree = "<group>"; };
  668. F700226A1EC4C9100080073F /* OCCommunication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCommunication.h; sourceTree = "<group>"; };
  669. F700226B1EC4C9100080073F /* OCCommunication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCommunication.m; sourceTree = "<group>"; };
  670. F700226C1EC4C9100080073F /* OCErrorMsg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCErrorMsg.h; sourceTree = "<group>"; };
  671. F700226D1EC4C9100080073F /* OCExternalSites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCExternalSites.h; sourceTree = "<group>"; };
  672. F700226E1EC4C9100080073F /* OCExternalSites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCExternalSites.m; sourceTree = "<group>"; };
  673. F700226F1EC4C9100080073F /* OCFileDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFileDto.h; sourceTree = "<group>"; };
  674. F70022701EC4C9100080073F /* OCFileDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCFileDto.m; sourceTree = "<group>"; };
  675. F70022711EC4C9100080073F /* OCFrameworkConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFrameworkConstants.h; sourceTree = "<group>"; };
  676. F70022721EC4C9100080073F /* OCNotifications.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotifications.h; sourceTree = "<group>"; };
  677. F70022731EC4C9100080073F /* OCNotifications.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotifications.m; sourceTree = "<group>"; };
  678. F70022741EC4C9100080073F /* OCNotificationsAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotificationsAction.h; sourceTree = "<group>"; };
  679. F70022751EC4C9100080073F /* OCNotificationsAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotificationsAction.m; sourceTree = "<group>"; };
  680. F70022761EC4C9100080073F /* OCRichObjectStrings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCRichObjectStrings.h; sourceTree = "<group>"; };
  681. F70022771EC4C9100080073F /* OCRichObjectStrings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCRichObjectStrings.m; sourceTree = "<group>"; };
  682. F70022781EC4C9100080073F /* OCSharedDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCSharedDto.h; sourceTree = "<group>"; };
  683. F70022791EC4C9100080073F /* OCSharedDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCSharedDto.m; sourceTree = "<group>"; };
  684. F700227A1EC4C9100080073F /* OCShareUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCShareUser.h; sourceTree = "<group>"; };
  685. F700227B1EC4C9100080073F /* OCShareUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCShareUser.m; sourceTree = "<group>"; };
  686. F700227C1EC4C9100080073F /* OCUserProfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCUserProfile.h; sourceTree = "<group>"; };
  687. F700227D1EC4C9100080073F /* OCUserProfile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCUserProfile.m; sourceTree = "<group>"; };
  688. F700227F1EC4C9100080073F /* NSDate+ISO8601.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+ISO8601.h"; sourceTree = "<group>"; };
  689. F70022801EC4C9100080073F /* NSDate+ISO8601.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+ISO8601.m"; sourceTree = "<group>"; };
  690. F70022811EC4C9100080073F /* NSDate+RFC1123.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+RFC1123.h"; sourceTree = "<group>"; };
  691. F70022821EC4C9100080073F /* NSDate+RFC1123.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+RFC1123.m"; sourceTree = "<group>"; };
  692. F70022831EC4C9100080073F /* OCHTTPRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCHTTPRequestOperation.h; sourceTree = "<group>"; };
  693. F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCHTTPRequestOperation.m; sourceTree = "<group>"; };
  694. F70022851EC4C9100080073F /* OCWebDAVClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCWebDAVClient.h; sourceTree = "<group>"; };
  695. F70022861EC4C9100080073F /* OCWebDAVClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCWebDAVClient.m; sourceTree = "<group>"; };
  696. F700228C1EC4C9100080073F /* OCXMLServerErrorsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLServerErrorsParser.h; sourceTree = "<group>"; };
  697. F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLServerErrorsParser.m; sourceTree = "<group>"; };
  698. F700228E1EC4C9100080073F /* OCXMLShareByLinkParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLShareByLinkParser.h; sourceTree = "<group>"; };
  699. F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLShareByLinkParser.m; sourceTree = "<group>"; };
  700. F70022901EC4C9100080073F /* OCXMLSharedParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLSharedParser.h; sourceTree = "<group>"; };
  701. F70022911EC4C9100080073F /* OCXMLSharedParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLSharedParser.m; sourceTree = "<group>"; };
  702. F700229C1EC4C9100080073F /* NSString+Encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Encode.h"; sourceTree = "<group>"; };
  703. F700229D1EC4C9100080073F /* NSString+Encode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Encode.m"; sourceTree = "<group>"; };
  704. F700229E1EC4C9100080073F /* OCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCConstants.h; sourceTree = "<group>"; };
  705. F700229F1EC4C9100080073F /* UtilsFramework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilsFramework.h; sourceTree = "<group>"; };
  706. F70022A01EC4C9100080073F /* UtilsFramework.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UtilsFramework.m; sourceTree = "<group>"; };
  707. F700510022DF63AC003A3356 /* NCShare.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCShare.storyboard; sourceTree = "<group>"; };
  708. F700510222DF6897003A3356 /* Parchment.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Parchment.framework; path = Carthage/Build/iOS/Parchment.framework; sourceTree = "<group>"; };
  709. F700510422DF6A89003A3356 /* NCShare.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShare.swift; sourceTree = "<group>"; };
  710. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadVoiceNote.swift; sourceTree = "<group>"; };
  711. F70211F51BAC56E9003FC03E /* CCCellMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMain.m; sourceTree = "<group>"; };
  712. F70211F61BAC56E9003FC03E /* CCCellMain.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMain.xib; sourceTree = "<group>"; };
  713. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellMainTransfer.h; sourceTree = "<group>"; };
  714. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMainTransfer.m; sourceTree = "<group>"; };
  715. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMainTransfer.xib; sourceTree = "<group>"; };
  716. F70211FA1BAC56E9003FC03E /* CCMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMain.h; sourceTree = "<group>"; };
  717. F70211FB1BAC56E9003FC03E /* CCMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCMain.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  718. F704FA5B232A343F00BBA952 /* IMImagemeterViewer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IMImagemeterViewer.swift; sourceTree = "<group>"; };
  719. F7053E3C1C639DF500741EA5 /* CCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
  720. F7053E3D1C639DF500741EA5 /* CCUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
  721. F7063DEC2199E55F003F38DA /* SVGKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SVGKit.framework; path = Carthage/Build/iOS/SVGKit.framework; sourceTree = "<group>"; };
  722. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjack.framework; path = Carthage/Build/iOS/CocoaLumberjack.framework; sourceTree = "<group>"; };
  723. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjackSwift.framework; path = Carthage/Build/iOS/CocoaLumberjackSwift.framework; sourceTree = "<group>"; };
  724. F707C26421A2DC5200F6181E /* NCStoreReview.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCStoreReview.swift; sourceTree = "<group>"; };
  725. F70A07C8205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  726. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtility.swift; sourceTree = "<group>"; };
  727. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCEndToEndEncryption.h; sourceTree = "<group>"; };
  728. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCEndToEndEncryption.m; sourceTree = "<group>"; };
  729. F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+adjust.swift"; sourceTree = "<group>"; };
  730. F70F02B31C889183008DAB36 /* AFViewShaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFViewShaker.h; sourceTree = "<group>"; };
  731. F70F02B41C889183008DAB36 /* AFViewShaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFViewShaker.m; sourceTree = "<group>"; };
  732. F70F05251C889184008DAB36 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  733. F70F05261C889184008DAB36 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  734. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
  735. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
  736. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ZIPFoundation.framework; path = Carthage/Build/iOS/ZIPFoundation.framework; sourceTree = "<group>"; };
  737. F710D1F42405770F00A6033D /* NCViewerPDF.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerPDF.swift; sourceTree = "<group>"; };
  738. F710D1F624057C9400A6033D /* NCDetailNavigationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDetailNavigationController.swift; sourceTree = "<group>"; };
  739. F710D1F824057C9D00A6033D /* NCDetailViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDetailViewController.swift; sourceTree = "<group>"; };
  740. F710D1FB24057E5E00A6033D /* NCActionSheetHeader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCActionSheetHeader.swift; sourceTree = "<group>"; };
  741. F710D1FC24057E5E00A6033D /* NCActionSheetHeaderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCActionSheetHeaderView.swift; sourceTree = "<group>"; };
  742. F710D1FD24057E5E00A6033D /* NCActionSheetHeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCActionSheetHeaderView.xib; sourceTree = "<group>"; };
  743. F710D2012405826100A6033D /* NCDetailNavigationController+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCDetailNavigationController+Menu.swift"; sourceTree = "<group>"; };
  744. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ImagesIntro.xcassets; sourceTree = "<group>"; };
  745. F7151A811D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  746. F7169A171EE590930086BD69 /* NCShares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCShares.h; sourceTree = "<group>"; };
  747. F7169A181EE590930086BD69 /* NCShares.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCShares.m; sourceTree = "<group>"; };
  748. F7169A191EE590930086BD69 /* NCSharesCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSharesCell.h; sourceTree = "<group>"; };
  749. F7169A1A1EE590930086BD69 /* NCSharesCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSharesCell.m; sourceTree = "<group>"; };
  750. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSharesCell.xib; sourceTree = "<group>"; };
  751. F7169A301EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  752. F7169A4C1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  753. F716FE7723795E5000FABE50 /* NCCommunication.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = NCCommunication.framework; path = Carthage/Build/iOS/NCCommunication.framework; sourceTree = "<group>"; };
  754. F716FE7923795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+NetworkingDelegate.swift"; sourceTree = "<group>"; };
  755. F7226EDB1EE4089300EBECB1 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  756. F722814223C8C34500C41898 /* NCRichWorkspace.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCRichWorkspace.xib; sourceTree = "<group>"; };
  757. F7229B491DF71BB300E8C4E7 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = SOURCE_ROOT; };
  758. F72382BB22958569005B8A07 /* FirebaseMLVisionTextModel.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseMLVisionTextModel.framework; sourceTree = "<group>"; };
  759. F72382BE22958569005B8A07 /* GoogleMVTextDetectorResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = GoogleMVTextDetectorResources.bundle; sourceTree = "<group>"; };
  760. F72382BF22958569005B8A07 /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  761. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareCommentsCell.xib; sourceTree = "<group>"; };
  762. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AFNetworking.framework; path = Carthage/Build/iOS/AFNetworking.framework; sourceTree = "<group>"; };
  763. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCEndToEndInitialize.swift; sourceTree = "<group>"; };
  764. F728B2BB23E83AD200E12DA0 /* Notification_Service_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Notification_Service_Extension.plist; sourceTree = "<group>"; };
  765. F728B2BC23E83AD200E12DA0 /* Notification_Service_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Notification_Service_Extension.entitlements; sourceTree = "<group>"; };
  766. F7296A661C8880ED001A7809 /* CCloadItemData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCloadItemData.swift; sourceTree = "<group>"; };
  767. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheet.h; sourceTree = "<group>"; };
  768. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheet.m; sourceTree = "<group>"; };
  769. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheetViewController.h; sourceTree = "<group>"; };
  770. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheetViewController.m; sourceTree = "<group>"; };
  771. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCPushNotificationEncryption.m; sourceTree = "<group>"; };
  772. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCPushNotificationEncryption.h; sourceTree = "<group>"; };
  773. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerNextcloudText.swift; sourceTree = "<group>"; };
  774. F72E0B9C21AD60BC00898D7B /* WeScan.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WeScan.framework; path = Carthage/Build/iOS/WeScan.framework; sourceTree = "<group>"; };
  775. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+TruncateToWidth.h"; sourceTree = "<group>"; };
  776. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+TruncateToWidth.m"; sourceTree = "<group>"; };
  777. F7320934201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  778. F732093B201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Localizable.strings"; sourceTree = "<group>"; };
  779. F732BA031D76CE1500E9878B /* CCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNetworking.h; sourceTree = "<group>"; };
  780. F732BA041D76CE1500E9878B /* CCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNetworking.m; sourceTree = "<group>"; };
  781. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TLPhotoPicker.framework; path = Carthage/Build/iOS/TLPhotoPicker.framework; sourceTree = "<group>"; };
  782. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
  783. F736B551234DCF57008A5C9F /* Alamofire.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Alamofire.framework; path = Carthage/Build/iOS/Alamofire.framework; sourceTree = "<group>"; };
  784. F7381EDA218218C9000B1560 /* NCOffline.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCOffline.swift; sourceTree = "<group>"; };
  785. F7381EDE218218C9000B1560 /* NCOffline.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCOffline.storyboard; sourceTree = "<group>"; };
  786. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCManageEndToEndEncryption.h; sourceTree = "<group>"; };
  787. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCManageEndToEndEncryption.m; sourceTree = "<group>"; };
  788. F7395139221B127F00D986C8 /* NCSectionMediaHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSectionMediaHeader.xib; sourceTree = "<group>"; };
  789. F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Big5Freq.tab; sourceTree = "<group>"; };
  790. F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CharDistribution.cpp; sourceTree = "<group>"; };
  791. F73B4EAF1F470D9100BBEE4B /* CharDistribution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CharDistribution.h; sourceTree = "<group>"; };
  792. F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = "<group>"; };
  793. F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCKRFreq.tab; sourceTree = "<group>"; };
  794. F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCTWFreq.tab; sourceTree = "<group>"; };
  795. F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GB2312Freq.tab; sourceTree = "<group>"; };
  796. F73B4EB41F470D9100BBEE4B /* JISFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = JISFreq.tab; sourceTree = "<group>"; };
  797. F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JpCntx.cpp; sourceTree = "<group>"; };
  798. F73B4EB61F470D9100BBEE4B /* JpCntx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JpCntx.h; sourceTree = "<group>"; };
  799. F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangArabicModel.cpp; sourceTree = "<group>"; };
  800. F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangBulgarianModel.cpp; sourceTree = "<group>"; };
  801. F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangDanishModel.cpp; sourceTree = "<group>"; };
  802. F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangEsperantoModel.cpp; sourceTree = "<group>"; };
  803. F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangFrenchModel.cpp; sourceTree = "<group>"; };
  804. F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGermanModel.cpp; sourceTree = "<group>"; };
  805. F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGreekModel.cpp; sourceTree = "<group>"; };
  806. F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHebrewModel.cpp; sourceTree = "<group>"; };
  807. F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHungarianModel.cpp; sourceTree = "<group>"; };
  808. F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangRussianModel.cpp; sourceTree = "<group>"; };
  809. F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangSpanishModel.cpp; sourceTree = "<group>"; };
  810. F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangThaiModel.cpp; sourceTree = "<group>"; };
  811. F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangTurkishModel.cpp; sourceTree = "<group>"; };
  812. F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangVietnameseModel.cpp; sourceTree = "<group>"; };
  813. F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsBig5Prober.cpp; sourceTree = "<group>"; };
  814. F73B4EC71F470D9100BBEE4B /* nsBig5Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsBig5Prober.h; sourceTree = "<group>"; };
  815. F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsCharSetProber.cpp; sourceTree = "<group>"; };
  816. F73B4EC91F470D9100BBEE4B /* nsCharSetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCharSetProber.h; sourceTree = "<group>"; };
  817. F73B4ECA1F470D9100BBEE4B /* nsCodingStateMachine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCodingStateMachine.h; sourceTree = "<group>"; };
  818. F73B4ECB1F470D9100BBEE4B /* nscore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nscore.h; sourceTree = "<group>"; };
  819. F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscCharsetProber.cpp; sourceTree = "<group>"; };
  820. F73B4ECD1F470D9100BBEE4B /* nsEscCharsetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEscCharsetProber.h; sourceTree = "<group>"; };
  821. F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscSM.cpp; sourceTree = "<group>"; };
  822. F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCJPProber.cpp; sourceTree = "<group>"; };
  823. F73B4ED01F470D9100BBEE4B /* nsEUCJPProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCJPProber.h; sourceTree = "<group>"; };
  824. F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCKRProber.cpp; sourceTree = "<group>"; };
  825. F73B4ED21F470D9100BBEE4B /* nsEUCKRProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCKRProber.h; sourceTree = "<group>"; };
  826. F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCTWProber.cpp; sourceTree = "<group>"; };
  827. F73B4ED41F470D9100BBEE4B /* nsEUCTWProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCTWProber.h; sourceTree = "<group>"; };
  828. F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsGB2312Prober.cpp; sourceTree = "<group>"; };
  829. F73B4ED61F470D9100BBEE4B /* nsGB2312Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsGB2312Prober.h; sourceTree = "<group>"; };
  830. F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsHebrewProber.cpp; sourceTree = "<group>"; };
  831. F73B4ED81F470D9100BBEE4B /* nsHebrewProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsHebrewProber.h; sourceTree = "<group>"; };
  832. F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsLatin1Prober.cpp; sourceTree = "<group>"; };
  833. F73B4EDA1F470D9100BBEE4B /* nsLatin1Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsLatin1Prober.h; sourceTree = "<group>"; };
  834. F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSGroupProber.cpp; sourceTree = "<group>"; };
  835. F73B4EDC1F470D9100BBEE4B /* nsMBCSGroupProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsMBCSGroupProber.h; sourceTree = "<group>"; };
  836. F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSSM.cpp; sourceTree = "<group>"; };
  837. F73B4EDE1F470D9100BBEE4B /* nsPkgInt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsPkgInt.h; sourceTree = "<group>"; };
  838. F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCharSetProber.cpp; sourceTree = "<group>"; };
  839. F73B4EE01F470D9100BBEE4B /* nsSBCharSetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCharSetProber.h; sourceTree = "<group>"; };
  840. F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCSGroupProber.cpp; sourceTree = "<group>"; };
  841. F73B4EE21F470D9100BBEE4B /* nsSBCSGroupProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCSGroupProber.h; sourceTree = "<group>"; };
  842. F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSJISProber.cpp; sourceTree = "<group>"; };
  843. F73B4EE41F470D9100BBEE4B /* nsSJISProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSJISProber.h; sourceTree = "<group>"; };
  844. F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUniversalDetector.cpp; sourceTree = "<group>"; };
  845. F73B4EE61F470D9100BBEE4B /* nsUniversalDetector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUniversalDetector.h; sourceTree = "<group>"; };
  846. F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUTF8Prober.cpp; sourceTree = "<group>"; };
  847. F73B4EE81F470D9100BBEE4B /* nsUTF8Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUTF8Prober.h; sourceTree = "<group>"; };
  848. F73B4EE91F470D9100BBEE4B /* prmem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prmem.h; sourceTree = "<group>"; };
  849. F73B4EEA1F470D9100BBEE4B /* symbols.cmake */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = symbols.cmake; sourceTree = "<group>"; };
  850. F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uchardet.cpp; sourceTree = "<group>"; };
  851. F73B4EED1F470D9100BBEE4B /* uchardet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uchardet.h; sourceTree = "<group>"; };
  852. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCShareHeaderView.xib; sourceTree = "<group>"; };
  853. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCBridgeSwift.h; sourceTree = "<group>"; };
  854. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeDummyViewController.h; sourceTree = "<group>"; };
  855. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeDummyViewController.m; sourceTree = "<group>"; };
  856. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeField.h; sourceTree = "<group>"; };
  857. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeField.m; sourceTree = "<group>"; };
  858. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeInputView.h; sourceTree = "<group>"; };
  859. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeInputView.m; sourceTree = "<group>"; };
  860. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeLockScreenManager.h; sourceTree = "<group>"; };
  861. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeLockScreenManager.m; sourceTree = "<group>"; };
  862. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeUtils.h; sourceTree = "<group>"; };
  863. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeViewController.h; sourceTree = "<group>"; };
  864. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeViewController.m; sourceTree = "<group>"; };
  865. F73CC0631E813DFF006E3047 /* BKShiftingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKShiftingView.h; sourceTree = "<group>"; };
  866. F73CC0641E813DFF006E3047 /* BKShiftingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKShiftingView.m; sourceTree = "<group>"; };
  867. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDManager.h; sourceTree = "<group>"; };
  868. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDManager.m; sourceTree = "<group>"; };
  869. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDSwitchView.h; sourceTree = "<group>"; };
  870. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDSwitchView.m; sourceTree = "<group>"; };
  871. F73D71611F2673C200E233EB /* NCText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCText.swift; sourceTree = "<group>"; };
  872. F73D71631F2674A400E233EB /* NCText.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCText.storyboard; sourceTree = "<group>"; };
  873. F73F537E1E929C8500F8678D /* CCMore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCMore.swift; sourceTree = "<group>"; };
  874. F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrashSectionHeaderFooter.swift; sourceTree = "<group>"; };
  875. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  876. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtension-Bridging-Header.h"; sourceTree = "<group>"; };
  877. F745B250222D871800346520 /* QRCodeReader.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QRCodeReader.framework; path = Carthage/Build/iOS/QRCodeReader.framework; sourceTree = "<group>"; };
  878. F745B252222D88AE00346520 /* NCLoginQRCode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginQRCode.swift; sourceTree = "<group>"; };
  879. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadVoiceNote.storyboard; sourceTree = "<group>"; };
  880. F7496B81208F5651004B299C /* iOSClient.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = iOSClient.plist; sourceTree = "<group>"; };
  881. F7496B83208F5652004B299C /* Share.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Share.plist; sourceTree = "<group>"; };
  882. F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroCollectionViewCell.swift; sourceTree = "<group>"; };
  883. F749C10823C4A5330027D966 /* NCIntroViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroViewController.swift; sourceTree = "<group>"; };
  884. F749C10923C4A5330027D966 /* NCIntro.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCIntro.storyboard; sourceTree = "<group>"; };
  885. F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCIntroCollectionViewCell.xib; sourceTree = "<group>"; };
  886. F74AFCE822E8B024003DE61F /* FSCalendar.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FSCalendar.framework; path = Carthage/Build/iOS/FSCalendar.framework; sourceTree = "<group>"; };
  887. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenSSL.framework; path = Carthage/Build/iOS/OpenSSL.framework; sourceTree = "<group>"; };
  888. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNetworking.h; sourceTree = "<group>"; };
  889. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNetworking.m; sourceTree = "<group>"; };
  890. F74E432420B5547700C2E54C /* NCNetworkingEndToEnd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCNetworkingEndToEnd.h; sourceTree = "<group>"; };
  891. F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCNetworkingEndToEnd.m; sourceTree = "<group>"; };
  892. F7501C302212E57400FB1415 /* NCMedia.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCMedia.storyboard; sourceTree = "<group>"; };
  893. F7501C312212E57400FB1415 /* NCMedia.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMedia.swift; sourceTree = "<group>"; };
  894. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ALView+PureLayout.h"; sourceTree = "<group>"; };
  895. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ALView+PureLayout.m"; sourceTree = "<group>"; };
  896. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+PureLayout.h"; sourceTree = "<group>"; };
  897. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+PureLayout.m"; sourceTree = "<group>"; };
  898. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PureLayout.h"; sourceTree = "<group>"; };
  899. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PureLayout.m"; sourceTree = "<group>"; };
  900. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PureLayout+Internal.h"; sourceTree = "<group>"; };
  901. F750374A1DBFA91A008FB480 /* PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayout.h; sourceTree = "<group>"; };
  902. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayoutDefines.h; sourceTree = "<group>"; };
  903. F7514EDA1C7B1336008F3338 /* CCHud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHud.h; sourceTree = "<group>"; };
  904. F7514EDB1C7B1336008F3338 /* CCHud.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHud.m; sourceTree = "<group>"; };
  905. F75153232226920200323DDC /* FastScroll.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FastScroll.framework; path = Carthage/Build/iOS/FastScroll.framework; sourceTree = "<group>"; };
  906. F753701822723D620041C76C /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
  907. F753701922723E0D0041C76C /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  908. F753701A22723EC80041C76C /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  909. F754EEC421772B6100BB1CDF /* DropdownItem.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropdownItem.swift; sourceTree = "<group>"; };
  910. F754EEC521772B6100BB1CDF /* DropUpMenu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropUpMenu.swift; sourceTree = "<group>"; };
  911. F754EEC621772B6100BB1CDF /* DropdownMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DropdownMenu.h; sourceTree = "<group>"; };
  912. F754EEC721772B6100BB1CDF /* DropdownMenu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropdownMenu.swift; sourceTree = "<group>"; };
  913. F754EEC821772B6100BB1CDF /* SectionHeader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SectionHeader.swift; sourceTree = "<group>"; };
  914. F755BD9A20594AC7008C5FBB /* NCService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCService.swift; sourceTree = "<group>"; };
  915. F758B457212C564000515F55 /* Scan.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Scan.storyboard; sourceTree = "<group>"; };
  916. F758B45D212C569C00515F55 /* ScanCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScanCell.swift; sourceTree = "<group>"; };
  917. F758B45F212C56A400515F55 /* ScanCollectionView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScanCollectionView.swift; sourceTree = "<group>"; };
  918. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworking.swift; sourceTree = "<group>"; };
  919. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageAutoUploadFileName.swift; sourceTree = "<group>"; };
  920. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCLogin.storyboard; sourceTree = "<group>"; };
  921. F75B91E21ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  922. F75B91F71ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  923. F75B923D1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  924. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRichWorkspaceCommon.swift; sourceTree = "<group>"; };
  925. F75CDBF51DF063AD00116AD0 /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; name = .gitignore; path = ../.gitignore; sourceTree = "<group>"; };
  926. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  927. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
  928. F760F75721F21F61006B1A73 /* icomoon.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = icomoon.ttf; sourceTree = "<group>"; };
  929. F760F75821F21F61006B1A73 /* StickersViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StickersViewController.xib; sourceTree = "<group>"; };
  930. F760F75921F21F61006B1A73 /* ColorsCollectionViewDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorsCollectionViewDelegate.swift; sourceTree = "<group>"; };
  931. F760F75A21F21F61006B1A73 /* PhotoEditor+Keyboard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Keyboard.swift"; sourceTree = "<group>"; };
  932. F760F75B21F21F61006B1A73 /* PhotoEditor+Controls.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Controls.swift"; sourceTree = "<group>"; };
  933. F760F75C21F21F61006B1A73 /* PhotoEditorViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhotoEditorViewController.xib; sourceTree = "<group>"; };
  934. F760F75D21F21F61006B1A73 /* PhotoEditor+StickersViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+StickersViewController.swift"; sourceTree = "<group>"; };
  935. F760F75E21F21F61006B1A73 /* PhotoEditor+UITextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+UITextView.swift"; sourceTree = "<group>"; };
  936. F760F75F21F21F61006B1A73 /* UIImageView+Alpha.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImageView+Alpha.swift"; sourceTree = "<group>"; };
  937. F760F76021F21F61006B1A73 /* ColorCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ColorCollectionViewCell.xib; sourceTree = "<group>"; };
  938. F760F76121F21F61006B1A73 /* EmojiCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = EmojiCollectionViewCell.xib; sourceTree = "<group>"; };
  939. F760F76321F21F61006B1A73 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  940. F760F76421F21F61006B1A73 /* PhotoEditor+Font.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Font.swift"; sourceTree = "<group>"; };
  941. F760F76521F21F61006B1A73 /* PhotoCropEditorBorder@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PhotoCropEditorBorder@2x.png"; sourceTree = "<group>"; };
  942. F760F76621F21F61006B1A73 /* UIView+Image.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Image.swift"; sourceTree = "<group>"; };
  943. F760F76721F21F61006B1A73 /* UIImage+Size.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+Size.swift"; sourceTree = "<group>"; };
  944. F760F76821F21F61006B1A73 /* UIImage+Crop.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+Crop.swift"; sourceTree = "<group>"; };
  945. F760F76921F21F61006B1A73 /* StickersViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StickersViewController.swift; sourceTree = "<group>"; };
  946. F760F76A21F21F61006B1A73 /* Protocols.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Protocols.swift; sourceTree = "<group>"; };
  947. F760F76B21F21F61006B1A73 /* PhotoEditor+Drawing.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Drawing.swift"; sourceTree = "<group>"; };
  948. F760F76C21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PhotoCropEditorBorder@3x.png"; sourceTree = "<group>"; };
  949. F760F76D21F21F61006B1A73 /* PhotoCropEditorBorder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PhotoCropEditorBorder.png; sourceTree = "<group>"; };
  950. F760F76E21F21F61006B1A73 /* EmojiCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EmojiCollectionViewCell.swift; sourceTree = "<group>"; };
  951. F760F76F21F21F61006B1A73 /* EmojisCollectionViewDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EmojisCollectionViewDelegate.swift; sourceTree = "<group>"; };
  952. F760F77021F21F61006B1A73 /* CropView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CropView.swift; sourceTree = "<group>"; };
  953. F760F77121F21F61006B1A73 /* ResizeControl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResizeControl.swift; sourceTree = "<group>"; };
  954. F760F77221F21F61006B1A73 /* PhotoEditor+Gestures.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Gestures.swift"; sourceTree = "<group>"; };
  955. F760F77321F21F61006B1A73 /* PhotoEditorViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PhotoEditorViewController.swift; sourceTree = "<group>"; };
  956. F760F77421F21F61006B1A73 /* StickerCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StickerCollectionViewCell.xib; sourceTree = "<group>"; };
  957. F760F77521F21F61006B1A73 /* StickerCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StickerCollectionViewCell.swift; sourceTree = "<group>"; };
  958. F760F77621F21F61006B1A73 /* CropViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CropViewController.swift; sourceTree = "<group>"; };
  959. F760F77721F21F61006B1A73 /* PhotoEditor+Crop.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Crop.swift"; sourceTree = "<group>"; };
  960. F760F77821F21F61006B1A73 /* ColorCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorCollectionViewCell.swift; sourceTree = "<group>"; };
  961. F760F77921F21F61006B1A73 /* GradientView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GradientView.swift; sourceTree = "<group>"; };
  962. F760F77A21F21F61006B1A73 /* CropRectView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CropRectView.swift; sourceTree = "<group>"; };
  963. F762CAA31EACB66200B38484 /* XLFormBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormBaseCell.h; sourceTree = "<group>"; };
  964. F762CAA41EACB66200B38484 /* XLFormBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormBaseCell.m; sourceTree = "<group>"; };
  965. F762CAA51EACB66200B38484 /* XLFormButtonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormButtonCell.h; sourceTree = "<group>"; };
  966. F762CAA61EACB66200B38484 /* XLFormButtonCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormButtonCell.m; sourceTree = "<group>"; };
  967. F762CAA71EACB66200B38484 /* XLFormCheckCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormCheckCell.h; sourceTree = "<group>"; };
  968. F762CAA81EACB66200B38484 /* XLFormCheckCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormCheckCell.m; sourceTree = "<group>"; };
  969. F762CAA91EACB66200B38484 /* XLFormDateCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDateCell.h; sourceTree = "<group>"; };
  970. F762CAAA1EACB66200B38484 /* XLFormDateCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDateCell.m; sourceTree = "<group>"; };
  971. F762CAAB1EACB66200B38484 /* XLFormDatePickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDatePickerCell.h; sourceTree = "<group>"; };
  972. F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDatePickerCell.m; sourceTree = "<group>"; };
  973. F762CAAD1EACB66200B38484 /* XLFormDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorCell.h; sourceTree = "<group>"; };
  974. F762CAAE1EACB66200B38484 /* XLFormImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormImageCell.h; sourceTree = "<group>"; };
  975. F762CAAF1EACB66200B38484 /* XLFormImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormImageCell.m; sourceTree = "<group>"; };
  976. F762CAB01EACB66200B38484 /* XLFormInlineRowDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineRowDescriptorCell.h; sourceTree = "<group>"; };
  977. F762CAB11EACB66200B38484 /* XLFormInlineSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineSelectorCell.h; sourceTree = "<group>"; };
  978. F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormInlineSelectorCell.m; sourceTree = "<group>"; };
  979. F762CAB31EACB66200B38484 /* XLFormLeftRightSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormLeftRightSelectorCell.h; sourceTree = "<group>"; };
  980. F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormLeftRightSelectorCell.m; sourceTree = "<group>"; };
  981. F762CAB51EACB66200B38484 /* XLFormPickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormPickerCell.h; sourceTree = "<group>"; };
  982. F762CAB61EACB66200B38484 /* XLFormPickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormPickerCell.m; sourceTree = "<group>"; };
  983. F762CAB71EACB66200B38484 /* XLFormSegmentedCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSegmentedCell.h; sourceTree = "<group>"; };
  984. F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSegmentedCell.m; sourceTree = "<group>"; };
  985. F762CAB91EACB66200B38484 /* XLFormSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSelectorCell.h; sourceTree = "<group>"; };
  986. F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSelectorCell.m; sourceTree = "<group>"; };
  987. F762CABB1EACB66200B38484 /* XLFormSliderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSliderCell.h; sourceTree = "<group>"; };
  988. F762CABC1EACB66200B38484 /* XLFormSliderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSliderCell.m; sourceTree = "<group>"; };
  989. F762CABD1EACB66200B38484 /* XLFormStepCounterCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormStepCounterCell.h; sourceTree = "<group>"; };
  990. F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormStepCounterCell.m; sourceTree = "<group>"; };
  991. F762CABF1EACB66200B38484 /* XLFormSwitchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSwitchCell.h; sourceTree = "<group>"; };
  992. F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSwitchCell.m; sourceTree = "<group>"; };
  993. F762CAC11EACB66200B38484 /* XLFormTextFieldCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextFieldCell.h; sourceTree = "<group>"; };
  994. F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextFieldCell.m; sourceTree = "<group>"; };
  995. F762CAC31EACB66200B38484 /* XLFormTextViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextViewCell.h; sourceTree = "<group>"; };
  996. F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextViewCell.m; sourceTree = "<group>"; };
  997. F762CAC61EACB66200B38484 /* XLFormOptionsObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsObject.h; sourceTree = "<group>"; };
  998. F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsObject.m; sourceTree = "<group>"; };
  999. F762CAC81EACB66200B38484 /* XLFormOptionsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsViewController.h; sourceTree = "<group>"; };
  1000. F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsViewController.m; sourceTree = "<group>"; };
  1001. F762CACA1EACB66200B38484 /* XLFormRowDescriptorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptorViewController.h; sourceTree = "<group>"; };
  1002. F762CACB1EACB66200B38484 /* XLFormViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormViewController.h; sourceTree = "<group>"; };
  1003. F762CACC1EACB66200B38484 /* XLFormViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormViewController.m; sourceTree = "<group>"; };
  1004. F762CACE1EACB66200B38484 /* XLFormDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptor.h; sourceTree = "<group>"; };
  1005. F762CACF1EACB66200B38484 /* XLFormDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDescriptor.m; sourceTree = "<group>"; };
  1006. F762CAD01EACB66200B38484 /* XLFormDescriptorDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorDelegate.h; sourceTree = "<group>"; };
  1007. F762CAD11EACB66200B38484 /* XLFormRowDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptor.h; sourceTree = "<group>"; };
  1008. F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowDescriptor.m; sourceTree = "<group>"; };
  1009. F762CAD31EACB66200B38484 /* XLFormSectionDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSectionDescriptor.h; sourceTree = "<group>"; };
  1010. F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSectionDescriptor.m; sourceTree = "<group>"; };
  1011. F762CAD61EACB66200B38484 /* NSArray+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+XLFormAdditions.h"; sourceTree = "<group>"; };
  1012. F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+XLFormAdditions.m"; sourceTree = "<group>"; };
  1013. F762CAD81EACB66200B38484 /* NSExpression+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSExpression+XLFormAdditions.h"; sourceTree = "<group>"; };
  1014. F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSExpression+XLFormAdditions.m"; sourceTree = "<group>"; };
  1015. F762CADA1EACB66200B38484 /* NSObject+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+XLFormAdditions.h"; sourceTree = "<group>"; };
  1016. F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+XLFormAdditions.m"; sourceTree = "<group>"; };
  1017. F762CADC1EACB66200B38484 /* NSPredicate+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSPredicate+XLFormAdditions.h"; sourceTree = "<group>"; };
  1018. F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSPredicate+XLFormAdditions.m"; sourceTree = "<group>"; };
  1019. F762CADE1EACB66200B38484 /* NSString+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+XLFormAdditions.h"; sourceTree = "<group>"; };
  1020. F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+XLFormAdditions.m"; sourceTree = "<group>"; };
  1021. F762CAE01EACB66200B38484 /* UIView+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XLFormAdditions.h"; sourceTree = "<group>"; };
  1022. F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XLFormAdditions.m"; sourceTree = "<group>"; };
  1023. F762CAE31EACB66200B38484 /* XLFormRightDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightDetailCell.h; sourceTree = "<group>"; };
  1024. F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightDetailCell.m; sourceTree = "<group>"; };
  1025. F762CAE51EACB66200B38484 /* XLFormRightImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightImageButton.h; sourceTree = "<group>"; };
  1026. F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightImageButton.m; sourceTree = "<group>"; };
  1027. F762CAE71EACB66200B38484 /* XLFormRowNavigationAccessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowNavigationAccessoryView.h; sourceTree = "<group>"; };
  1028. F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowNavigationAccessoryView.m; sourceTree = "<group>"; };
  1029. F762CAE91EACB66200B38484 /* XLFormTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextView.h; sourceTree = "<group>"; };
  1030. F762CAEA1EACB66200B38484 /* XLFormTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextView.m; sourceTree = "<group>"; };
  1031. F762CAEC1EACB66200B38484 /* XLFormRegexValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRegexValidator.h; sourceTree = "<group>"; };
  1032. F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRegexValidator.m; sourceTree = "<group>"; };
  1033. F762CAEE1EACB66200B38484 /* XLFormValidationStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidationStatus.h; sourceTree = "<group>"; };
  1034. F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidationStatus.m; sourceTree = "<group>"; };
  1035. F762CAF01EACB66200B38484 /* XLFormValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidator.h; sourceTree = "<group>"; };
  1036. F762CAF11EACB66200B38484 /* XLFormValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidator.m; sourceTree = "<group>"; };
  1037. F762CAF21EACB66200B38484 /* XLFormValidatorProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidatorProtocol.h; sourceTree = "<group>"; };
  1038. F762CAF31EACB66200B38484 /* XLForm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLForm.h; sourceTree = "<group>"; };
  1039. F762CAF41EACB66200B38484 /* XLForm.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLForm.m; sourceTree = "<group>"; };
  1040. F762CAF51EACB66200B38484 /* XLForm.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = XLForm.bundle; sourceTree = "<group>"; };
  1041. F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCTrashSectionHeaderMenu.xib; sourceTree = "<group>"; };
  1042. F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCTrashSectionFooter.xib; sourceTree = "<group>"; };
  1043. F76344751BF259A800188725 /* synchronized.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronized.gif; sourceTree = "<group>"; };
  1044. F76344761BF259A800188725 /* synchronizedcrypto.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronizedcrypto.gif; sourceTree = "<group>"; };
  1045. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadDocuments.storyboard; sourceTree = "<group>"; };
  1046. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadDocuments.swift; sourceTree = "<group>"; };
  1047. F765608623BF806C00765969 /* QuickLayout.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLayout.framework; path = Carthage/Build/iOS/QuickLayout.framework; sourceTree = "<group>"; };
  1048. F765608A23BF80A400765969 /* SwiftEntryKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftEntryKit.framework; path = Carthage/Build/iOS/SwiftEntryKit.framework; sourceTree = "<group>"; };
  1049. F765608E23BF813500765969 /* NCContentPresenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCContentPresenter.swift; sourceTree = "<group>"; };
  1050. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderDomain.swift; sourceTree = "<group>"; };
  1051. F76673EF22C90433007ED366 /* FileProviderUtility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderUtility.swift; sourceTree = "<group>"; };
  1052. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainTabBar.swift; sourceTree = "<group>"; };
  1053. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserCell.xib; sourceTree = "<group>"; };
  1054. F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserMenuView.xib; sourceTree = "<group>"; };
  1055. F769453F22E9F077000A798A /* NCSharePaging.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSharePaging.swift; sourceTree = "<group>"; };
  1056. F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareLinkMenuView.swift; sourceTree = "<group>"; };
  1057. F769454322E9F142000A798A /* NCShareUserMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareUserMenuView.swift; sourceTree = "<group>"; };
  1058. F769454522E9F1B0000A798A /* NCShareCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCommon.swift; sourceTree = "<group>"; };
  1059. F769454722E9F20D000A798A /* NCShareNetworking.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareNetworking.swift; sourceTree = "<group>"; };
  1060. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBrand.swift; sourceTree = "<group>"; };
  1061. F76C3B831C6388BC00DC4301 /* CCGraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGraphics.h; sourceTree = "<group>"; };
  1062. F76C3B841C6388BC00DC4301 /* CCGraphics.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGraphics.m; sourceTree = "<group>"; };
  1063. F76C3B871C638A4C00DC4301 /* CCError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCError.h; sourceTree = "<group>"; };
  1064. F76C3B881C638A4C00DC4301 /* CCError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCError.m; sourceTree = "<group>"; };
  1065. F76E71E42244DF6900690001 /* Zip.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Zip.framework; path = Carthage/Build/iOS/Zip.framework; sourceTree = "<group>"; };
  1066. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Share-Bridging-Header.h"; sourceTree = "<group>"; };
  1067. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  1068. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderExtension.swift; sourceTree = "<group>"; };
  1069. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderItem.swift; sourceTree = "<group>"; };
  1070. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderEnumerator.swift; sourceTree = "<group>"; };
  1071. F771E3F220E239A600AFB62D /* FileProviderData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderData.swift; sourceTree = "<group>"; };
  1072. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Actions.swift"; sourceTree = "<group>"; };
  1073. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Thumbnail.swift"; sourceTree = "<group>"; };
  1074. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = File_Provider_Extension.entitlements; sourceTree = "<group>"; };
  1075. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = File_Provider_Extension.plist; sourceTree = "<group>"; };
  1076. F774264022EB3F7300B23912 /* DropDown.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropDown.framework; path = Carthage/Build/iOS/DropDown.framework; sourceTree = "<group>"; };
  1077. F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserDropDownCell.xib; sourceTree = "<group>"; };
  1078. F77438EB1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1079. F77438F21FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  1080. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1081. F77439001FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
  1082. F77439071FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1083. F774390E1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1084. F77439151FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1085. F774391C1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1086. F77439231FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1087. F774392A1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1088. F77439311FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1089. F77439381FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1090. F774393F1FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1091. F77439461FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1092. F774394D1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1093. F77439541FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1094. F774395B1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1095. F77439621FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1096. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGridMediaCell.swift; sourceTree = "<group>"; };
  1097. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCGridMediaCell.xib; sourceTree = "<group>"; };
  1098. F77444F7222816D5000D5EB0 /* NCPhotosPickerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPhotosPickerViewController.swift; sourceTree = "<group>"; };
  1099. F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@1x.png"; sourceTree = "<group>"; };
  1100. F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@2x.png"; sourceTree = "<group>"; };
  1101. F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@3x.png"; sourceTree = "<group>"; };
  1102. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+Utility.h"; sourceTree = "<group>"; };
  1103. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+Utility.m"; sourceTree = "<group>"; };
  1104. F77D49A71DC238E500CDC568 /* loading.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = loading.gif; sourceTree = "<group>"; };
  1105. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+MainThread.h"; sourceTree = "<group>"; };
  1106. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+MainThread.m"; sourceTree = "<group>"; };
  1107. F781996722636BFA00EBDF6A /* HCFeatures.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HCFeatures.h; sourceTree = "<group>"; };
  1108. F781996822636BFA00EBDF6A /* HCFeatures.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HCFeatures.m; sourceTree = "<group>"; };
  1109. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkCell.xib; sourceTree = "<group>"; };
  1110. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspaceWebView.swift; sourceTree = "<group>"; };
  1111. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspace.swift; sourceTree = "<group>"; };
  1112. F78AA20521F783E900D0F205 /* SwiftRichString.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftRichString.framework; path = Carthage/Build/iOS/SwiftRichString.framework; sourceTree = "<group>"; };
  1113. F78ACD3F21903CC20088454D /* NCGridCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCGridCell.swift; sourceTree = "<group>"; };
  1114. F78ACD4121903CE00088454D /* NCListCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCListCell.swift; sourceTree = "<group>"; };
  1115. F78ACD4321903CF20088454D /* NCListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCListCell.xib; sourceTree = "<group>"; };
  1116. F78ACD4521903D010088454D /* NCGridCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCGridCell.xib; sourceTree = "<group>"; };
  1117. F78ACD4821903F850088454D /* NCTrashListCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCTrashListCell.swift; sourceTree = "<group>"; };
  1118. F78ACD4921903F850088454D /* NCTrashListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCTrashListCell.xib; sourceTree = "<group>"; };
  1119. F78ACD4E2190440D0088454D /* NCLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLayout.swift; sourceTree = "<group>"; };
  1120. F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSectionHeaderFooter.swift; sourceTree = "<group>"; };
  1121. F78ACD53219047D40088454D /* NCSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionFooter.xib; sourceTree = "<group>"; };
  1122. F78ACD55219047E90088454D /* NCSectionHeader.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionHeader.xib; sourceTree = "<group>"; };
  1123. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionHeaderMenu.xib; sourceTree = "<group>"; };
  1124. F78B9682234F785300F54315 /* NCSelectDestination.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSelectDestination.m; sourceTree = "<group>"; };
  1125. F78B9683234F785300F54315 /* NCSelectDestination.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSelectDestination.h; sourceTree = "<group>"; };
  1126. F78B9684234F785300F54315 /* NCSelectDestination.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCSelectDestination.storyboard; sourceTree = "<group>"; };
  1127. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  1128. F78D6F461F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1129. F78D6F4D1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1130. F78D6F541F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1131. F78E7064219F096B006F23E4 /* NCAvatar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAvatar.swift; sourceTree = "<group>"; };
  1132. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSection.h; sourceTree = "<group>"; };
  1133. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSection.m; sourceTree = "<group>"; };
  1134. F78F74332163757000C2ADAD /* NCTrash.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCTrash.storyboard; sourceTree = "<group>"; };
  1135. F78F74352163781100C2ADAD /* NCTrash.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrash.swift; sourceTree = "<group>"; };
  1136. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichdocument.swift; sourceTree = "<group>"; };
  1137. F79018A424092EF4007C9B6D /* ATGMediaBrowser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ATGMediaBrowser.framework; path = Carthage/Build/iOS/ATGMediaBrowser.framework; sourceTree = "<group>"; };
  1138. F79018B2240962C7007C9B6D /* DismissAnimationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DismissAnimationController.swift; sourceTree = "<group>"; };
  1139. F79018B3240962C7007C9B6D /* MediaContentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MediaContentView.swift; sourceTree = "<group>"; };
  1140. F79018B4240962C7007C9B6D /* MediaBrowserViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MediaBrowserViewController.swift; sourceTree = "<group>"; };
  1141. F79018B5240962C7007C9B6D /* ContentTransformers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContentTransformers.swift; sourceTree = "<group>"; };
  1142. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUploadFromOtherUpp.h; sourceTree = "<group>"; };
  1143. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUploadFromOtherUpp.m; sourceTree = "<group>"; };
  1144. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCUploadFromOtherUpp.storyboard; sourceTree = "<group>"; };
  1145. F79630ED215527D40015EEA5 /* NCViewerMedia.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerMedia.swift; sourceTree = "<group>"; };
  1146. F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkFolderMenuView.xib; sourceTree = "<group>"; };
  1147. F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserFolderMenuView.xib; sourceTree = "<group>"; };
  1148. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UICKeyChainStore.framework; path = Carthage/Build/iOS/UICKeyChainStore.framework; sourceTree = "<group>"; };
  1149. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sheeeeeeeeet.framework; path = Carthage/Build/iOS/Sheeeeeeeeet.framework; sourceTree = "<group>"; };
  1150. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCSelect.storyboard; sourceTree = "<group>"; };
  1151. F79A65C52191D95E00FF6DCC /* NCSelect.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSelect.swift; sourceTree = "<group>"; };
  1152. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCFavorites.h; sourceTree = "<group>"; };
  1153. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCFavorites.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1154. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMenuAccount.h; sourceTree = "<group>"; };
  1155. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMenuAccount.m; sourceTree = "<group>"; };
  1156. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAdvanced.h; sourceTree = "<group>"; };
  1157. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAdvanced.m; sourceTree = "<group>"; };
  1158. F7A377141EB2364A002856D3 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Crashlytics.framework; sourceTree = "<group>"; };
  1159. F7A377151EB2364A002856D3 /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Fabric.framework; sourceTree = "<group>"; };
  1160. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCExifGeo.h; sourceTree = "<group>"; };
  1161. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCExifGeo.m; sourceTree = "<group>"; };
  1162. F7A582D71A24DAB500E903D7 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = AppDelegate.h; sourceTree = "<group>"; };
  1163. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
  1164. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
  1165. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
  1166. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
  1167. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
  1168. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAutoUpload.h; sourceTree = "<group>"; };
  1169. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAutoUpload.m; sourceTree = "<group>"; };
  1170. F7ACE4301BAC0268006C0017 /* CCSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSettings.h; sourceTree = "<group>"; };
  1171. F7ACE4311BAC0268006C0017 /* CCSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSettings.m; sourceTree = "<group>"; };
  1172. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginWeb.swift; sourceTree = "<group>"; };
  1173. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCBrowserWeb.swift; sourceTree = "<group>"; };
  1174. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCBrowserWeb.storyboard; sourceTree = "<group>"; };
  1175. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSynchronize.h; sourceTree = "<group>"; };
  1176. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSynchronize.m; sourceTree = "<group>"; };
  1177. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCAutoUpload.h; sourceTree = "<group>"; };
  1178. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCAutoUpload.m; sourceTree = "<group>"; };
  1179. F7B174C722FAC0A8000B7579 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  1180. F7B1A7761EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  1181. F7B2DEED1F976785007CF4D2 /* english.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = english.txt; sourceTree = "<group>"; };
  1182. F7B2DEEE1F976785007CF4D2 /* NYMnemonic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NYMnemonic.h; sourceTree = "<group>"; };
  1183. F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NYMnemonic.m; sourceTree = "<group>"; };
  1184. F7B4F1C71F44356F00B53B42 /* NCUchardet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCUchardet.h; sourceTree = "<group>"; };
  1185. F7B4F1C81F44356F00B53B42 /* NCUchardet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCUchardet.m; sourceTree = "<group>"; };
  1186. F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCXMLCommentsParser.m; sourceTree = "<group>"; };
  1187. F7B6ACD522FC2BD4008AB646 /* NCXMLCommentsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCXMLCommentsParser.h; sourceTree = "<group>"; };
  1188. F7B6ACD922FC2D14008AB646 /* NCComments.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCComments.h; sourceTree = "<group>"; };
  1189. F7B6ACDA22FC2D15008AB646 /* NCComments.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCComments.m; sourceTree = "<group>"; };
  1190. F7B7504A2397D38E004E13EC /* UIImage+fixedOrientation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+fixedOrientation.swift"; sourceTree = "<group>"; };
  1191. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDatabase.swift; sourceTree = "<group>"; };
  1192. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageDatabase.swift; sourceTree = "<group>"; };
  1193. F7BB04851FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1194. F7BF1B3F1D51E893000854F6 /* CCLogin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLogin.h; sourceTree = "<group>"; };
  1195. F7BF1B401D51E893000854F6 /* CCLogin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLogin.m; sourceTree = "<group>"; };
  1196. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageLocation.h; sourceTree = "<group>"; };
  1197. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageLocation.m; sourceTree = "<group>"; };
  1198. F7C0F46E1C8880540059EC54 /* ShareViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = ShareViewController.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1199. F7C0F46F1C8880540059EC54 /* ShareViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = ShareViewController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1200. F7C40BE221998C050004137E /* PDFGenerator.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PDFGenerator.framework; path = Carthage/Build/iOS/PDFGenerator.framework; sourceTree = "<group>"; };
  1201. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MGSwipeTableCell.framework; path = Carthage/Build/iOS/MGSwipeTableCell.framework; sourceTree = "<group>"; };
  1202. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DZNEmptyDataSet.framework; path = Carthage/Build/iOS/DZNEmptyDataSet.framework; sourceTree = "<group>"; };
  1203. F7C40BE8219991A60004137E /* EAIntroView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EAIntroView.framework; path = Carthage/Build/iOS/EAIntroView.framework; sourceTree = "<group>"; };
  1204. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EARestrictedScrollView.framework; path = Carthage/Build/iOS/EARestrictedScrollView.framework; sourceTree = "<group>"; };
  1205. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JDStatusBarNotification.framework; path = Carthage/Build/iOS/JDStatusBarNotification.framework; sourceTree = "<group>"; };
  1206. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVCocoaHTTPServer.framework; path = Carthage/Build/iOS/KTVCocoaHTTPServer.framework; sourceTree = "<group>"; };
  1207. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVHTTPCache.framework; path = Carthage/Build/iOS/KTVHTTPCache.framework; sourceTree = "<group>"; };
  1208. F7C40BF22199978B0004137E /* MBProgressHUD.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MBProgressHUD.framework; path = Carthage/Build/iOS/MBProgressHUD.framework; sourceTree = "<group>"; };
  1209. F7C40C0F2199BA5D0004137E /* Realm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Realm.framework; path = Carthage/Build/iOS/Realm.framework; sourceTree = "<group>"; };
  1210. F7C40C112199BA620004137E /* RealmSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RealmSwift.framework; path = Carthage/Build/iOS/RealmSwift.framework; sourceTree = "<group>"; };
  1211. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CCNotification.swift; path = Notification/CCNotification.swift; sourceTree = "<group>"; };
  1212. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CCNotification.storyboard; path = Notification/CCNotification.storyboard; sourceTree = "<group>"; };
  1213. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = iOSClient.entitlements; sourceTree = "<group>"; };
  1214. F7C742D01E7BD35B00D9C973 /* Share.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Share.entitlements; sourceTree = "<group>"; };
  1215. F7C8C1901B482CEA0048180E /* CCGlobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGlobal.h; sourceTree = "<group>"; };
  1216. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCActivity.storyboard; sourceTree = "<group>"; };
  1217. F7C9555421F0C5470024296E /* NCActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivity.swift; sourceTree = "<group>"; };
  1218. F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+PKDownloadButton.m"; sourceTree = "<group>"; };
  1219. F7CA1EBD20E7E3FE002CC65E /* PKBorderedButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKBorderedButton.h; sourceTree = "<group>"; };
  1220. F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKCircleProgressView.m; sourceTree = "<group>"; };
  1221. F7CA1EBF20E7E3FE002CC65E /* PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKDownloadButton.h; sourceTree = "<group>"; };
  1222. F7CA1EC020E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+PKDownloadButtonAnimations.h"; sourceTree = "<group>"; };
  1223. F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKCircleView.m; sourceTree = "<group>"; };
  1224. F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKStopDownloadButton.m; sourceTree = "<group>"; };
  1225. F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKPendingView.m; sourceTree = "<group>"; };
  1226. F7CA1EC420E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PKDownloadButton.h"; sourceTree = "<group>"; };
  1227. F7CA1EC620E7E3FE002CC65E /* PKMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKMacros.h; sourceTree = "<group>"; };
  1228. F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+PKDownloadButtonAnimations.m"; sourceTree = "<group>"; };
  1229. F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKDownloadButton.m; sourceTree = "<group>"; };
  1230. F7CA1EC920E7E3FE002CC65E /* PKCircleProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKCircleProgressView.h; sourceTree = "<group>"; };
  1231. F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKBorderedButton.m; sourceTree = "<group>"; };
  1232. F7CA1ECB20E7E3FE002CC65E /* UIImage+PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+PKDownloadButton.h"; sourceTree = "<group>"; };
  1233. F7CA1ECC20E7E3FE002CC65E /* PKStopDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKStopDownloadButton.h; sourceTree = "<group>"; };
  1234. F7CA1ECD20E7E3FE002CC65E /* PKCircleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKCircleView.h; sourceTree = "<group>"; };
  1235. F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PKDownloadButton.m"; sourceTree = "<group>"; };
  1236. F7CA1ECF20E7E3FE002CC65E /* PKPendingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKPendingView.h; sourceTree = "<group>"; };
  1237. F7CC04E61F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  1238. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
  1239. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1240. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
  1241. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerRichWorkspace.storyboard; sourceTree = "<group>"; };
  1242. F7D2D125230804DF00FD3ED7 /* NCXMLListParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCXMLListParser.h; sourceTree = "<group>"; };
  1243. F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCXMLListParser.m; sourceTree = "<group>"; };
  1244. F7D4B67B22956610000C2C86 /* Firebase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Firebase.h; sourceTree = "<group>"; };
  1245. F7D4B67D2295663D000C2C86 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleAppMeasurement.framework; sourceTree = "<group>"; };
  1246. F7D4B67E2295663D000C2C86 /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  1247. F7D4B67F2295663D000C2C86 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  1248. F7D4B6802295663D000C2C86 /* GoogleUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleUtilities.framework; sourceTree = "<group>"; };
  1249. F7D4B6812295663D000C2C86 /* nanopb.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = nanopb.framework; sourceTree = "<group>"; };
  1250. F7D4B6822295663D000C2C86 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FIRAnalyticsConnector.framework; sourceTree = "<group>"; };
  1251. F7D4B6832295663D000C2C86 /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  1252. F7D4B6842295663D000C2C86 /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCoreDiagnostics.framework; sourceTree = "<group>"; };
  1253. F7D4B68E2295666E000C2C86 /* Protobuf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Protobuf.framework; sourceTree = "<group>"; };
  1254. F7D4B68F2295666E000C2C86 /* GTMSessionFetcher.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GTMSessionFetcher.framework; sourceTree = "<group>"; };
  1255. F7D4B6902295666E000C2C86 /* GoogleAPIClientForREST.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleAPIClientForREST.framework; sourceTree = "<group>"; };
  1256. F7D4B6912295666E000C2C86 /* FirebaseMLVision.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseMLVision.framework; sourceTree = "<group>"; };
  1257. F7D4B6922295666E000C2C86 /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  1258. F7D4B6932295666E000C2C86 /* FirebaseMLCommon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseMLCommon.framework; sourceTree = "<group>"; };
  1259. F7D4B6942295666E000C2C86 /* GoogleMobileVision.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleMobileVision.framework; sourceTree = "<group>"; };
  1260. F7D532461F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Localizable.strings; sourceTree = "<group>"; };
  1261. F7D5324D1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1262. F7D532541F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1263. F7D5328F1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1264. F7D532A41F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1265. F7D6650620FF341600BFBA9E /* NCMainCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainCommon.swift; sourceTree = "<group>"; };
  1266. F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAppConfigView.swift; sourceTree = "<group>"; };
  1267. F7DBC37D23325E2D001A85BA /* NCXMLGetAppPasswordParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCXMLGetAppPasswordParser.h; sourceTree = "<group>"; };
  1268. F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCXMLGetAppPasswordParser.m; sourceTree = "<group>"; };
  1269. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MarkdownKit.framework; path = Carthage/Build/iOS/MarkdownKit.framework; sourceTree = "<group>"; };
  1270. F7DE9AB01F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  1271. F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkMenuView.xib; sourceTree = "<group>"; };
  1272. F7DFB7DE219C312D00680748 /* NCRichDocumentTemplate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCRichDocumentTemplate.h; sourceTree = "<group>"; };
  1273. F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCRichDocumentTemplate.m; sourceTree = "<group>"; };
  1274. F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadAssets.swift; sourceTree = "<group>"; };
  1275. F7DFB7F1219C5C0000680748 /* NCCreateFormUploadFileText.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadFileText.swift; sourceTree = "<group>"; };
  1276. F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadScanDocument.swift; sourceTree = "<group>"; };
  1277. F7E09CE223E3087F00FB3E9E /* NCMainRefreshControl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMainRefreshControl.swift; sourceTree = "<group>"; };
  1278. F7E09CE423E3088A00FB3E9E /* NCSplitViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCSplitViewController.swift; sourceTree = "<group>"; };
  1279. F7E09CE623E308AD00FB3E9E /* NCMasterNavigationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMasterNavigationController.swift; sourceTree = "<group>"; };
  1280. F7E0E1DB22327885006B0911 /* NCAudioRecorderViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAudioRecorderViewController.swift; sourceTree = "<group>"; };
  1281. F7E0E1DD22327DBA006B0911 /* NCAudioRecorderViewController.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCAudioRecorderViewController.storyboard; sourceTree = "<group>"; };
  1282. F7E45E6D21E75BF200579249 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1283. F7E4D9C322ED929B003675FD /* NCShareComments.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareComments.swift; sourceTree = "<group>"; };
  1284. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftyXMLParser.framework; path = Carthage/Build/iOS/SwiftyXMLParser.framework; sourceTree = "<group>"; };
  1285. F7E9C41520F4CA870040CF18 /* CCTransfers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransfers.h; sourceTree = "<group>"; };
  1286. F7E9C41820F4CA870040CF18 /* CCTransfers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTransfers.m; sourceTree = "<group>"; };
  1287. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CryptoCloud.pch; sourceTree = "<group>"; };
  1288. F7F4B1D723C74B3E00D82A6E /* NCRichWorkspace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRichWorkspace.swift; sourceTree = "<group>"; };
  1289. F7F54CAF1E5B14C700E19C62 /* ImageError.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageError.png; sourceTree = "<group>"; };
  1290. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@2x.png"; sourceTree = "<group>"; };
  1291. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@3x.png"; sourceTree = "<group>"; };
  1292. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOff.png; sourceTree = "<group>"; };
  1293. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@2x.png"; sourceTree = "<group>"; };
  1294. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@3x.png"; sourceTree = "<group>"; };
  1295. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOn.png; sourceTree = "<group>"; };
  1296. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@2x.png"; sourceTree = "<group>"; };
  1297. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@3x.png"; sourceTree = "<group>"; };
  1298. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOff.png; sourceTree = "<group>"; };
  1299. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@2x.png"; sourceTree = "<group>"; };
  1300. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@3x.png"; sourceTree = "<group>"; };
  1301. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOn.png; sourceTree = "<group>"; };
  1302. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@2x.png"; sourceTree = "<group>"; };
  1303. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@3x.png"; sourceTree = "<group>"; };
  1304. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLarge.png; sourceTree = "<group>"; };
  1305. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@2x.png"; sourceTree = "<group>"; };
  1306. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@3x.png"; sourceTree = "<group>"; };
  1307. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLargeTap.png; sourceTree = "<group>"; };
  1308. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@2x.png"; sourceTree = "<group>"; };
  1309. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@3x.png"; sourceTree = "<group>"; };
  1310. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowLeft.png; sourceTree = "<group>"; };
  1311. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@2x.png"; sourceTree = "<group>"; };
  1312. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@3x.png"; sourceTree = "<group>"; };
  1313. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowRight.png; sourceTree = "<group>"; };
  1314. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@2x.png"; sourceTree = "<group>"; };
  1315. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@3x.png"; sourceTree = "<group>"; };
  1316. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemGrid.png; sourceTree = "<group>"; };
  1317. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@2x.png"; sourceTree = "<group>"; };
  1318. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@3x.png"; sourceTree = "<group>"; };
  1319. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VideoOverlay.png; sourceTree = "<group>"; };
  1320. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@2x.png"; sourceTree = "<group>"; };
  1321. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@3x.png"; sourceTree = "<group>"; };
  1322. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCaptionView.h; sourceTree = "<group>"; };
  1323. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWCaptionView.m; sourceTree = "<group>"; };
  1324. F7F54CD21E5B14C700E19C62 /* MWCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCommon.h; sourceTree = "<group>"; };
  1325. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhoto.h; sourceTree = "<group>"; };
  1326. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhoto.m; sourceTree = "<group>"; };
  1327. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowser.h; sourceTree = "<group>"; };
  1328. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhotoBrowser.m; sourceTree = "<group>"; };
  1329. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowserPrivate.h; sourceTree = "<group>"; };
  1330. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoProtocol.h; sourceTree = "<group>"; };
  1331. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingImageView.h; sourceTree = "<group>"; };
  1332. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingImageView.m; sourceTree = "<group>"; };
  1333. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingView.h; sourceTree = "<group>"; };
  1334. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingView.m; sourceTree = "<group>"; };
  1335. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWZoomingScrollView.h; sourceTree = "<group>"; };
  1336. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWZoomingScrollView.m; sourceTree = "<group>"; };
  1337. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MWPhotoBrowser.h"; sourceTree = "<group>"; };
  1338. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MWPhotoBrowser.m"; sourceTree = "<group>"; };
  1339. F7F67BAD1A24D27800EE80DA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  1340. F7F67BB81A24D27800EE80DA /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  1341. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEndToEndMetadata.swift; sourceTree = "<group>"; };
  1342. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellShareExt.h; sourceTree = "<group>"; };
  1343. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellShareExt.m; sourceTree = "<group>"; };
  1344. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellShareExt.xib; sourceTree = "<group>"; };
  1345. F7FB1D3D215E191D00D669EA /* NCViewerDocumentWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerDocumentWeb.swift; sourceTree = "<group>"; };
  1346. F7FC7D551DC1F93800BB2C6A /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  1347. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCPeekPop.storyboard; sourceTree = "<group>"; };
  1348. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPeekPop.h; sourceTree = "<group>"; };
  1349. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPeekPop.m; sourceTree = "<group>"; };
  1350. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBKPasscode.h; sourceTree = "<group>"; };
  1351. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBKPasscode.m; sourceTree = "<group>"; };
  1352. F7FFEACE1F82BB23005E5C17 /* CCCellMain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CCCellMain.h; sourceTree = "<group>"; };
  1353. /* End PBXFileReference section */
  1354. /* Begin PBXFrameworksBuildPhase section */
  1355. 2C33C47C23E2C475005F963B /* Frameworks */ = {
  1356. isa = PBXFrameworksBuildPhase;
  1357. buildActionMask = 2147483647;
  1358. files = (
  1359. );
  1360. runOnlyForDeploymentPostprocessing = 0;
  1361. };
  1362. F7145A141D12E3B700CAFEEC /* Frameworks */ = {
  1363. isa = PBXFrameworksBuildPhase;
  1364. buildActionMask = 2147483647;
  1365. files = (
  1366. );
  1367. runOnlyForDeploymentPostprocessing = 0;
  1368. };
  1369. F771E3CD20E2392D00AFB62D /* Frameworks */ = {
  1370. isa = PBXFrameworksBuildPhase;
  1371. buildActionMask = 2147483647;
  1372. files = (
  1373. );
  1374. runOnlyForDeploymentPostprocessing = 0;
  1375. };
  1376. F77B0EDC1D118A16002130FE /* Frameworks */ = {
  1377. isa = PBXFrameworksBuildPhase;
  1378. buildActionMask = 2147483647;
  1379. files = (
  1380. F716FE7823795E5000FABE50 /* NCCommunication.framework in Frameworks */,
  1381. F74C4FBB2328C3C200A23E25 /* OpenSSL.framework in Frameworks */,
  1382. F7421EAF2294044B00C4B7C1 /* Accelerate.framework in Frameworks */,
  1383. F7D4B68C2295663D000C2C86 /* FirebaseCoreDiagnostics.framework in Frameworks */,
  1384. F7D4B6992295666E000C2C86 /* GoogleToolboxForMac.framework in Frameworks */,
  1385. F7267A82225DFCE100D6DB7D /* AFNetworking.framework in Frameworks */,
  1386. F7C40BF32199978B0004137E /* MBProgressHUD.framework in Frameworks */,
  1387. F7D4B69A2295666E000C2C86 /* FirebaseMLCommon.framework in Frameworks */,
  1388. F7D4B6962295666E000C2C86 /* GTMSessionFetcher.framework in Frameworks */,
  1389. F79918A221997FA300C2E308 /* UICKeyChainStore.framework in Frameworks */,
  1390. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */,
  1391. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */,
  1392. F7A377161EB2364A002856D3 /* Crashlytics.framework in Frameworks */,
  1393. F733B65221997CC2001C1FFA /* TLPhotoPicker.framework in Frameworks */,
  1394. F7D4B6872295663D000C2C86 /* FirebaseAnalytics.framework in Frameworks */,
  1395. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */,
  1396. F7C40BE521998D5B0004137E /* MGSwipeTableCell.framework in Frameworks */,
  1397. F7D4B68B2295663D000C2C86 /* FirebaseInstanceID.framework in Frameworks */,
  1398. F745B251222D871800346520 /* QRCodeReader.framework in Frameworks */,
  1399. F765608723BF806D00765969 /* QuickLayout.framework in Frameworks */,
  1400. F7A3771A1EB2364A002856D3 /* Fabric.framework in Frameworks */,
  1401. F72382C32295856A005B8A07 /* GoogleToolboxForMac.framework in Frameworks */,
  1402. F72E0B9D21AD60BC00898D7B /* WeScan.framework in Frameworks */,
  1403. F7063DED2199E55F003F38DA /* SVGKit.framework in Frameworks */,
  1404. F7D4B6892295663D000C2C86 /* nanopb.framework in Frameworks */,
  1405. F7063DEF2199E568003F38DA /* CocoaLumberjack.framework in Frameworks */,
  1406. F765608B23BF80A400765969 /* SwiftEntryKit.framework in Frameworks */,
  1407. F72382C02295856A005B8A07 /* FirebaseMLVisionTextModel.framework in Frameworks */,
  1408. F7063DF12199E56F003F38DA /* CocoaLumberjackSwift.framework in Frameworks */,
  1409. F7D4B6952295666E000C2C86 /* Protobuf.framework in Frameworks */,
  1410. F7D4B6852295663D000C2C86 /* GoogleAppMeasurement.framework in Frameworks */,
  1411. F7C40BE721998F410004137E /* DZNEmptyDataSet.framework in Frameworks */,
  1412. F7C40BEF219994ED0004137E /* KTVCocoaHTTPServer.framework in Frameworks */,
  1413. F7C40BF1219994F20004137E /* KTVHTTPCache.framework in Frameworks */,
  1414. F7C40C102199BA5D0004137E /* Realm.framework in Frameworks */,
  1415. F774264122EB3F7300B23912 /* DropDown.framework in Frameworks */,
  1416. F7D4B69B2295666E000C2C86 /* GoogleMobileVision.framework in Frameworks */,
  1417. F75153242226920200323DDC /* FastScroll.framework in Frameworks */,
  1418. F7C40C122199BA620004137E /* RealmSwift.framework in Frameworks */,
  1419. F78AA20621F783E900D0F205 /* SwiftRichString.framework in Frameworks */,
  1420. F7DBD82C23E46A4700ECB7C6 /* MarkdownKit.framework in Frameworks */,
  1421. F74AFCE922E8B025003DE61F /* FSCalendar.framework in Frameworks */,
  1422. F7D4B6982295666E000C2C86 /* FirebaseMLVision.framework in Frameworks */,
  1423. F7D4B6862295663D000C2C86 /* FirebaseCore.framework in Frameworks */,
  1424. F7D4B68A2295663D000C2C86 /* FIRAnalyticsConnector.framework in Frameworks */,
  1425. F700510322DF6897003A3356 /* Parchment.framework in Frameworks */,
  1426. F7D4B6882295663D000C2C86 /* GoogleUtilities.framework in Frameworks */,
  1427. 371B5A3323D0BD5500FAFAE9 /* FloatingPanel.framework in Frameworks */,
  1428. F70F2BA5225F2D8900EBB73E /* ZIPFoundation.framework in Frameworks */,
  1429. F7D4B6972295666E000C2C86 /* GoogleAPIClientForREST.framework in Frameworks */,
  1430. );
  1431. runOnlyForDeploymentPostprocessing = 0;
  1432. };
  1433. /* End PBXFrameworksBuildPhase section */
  1434. /* Begin PBXGroup section */
  1435. 2C33C48023E2C475005F963B /* Notification Service Extension */ = {
  1436. isa = PBXGroup;
  1437. children = (
  1438. 2C33C48123E2C475005F963B /* NotificationService.swift */,
  1439. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */,
  1440. );
  1441. path = "Notification Service Extension";
  1442. sourceTree = "<group>";
  1443. };
  1444. 371B5A2F23D0B04B00FAFAE9 /* Menu */ = {
  1445. isa = PBXGroup;
  1446. children = (
  1447. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */,
  1448. 3781B9B323DB2BC9006B4B1D /* CCFavorites+Menu.swift */,
  1449. 3781B9B123DB2B9F006B4B1D /* CCMain+Menu.swift */,
  1450. F710D2012405826100A6033D /* NCDetailNavigationController+Menu.swift */,
  1451. 371B5A2D23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift */,
  1452. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */,
  1453. 37ECC83A23D0C7400082EFA2 /* NCMenuAction.swift */,
  1454. 3757A35423D9D76300EC369E /* NCMenuPanelController.swift */,
  1455. );
  1456. path = Menu;
  1457. sourceTree = "<group>";
  1458. };
  1459. F70022561EC4C9100080073F /* OCCommunicationLib */ = {
  1460. isa = PBXGroup;
  1461. children = (
  1462. F7DFB7DE219C312D00680748 /* NCRichDocumentTemplate.h */,
  1463. F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */,
  1464. F781996722636BFA00EBDF6A /* HCFeatures.h */,
  1465. F781996822636BFA00EBDF6A /* HCFeatures.m */,
  1466. F7B6ACD922FC2D14008AB646 /* NCComments.h */,
  1467. F7B6ACDA22FC2D15008AB646 /* NCComments.m */,
  1468. F70022661EC4C9100080073F /* OCActivity.h */,
  1469. F70022671EC4C9100080073F /* OCActivity.m */,
  1470. F70022681EC4C9100080073F /* OCCapabilities.h */,
  1471. F70022691EC4C9100080073F /* OCCapabilities.m */,
  1472. F700226A1EC4C9100080073F /* OCCommunication.h */,
  1473. F700226B1EC4C9100080073F /* OCCommunication.m */,
  1474. F700226C1EC4C9100080073F /* OCErrorMsg.h */,
  1475. F700226D1EC4C9100080073F /* OCExternalSites.h */,
  1476. F700226E1EC4C9100080073F /* OCExternalSites.m */,
  1477. F700226F1EC4C9100080073F /* OCFileDto.h */,
  1478. F70022701EC4C9100080073F /* OCFileDto.m */,
  1479. F70022711EC4C9100080073F /* OCFrameworkConstants.h */,
  1480. F70022721EC4C9100080073F /* OCNotifications.h */,
  1481. F70022731EC4C9100080073F /* OCNotifications.m */,
  1482. F70022741EC4C9100080073F /* OCNotificationsAction.h */,
  1483. F70022751EC4C9100080073F /* OCNotificationsAction.m */,
  1484. F70022761EC4C9100080073F /* OCRichObjectStrings.h */,
  1485. F70022771EC4C9100080073F /* OCRichObjectStrings.m */,
  1486. F70022781EC4C9100080073F /* OCSharedDto.h */,
  1487. F70022791EC4C9100080073F /* OCSharedDto.m */,
  1488. F700227A1EC4C9100080073F /* OCShareUser.h */,
  1489. F700227B1EC4C9100080073F /* OCShareUser.m */,
  1490. F700227C1EC4C9100080073F /* OCUserProfile.h */,
  1491. F700227D1EC4C9100080073F /* OCUserProfile.m */,
  1492. F700227E1EC4C9100080073F /* OCWebDavClient */,
  1493. F700229B1EC4C9100080073F /* Utils */,
  1494. );
  1495. name = OCCommunicationLib;
  1496. path = Library/OCCommunicationLib;
  1497. sourceTree = "<group>";
  1498. };
  1499. F700227E1EC4C9100080073F /* OCWebDavClient */ = {
  1500. isa = PBXGroup;
  1501. children = (
  1502. F700227F1EC4C9100080073F /* NSDate+ISO8601.h */,
  1503. F70022801EC4C9100080073F /* NSDate+ISO8601.m */,
  1504. F70022811EC4C9100080073F /* NSDate+RFC1123.h */,
  1505. F70022821EC4C9100080073F /* NSDate+RFC1123.m */,
  1506. F70022831EC4C9100080073F /* OCHTTPRequestOperation.h */,
  1507. F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */,
  1508. F70022851EC4C9100080073F /* OCWebDAVClient.h */,
  1509. F70022861EC4C9100080073F /* OCWebDAVClient.m */,
  1510. F70022871EC4C9100080073F /* Parsers */,
  1511. );
  1512. path = OCWebDavClient;
  1513. sourceTree = "<group>";
  1514. };
  1515. F70022871EC4C9100080073F /* Parsers */ = {
  1516. isa = PBXGroup;
  1517. children = (
  1518. F7DBC37D23325E2D001A85BA /* NCXMLGetAppPasswordParser.h */,
  1519. F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */,
  1520. F7B6ACD522FC2BD4008AB646 /* NCXMLCommentsParser.h */,
  1521. F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */,
  1522. F7D2D125230804DF00FD3ED7 /* NCXMLListParser.h */,
  1523. F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */,
  1524. F700228C1EC4C9100080073F /* OCXMLServerErrorsParser.h */,
  1525. F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */,
  1526. F700228E1EC4C9100080073F /* OCXMLShareByLinkParser.h */,
  1527. F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */,
  1528. F70022901EC4C9100080073F /* OCXMLSharedParser.h */,
  1529. F70022911EC4C9100080073F /* OCXMLSharedParser.m */,
  1530. );
  1531. path = Parsers;
  1532. sourceTree = "<group>";
  1533. };
  1534. F700229B1EC4C9100080073F /* Utils */ = {
  1535. isa = PBXGroup;
  1536. children = (
  1537. F700229C1EC4C9100080073F /* NSString+Encode.h */,
  1538. F700229D1EC4C9100080073F /* NSString+Encode.m */,
  1539. F700229E1EC4C9100080073F /* OCConstants.h */,
  1540. F700229F1EC4C9100080073F /* UtilsFramework.h */,
  1541. F70022A01EC4C9100080073F /* UtilsFramework.m */,
  1542. );
  1543. path = Utils;
  1544. sourceTree = "<group>";
  1545. };
  1546. F70211F31BAC56E9003FC03E /* Main */ = {
  1547. isa = PBXGroup;
  1548. children = (
  1549. F710D1FA24057E5E00A6033D /* ActionSheetHeaderView */,
  1550. F70211FA1BAC56E9003FC03E /* CCMain.h */,
  1551. F70211FB1BAC56E9003FC03E /* CCMain.m */,
  1552. F73F537E1E929C8500F8678D /* CCMore.swift */,
  1553. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */,
  1554. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */,
  1555. F78ACD3E21903BA20088454D /* Cell */,
  1556. F7DFB7E9219C5A0500680748 /* Create cloud */,
  1557. F78ACD4D219043E70088454D /* Layout */,
  1558. F7226EDB1EE4089300EBECB1 /* Main.storyboard */,
  1559. 371B5A2F23D0B04B00FAFAE9 /* Menu */,
  1560. F710D1F624057C9400A6033D /* NCDetailNavigationController.swift */,
  1561. F710D1F824057C9D00A6033D /* NCDetailViewController.swift */,
  1562. F7D6650620FF341600BFBA9E /* NCMainCommon.swift */,
  1563. F7E09CE223E3087F00FB3E9E /* NCMainRefreshControl.swift */,
  1564. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */,
  1565. F7E09CE623E308AD00FB3E9E /* NCMasterNavigationController.swift */,
  1566. F77444F7222816D5000D5EB0 /* NCPhotosPickerViewController.swift */,
  1567. F7E09CE423E3088A00FB3E9E /* NCSplitViewController.swift */,
  1568. F78ACD50219046AC0088454D /* Section */,
  1569. );
  1570. path = Main;
  1571. sourceTree = "<group>";
  1572. };
  1573. F704FA5A232A341800BBA952 /* Imagemeter */ = {
  1574. isa = PBXGroup;
  1575. children = (
  1576. F704FA5B232A343F00BBA952 /* IMImagemeterViewer.swift */,
  1577. );
  1578. path = Imagemeter;
  1579. sourceTree = "<group>";
  1580. };
  1581. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */ = {
  1582. isa = PBXGroup;
  1583. children = (
  1584. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */,
  1585. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */,
  1586. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */,
  1587. );
  1588. path = UploadFromOtherUpp;
  1589. sourceTree = "<group>";
  1590. };
  1591. F70F02A81C889183008DAB36 /* Libraries external */ = {
  1592. isa = PBXGroup;
  1593. children = (
  1594. F70F02B21C889183008DAB36 /* AFViewShaker */,
  1595. F7A377131EB2364A002856D3 /* Fabric */,
  1596. F7D4B67A22956610000C2C86 /* Firebase */,
  1597. F704FA5A232A341800BBA952 /* Imagemeter */,
  1598. F7B2DEEB1F976785007CF4D2 /* NYMnemonic */,
  1599. F7CA1EBB20E7E3FE002CC65E /* PKDownloadButton */,
  1600. F75037421DBFA91A008FB480 /* PureLayout */,
  1601. F70F05241C889184008DAB36 /* Reachability */,
  1602. F70F05561C889184008DAB36 /* UIImage+animatedGIF */,
  1603. );
  1604. path = "Libraries external";
  1605. sourceTree = SOURCE_ROOT;
  1606. };
  1607. F70F02B21C889183008DAB36 /* AFViewShaker */ = {
  1608. isa = PBXGroup;
  1609. children = (
  1610. F70F02B31C889183008DAB36 /* AFViewShaker.h */,
  1611. F70F02B41C889183008DAB36 /* AFViewShaker.m */,
  1612. );
  1613. path = AFViewShaker;
  1614. sourceTree = "<group>";
  1615. };
  1616. F70F05241C889184008DAB36 /* Reachability */ = {
  1617. isa = PBXGroup;
  1618. children = (
  1619. F70F05251C889184008DAB36 /* Reachability.h */,
  1620. F70F05261C889184008DAB36 /* Reachability.m */,
  1621. );
  1622. path = Reachability;
  1623. sourceTree = "<group>";
  1624. };
  1625. F70F05561C889184008DAB36 /* UIImage+animatedGIF */ = {
  1626. isa = PBXGroup;
  1627. children = (
  1628. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */,
  1629. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */,
  1630. );
  1631. path = "UIImage+animatedGIF";
  1632. sourceTree = "<group>";
  1633. };
  1634. F710D1FA24057E5E00A6033D /* ActionSheetHeaderView */ = {
  1635. isa = PBXGroup;
  1636. children = (
  1637. F710D1FB24057E5E00A6033D /* NCActionSheetHeader.swift */,
  1638. F710D1FC24057E5E00A6033D /* NCActionSheetHeaderView.swift */,
  1639. F710D1FD24057E5E00A6033D /* NCActionSheetHeaderView.xib */,
  1640. );
  1641. path = ActionSheetHeaderView;
  1642. sourceTree = "<group>";
  1643. };
  1644. F710E80C1EF95C9C00DC2427 /* Intro */ = {
  1645. isa = PBXGroup;
  1646. children = (
  1647. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */,
  1648. F749C10923C4A5330027D966 /* NCIntro.storyboard */,
  1649. F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */,
  1650. F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */,
  1651. F749C10823C4A5330027D966 /* NCIntroViewController.swift */,
  1652. );
  1653. path = Intro;
  1654. sourceTree = "<group>";
  1655. };
  1656. F7169A161EE590930086BD69 /* Shares */ = {
  1657. isa = PBXGroup;
  1658. children = (
  1659. F7169A171EE590930086BD69 /* NCShares.h */,
  1660. F7169A181EE590930086BD69 /* NCShares.m */,
  1661. F7169A191EE590930086BD69 /* NCSharesCell.h */,
  1662. F7169A1A1EE590930086BD69 /* NCSharesCell.m */,
  1663. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */,
  1664. );
  1665. path = Shares;
  1666. sourceTree = "<group>";
  1667. };
  1668. F72382BA22958569005B8A07 /* MLVisionTextModel */ = {
  1669. isa = PBXGroup;
  1670. children = (
  1671. F72382BB22958569005B8A07 /* FirebaseMLVisionTextModel.framework */,
  1672. F72382BD22958569005B8A07 /* Resources */,
  1673. F72382BF22958569005B8A07 /* GoogleToolboxForMac.framework */,
  1674. );
  1675. path = MLVisionTextModel;
  1676. sourceTree = "<group>";
  1677. };
  1678. F72382BD22958569005B8A07 /* Resources */ = {
  1679. isa = PBXGroup;
  1680. children = (
  1681. F72382BE22958569005B8A07 /* GoogleMVTextDetectorResources.bundle */,
  1682. );
  1683. path = Resources;
  1684. sourceTree = "<group>";
  1685. };
  1686. F728CE741BF6322C00E69702 /* Share */ = {
  1687. isa = PBXGroup;
  1688. children = (
  1689. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */,
  1690. F700510022DF63AC003A3356 /* NCShare.storyboard */,
  1691. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */,
  1692. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */,
  1693. F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */,
  1694. F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */,
  1695. F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */,
  1696. F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */,
  1697. F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */,
  1698. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */,
  1699. F769453F22E9F077000A798A /* NCSharePaging.swift */,
  1700. F700510422DF6A89003A3356 /* NCShare.swift */,
  1701. F7E4D9C322ED929B003675FD /* NCShareComments.swift */,
  1702. F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */,
  1703. F769454322E9F142000A798A /* NCShareUserMenuView.swift */,
  1704. F769454722E9F20D000A798A /* NCShareNetworking.swift */,
  1705. F769454522E9F1B0000A798A /* NCShareCommon.swift */,
  1706. );
  1707. path = Share;
  1708. sourceTree = "<group>";
  1709. };
  1710. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */ = {
  1711. isa = PBXGroup;
  1712. children = (
  1713. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */,
  1714. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */,
  1715. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */,
  1716. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */,
  1717. );
  1718. path = AHKActionSheet;
  1719. sourceTree = "<group>";
  1720. };
  1721. F72B60941A24F04E004EF66F /* Localizations */ = {
  1722. isa = PBXGroup;
  1723. children = (
  1724. F7E70DE91A24DE4100E1B66A /* Localizable.strings */,
  1725. );
  1726. name = Localizations;
  1727. sourceTree = "<group>";
  1728. };
  1729. F7381ED9218218A4000B1560 /* Offline */ = {
  1730. isa = PBXGroup;
  1731. children = (
  1732. F7381EDE218218C9000B1560 /* NCOffline.storyboard */,
  1733. F7381EDA218218C9000B1560 /* NCOffline.swift */,
  1734. );
  1735. path = Offline;
  1736. sourceTree = "<group>";
  1737. };
  1738. F73B4EAC1F470D9100BBEE4B /* src */ = {
  1739. isa = PBXGroup;
  1740. children = (
  1741. F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */,
  1742. F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */,
  1743. F73B4EAF1F470D9100BBEE4B /* CharDistribution.h */,
  1744. F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */,
  1745. F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */,
  1746. F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */,
  1747. F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */,
  1748. F73B4EB41F470D9100BBEE4B /* JISFreq.tab */,
  1749. F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */,
  1750. F73B4EB61F470D9100BBEE4B /* JpCntx.h */,
  1751. F73B4EB71F470D9100BBEE4B /* LangModels */,
  1752. F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */,
  1753. F73B4EC71F470D9100BBEE4B /* nsBig5Prober.h */,
  1754. F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */,
  1755. F73B4EC91F470D9100BBEE4B /* nsCharSetProber.h */,
  1756. F73B4ECA1F470D9100BBEE4B /* nsCodingStateMachine.h */,
  1757. F73B4ECB1F470D9100BBEE4B /* nscore.h */,
  1758. F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */,
  1759. F73B4ECD1F470D9100BBEE4B /* nsEscCharsetProber.h */,
  1760. F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */,
  1761. F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */,
  1762. F73B4ED01F470D9100BBEE4B /* nsEUCJPProber.h */,
  1763. F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */,
  1764. F73B4ED21F470D9100BBEE4B /* nsEUCKRProber.h */,
  1765. F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */,
  1766. F73B4ED41F470D9100BBEE4B /* nsEUCTWProber.h */,
  1767. F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */,
  1768. F73B4ED61F470D9100BBEE4B /* nsGB2312Prober.h */,
  1769. F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */,
  1770. F73B4ED81F470D9100BBEE4B /* nsHebrewProber.h */,
  1771. F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */,
  1772. F73B4EDA1F470D9100BBEE4B /* nsLatin1Prober.h */,
  1773. F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */,
  1774. F73B4EDC1F470D9100BBEE4B /* nsMBCSGroupProber.h */,
  1775. F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */,
  1776. F73B4EDE1F470D9100BBEE4B /* nsPkgInt.h */,
  1777. F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */,
  1778. F73B4EE01F470D9100BBEE4B /* nsSBCharSetProber.h */,
  1779. F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */,
  1780. F73B4EE21F470D9100BBEE4B /* nsSBCSGroupProber.h */,
  1781. F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */,
  1782. F73B4EE41F470D9100BBEE4B /* nsSJISProber.h */,
  1783. F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */,
  1784. F73B4EE61F470D9100BBEE4B /* nsUniversalDetector.h */,
  1785. F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */,
  1786. F73B4EE81F470D9100BBEE4B /* nsUTF8Prober.h */,
  1787. F73B4EE91F470D9100BBEE4B /* prmem.h */,
  1788. F73B4EEA1F470D9100BBEE4B /* symbols.cmake */,
  1789. F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */,
  1790. F73B4EED1F470D9100BBEE4B /* uchardet.h */,
  1791. );
  1792. path = src;
  1793. sourceTree = "<group>";
  1794. };
  1795. F73B4EB71F470D9100BBEE4B /* LangModels */ = {
  1796. isa = PBXGroup;
  1797. children = (
  1798. F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */,
  1799. F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */,
  1800. F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */,
  1801. F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */,
  1802. F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */,
  1803. F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */,
  1804. F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */,
  1805. F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */,
  1806. F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */,
  1807. F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */,
  1808. F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */,
  1809. F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */,
  1810. F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */,
  1811. F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */,
  1812. );
  1813. path = LangModels;
  1814. sourceTree = "<group>";
  1815. };
  1816. F73CC0571E813DFF006E3047 /* BKPasscodeView */ = {
  1817. isa = PBXGroup;
  1818. children = (
  1819. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */,
  1820. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */,
  1821. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */,
  1822. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */,
  1823. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */,
  1824. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */,
  1825. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */,
  1826. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */,
  1827. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */,
  1828. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */,
  1829. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */,
  1830. F73CC0631E813DFF006E3047 /* BKShiftingView.h */,
  1831. F73CC0641E813DFF006E3047 /* BKShiftingView.m */,
  1832. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */,
  1833. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */,
  1834. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */,
  1835. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */,
  1836. );
  1837. path = BKPasscodeView;
  1838. sourceTree = "<group>";
  1839. };
  1840. F73D71561F26739100E233EB /* Text */ = {
  1841. isa = PBXGroup;
  1842. children = (
  1843. F73D71611F2673C200E233EB /* NCText.swift */,
  1844. F73D71631F2674A400E233EB /* NCText.storyboard */,
  1845. );
  1846. path = Text;
  1847. sourceTree = "<group>";
  1848. };
  1849. F74D3DB81BAC1941000BAE4B /* Networking */ = {
  1850. isa = PBXGroup;
  1851. children = (
  1852. F755BD9A20594AC7008C5FBB /* NCService.swift */,
  1853. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */,
  1854. F732BA031D76CE1500E9878B /* CCNetworking.h */,
  1855. F732BA041D76CE1500E9878B /* CCNetworking.m */,
  1856. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */,
  1857. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */,
  1858. F74E432420B5547700C2E54C /* NCNetworkingEndToEnd.h */,
  1859. F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */,
  1860. );
  1861. path = Networking;
  1862. sourceTree = "<group>";
  1863. };
  1864. F75037421DBFA91A008FB480 /* PureLayout */ = {
  1865. isa = PBXGroup;
  1866. children = (
  1867. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */,
  1868. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */,
  1869. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */,
  1870. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */,
  1871. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */,
  1872. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */,
  1873. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */,
  1874. F750374A1DBFA91A008FB480 /* PureLayout.h */,
  1875. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */,
  1876. );
  1877. path = PureLayout;
  1878. sourceTree = "<group>";
  1879. };
  1880. F754EEC321772B6100BB1CDF /* DropdownMenu */ = {
  1881. isa = PBXGroup;
  1882. children = (
  1883. F754EEC421772B6100BB1CDF /* DropdownItem.swift */,
  1884. F754EEC521772B6100BB1CDF /* DropUpMenu.swift */,
  1885. F754EEC621772B6100BB1CDF /* DropdownMenu.h */,
  1886. F754EEC721772B6100BB1CDF /* DropdownMenu.swift */,
  1887. F754EEC821772B6100BB1CDF /* SectionHeader.swift */,
  1888. );
  1889. path = DropdownMenu;
  1890. sourceTree = "<group>";
  1891. };
  1892. F758B41E212C516300515F55 /* ScanDocument */ = {
  1893. isa = PBXGroup;
  1894. children = (
  1895. F758B45F212C56A400515F55 /* ScanCollectionView.swift */,
  1896. F758B45D212C569C00515F55 /* ScanCell.swift */,
  1897. F758B457212C564000515F55 /* Scan.storyboard */,
  1898. );
  1899. path = ScanDocument;
  1900. sourceTree = "<group>";
  1901. };
  1902. F760F75621F21F61006B1A73 /* PhotoEditor */ = {
  1903. isa = PBXGroup;
  1904. children = (
  1905. F760F77821F21F61006B1A73 /* ColorCollectionViewCell.swift */,
  1906. F760F76021F21F61006B1A73 /* ColorCollectionViewCell.xib */,
  1907. F760F75921F21F61006B1A73 /* ColorsCollectionViewDelegate.swift */,
  1908. F760F77A21F21F61006B1A73 /* CropRectView.swift */,
  1909. F760F77021F21F61006B1A73 /* CropView.swift */,
  1910. F760F77621F21F61006B1A73 /* CropViewController.swift */,
  1911. F760F76E21F21F61006B1A73 /* EmojiCollectionViewCell.swift */,
  1912. F760F76121F21F61006B1A73 /* EmojiCollectionViewCell.xib */,
  1913. F760F76F21F21F61006B1A73 /* EmojisCollectionViewDelegate.swift */,
  1914. F760F77921F21F61006B1A73 /* GradientView.swift */,
  1915. F760F75721F21F61006B1A73 /* icomoon.ttf */,
  1916. F760F76221F21F61006B1A73 /* LaunchScreen.storyboard */,
  1917. F760F76D21F21F61006B1A73 /* PhotoCropEditorBorder.png */,
  1918. F760F76521F21F61006B1A73 /* PhotoCropEditorBorder@2x.png */,
  1919. F760F76C21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png */,
  1920. F760F75B21F21F61006B1A73 /* PhotoEditor+Controls.swift */,
  1921. F760F77721F21F61006B1A73 /* PhotoEditor+Crop.swift */,
  1922. F760F76B21F21F61006B1A73 /* PhotoEditor+Drawing.swift */,
  1923. F760F76421F21F61006B1A73 /* PhotoEditor+Font.swift */,
  1924. F760F77221F21F61006B1A73 /* PhotoEditor+Gestures.swift */,
  1925. F760F75A21F21F61006B1A73 /* PhotoEditor+Keyboard.swift */,
  1926. F760F75D21F21F61006B1A73 /* PhotoEditor+StickersViewController.swift */,
  1927. F760F75E21F21F61006B1A73 /* PhotoEditor+UITextView.swift */,
  1928. F760F77321F21F61006B1A73 /* PhotoEditorViewController.swift */,
  1929. F760F75C21F21F61006B1A73 /* PhotoEditorViewController.xib */,
  1930. F760F76A21F21F61006B1A73 /* Protocols.swift */,
  1931. F760F77121F21F61006B1A73 /* ResizeControl.swift */,
  1932. F760F77521F21F61006B1A73 /* StickerCollectionViewCell.swift */,
  1933. F760F77421F21F61006B1A73 /* StickerCollectionViewCell.xib */,
  1934. F760F76921F21F61006B1A73 /* StickersViewController.swift */,
  1935. F760F75821F21F61006B1A73 /* StickersViewController.xib */,
  1936. F760F76821F21F61006B1A73 /* UIImage+Crop.swift */,
  1937. F760F76721F21F61006B1A73 /* UIImage+Size.swift */,
  1938. F760F75F21F21F61006B1A73 /* UIImageView+Alpha.swift */,
  1939. F760F76621F21F61006B1A73 /* UIView+Image.swift */,
  1940. );
  1941. path = PhotoEditor;
  1942. sourceTree = "<group>";
  1943. };
  1944. F762CA9F1EACB66200B38484 /* XLForm */ = {
  1945. isa = PBXGroup;
  1946. children = (
  1947. F762CAA11EACB66200B38484 /* XL */,
  1948. F762CAF51EACB66200B38484 /* XLForm.bundle */,
  1949. );
  1950. path = XLForm;
  1951. sourceTree = "<group>";
  1952. };
  1953. F762CAA11EACB66200B38484 /* XL */ = {
  1954. isa = PBXGroup;
  1955. children = (
  1956. F762CAA21EACB66200B38484 /* Cell */,
  1957. F762CAC51EACB66200B38484 /* Controllers */,
  1958. F762CACD1EACB66200B38484 /* Descriptors */,
  1959. F762CAD51EACB66200B38484 /* Helpers */,
  1960. F762CAEB1EACB66200B38484 /* Validation */,
  1961. F762CAF31EACB66200B38484 /* XLForm.h */,
  1962. F762CAF41EACB66200B38484 /* XLForm.m */,
  1963. );
  1964. path = XL;
  1965. sourceTree = "<group>";
  1966. };
  1967. F762CAA21EACB66200B38484 /* Cell */ = {
  1968. isa = PBXGroup;
  1969. children = (
  1970. F762CAA31EACB66200B38484 /* XLFormBaseCell.h */,
  1971. F762CAA41EACB66200B38484 /* XLFormBaseCell.m */,
  1972. F762CAA51EACB66200B38484 /* XLFormButtonCell.h */,
  1973. F762CAA61EACB66200B38484 /* XLFormButtonCell.m */,
  1974. F762CAA71EACB66200B38484 /* XLFormCheckCell.h */,
  1975. F762CAA81EACB66200B38484 /* XLFormCheckCell.m */,
  1976. F762CAA91EACB66200B38484 /* XLFormDateCell.h */,
  1977. F762CAAA1EACB66200B38484 /* XLFormDateCell.m */,
  1978. F762CAAB1EACB66200B38484 /* XLFormDatePickerCell.h */,
  1979. F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */,
  1980. F762CAAD1EACB66200B38484 /* XLFormDescriptorCell.h */,
  1981. F762CAAE1EACB66200B38484 /* XLFormImageCell.h */,
  1982. F762CAAF1EACB66200B38484 /* XLFormImageCell.m */,
  1983. F762CAB01EACB66200B38484 /* XLFormInlineRowDescriptorCell.h */,
  1984. F762CAB11EACB66200B38484 /* XLFormInlineSelectorCell.h */,
  1985. F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */,
  1986. F762CAB31EACB66200B38484 /* XLFormLeftRightSelectorCell.h */,
  1987. F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */,
  1988. F762CAB51EACB66200B38484 /* XLFormPickerCell.h */,
  1989. F762CAB61EACB66200B38484 /* XLFormPickerCell.m */,
  1990. F762CAB71EACB66200B38484 /* XLFormSegmentedCell.h */,
  1991. F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */,
  1992. F762CAB91EACB66200B38484 /* XLFormSelectorCell.h */,
  1993. F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */,
  1994. F762CABB1EACB66200B38484 /* XLFormSliderCell.h */,
  1995. F762CABC1EACB66200B38484 /* XLFormSliderCell.m */,
  1996. F762CABD1EACB66200B38484 /* XLFormStepCounterCell.h */,
  1997. F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */,
  1998. F762CABF1EACB66200B38484 /* XLFormSwitchCell.h */,
  1999. F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */,
  2000. F762CAC11EACB66200B38484 /* XLFormTextFieldCell.h */,
  2001. F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */,
  2002. F762CAC31EACB66200B38484 /* XLFormTextViewCell.h */,
  2003. F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */,
  2004. );
  2005. path = Cell;
  2006. sourceTree = "<group>";
  2007. };
  2008. F762CAC51EACB66200B38484 /* Controllers */ = {
  2009. isa = PBXGroup;
  2010. children = (
  2011. F762CAC61EACB66200B38484 /* XLFormOptionsObject.h */,
  2012. F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */,
  2013. F762CAC81EACB66200B38484 /* XLFormOptionsViewController.h */,
  2014. F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */,
  2015. F762CACA1EACB66200B38484 /* XLFormRowDescriptorViewController.h */,
  2016. F762CACB1EACB66200B38484 /* XLFormViewController.h */,
  2017. F762CACC1EACB66200B38484 /* XLFormViewController.m */,
  2018. );
  2019. path = Controllers;
  2020. sourceTree = "<group>";
  2021. };
  2022. F762CACD1EACB66200B38484 /* Descriptors */ = {
  2023. isa = PBXGroup;
  2024. children = (
  2025. F762CACE1EACB66200B38484 /* XLFormDescriptor.h */,
  2026. F762CACF1EACB66200B38484 /* XLFormDescriptor.m */,
  2027. F762CAD01EACB66200B38484 /* XLFormDescriptorDelegate.h */,
  2028. F762CAD11EACB66200B38484 /* XLFormRowDescriptor.h */,
  2029. F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */,
  2030. F762CAD31EACB66200B38484 /* XLFormSectionDescriptor.h */,
  2031. F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */,
  2032. );
  2033. path = Descriptors;
  2034. sourceTree = "<group>";
  2035. };
  2036. F762CAD51EACB66200B38484 /* Helpers */ = {
  2037. isa = PBXGroup;
  2038. children = (
  2039. F762CAD61EACB66200B38484 /* NSArray+XLFormAdditions.h */,
  2040. F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */,
  2041. F762CAD81EACB66200B38484 /* NSExpression+XLFormAdditions.h */,
  2042. F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */,
  2043. F762CADA1EACB66200B38484 /* NSObject+XLFormAdditions.h */,
  2044. F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */,
  2045. F762CADC1EACB66200B38484 /* NSPredicate+XLFormAdditions.h */,
  2046. F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */,
  2047. F762CADE1EACB66200B38484 /* NSString+XLFormAdditions.h */,
  2048. F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */,
  2049. F762CAE01EACB66200B38484 /* UIView+XLFormAdditions.h */,
  2050. F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */,
  2051. F762CAE21EACB66200B38484 /* Views */,
  2052. );
  2053. path = Helpers;
  2054. sourceTree = "<group>";
  2055. };
  2056. F762CAE21EACB66200B38484 /* Views */ = {
  2057. isa = PBXGroup;
  2058. children = (
  2059. F762CAE31EACB66200B38484 /* XLFormRightDetailCell.h */,
  2060. F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */,
  2061. F762CAE51EACB66200B38484 /* XLFormRightImageButton.h */,
  2062. F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */,
  2063. F762CAE71EACB66200B38484 /* XLFormRowNavigationAccessoryView.h */,
  2064. F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */,
  2065. F762CAE91EACB66200B38484 /* XLFormTextView.h */,
  2066. F762CAEA1EACB66200B38484 /* XLFormTextView.m */,
  2067. );
  2068. path = Views;
  2069. sourceTree = "<group>";
  2070. };
  2071. F762CAEB1EACB66200B38484 /* Validation */ = {
  2072. isa = PBXGroup;
  2073. children = (
  2074. F762CAEC1EACB66200B38484 /* XLFormRegexValidator.h */,
  2075. F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */,
  2076. F762CAEE1EACB66200B38484 /* XLFormValidationStatus.h */,
  2077. F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */,
  2078. F762CAF01EACB66200B38484 /* XLFormValidator.h */,
  2079. F762CAF11EACB66200B38484 /* XLFormValidator.m */,
  2080. F762CAF21EACB66200B38484 /* XLFormValidatorProtocol.h */,
  2081. );
  2082. path = Validation;
  2083. sourceTree = "<group>";
  2084. };
  2085. F7632FC32183667400721B71 /* Section */ = {
  2086. isa = PBXGroup;
  2087. children = (
  2088. F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */,
  2089. F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */,
  2090. F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */,
  2091. );
  2092. path = Section;
  2093. sourceTree = "<group>";
  2094. };
  2095. F771E3D120E2392D00AFB62D /* File Provider Extension */ = {
  2096. isa = PBXGroup;
  2097. children = (
  2098. F771E3F220E239A600AFB62D /* FileProviderData.swift */,
  2099. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */,
  2100. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */,
  2101. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */,
  2102. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */,
  2103. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */,
  2104. F716FE7923795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift */,
  2105. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */,
  2106. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */,
  2107. F76673EF22C90433007ED366 /* FileProviderUtility.swift */,
  2108. );
  2109. path = "File Provider Extension";
  2110. sourceTree = "<group>";
  2111. };
  2112. F78ACD3E21903BA20088454D /* Cell */ = {
  2113. isa = PBXGroup;
  2114. children = (
  2115. F7FFEACE1F82BB23005E5C17 /* CCCellMain.h */,
  2116. F70211F51BAC56E9003FC03E /* CCCellMain.m */,
  2117. F70211F61BAC56E9003FC03E /* CCCellMain.xib */,
  2118. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */,
  2119. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */,
  2120. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */,
  2121. F78ACD3F21903CC20088454D /* NCGridCell.swift */,
  2122. F78ACD4521903D010088454D /* NCGridCell.xib */,
  2123. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */,
  2124. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */,
  2125. F78ACD4121903CE00088454D /* NCListCell.swift */,
  2126. F78ACD4321903CF20088454D /* NCListCell.xib */,
  2127. );
  2128. path = Cell;
  2129. sourceTree = "<group>";
  2130. };
  2131. F78ACD4721903F850088454D /* Cell */ = {
  2132. isa = PBXGroup;
  2133. children = (
  2134. F78ACD4821903F850088454D /* NCTrashListCell.swift */,
  2135. F78ACD4921903F850088454D /* NCTrashListCell.xib */,
  2136. );
  2137. path = Cell;
  2138. sourceTree = "<group>";
  2139. };
  2140. F78ACD4D219043E70088454D /* Layout */ = {
  2141. isa = PBXGroup;
  2142. children = (
  2143. F78ACD4E2190440D0088454D /* NCLayout.swift */,
  2144. );
  2145. path = Layout;
  2146. sourceTree = "<group>";
  2147. };
  2148. F78ACD50219046AC0088454D /* Section */ = {
  2149. isa = PBXGroup;
  2150. children = (
  2151. F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */,
  2152. F7395139221B127F00D986C8 /* NCSectionMediaHeader.xib */,
  2153. F78ACD55219047E90088454D /* NCSectionHeader.xib */,
  2154. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */,
  2155. F78ACD53219047D40088454D /* NCSectionFooter.xib */,
  2156. );
  2157. path = Section;
  2158. sourceTree = "<group>";
  2159. };
  2160. F78F74322163753B00C2ADAD /* Trash */ = {
  2161. isa = PBXGroup;
  2162. children = (
  2163. F78F74332163757000C2ADAD /* NCTrash.storyboard */,
  2164. F78F74352163781100C2ADAD /* NCTrash.swift */,
  2165. F78ACD4721903F850088454D /* Cell */,
  2166. F7632FC32183667400721B71 /* Section */,
  2167. );
  2168. path = Trash;
  2169. sourceTree = "<group>";
  2170. };
  2171. F79018B1240962C7007C9B6D /* NCMediaBrowser */ = {
  2172. isa = PBXGroup;
  2173. children = (
  2174. F79018B2240962C7007C9B6D /* DismissAnimationController.swift */,
  2175. F79018B3240962C7007C9B6D /* MediaContentView.swift */,
  2176. F79018B4240962C7007C9B6D /* MediaBrowserViewController.swift */,
  2177. F79018B5240962C7007C9B6D /* ContentTransformers.swift */,
  2178. );
  2179. path = NCMediaBrowser;
  2180. sourceTree = "<group>";
  2181. };
  2182. F79630EC215526B60015EEA5 /* Viewer */ = {
  2183. isa = PBXGroup;
  2184. children = (
  2185. F79018B1240962C7007C9B6D /* NCMediaBrowser */,
  2186. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */,
  2187. F710D1F42405770F00A6033D /* NCViewerPDF.swift */,
  2188. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */,
  2189. F7FB1D3D215E191D00D669EA /* NCViewerDocumentWeb.swift */,
  2190. F79630ED215527D40015EEA5 /* NCViewerMedia.swift */,
  2191. );
  2192. path = Viewer;
  2193. sourceTree = "<group>";
  2194. };
  2195. F79A65C12191D8DC00FF6DCC /* Select */ = {
  2196. isa = PBXGroup;
  2197. children = (
  2198. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */,
  2199. F79A65C52191D95E00FF6DCC /* NCSelect.swift */,
  2200. );
  2201. path = Select;
  2202. sourceTree = "<group>";
  2203. };
  2204. F7A3214D1E9E2A070069AD1B /* Favorites */ = {
  2205. isa = PBXGroup;
  2206. children = (
  2207. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */,
  2208. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */,
  2209. );
  2210. path = Favorites;
  2211. sourceTree = "<group>";
  2212. };
  2213. F7A321621E9E37960069AD1B /* Activity */ = {
  2214. isa = PBXGroup;
  2215. children = (
  2216. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */,
  2217. F7C9555421F0C5470024296E /* NCActivity.swift */,
  2218. );
  2219. path = Activity;
  2220. sourceTree = "<group>";
  2221. };
  2222. F7A321891E9E42B20069AD1B /* MenuAccount */ = {
  2223. isa = PBXGroup;
  2224. children = (
  2225. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */,
  2226. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */,
  2227. );
  2228. path = MenuAccount;
  2229. sourceTree = "<group>";
  2230. };
  2231. F7A377131EB2364A002856D3 /* Fabric */ = {
  2232. isa = PBXGroup;
  2233. children = (
  2234. F7A377141EB2364A002856D3 /* Crashlytics.framework */,
  2235. F7A377151EB2364A002856D3 /* Fabric.framework */,
  2236. );
  2237. name = Fabric;
  2238. path = "Libraries external/Fabric";
  2239. sourceTree = SOURCE_ROOT;
  2240. };
  2241. F7ACE4281BAC0268006C0017 /* Settings */ = {
  2242. isa = PBXGroup;
  2243. children = (
  2244. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */,
  2245. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */,
  2246. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */,
  2247. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */,
  2248. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */,
  2249. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */,
  2250. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */,
  2251. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */,
  2252. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */,
  2253. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */,
  2254. F7ACE4301BAC0268006C0017 /* CCSettings.h */,
  2255. F7ACE4311BAC0268006C0017 /* CCSettings.m */,
  2256. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */,
  2257. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */,
  2258. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */,
  2259. );
  2260. path = Settings;
  2261. sourceTree = "<group>";
  2262. };
  2263. F7AE00F6230E8191007ACF8A /* BrowserWeb */ = {
  2264. isa = PBXGroup;
  2265. children = (
  2266. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */,
  2267. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */,
  2268. );
  2269. path = BrowserWeb;
  2270. sourceTree = "<group>";
  2271. };
  2272. F7B0C0CA1EE7E7750033AC24 /* Synchronize */ = {
  2273. isa = PBXGroup;
  2274. children = (
  2275. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */,
  2276. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */,
  2277. );
  2278. path = Synchronize;
  2279. sourceTree = "<group>";
  2280. };
  2281. F7B0C1701EE8397E0033AC24 /* AutoUpload */ = {
  2282. isa = PBXGroup;
  2283. children = (
  2284. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */,
  2285. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */,
  2286. );
  2287. path = AutoUpload;
  2288. sourceTree = "<group>";
  2289. };
  2290. F7B2DEEB1F976785007CF4D2 /* NYMnemonic */ = {
  2291. isa = PBXGroup;
  2292. children = (
  2293. F7B2DEEC1F976785007CF4D2 /* languages */,
  2294. F7B2DEEE1F976785007CF4D2 /* NYMnemonic.h */,
  2295. F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */,
  2296. );
  2297. path = NYMnemonic;
  2298. sourceTree = "<group>";
  2299. };
  2300. F7B2DEEC1F976785007CF4D2 /* languages */ = {
  2301. isa = PBXGroup;
  2302. children = (
  2303. F7B2DEED1F976785007CF4D2 /* english.txt */,
  2304. );
  2305. path = languages;
  2306. sourceTree = "<group>";
  2307. };
  2308. F7B4F1C51F44356F00B53B42 /* NCUchardet */ = {
  2309. isa = PBXGroup;
  2310. children = (
  2311. F73B4EAC1F470D9100BBEE4B /* src */,
  2312. F7B4F1C71F44356F00B53B42 /* NCUchardet.h */,
  2313. F7B4F1C81F44356F00B53B42 /* NCUchardet.m */,
  2314. );
  2315. path = NCUchardet;
  2316. sourceTree = "<group>";
  2317. };
  2318. F7BAAD951ED5A63D00B7EAD4 /* Database */ = {
  2319. isa = PBXGroup;
  2320. children = (
  2321. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */,
  2322. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */,
  2323. );
  2324. path = Database;
  2325. sourceTree = "<group>";
  2326. };
  2327. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */ = {
  2328. isa = PBXGroup;
  2329. children = (
  2330. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */,
  2331. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */,
  2332. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */,
  2333. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */,
  2334. );
  2335. path = "ManageLocation+ManageAsset";
  2336. sourceTree = "<group>";
  2337. };
  2338. F7BFFA621A24D7300044ED85 /* Login */ = {
  2339. isa = PBXGroup;
  2340. children = (
  2341. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */,
  2342. F7BF1B3F1D51E893000854F6 /* CCLogin.h */,
  2343. F7BF1B401D51E893000854F6 /* CCLogin.m */,
  2344. F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */,
  2345. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */,
  2346. F745B252222D88AE00346520 /* NCLoginQRCode.swift */,
  2347. );
  2348. path = Login;
  2349. sourceTree = "<group>";
  2350. };
  2351. F7BFFA991A24D7BB0044ED85 /* Utility */ = {
  2352. isa = PBXGroup;
  2353. children = (
  2354. F76C3B871C638A4C00DC4301 /* CCError.h */,
  2355. F76C3B881C638A4C00DC4301 /* CCError.m */,
  2356. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */,
  2357. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */,
  2358. F76C3B831C6388BC00DC4301 /* CCGraphics.h */,
  2359. F76C3B841C6388BC00DC4301 /* CCGraphics.m */,
  2360. F7514EDA1C7B1336008F3338 /* CCHud.h */,
  2361. F7514EDB1C7B1336008F3338 /* CCHud.m */,
  2362. F7053E3C1C639DF500741EA5 /* CCUtility.h */,
  2363. F7053E3D1C639DF500741EA5 /* CCUtility.m */,
  2364. F78E7064219F096B006F23E4 /* NCAvatar.swift */,
  2365. F765608E23BF813500765969 /* NCContentPresenter.swift */,
  2366. F707C26421A2DC5200F6181E /* NCStoreReview.swift */,
  2367. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */,
  2368. F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */,
  2369. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */,
  2370. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */,
  2371. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */,
  2372. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */,
  2373. F7B7504A2397D38E004E13EC /* UIImage+fixedOrientation.swift */,
  2374. );
  2375. path = Utility;
  2376. sourceTree = "<group>";
  2377. };
  2378. F7C0F46D1C8880540059EC54 /* Share */ = {
  2379. isa = PBXGroup;
  2380. children = (
  2381. F78B9683234F785300F54315 /* NCSelectDestination.h */,
  2382. F78B9682234F785300F54315 /* NCSelectDestination.m */,
  2383. F78B9684234F785300F54315 /* NCSelectDestination.storyboard */,
  2384. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */,
  2385. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */,
  2386. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */,
  2387. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */,
  2388. F7C0F46E1C8880540059EC54 /* ShareViewController.h */,
  2389. F7C0F46F1C8880540059EC54 /* ShareViewController.m */,
  2390. F7296A661C8880ED001A7809 /* CCloadItemData.swift */,
  2391. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */,
  2392. );
  2393. path = Share;
  2394. sourceTree = "<group>";
  2395. };
  2396. F7C1CDD91E6DFC6F005D92BE /* Brand */ = {
  2397. isa = PBXGroup;
  2398. children = (
  2399. F7C742D31E7BD36600D9C973 /* Supporting Files */,
  2400. F710E80C1EF95C9C00DC2427 /* Intro */,
  2401. F700222B1EC479840080073F /* Custom.xcassets */,
  2402. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */,
  2403. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */,
  2404. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */,
  2405. );
  2406. path = Brand;
  2407. sourceTree = "<group>";
  2408. };
  2409. F7C5259A1E3B441D00FFE02C /* Notification */ = {
  2410. isa = PBXGroup;
  2411. children = (
  2412. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */,
  2413. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */,
  2414. );
  2415. name = Notification;
  2416. sourceTree = "<group>";
  2417. };
  2418. F7C742D31E7BD36600D9C973 /* Supporting Files */ = {
  2419. isa = PBXGroup;
  2420. children = (
  2421. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */,
  2422. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */,
  2423. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */,
  2424. F7496B81208F5651004B299C /* iOSClient.plist */,
  2425. F728B2BC23E83AD200E12DA0 /* Notification_Service_Extension.entitlements */,
  2426. F728B2BB23E83AD200E12DA0 /* Notification_Service_Extension.plist */,
  2427. F7C742D01E7BD35B00D9C973 /* Share.entitlements */,
  2428. F7496B83208F5652004B299C /* Share.plist */,
  2429. );
  2430. name = "Supporting Files";
  2431. sourceTree = "<group>";
  2432. };
  2433. F7CA1EBB20E7E3FE002CC65E /* PKDownloadButton */ = {
  2434. isa = PBXGroup;
  2435. children = (
  2436. F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */,
  2437. F7CA1EBD20E7E3FE002CC65E /* PKBorderedButton.h */,
  2438. F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */,
  2439. F7CA1EBF20E7E3FE002CC65E /* PKDownloadButton.h */,
  2440. F7CA1EC020E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.h */,
  2441. F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */,
  2442. F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */,
  2443. F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */,
  2444. F7CA1EC420E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.h */,
  2445. F7CA1EC620E7E3FE002CC65E /* PKMacros.h */,
  2446. F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */,
  2447. F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */,
  2448. F7CA1EC920E7E3FE002CC65E /* PKCircleProgressView.h */,
  2449. F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */,
  2450. F7CA1ECB20E7E3FE002CC65E /* UIImage+PKDownloadButton.h */,
  2451. F7CA1ECC20E7E3FE002CC65E /* PKStopDownloadButton.h */,
  2452. F7CA1ECD20E7E3FE002CC65E /* PKCircleView.h */,
  2453. F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */,
  2454. F7CA1ECF20E7E3FE002CC65E /* PKPendingView.h */,
  2455. );
  2456. path = PKDownloadButton;
  2457. sourceTree = "<group>";
  2458. };
  2459. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */ = {
  2460. isa = PBXGroup;
  2461. children = (
  2462. F7F4B1D723C74B3E00D82A6E /* NCRichWorkspace.swift */,
  2463. F722814223C8C34500C41898 /* NCRichWorkspace.xib */,
  2464. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */,
  2465. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */,
  2466. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */,
  2467. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */,
  2468. );
  2469. path = RichWorkspace;
  2470. sourceTree = "<group>";
  2471. };
  2472. F7D4B67A22956610000C2C86 /* Firebase */ = {
  2473. isa = PBXGroup;
  2474. children = (
  2475. F7D4B67C2295663D000C2C86 /* Analytics */,
  2476. F7D4B68D2295666E000C2C86 /* MLVision */,
  2477. F72382BA22958569005B8A07 /* MLVisionTextModel */,
  2478. F7D4B67B22956610000C2C86 /* Firebase.h */,
  2479. );
  2480. path = Firebase;
  2481. sourceTree = "<group>";
  2482. };
  2483. F7D4B67C2295663D000C2C86 /* Analytics */ = {
  2484. isa = PBXGroup;
  2485. children = (
  2486. F7D4B67D2295663D000C2C86 /* GoogleAppMeasurement.framework */,
  2487. F7D4B67E2295663D000C2C86 /* FirebaseCore.framework */,
  2488. F7D4B67F2295663D000C2C86 /* FirebaseAnalytics.framework */,
  2489. F7D4B6802295663D000C2C86 /* GoogleUtilities.framework */,
  2490. F7D4B6812295663D000C2C86 /* nanopb.framework */,
  2491. F7D4B6822295663D000C2C86 /* FIRAnalyticsConnector.framework */,
  2492. F7D4B6832295663D000C2C86 /* FirebaseInstanceID.framework */,
  2493. F7D4B6842295663D000C2C86 /* FirebaseCoreDiagnostics.framework */,
  2494. );
  2495. path = Analytics;
  2496. sourceTree = "<group>";
  2497. };
  2498. F7D4B68D2295666E000C2C86 /* MLVision */ = {
  2499. isa = PBXGroup;
  2500. children = (
  2501. F7D4B68E2295666E000C2C86 /* Protobuf.framework */,
  2502. F7D4B68F2295666E000C2C86 /* GTMSessionFetcher.framework */,
  2503. F7D4B6902295666E000C2C86 /* GoogleAPIClientForREST.framework */,
  2504. F7D4B6912295666E000C2C86 /* FirebaseMLVision.framework */,
  2505. F7D4B6922295666E000C2C86 /* GoogleToolboxForMac.framework */,
  2506. F7D4B6932295666E000C2C86 /* FirebaseMLCommon.framework */,
  2507. F7D4B6942295666E000C2C86 /* GoogleMobileVision.framework */,
  2508. );
  2509. path = MLVision;
  2510. sourceTree = "<group>";
  2511. };
  2512. F7DFB7E9219C5A0500680748 /* Create cloud */ = {
  2513. isa = PBXGroup;
  2514. children = (
  2515. F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */,
  2516. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */,
  2517. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */,
  2518. F7DFB7F1219C5C0000680748 /* NCCreateFormUploadFileText.swift */,
  2519. F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */,
  2520. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */,
  2521. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */,
  2522. );
  2523. path = "Create cloud";
  2524. sourceTree = "<group>";
  2525. };
  2526. F7E0E1DA22327885006B0911 /* AudioRecorder */ = {
  2527. isa = PBXGroup;
  2528. children = (
  2529. F7E0E1DB22327885006B0911 /* NCAudioRecorderViewController.swift */,
  2530. F7E0E1DD22327DBA006B0911 /* NCAudioRecorderViewController.storyboard */,
  2531. );
  2532. path = AudioRecorder;
  2533. sourceTree = "<group>";
  2534. };
  2535. F7E9C41320F4CA870040CF18 /* Transfers */ = {
  2536. isa = PBXGroup;
  2537. children = (
  2538. F7E9C41520F4CA870040CF18 /* CCTransfers.h */,
  2539. F7E9C41820F4CA870040CF18 /* CCTransfers.m */,
  2540. );
  2541. path = Transfers;
  2542. sourceTree = "<group>";
  2543. };
  2544. F7EC9CB921185F2000F1C5CE /* Media */ = {
  2545. isa = PBXGroup;
  2546. children = (
  2547. F7501C302212E57400FB1415 /* NCMedia.storyboard */,
  2548. F7501C312212E57400FB1415 /* NCMedia.swift */,
  2549. );
  2550. path = Media;
  2551. sourceTree = "<group>";
  2552. };
  2553. F7F54CAC1E5B143100E19C62 /* Library */ = {
  2554. isa = PBXGroup;
  2555. children = (
  2556. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */,
  2557. F73CC0571E813DFF006E3047 /* BKPasscodeView */,
  2558. F754EEC321772B6100BB1CDF /* DropdownMenu */,
  2559. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */,
  2560. F7B4F1C51F44356F00B53B42 /* NCUchardet */,
  2561. F760F75621F21F61006B1A73 /* PhotoEditor */,
  2562. F762CA9F1EACB66200B38484 /* XLForm */,
  2563. );
  2564. path = Library;
  2565. sourceTree = "<group>";
  2566. };
  2567. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */ = {
  2568. isa = PBXGroup;
  2569. children = (
  2570. F7F54CAE1E5B14C700E19C62 /* Assets */,
  2571. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */,
  2572. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */,
  2573. F7F54CD21E5B14C700E19C62 /* MWCommon.h */,
  2574. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */,
  2575. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */,
  2576. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */,
  2577. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */,
  2578. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */,
  2579. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */,
  2580. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */,
  2581. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */,
  2582. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */,
  2583. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */,
  2584. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */,
  2585. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */,
  2586. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */,
  2587. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */,
  2588. );
  2589. path = MWPhotoBrowser;
  2590. sourceTree = "<group>";
  2591. };
  2592. F7F54CAE1E5B14C700E19C62 /* Assets */ = {
  2593. isa = PBXGroup;
  2594. children = (
  2595. F7F54CAF1E5B14C700E19C62 /* ImageError.png */,
  2596. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */,
  2597. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */,
  2598. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */,
  2599. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */,
  2600. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */,
  2601. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */,
  2602. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */,
  2603. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */,
  2604. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */,
  2605. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */,
  2606. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */,
  2607. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */,
  2608. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */,
  2609. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */,
  2610. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */,
  2611. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */,
  2612. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */,
  2613. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */,
  2614. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */,
  2615. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */,
  2616. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */,
  2617. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */,
  2618. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */,
  2619. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */,
  2620. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */,
  2621. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */,
  2622. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */,
  2623. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */,
  2624. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */,
  2625. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */,
  2626. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */,
  2627. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */,
  2628. );
  2629. path = Assets;
  2630. sourceTree = "<group>";
  2631. };
  2632. F7F67B9F1A24D27800EE80DA = {
  2633. isa = PBXGroup;
  2634. children = (
  2635. F7F67BAA1A24D27800EE80DA /* iOSClient */,
  2636. F7F67BAB1A24D27800EE80DA /* Supporting Files */,
  2637. F771E3D120E2392D00AFB62D /* File Provider Extension */,
  2638. F7C0F46D1C8880540059EC54 /* Share */,
  2639. 2C33C48023E2C475005F963B /* Notification Service Extension */,
  2640. F7FC7D651DC1F98700BB2C6A /* Products */,
  2641. F7FC7D541DC1F93700BB2C6A /* Frameworks */,
  2642. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */,
  2643. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */,
  2644. );
  2645. sourceTree = "<group>";
  2646. };
  2647. F7F67BAA1A24D27800EE80DA /* iOSClient */ = {
  2648. isa = PBXGroup;
  2649. children = (
  2650. F70F02A81C889183008DAB36 /* Libraries external */,
  2651. F70022561EC4C9100080073F /* OCCommunicationLib */,
  2652. F7C1CDD91E6DFC6F005D92BE /* Brand */,
  2653. F70211F31BAC56E9003FC03E /* Main */,
  2654. F7A582D71A24DAB500E903D7 /* AppDelegate.h */,
  2655. F7B174C722FAC0A8000B7579 /* AppDelegate.m */,
  2656. F7C8C1901B482CEA0048180E /* CCGlobal.h */,
  2657. F7F67BB81A24D27800EE80DA /* Images.xcassets */,
  2658. F7A321621E9E37960069AD1B /* Activity */,
  2659. F7E0E1DA22327885006B0911 /* AudioRecorder */,
  2660. F7B0C1701EE8397E0033AC24 /* AutoUpload */,
  2661. F7AE00F6230E8191007ACF8A /* BrowserWeb */,
  2662. F7BAAD951ED5A63D00B7EAD4 /* Database */,
  2663. F7A3214D1E9E2A070069AD1B /* Favorites */,
  2664. F7F54CAC1E5B143100E19C62 /* Library */,
  2665. F7BFFA621A24D7300044ED85 /* Login */,
  2666. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */,
  2667. F7EC9CB921185F2000F1C5CE /* Media */,
  2668. F7A321891E9E42B20069AD1B /* MenuAccount */,
  2669. F74D3DB81BAC1941000BAE4B /* Networking */,
  2670. F7C5259A1E3B441D00FFE02C /* Notification */,
  2671. F7381ED9218218A4000B1560 /* Offline */,
  2672. F7FCFFD51D70798C000E6E29 /* PeekPop */,
  2673. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */,
  2674. F758B41E212C516300515F55 /* ScanDocument */,
  2675. F7FE125B1BAC03FB0041924B /* Security */,
  2676. F79A65C12191D8DC00FF6DCC /* Select */,
  2677. F7ACE4281BAC0268006C0017 /* Settings */,
  2678. F728CE741BF6322C00E69702 /* Share */,
  2679. F7169A161EE590930086BD69 /* Shares */,
  2680. F7B0C0CA1EE7E7750033AC24 /* Synchronize */,
  2681. F73D71561F26739100E233EB /* Text */,
  2682. F7E9C41320F4CA870040CF18 /* Transfers */,
  2683. F78F74322163753B00C2ADAD /* Trash */,
  2684. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */,
  2685. F7BFFA991A24D7BB0044ED85 /* Utility */,
  2686. F79630EC215526B60015EEA5 /* Viewer */,
  2687. );
  2688. path = iOSClient;
  2689. sourceTree = "<group>";
  2690. };
  2691. F7F67BAB1A24D27800EE80DA /* Supporting Files */ = {
  2692. isa = PBXGroup;
  2693. children = (
  2694. F72B60941A24F04E004EF66F /* Localizations */,
  2695. F75CDBF51DF063AD00116AD0 /* .gitignore */,
  2696. F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */,
  2697. F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */,
  2698. F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */,
  2699. F7229B491DF71BB300E8C4E7 /* AUTHORS */,
  2700. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */,
  2701. F77D49A71DC238E500CDC568 /* loading.gif */,
  2702. F7F67BAD1A24D27800EE80DA /* main.m */,
  2703. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */,
  2704. F76344751BF259A800188725 /* synchronized.gif */,
  2705. F76344761BF259A800188725 /* synchronizedcrypto.gif */,
  2706. );
  2707. name = "Supporting Files";
  2708. path = iOSClient;
  2709. sourceTree = "<group>";
  2710. };
  2711. F7FC7D541DC1F93700BB2C6A /* Frameworks */ = {
  2712. isa = PBXGroup;
  2713. children = (
  2714. F79018A424092EF4007C9B6D /* ATGMediaBrowser.framework */,
  2715. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */,
  2716. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */,
  2717. F765608A23BF80A400765969 /* SwiftEntryKit.framework */,
  2718. F765608623BF806C00765969 /* QuickLayout.framework */,
  2719. F716FE7723795E5000FABE50 /* NCCommunication.framework */,
  2720. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */,
  2721. F736B551234DCF57008A5C9F /* Alamofire.framework */,
  2722. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */,
  2723. F774264022EB3F7300B23912 /* DropDown.framework */,
  2724. F74AFCE822E8B024003DE61F /* FSCalendar.framework */,
  2725. F700510222DF6897003A3356 /* Parchment.framework */,
  2726. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */,
  2727. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */,
  2728. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */,
  2729. F76E71E42244DF6900690001 /* Zip.framework */,
  2730. F745B250222D871800346520 /* QRCodeReader.framework */,
  2731. F75153232226920200323DDC /* FastScroll.framework */,
  2732. F78AA20521F783E900D0F205 /* SwiftRichString.framework */,
  2733. F72E0B9C21AD60BC00898D7B /* WeScan.framework */,
  2734. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */,
  2735. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */,
  2736. F7063DEC2199E55F003F38DA /* SVGKit.framework */,
  2737. F7C40C112199BA620004137E /* RealmSwift.framework */,
  2738. F7C40C0F2199BA5D0004137E /* Realm.framework */,
  2739. F7C40BF22199978B0004137E /* MBProgressHUD.framework */,
  2740. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */,
  2741. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */,
  2742. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */,
  2743. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */,
  2744. F7C40BE8219991A60004137E /* EAIntroView.framework */,
  2745. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */,
  2746. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */,
  2747. F7C40BE221998C050004137E /* PDFGenerator.framework */,
  2748. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */,
  2749. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */,
  2750. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */,
  2751. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */,
  2752. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */,
  2753. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */,
  2754. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */,
  2755. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */,
  2756. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */,
  2757. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */,
  2758. F7FC7D551DC1F93800BB2C6A /* libz.tbd */,
  2759. );
  2760. name = Frameworks;
  2761. sourceTree = "<group>";
  2762. };
  2763. F7FC7D651DC1F98700BB2C6A /* Products */ = {
  2764. isa = PBXGroup;
  2765. children = (
  2766. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */,
  2767. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */,
  2768. );
  2769. name = Products;
  2770. sourceTree = "<group>";
  2771. };
  2772. F7FCFFD51D70798C000E6E29 /* PeekPop */ = {
  2773. isa = PBXGroup;
  2774. children = (
  2775. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */,
  2776. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */,
  2777. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */,
  2778. );
  2779. path = PeekPop;
  2780. sourceTree = "<group>";
  2781. };
  2782. F7FE125B1BAC03FB0041924B /* Security */ = {
  2783. isa = PBXGroup;
  2784. children = (
  2785. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */,
  2786. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */,
  2787. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */,
  2788. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */,
  2789. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */,
  2790. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */,
  2791. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */,
  2792. );
  2793. path = Security;
  2794. sourceTree = "<group>";
  2795. };
  2796. /* End PBXGroup section */
  2797. /* Begin PBXNativeTarget section */
  2798. 2C33C47E23E2C475005F963B /* Notification Service Extension */ = {
  2799. isa = PBXNativeTarget;
  2800. buildConfigurationList = 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */;
  2801. buildPhases = (
  2802. 2C33C47B23E2C475005F963B /* Sources */,
  2803. 2C33C47C23E2C475005F963B /* Frameworks */,
  2804. 2C33C47D23E2C475005F963B /* Resources */,
  2805. );
  2806. buildRules = (
  2807. );
  2808. dependencies = (
  2809. );
  2810. name = "Notification Service Extension";
  2811. productName = "Notification Service Extension";
  2812. productReference = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */;
  2813. productType = "com.apple.product-type.app-extension";
  2814. };
  2815. F71459B41D12E3B700CAFEEC /* Share */ = {
  2816. isa = PBXNativeTarget;
  2817. buildConfigurationList = F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */;
  2818. buildPhases = (
  2819. F71459B51D12E3B700CAFEEC /* Sources */,
  2820. F7145A141D12E3B700CAFEEC /* Frameworks */,
  2821. F7145A181D12E3B700CAFEEC /* Resources */,
  2822. F736B556234DCF7C008A5C9F /* Embed Frameworks */,
  2823. );
  2824. buildRules = (
  2825. );
  2826. dependencies = (
  2827. );
  2828. name = Share;
  2829. productName = "Share Ext";
  2830. productReference = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */;
  2831. productType = "com.apple.product-type.app-extension";
  2832. };
  2833. F771E3CF20E2392D00AFB62D /* File Provider Extension */ = {
  2834. isa = PBXNativeTarget;
  2835. buildConfigurationList = F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */;
  2836. buildPhases = (
  2837. F771E3CC20E2392D00AFB62D /* Sources */,
  2838. F771E3CD20E2392D00AFB62D /* Frameworks */,
  2839. F771E3CE20E2392D00AFB62D /* Resources */,
  2840. F736B559234DCF93008A5C9F /* Embed Frameworks */,
  2841. );
  2842. buildRules = (
  2843. );
  2844. dependencies = (
  2845. );
  2846. name = "File Provider Extension";
  2847. productName = "File Provider Extension";
  2848. productReference = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */;
  2849. productType = "com.apple.product-type.app-extension";
  2850. };
  2851. F77B0DEB1D118A16002130FE /* Nextcloud */ = {
  2852. isa = PBXNativeTarget;
  2853. buildConfigurationList = F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */;
  2854. buildPhases = (
  2855. F77B0DEF1D118A16002130FE /* Sources */,
  2856. F77B0EDC1D118A16002130FE /* Frameworks */,
  2857. F77B0EE91D118A16002130FE /* Resources */,
  2858. F77B0F981D118A16002130FE /* Embed App Extensions */,
  2859. F73B02C01DC0F1C900EC2C33 /* ShellScript */,
  2860. F7A377371EB24469002856D3 /* ShellScript */,
  2861. F75A40001EBCB82B00B213E8 /* ShellScript */,
  2862. );
  2863. buildRules = (
  2864. );
  2865. dependencies = (
  2866. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */,
  2867. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */,
  2868. 2C33C48523E2C475005F963B /* PBXTargetDependency */,
  2869. );
  2870. name = Nextcloud;
  2871. productName = "Crypto Cloud";
  2872. productReference = F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */;
  2873. productType = "com.apple.product-type.application";
  2874. };
  2875. /* End PBXNativeTarget section */
  2876. /* Begin PBXProject section */
  2877. F7F67BA01A24D27800EE80DA /* Project object */ = {
  2878. isa = PBXProject;
  2879. attributes = {
  2880. LastSwiftUpdateCheck = 1130;
  2881. LastUpgradeCheck = 1020;
  2882. ORGANIZATIONNAME = "Marino Faggiana";
  2883. TargetAttributes = {
  2884. 2C33C47E23E2C475005F963B = {
  2885. CreatedOnToolsVersion = 11.3.1;
  2886. DevelopmentTeam = 6JLRKY9ZV7;
  2887. ProvisioningStyle = Automatic;
  2888. };
  2889. F71459B41D12E3B700CAFEEC = {
  2890. DevelopmentTeam = 6JLRKY9ZV7;
  2891. LastSwiftMigration = 1020;
  2892. SystemCapabilities = {
  2893. com.apple.ApplicationGroups.iOS = {
  2894. enabled = 1;
  2895. };
  2896. com.apple.iCloud = {
  2897. enabled = 0;
  2898. };
  2899. };
  2900. };
  2901. F771E3CF20E2392D00AFB62D = {
  2902. CreatedOnToolsVersion = 9.4.1;
  2903. DevelopmentTeam = 6JLRKY9ZV7;
  2904. LastSwiftMigration = 1020;
  2905. ProvisioningStyle = Automatic;
  2906. };
  2907. F77B0DEB1D118A16002130FE = {
  2908. DevelopmentTeam = 6JLRKY9ZV7;
  2909. LastSwiftMigration = 1020;
  2910. ProvisioningStyle = Automatic;
  2911. SystemCapabilities = {
  2912. com.apple.Push = {
  2913. enabled = 1;
  2914. };
  2915. com.apple.iCloud = {
  2916. enabled = 1;
  2917. };
  2918. };
  2919. };
  2920. };
  2921. };
  2922. buildConfigurationList = F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */;
  2923. compatibilityVersion = "Xcode 3.2";
  2924. developmentRegion = en;
  2925. hasScannedForEncodings = 0;
  2926. knownRegions = (
  2927. en,
  2928. Base,
  2929. de,
  2930. fr,
  2931. "pt-BR",
  2932. ru,
  2933. it,
  2934. tr,
  2935. "es-MX",
  2936. "nb-NO",
  2937. pl,
  2938. sv,
  2939. es,
  2940. is,
  2941. nl,
  2942. "sk-SK",
  2943. "en-GB",
  2944. "zh-Hans",
  2945. "ka-GE",
  2946. hu,
  2947. "zh-Hant-TW",
  2948. sr,
  2949. "es-CL",
  2950. "es-CO",
  2951. "es-CR",
  2952. "es-DO",
  2953. "es-EC",
  2954. "es-GT",
  2955. "es-HN",
  2956. "es-NI",
  2957. "es-PA",
  2958. "es-PE",
  2959. "es-PR",
  2960. "es-PY",
  2961. "es-SV",
  2962. "es-UY",
  2963. "cs-CZ",
  2964. ko,
  2965. "es-419",
  2966. "pt-PT",
  2967. "ja-JP",
  2968. gl,
  2969. ca,
  2970. da,
  2971. );
  2972. mainGroup = F7F67B9F1A24D27800EE80DA;
  2973. productRefGroup = F7F67B9F1A24D27800EE80DA;
  2974. projectDirPath = "";
  2975. projectRoot = "";
  2976. targets = (
  2977. F77B0DEB1D118A16002130FE /* Nextcloud */,
  2978. F71459B41D12E3B700CAFEEC /* Share */,
  2979. F771E3CF20E2392D00AFB62D /* File Provider Extension */,
  2980. 2C33C47E23E2C475005F963B /* Notification Service Extension */,
  2981. );
  2982. };
  2983. /* End PBXProject section */
  2984. /* Begin PBXResourcesBuildPhase section */
  2985. 2C33C47D23E2C475005F963B /* Resources */ = {
  2986. isa = PBXResourcesBuildPhase;
  2987. buildActionMask = 2147483647;
  2988. files = (
  2989. );
  2990. runOnlyForDeploymentPostprocessing = 0;
  2991. };
  2992. F7145A181D12E3B700CAFEEC /* Resources */ = {
  2993. isa = PBXResourcesBuildPhase;
  2994. buildActionMask = 2147483647;
  2995. files = (
  2996. F78B9686234F785300F54315 /* NCSelectDestination.storyboard in Resources */,
  2997. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */,
  2998. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */,
  2999. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */,
  3000. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */,
  3001. F700222D1EC479840080073F /* Custom.xcassets in Resources */,
  3002. );
  3003. runOnlyForDeploymentPostprocessing = 0;
  3004. };
  3005. F771E3CE20E2392D00AFB62D /* Resources */ = {
  3006. isa = PBXResourcesBuildPhase;
  3007. buildActionMask = 2147483647;
  3008. files = (
  3009. );
  3010. runOnlyForDeploymentPostprocessing = 0;
  3011. };
  3012. F77B0EE91D118A16002130FE /* Resources */ = {
  3013. isa = PBXResourcesBuildPhase;
  3014. buildActionMask = 2147483647;
  3015. files = (
  3016. F79728D422F96F2E003CACA7 /* NCShareLinkFolderMenuView.xib in Resources */,
  3017. F760F78421F21F61006B1A73 /* ColorCollectionViewCell.xib in Resources */,
  3018. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */,
  3019. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */,
  3020. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */,
  3021. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */,
  3022. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */,
  3023. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */,
  3024. F77D49A91DC238E500CDC568 /* loading.gif in Resources */,
  3025. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */,
  3026. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */,
  3027. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */,
  3028. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */,
  3029. F73B4EF21F470D9100BBEE4B /* EUCTWFreq.tab in Resources */,
  3030. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */,
  3031. F700222C1EC479840080073F /* Custom.xcassets in Resources */,
  3032. F710D20024057E5E00A6033D /* NCActionSheetHeaderView.xib in Resources */,
  3033. F758B45A212C564000515F55 /* Scan.storyboard in Resources */,
  3034. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */,
  3035. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */,
  3036. F73B4EEE1F470D9100BBEE4B /* Big5Freq.tab in Resources */,
  3037. F760F78821F21F61006B1A73 /* PhotoCropEditorBorder@2x.png in Resources */,
  3038. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */,
  3039. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */,
  3040. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */,
  3041. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */,
  3042. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */,
  3043. F760F78521F21F61006B1A73 /* EmojiCollectionViewCell.xib in Resources */,
  3044. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */,
  3045. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */,
  3046. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */,
  3047. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */,
  3048. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */,
  3049. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */,
  3050. F73D71641F2674A400E233EB /* NCText.storyboard in Resources */,
  3051. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */,
  3052. F7632FBF21832F8700721B71 /* NCTrashSectionHeaderMenu.xib in Resources */,
  3053. F739513A221B127F00D986C8 /* NCSectionMediaHeader.xib in Resources */,
  3054. F77B0F481D118A16002130FE /* synchronized.gif in Resources */,
  3055. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */,
  3056. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */,
  3057. F7E0E1DE22327DBA006B0911 /* NCAudioRecorderViewController.storyboard in Resources */,
  3058. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */,
  3059. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */,
  3060. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */,
  3061. F760F78621F21F61006B1A73 /* LaunchScreen.storyboard in Resources */,
  3062. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */,
  3063. F769453E22E9E97E000A798A /* NCShareUserMenuView.xib in Resources */,
  3064. F749C10E23C4A5340027D966 /* NCIntroCollectionViewCell.xib in Resources */,
  3065. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */,
  3066. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */,
  3067. F760F77C21F21F61006B1A73 /* StickersViewController.xib in Resources */,
  3068. F762CB1B1EACB66200B38484 /* XLForm.bundle in Resources */,
  3069. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */,
  3070. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */,
  3071. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */,
  3072. F72382C22295856A005B8A07 /* GoogleMVTextDetectorResources.bundle in Resources */,
  3073. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */,
  3074. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */,
  3075. F760F79721F21F61006B1A73 /* StickerCollectionViewCell.xib in Resources */,
  3076. F749C10D23C4A5340027D966 /* NCIntro.storyboard in Resources */,
  3077. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */,
  3078. F73B4EF31F470D9100BBEE4B /* GB2312Freq.tab in Resources */,
  3079. F7B2DEF11F976859007CF4D2 /* english.txt in Resources */,
  3080. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */,
  3081. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */,
  3082. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */,
  3083. F79728D622F9A0B1003CACA7 /* NCShareUserFolderMenuView.xib in Resources */,
  3084. F7DFAA8A22E22EF100FC4527 /* NCShareLinkMenuView.xib in Resources */,
  3085. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */,
  3086. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */,
  3087. F760F78F21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png in Resources */,
  3088. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */,
  3089. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */,
  3090. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */,
  3091. F774DF0F1FCC26BE002AF9FC /* iTunesArtwork@1x.png in Resources */,
  3092. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */,
  3093. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */,
  3094. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */,
  3095. F77B0F631D118A16002130FE /* Localizable.strings in Resources */,
  3096. F7632FC1218353AA00721B71 /* NCTrashSectionFooter.xib in Resources */,
  3097. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */,
  3098. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */,
  3099. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */,
  3100. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */,
  3101. F73B4EF01F470D9100BBEE4B /* CMakeLists.txt in Resources */,
  3102. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */,
  3103. F73B4F151F470D9100BBEE4B /* symbols.cmake in Resources */,
  3104. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */,
  3105. F774264A22EB4D0000B23912 /* NCShareUserDropDownCell.xib in Resources */,
  3106. F722814323C8C34500C41898 /* NCRichWorkspace.xib in Resources */,
  3107. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */,
  3108. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */,
  3109. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */,
  3110. F760F79021F21F61006B1A73 /* PhotoCropEditorBorder.png in Resources */,
  3111. F78ACD56219047E90088454D /* NCSectionHeader.xib in Resources */,
  3112. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */,
  3113. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */,
  3114. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */,
  3115. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */,
  3116. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */,
  3117. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */,
  3118. F73B4EF41F470D9100BBEE4B /* JISFreq.tab in Resources */,
  3119. F760F77B21F21F61006B1A73 /* icomoon.ttf in Resources */,
  3120. F760F78021F21F61006B1A73 /* PhotoEditorViewController.xib in Resources */,
  3121. F774DF101FCC26BE002AF9FC /* iTunesArtwork@2x.png in Resources */,
  3122. F73B4EF11F470D9100BBEE4B /* EUCKRFreq.tab in Resources */,
  3123. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */,
  3124. F774DF111FCC26BE002AF9FC /* iTunesArtwork@3x.png in Resources */,
  3125. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */,
  3126. );
  3127. runOnlyForDeploymentPostprocessing = 0;
  3128. };
  3129. /* End PBXResourcesBuildPhase section */
  3130. /* Begin PBXShellScriptBuildPhase section */
  3131. F73B02C01DC0F1C900EC2C33 /* ShellScript */ = {
  3132. isa = PBXShellScriptBuildPhase;
  3133. buildActionMask = 2147483647;
  3134. files = (
  3135. );
  3136. inputPaths = (
  3137. );
  3138. outputPaths = (
  3139. );
  3140. runOnlyForDeploymentPostprocessing = 0;
  3141. shellPath = /bin/sh;
  3142. shellScript = "#!/bin/bash\n# buildNumber=$(/usr/libexec/PlistBuddy -c \"Print CFBundleVersion\" \"$INFOPLIST_FILE\")\n# buildNumber=$(echo $buildNumber | sed 's/0*//')\n# buildNumber=$(($buildNumber + 1))\n# buildNumber=$(printf \"%04d\" $buildNumber)\n# /usr/libexec/PlistBuddy -c \"Set :CFBundleVersion $buildNumber\" \"$INFOPLIST_FILE\"\n";
  3143. };
  3144. F75A40001EBCB82B00B213E8 /* ShellScript */ = {
  3145. isa = PBXShellScriptBuildPhase;
  3146. buildActionMask = 2147483647;
  3147. files = (
  3148. );
  3149. inputPaths = (
  3150. "$(SRCROOT)/Carthage/Build/iOS/Sheeeeeeeeet.framework",
  3151. "$(SRCROOT)/Carthage/Build/iOS/TLPhotoPicker.framework",
  3152. "$(SRCROOT)/Carthage/Build/iOS/UICKeyChainStore.framework",
  3153. "$(SRCROOT)/Carthage/Build/iOS/MGSwipeTableCell.framework",
  3154. "$(SRCROOT)/Carthage/Build/iOS/DZNEmptyDataSet.framework",
  3155. "$(SRCROOT)/Carthage/Build/iOS/KTVHTTPCache.framework",
  3156. "$(SRCROOT)/Carthage/Build/iOS/KTVCocoaHTTPServer.framework",
  3157. "$(SRCROOT)/Carthage/Build/iOS/MBProgressHUD.framework",
  3158. "$(SRCROOT)/Carthage/Build/iOS/Realm.framework",
  3159. "$(SRCROOT)/Carthage/Build/iOS/RealmSwift.framework",
  3160. "$(SRCROOT)/Carthage/Build/iOS/SVGKit.framework",
  3161. "$(SRCROOT)/Carthage/Build/iOS/CocoaLumberjack.framework",
  3162. "$(SRCROOT)/Carthage/Build/iOS/CocoaLumberjackSwift.framework",
  3163. "$(SRCROOT)/Carthage/Build/iOS/WeScan.framework",
  3164. "$(SRCROOT)/Carthage/Build/iOS/SwiftRichString.framework",
  3165. "$(SRCROOT)/Carthage/Build/iOS/FastScroll.framework",
  3166. "$(SRCROOT)/Carthage/Build/iOS/QRCodeReader.framework",
  3167. "$(SRCROOT)/Carthage/Build/iOS/AFNetworking.framework",
  3168. "$(SRCROOT)/Carthage/Build/iOS/ZIPFoundation.framework",
  3169. "$(SRCROOT)/Carthage/Build/iOS/Parchment.framework",
  3170. "$(SRCROOT)/Carthage/Build/iOS/FSCalendar.framework",
  3171. "$(SRCROOT)/Carthage/Build/iOS/DropDown.framework",
  3172. "$(SRCROOT)/Carthage/Build/iOS/OpenSSL.framework",
  3173. "$(SRCROOT)/Carthage/Build/iOS/Alamofire.framework",
  3174. "$(SRCROOT)/Carthage/Build/iOS/SwiftyXMLParser.framework",
  3175. "$(SRCROOT)/Carthage/Build/iOS/NCCommunication.framework",
  3176. "$(SRCROOT)/Carthage/Build/iOS/SwiftyJSON.framework",
  3177. "$(SRCROOT)/Carthage/Build/iOS/QuickLayout.framework",
  3178. "$(SRCROOT)/Carthage/Build/iOS/SwiftEntryKit.framework",
  3179. "$(SRCROOT)/Carthage/Build/iOS/FloatingPanel.framework",
  3180. "$(SRCROOT)/Carthage/Build/iOS/MarkdownKit.framework",
  3181. );
  3182. outputPaths = (
  3183. );
  3184. runOnlyForDeploymentPostprocessing = 0;
  3185. shellPath = /bin/sh;
  3186. shellScript = "/usr/local/bin/carthage copy-frameworks\n";
  3187. };
  3188. F7A377371EB24469002856D3 /* ShellScript */ = {
  3189. isa = PBXShellScriptBuildPhase;
  3190. buildActionMask = 2147483647;
  3191. files = (
  3192. );
  3193. inputPaths = (
  3194. );
  3195. outputPaths = (
  3196. );
  3197. runOnlyForDeploymentPostprocessing = 0;
  3198. shellPath = /bin/sh;
  3199. shellScript = "\"${PROJECT_DIR}/Libraries external/Fabric/Fabric.framework/run\" 52fe877f4a4ff58868da789df0b0eb915fd94ae1 3d6e5abfdc40776a4a8468ddf5910958596ccbccc341e19f7aaf0fbeb4ff6cf5\n";
  3200. };
  3201. /* End PBXShellScriptBuildPhase section */
  3202. /* Begin PBXSourcesBuildPhase section */
  3203. 2C33C47B23E2C475005F963B /* Sources */ = {
  3204. isa = PBXSourcesBuildPhase;
  3205. buildActionMask = 2147483647;
  3206. files = (
  3207. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */,
  3208. 2CB7D1C923E2E40B00376EF9 /* NCUtility.swift in Sources */,
  3209. F70CEF5923E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  3210. 2C59AC5A23E2E01A00733BE8 /* OCCapabilities.m in Sources */,
  3211. 2C1D5D7723E2DE5F00334ABB /* CCUtility.m in Sources */,
  3212. 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */,
  3213. 2C1D5D7823E2DE6A00334ABB /* CCGraphics.m in Sources */,
  3214. 2C59AC5B23E2E02700733BE8 /* OCExternalSites.m in Sources */,
  3215. 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */,
  3216. F7D91AAA23FBDED60038FC09 /* NCContentPresenter.swift in Sources */,
  3217. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */,
  3218. 2C59AC5C23E2E03400733BE8 /* OCSharedDto.m in Sources */,
  3219. 2C59AC5923E2E00F00733BE8 /* OCActivity.m in Sources */,
  3220. 2CB7D1CA23E2EDCB00376EF9 /* NCPushNotificationEncryption.m in Sources */,
  3221. 2C1D5D7B23E2DED200334ABB /* NCComments.m in Sources */,
  3222. 2C59AC5823E2DFEE00733BE8 /* OCUserProfile.m in Sources */,
  3223. 2C1D5D7A23E2DEBF00334ABB /* HCFeatures.m in Sources */,
  3224. );
  3225. runOnlyForDeploymentPostprocessing = 0;
  3226. };
  3227. F71459B51D12E3B700CAFEEC /* Sources */ = {
  3228. isa = PBXSourcesBuildPhase;
  3229. buildActionMask = 2147483647;
  3230. files = (
  3231. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */,
  3232. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  3233. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */,
  3234. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */,
  3235. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */,
  3236. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  3237. F70022C01EC4C9100080073F /* OCFileDto.m in Sources */,
  3238. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */,
  3239. F77EB6281EC08036003F814F /* CCExifGeo.m in Sources */,
  3240. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  3241. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  3242. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  3243. F7B6ACD722FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */,
  3244. F70022B71EC4C9100080073F /* OCCapabilities.m in Sources */,
  3245. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3246. F70022FF1EC4C9100080073F /* UtilsFramework.m in Sources */,
  3247. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */,
  3248. F70022BA1EC4C9100080073F /* OCCommunication.m in Sources */,
  3249. F7DFB7E1219C312D00680748 /* NCRichDocumentTemplate.m in Sources */,
  3250. F70022ED1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  3251. F70022D51EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  3252. F70022FC1EC4C9100080073F /* NSString+Encode.m in Sources */,
  3253. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3254. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */,
  3255. F7DBC38023325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */,
  3256. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */,
  3257. F7D2D128230804E000FD3ED7 /* NCXMLListParser.m in Sources */,
  3258. F74E432720B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */,
  3259. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */,
  3260. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */,
  3261. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */,
  3262. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */,
  3263. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */,
  3264. F70022CF1EC4C9100080073F /* OCShareUser.m in Sources */,
  3265. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */,
  3266. F765609023BF813600765969 /* NCContentPresenter.swift in Sources */,
  3267. F70022EA1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  3268. F70022D81EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  3269. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3270. F70022E71EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  3271. F781996A22636BFA00EBDF6A /* HCFeatures.m in Sources */,
  3272. F70022C91EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  3273. F70022C31EC4C9100080073F /* OCNotifications.m in Sources */,
  3274. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */,
  3275. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3276. F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */,
  3277. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3278. F78B9685234F785300F54315 /* NCSelectDestination.m in Sources */,
  3279. F70022B41EC4C9100080073F /* OCActivity.m in Sources */,
  3280. F70022CC1EC4C9100080073F /* OCSharedDto.m in Sources */,
  3281. F70022DB1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  3282. F7B6ACDC22FC2D15008AB646 /* NCComments.m in Sources */,
  3283. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */,
  3284. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  3285. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3286. F70CEF5723E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  3287. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  3288. F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */,
  3289. F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  3290. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3291. F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  3292. );
  3293. runOnlyForDeploymentPostprocessing = 0;
  3294. };
  3295. F771E3CC20E2392D00AFB62D /* Sources */ = {
  3296. isa = PBXSourcesBuildPhase;
  3297. buildActionMask = 2147483647;
  3298. files = (
  3299. F781996B22636BFA00EBDF6A /* HCFeatures.m in Sources */,
  3300. F7434B3C20E2403D00417916 /* OCCommunication.m in Sources */,
  3301. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */,
  3302. F7434B3720E23FF200417916 /* NCUtility.swift in Sources */,
  3303. F7B6ACD822FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */,
  3304. F7434B5120E2409500417916 /* OCXMLServerErrorsParser.m in Sources */,
  3305. F7DFB7E2219C312D00680748 /* NCRichDocumentTemplate.m in Sources */,
  3306. F7434B3A20E2403500417916 /* OCActivity.m in Sources */,
  3307. F7434B6220E249F700417916 /* NSNotificationCenter+MainThread.m in Sources */,
  3308. F7434B3B20E2403900417916 /* OCCapabilities.m in Sources */,
  3309. F7434B4B20E2408000417916 /* NSDate+ISO8601.m in Sources */,
  3310. F7434B4C20E2408300417916 /* NSDate+RFC1123.m in Sources */,
  3311. F7434B5920E241B600417916 /* OCNetworking.m in Sources */,
  3312. F7434B5520E240A900417916 /* UtilsFramework.m in Sources */,
  3313. F75A9EE823796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3314. F7434B4120E2405200417916 /* OCRichObjectStrings.m in Sources */,
  3315. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */,
  3316. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */,
  3317. F7434B4020E2404E00417916 /* OCNotificationsAction.m in Sources */,
  3318. F7434B5320E2409E00417916 /* OCXMLSharedParser.m in Sources */,
  3319. F7434B4320E2405900417916 /* OCShareUser.m in Sources */,
  3320. F7434B5A20E241BB00417916 /* NCNetworkingEndToEnd.m in Sources */,
  3321. F76673EE22C901F6007ED366 /* FileProviderDomain.swift in Sources */,
  3322. F7434B3820E2400600417916 /* NCBrand.swift in Sources */,
  3323. F7434B6320E249FB00417916 /* NSString+TruncateToWidth.m in Sources */,
  3324. F7434B5620E2412900417916 /* CCError.m in Sources */,
  3325. F7434B5C20E241D500417916 /* NCEndToEndEncryption.m in Sources */,
  3326. F7434B3E20E2404700417916 /* OCFileDto.m in Sources */,
  3327. F7434B3D20E2404300417916 /* OCExternalSites.m in Sources */,
  3328. F7D2D129230804E000FD3ED7 /* NCXMLListParser.m in Sources */,
  3329. F7434B4420E2405C00417916 /* OCUserProfile.m in Sources */,
  3330. F7DBC38123325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */,
  3331. F7434B5E20E241EC00417916 /* CCGraphics.m in Sources */,
  3332. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */,
  3333. F70CEF5823E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  3334. F7434B5B20E241D100417916 /* NCEndToEndMetadata.swift in Sources */,
  3335. F7B6ACDD22FC2D15008AB646 /* NCComments.m in Sources */,
  3336. F7434B5D20E241E800417916 /* CCUtility.m in Sources */,
  3337. F7434B5220E2409900417916 /* OCXMLShareByLinkParser.m in Sources */,
  3338. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */,
  3339. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */,
  3340. F716FE7A23795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift in Sources */,
  3341. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */,
  3342. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */,
  3343. F7434B4220E2405500417916 /* OCSharedDto.m in Sources */,
  3344. F7434B3F20E2404B00417916 /* OCNotifications.m in Sources */,
  3345. F7434B6020E2445200417916 /* CCExifGeo.m in Sources */,
  3346. F7434B5420E240A300417916 /* NSString+Encode.m in Sources */,
  3347. F765609123BF813600765969 /* NCContentPresenter.swift in Sources */,
  3348. F7434B4E20E2408A00417916 /* OCWebDAVClient.m in Sources */,
  3349. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */,
  3350. F7434B4D20E2408600417916 /* OCHTTPRequestOperation.m in Sources */,
  3351. F7434B5820E241B100417916 /* CCNetworking.m in Sources */,
  3352. );
  3353. runOnlyForDeploymentPostprocessing = 0;
  3354. };
  3355. F77B0DEF1D118A16002130FE /* Sources */ = {
  3356. isa = PBXSourcesBuildPhase;
  3357. buildActionMask = 2147483647;
  3358. files = (
  3359. F760F79521F21F61006B1A73 /* PhotoEditor+Gestures.swift in Sources */,
  3360. F70022D71EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  3361. F762CAFD1EACB66200B38484 /* XLFormInlineSelectorCell.m in Sources */,
  3362. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */,
  3363. F754EECB21772B6100BB1CDF /* DropdownMenu.swift in Sources */,
  3364. F760F78221F21F61006B1A73 /* PhotoEditor+UITextView.swift in Sources */,
  3365. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */,
  3366. F7E09CE323E3088000FB3E9E /* NCMainRefreshControl.swift in Sources */,
  3367. F77B0DF41D118A16002130FE /* CCMain.m in Sources */,
  3368. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */,
  3369. F7E9C41B20F4CA870040CF18 /* CCTransfers.m in Sources */,
  3370. F73B4F0D1F470D9100BBEE4B /* nsLatin1Prober.cpp in Sources */,
  3371. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */,
  3372. F762CB071EACB66200B38484 /* XLFormOptionsObject.m in Sources */,
  3373. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */,
  3374. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */,
  3375. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */,
  3376. F73B4F041F470D9100BBEE4B /* nsBig5Prober.cpp in Sources */,
  3377. F760F78321F21F61006B1A73 /* UIImageView+Alpha.swift in Sources */,
  3378. F73B4EEF1F470D9100BBEE4B /* CharDistribution.cpp in Sources */,
  3379. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */,
  3380. F710D1FE24057E5E00A6033D /* NCActionSheetHeader.swift in Sources */,
  3381. F754EEC921772B6100BB1CDF /* DropdownItem.swift in Sources */,
  3382. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */,
  3383. F73B4F081F470D9100BBEE4B /* nsEUCJPProber.cpp in Sources */,
  3384. F70022DA1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  3385. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */,
  3386. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */,
  3387. F762CB041EACB66200B38484 /* XLFormSwitchCell.m in Sources */,
  3388. F73B4F0F1F470D9100BBEE4B /* nsMBCSSM.cpp in Sources */,
  3389. F754EECA21772B6100BB1CDF /* DropUpMenu.swift in Sources */,
  3390. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */,
  3391. 37ECC83B23D0C7410082EFA2 /* NCMenuAction.swift in Sources */,
  3392. F73B4EFE1F470D9100BBEE4B /* LangHungarianModel.cpp in Sources */,
  3393. F79018B8240962C7007C9B6D /* MediaBrowserViewController.swift in Sources */,
  3394. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */,
  3395. F760F79921F21F61006B1A73 /* CropViewController.swift in Sources */,
  3396. F70022EC1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  3397. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */,
  3398. F762CB001EACB66200B38484 /* XLFormSegmentedCell.m in Sources */,
  3399. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */,
  3400. F762CB061EACB66200B38484 /* XLFormTextViewCell.m in Sources */,
  3401. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */,
  3402. F78ACD4F2190440D0088454D /* NCLayout.swift in Sources */,
  3403. F760F79C21F21F61006B1A73 /* GradientView.swift in Sources */,
  3404. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */,
  3405. F73B4EF71F470D9100BBEE4B /* LangBulgarianModel.cpp in Sources */,
  3406. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */,
  3407. F79018B7240962C7007C9B6D /* MediaContentView.swift in Sources */,
  3408. F7FB1D3E215E191D00D669EA /* NCViewerDocumentWeb.swift in Sources */,
  3409. F78E7065219F096B006F23E4 /* NCAvatar.swift in Sources */,
  3410. F7DFB7F0219C5B8000680748 /* NCCreateFormUploadAssets.swift in Sources */,
  3411. F762CB0C1EACB66200B38484 /* XLFormSectionDescriptor.m in Sources */,
  3412. F760F79421F21F61006B1A73 /* ResizeControl.swift in Sources */,
  3413. F7DFB7F2219C5C0000680748 /* NCCreateFormUploadFileText.swift in Sources */,
  3414. 371B5A2E23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift in Sources */,
  3415. F760F79121F21F61006B1A73 /* EmojiCollectionViewCell.swift in Sources */,
  3416. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */,
  3417. F77444F8222816D5000D5EB0 /* NCPhotosPickerViewController.swift in Sources */,
  3418. F77B0E141D118A16002130FE /* CCError.m in Sources */,
  3419. F7E09CE523E3088C00FB3E9E /* NCSplitViewController.swift in Sources */,
  3420. F73B4F131F470D9100BBEE4B /* nsUniversalDetector.cpp in Sources */,
  3421. F710D1F724057C9400A6033D /* NCDetailNavigationController.swift in Sources */,
  3422. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */,
  3423. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */,
  3424. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */,
  3425. F760F77E21F21F61006B1A73 /* PhotoEditor+Keyboard.swift in Sources */,
  3426. F73B4F111F470D9100BBEE4B /* nsSBCSGroupProber.cpp in Sources */,
  3427. F7B6ACD622FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */,
  3428. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */,
  3429. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */,
  3430. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */,
  3431. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3432. F760F79D21F21F61006B1A73 /* CropRectView.swift in Sources */,
  3433. F73B4F091F470D9100BBEE4B /* nsEUCKRProber.cpp in Sources */,
  3434. F758B460212C56A400515F55 /* ScanCollectionView.swift in Sources */,
  3435. F762CB021EACB66200B38484 /* XLFormSliderCell.m in Sources */,
  3436. F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */,
  3437. F749C10C23C4A5340027D966 /* NCIntroViewController.swift in Sources */,
  3438. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */,
  3439. F710D2022405826100A6033D /* NCDetailNavigationController+Menu.swift in Sources */,
  3440. F70022CB1EC4C9100080073F /* OCSharedDto.m in Sources */,
  3441. 3757A35523D9D76300EC369E /* NCMenuPanelController.swift in Sources */,
  3442. F7CA1ED320E7E3FE002CC65E /* PKStopDownloadButton.m in Sources */,
  3443. F762CB111EACB66200B38484 /* NSString+XLFormAdditions.m in Sources */,
  3444. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */,
  3445. F762CB081EACB66200B38484 /* XLFormOptionsViewController.m in Sources */,
  3446. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */,
  3447. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  3448. F760F78B21F21F61006B1A73 /* UIImage+Crop.swift in Sources */,
  3449. F73B4F101F470D9100BBEE4B /* nsSBCharSetProber.cpp in Sources */,
  3450. F762CB0E1EACB66200B38484 /* NSExpression+XLFormAdditions.m in Sources */,
  3451. F73B4F071F470D9100BBEE4B /* nsEscSM.cpp in Sources */,
  3452. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */,
  3453. F70022C51EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  3454. F7D6650720FF341600BFBA9E /* NCMainCommon.swift in Sources */,
  3455. F700510522DF6A89003A3356 /* NCShare.swift in Sources */,
  3456. F762CAF81EACB66200B38484 /* XLFormButtonCell.m in Sources */,
  3457. F7CA1ED120E7E3FE002CC65E /* PKCircleProgressView.m in Sources */,
  3458. F762CAFC1EACB66200B38484 /* XLFormImageCell.m in Sources */,
  3459. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */,
  3460. F70022D11EC4C9100080073F /* OCUserProfile.m in Sources */,
  3461. F73B4EF61F470D9100BBEE4B /* LangArabicModel.cpp in Sources */,
  3462. F7CA1ED420E7E3FE002CC65E /* PKPendingView.m in Sources */,
  3463. F7DFB7E0219C312D00680748 /* NCRichDocumentTemplate.m in Sources */,
  3464. F769454222E9F0EE000A798A /* NCShareLinkMenuView.swift in Sources */,
  3465. F73B4F0B1F470D9100BBEE4B /* nsGB2312Prober.cpp in Sources */,
  3466. F762CAFE1EACB66200B38484 /* XLFormLeftRightSelectorCell.m in Sources */,
  3467. F77B0E301D118A16002130FE /* CCHud.m in Sources */,
  3468. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */,
  3469. F70022E91EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  3470. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */,
  3471. F73B4F0E1F470D9100BBEE4B /* nsMBCSGroupProber.cpp in Sources */,
  3472. F73B4F171F470D9100BBEE4B /* uchardet.cpp in Sources */,
  3473. F7B6ACDB22FC2D15008AB646 /* NCComments.m in Sources */,
  3474. F73B4F121F470D9100BBEE4B /* nsSJISProber.cpp in Sources */,
  3475. F760F78121F21F61006B1A73 /* PhotoEditor+StickersViewController.swift in Sources */,
  3476. F760F78D21F21F61006B1A73 /* Protocols.swift in Sources */,
  3477. F762CAFF1EACB66200B38484 /* XLFormPickerCell.m in Sources */,
  3478. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */,
  3479. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */,
  3480. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */,
  3481. F762CB191EACB66200B38484 /* XLFormValidator.m in Sources */,
  3482. F760F78C21F21F61006B1A73 /* StickersViewController.swift in Sources */,
  3483. F762CB0D1EACB66200B38484 /* NSArray+XLFormAdditions.m in Sources */,
  3484. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */,
  3485. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */,
  3486. F760F77D21F21F61006B1A73 /* ColorsCollectionViewDelegate.swift in Sources */,
  3487. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3488. F70022E61EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  3489. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */,
  3490. F762CB171EACB66200B38484 /* XLFormRegexValidator.m in Sources */,
  3491. F760F78721F21F61006B1A73 /* PhotoEditor+Font.swift in Sources */,
  3492. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  3493. F762CB1A1EACB66200B38484 /* XLForm.m in Sources */,
  3494. F73B4EFC1F470D9100BBEE4B /* LangGreekModel.cpp in Sources */,
  3495. F762CB051EACB66200B38484 /* XLFormTextFieldCell.m in Sources */,
  3496. F7B4F1CB1F44356F00B53B42 /* NCUchardet.m in Sources */,
  3497. F78ACD4A21903F850088454D /* NCTrashListCell.swift in Sources */,
  3498. F73B4EFB1F470D9100BBEE4B /* LangGermanModel.cpp in Sources */,
  3499. F73B4F061F470D9100BBEE4B /* nsEscCharsetProber.cpp in Sources */,
  3500. F73B4EFA1F470D9100BBEE4B /* LangFrenchModel.cpp in Sources */,
  3501. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */,
  3502. F762CAF91EACB66200B38484 /* XLFormCheckCell.m in Sources */,
  3503. F762CB101EACB66200B38484 /* NSPredicate+XLFormAdditions.m in Sources */,
  3504. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  3505. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */,
  3506. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */,
  3507. 3781B9B223DB2B9F006B4B1D /* CCMain+Menu.swift in Sources */,
  3508. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */,
  3509. F7417DB3216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift in Sources */,
  3510. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3511. F7DBC37C23325E02001A85BA /* NCAppConfigView.swift in Sources */,
  3512. F762CB141EACB66200B38484 /* XLFormRightImageButton.m in Sources */,
  3513. F73D71621F2673C200E233EB /* NCText.swift in Sources */,
  3514. F73B4EF81F470D9100BBEE4B /* LangDanishModel.cpp in Sources */,
  3515. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */,
  3516. F73B4F051F470D9100BBEE4B /* nsCharSetProber.cpp in Sources */,
  3517. F77B0E671D118A16002130FE /* Reachability.m in Sources */,
  3518. F762CB121EACB66200B38484 /* UIView+XLFormAdditions.m in Sources */,
  3519. F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */,
  3520. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */,
  3521. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3522. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  3523. F754EECC21772B6100BB1CDF /* SectionHeader.swift in Sources */,
  3524. F7B174C822FAC0A8000B7579 /* AppDelegate.m in Sources */,
  3525. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  3526. F749C10B23C4A5340027D966 /* NCIntroCollectionViewCell.swift in Sources */,
  3527. F7DBC37F23325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */,
  3528. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */,
  3529. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */,
  3530. F73B4EF51F470D9100BBEE4B /* JpCntx.cpp in Sources */,
  3531. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3532. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3533. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */,
  3534. F760F79821F21F61006B1A73 /* StickerCollectionViewCell.swift in Sources */,
  3535. F70022FB1EC4C9100080073F /* NSString+Encode.m in Sources */,
  3536. F769454422E9F142000A798A /* NCShareUserMenuView.swift in Sources */,
  3537. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */,
  3538. F762CAFA1EACB66200B38484 /* XLFormDateCell.m in Sources */,
  3539. F70022B91EC4C9100080073F /* OCCommunication.m in Sources */,
  3540. F762CB181EACB66200B38484 /* XLFormValidationStatus.m in Sources */,
  3541. F73B4EF91F470D9100BBEE4B /* LangEsperantoModel.cpp in Sources */,
  3542. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */,
  3543. F7CA1ED720E7E3FE002CC65E /* PKDownloadButton.m in Sources */,
  3544. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */,
  3545. F760F79B21F21F61006B1A73 /* ColorCollectionViewCell.swift in Sources */,
  3546. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */,
  3547. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
  3548. F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */,
  3549. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */,
  3550. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */,
  3551. F760F77F21F21F61006B1A73 /* PhotoEditor+Controls.swift in Sources */,
  3552. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */,
  3553. F7B7504B2397D38F004E13EC /* UIImage+fixedOrientation.swift in Sources */,
  3554. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */,
  3555. F70022C21EC4C9100080073F /* OCNotifications.m in Sources */,
  3556. F70022BF1EC4C9100080073F /* OCFileDto.m in Sources */,
  3557. F7CA1ED020E7E3FE002CC65E /* UIImage+PKDownloadButton.m in Sources */,
  3558. F7D2D127230804E000FD3ED7 /* NCXMLListParser.m in Sources */,
  3559. F7DFB7F4219C5CA800680748 /* NCCreateFormUploadScanDocument.swift in Sources */,
  3560. F73B4F011F470D9100BBEE4B /* LangThaiModel.cpp in Sources */,
  3561. F70022DD1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  3562. F73B4F001F470D9100BBEE4B /* LangSpanishModel.cpp in Sources */,
  3563. F70022BC1EC4C9100080073F /* OCExternalSites.m in Sources */,
  3564. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  3565. F762CB031EACB66200B38484 /* XLFormStepCounterCell.m in Sources */,
  3566. F760F79321F21F61006B1A73 /* CropView.swift in Sources */,
  3567. F762CAF71EACB66200B38484 /* XLFormBaseCell.m in Sources */,
  3568. F760F78A21F21F61006B1A73 /* UIImage+Size.swift in Sources */,
  3569. F710D1FF24057E5E00A6033D /* NCActionSheetHeaderView.swift in Sources */,
  3570. F70022B31EC4C9100080073F /* OCActivity.m in Sources */,
  3571. F7E09CE723E308AD00FB3E9E /* NCMasterNavigationController.swift in Sources */,
  3572. F70022D41EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  3573. F762CB151EACB66200B38484 /* XLFormRowNavigationAccessoryView.m in Sources */,
  3574. F762CB0A1EACB66200B38484 /* XLFormDescriptor.m in Sources */,
  3575. F79018B6240962C7007C9B6D /* DismissAnimationController.swift in Sources */,
  3576. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */,
  3577. F7F4B1D823C74B3E00D82A6E /* NCRichWorkspace.swift in Sources */,
  3578. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */,
  3579. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */,
  3580. F7E0E1DC22327885006B0911 /* NCAudioRecorderViewController.swift in Sources */,
  3581. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */,
  3582. 3781B9B423DB2BC9006B4B1D /* CCFavorites+Menu.swift in Sources */,
  3583. F710D1F924057C9D00A6033D /* NCDetailViewController.swift in Sources */,
  3584. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */,
  3585. F73B4F0C1F470D9100BBEE4B /* nsHebrewProber.cpp in Sources */,
  3586. F762CAFB1EACB66200B38484 /* XLFormDatePickerCell.m in Sources */,
  3587. F762CB0F1EACB66200B38484 /* NSObject+XLFormAdditions.m in Sources */,
  3588. F7B2DEF01F976854007CF4D2 /* NYMnemonic.m in Sources */,
  3589. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */,
  3590. F73B4EFF1F470D9100BBEE4B /* LangRussianModel.cpp in Sources */,
  3591. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3592. F79018B9240962C7007C9B6D /* ContentTransformers.swift in Sources */,
  3593. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */,
  3594. F704FA5C232A343F00BBA952 /* IMImagemeterViewer.swift in Sources */,
  3595. F73B4F031F470D9100BBEE4B /* LangVietnameseModel.cpp in Sources */,
  3596. F73B4F021F470D9100BBEE4B /* LangTurkishModel.cpp in Sources */,
  3597. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */,
  3598. F760F79A21F21F61006B1A73 /* PhotoEditor+Crop.swift in Sources */,
  3599. F7CA1ED220E7E3FE002CC65E /* PKCircleView.m in Sources */,
  3600. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */,
  3601. F760F78E21F21F61006B1A73 /* PhotoEditor+Drawing.swift in Sources */,
  3602. F762CB0B1EACB66200B38484 /* XLFormRowDescriptor.m in Sources */,
  3603. F760F78921F21F61006B1A73 /* UIView+Image.swift in Sources */,
  3604. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */,
  3605. F760F79221F21F61006B1A73 /* EmojisCollectionViewDelegate.swift in Sources */,
  3606. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */,
  3607. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */,
  3608. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */,
  3609. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */,
  3610. F70022B61EC4C9100080073F /* OCCapabilities.m in Sources */,
  3611. F762CB131EACB66200B38484 /* XLFormRightDetailCell.m in Sources */,
  3612. F7CA1ED820E7E3FE002CC65E /* PKBorderedButton.m in Sources */,
  3613. F73B4F0A1F470D9100BBEE4B /* nsEUCTWProber.cpp in Sources */,
  3614. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */,
  3615. F762CB091EACB66200B38484 /* XLFormViewController.m in Sources */,
  3616. F760F79621F21F61006B1A73 /* PhotoEditorViewController.swift in Sources */,
  3617. F762CB161EACB66200B38484 /* XLFormTextView.m in Sources */,
  3618. F70CEF5623E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  3619. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */,
  3620. F79630EE215527D40015EEA5 /* NCViewerMedia.swift in Sources */,
  3621. F7CA1ED620E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m in Sources */,
  3622. F758B45E212C569D00515F55 /* ScanCell.swift in Sources */,
  3623. F781996922636BFA00EBDF6A /* HCFeatures.m in Sources */,
  3624. F70022FE1EC4C9100080073F /* UtilsFramework.m in Sources */,
  3625. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */,
  3626. F7CA1ED920E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m in Sources */,
  3627. F74E432620B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */,
  3628. F73B4F141F470D9100BBEE4B /* nsUTF8Prober.cpp in Sources */,
  3629. F70022C81EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  3630. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
  3631. F7E4D9C422ED929B003675FD /* NCShareComments.swift in Sources */,
  3632. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  3633. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */,
  3634. F73B4EFD1F470D9100BBEE4B /* LangHebrewModel.cpp in Sources */,
  3635. F70022CE1EC4C9100080073F /* OCShareUser.m in Sources */,
  3636. F77B0ED91D118A16002130FE /* main.m in Sources */,
  3637. );
  3638. runOnlyForDeploymentPostprocessing = 0;
  3639. };
  3640. /* End PBXSourcesBuildPhase section */
  3641. /* Begin PBXTargetDependency section */
  3642. 2C33C48523E2C475005F963B /* PBXTargetDependency */ = {
  3643. isa = PBXTargetDependency;
  3644. target = 2C33C47E23E2C475005F963B /* Notification Service Extension */;
  3645. targetProxy = 2C33C48423E2C475005F963B /* PBXContainerItemProxy */;
  3646. };
  3647. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */ = {
  3648. isa = PBXTargetDependency;
  3649. target = F71459B41D12E3B700CAFEEC /* Share */;
  3650. targetProxy = F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */;
  3651. };
  3652. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */ = {
  3653. isa = PBXTargetDependency;
  3654. target = F771E3CF20E2392D00AFB62D /* File Provider Extension */;
  3655. targetProxy = F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */;
  3656. };
  3657. /* End PBXTargetDependency section */
  3658. /* Begin PBXVariantGroup section */
  3659. F760F76221F21F61006B1A73 /* LaunchScreen.storyboard */ = {
  3660. isa = PBXVariantGroup;
  3661. children = (
  3662. F760F76321F21F61006B1A73 /* Base */,
  3663. );
  3664. name = LaunchScreen.storyboard;
  3665. sourceTree = "<group>";
  3666. };
  3667. F7E70DE91A24DE4100E1B66A /* Localizable.strings */ = {
  3668. isa = PBXVariantGroup;
  3669. children = (
  3670. F7151A811D477A4B00E6AF45 /* en */,
  3671. F7B1A7761EBB3C8000BFB6D1 /* de */,
  3672. F75B91E21ECAE17800199C96 /* fr */,
  3673. F75B91F71ECAE26300199C96 /* pt-BR */,
  3674. F75B923D1ECAE55E00199C96 /* ru */,
  3675. F7169A301EE59BB70086BD69 /* it */,
  3676. F7169A4C1EE59C640086BD69 /* tr */,
  3677. F78D6F461F0B7CB9002F9619 /* es-MX */,
  3678. F78D6F4D1F0B7CE4002F9619 /* nb-NO */,
  3679. F78D6F541F0B7D47002F9619 /* pl */,
  3680. F7DE9AB01F482FA5008DFE10 /* sv */,
  3681. F7CC04E61F5AD50D00378CEF /* es */,
  3682. F7D532461F5D4123006568B1 /* is */,
  3683. F7D5324D1F5D4137006568B1 /* nl */,
  3684. F7D532541F5D4155006568B1 /* sk-SK */,
  3685. F7D5328F1F5D443B006568B1 /* en-GB */,
  3686. F7D532A41F5D4461006568B1 /* zh-Hans */,
  3687. F77438EB1FCD694900662C46 /* ka-GE */,
  3688. F77438F21FCD69D300662C46 /* hu */,
  3689. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */,
  3690. F77439001FCD6B7F00662C46 /* sr */,
  3691. F77439071FCD6BF000662C46 /* es-CL */,
  3692. F774390E1FCD6C0C00662C46 /* es-CO */,
  3693. F77439151FCD6C4A00662C46 /* es-CR */,
  3694. F774391C1FCD6C6700662C46 /* es-DO */,
  3695. F77439231FCD6C8700662C46 /* es-EC */,
  3696. F774392A1FCD6CAA00662C46 /* es-GT */,
  3697. F77439311FCD6CC400662C46 /* es-HN */,
  3698. F77439381FCD6CDE00662C46 /* es-NI */,
  3699. F774393F1FCD6D0B00662C46 /* es-PA */,
  3700. F77439461FCD6D2300662C46 /* es-PE */,
  3701. F774394D1FCD6D3E00662C46 /* es-PR */,
  3702. F77439541FCD6D6100662C46 /* es-PY */,
  3703. F774395B1FCD6D8200662C46 /* es-SV */,
  3704. F77439621FCD6D9C00662C46 /* es-UY */,
  3705. F7BB04851FD58ACB00BBFD2A /* cs-CZ */,
  3706. F7320934201B812F008A0888 /* ko */,
  3707. F732093B201B81E4008A0888 /* es-419 */,
  3708. F70A07C8205285FB00DC1231 /* pt-PT */,
  3709. F7E45E6D21E75BF200579249 /* ja-JP */,
  3710. F753701822723D620041C76C /* gl */,
  3711. F753701922723E0D0041C76C /* ca */,
  3712. F753701A22723EC80041C76C /* da */,
  3713. );
  3714. name = Localizable.strings;
  3715. path = "Supporting Files";
  3716. sourceTree = "<group>";
  3717. };
  3718. /* End PBXVariantGroup section */
  3719. /* Begin XCBuildConfiguration section */
  3720. 2C33C48723E2C475005F963B /* Debug */ = {
  3721. isa = XCBuildConfiguration;
  3722. buildSettings = {
  3723. APPLICATION_EXTENSION_API_ONLY = NO;
  3724. CLANG_ANALYZER_NONNULL = YES;
  3725. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3726. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3727. CLANG_ENABLE_OBJC_WEAK = YES;
  3728. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3729. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  3730. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3731. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3732. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3733. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
  3734. CODE_SIGN_IDENTITY = "iPhone Developer";
  3735. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3736. CODE_SIGN_STYLE = Automatic;
  3737. CURRENT_PROJECT_VERSION = 0;
  3738. DEBUG_INFORMATION_FORMAT = dwarf;
  3739. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3740. FRAMEWORK_SEARCH_PATHS = (
  3741. "$(inherited)",
  3742. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3743. );
  3744. GCC_C_LANGUAGE_STANDARD = gnu11;
  3745. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3746. GCC_PREPROCESSOR_DEFINITIONS = (
  3747. "$(inherited)",
  3748. EXTENSION,
  3749. EXTENSION_NOTIFICATION_SERVICE,
  3750. );
  3751. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3752. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
  3753. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3754. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3755. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3756. MARKETING_VERSION = 3.00.0;
  3757. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3758. MTL_FAST_MATH = YES;
  3759. OTHER_LDFLAGS = "-ObjC";
  3760. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  3761. PRODUCT_NAME = "$(TARGET_NAME)";
  3762. SKIP_INSTALL = YES;
  3763. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3764. SWIFT_OBJC_BRIDGING_HEADER = "Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  3765. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3766. SWIFT_VERSION = 5.0;
  3767. TARGETED_DEVICE_FAMILY = "1,2";
  3768. };
  3769. name = Debug;
  3770. };
  3771. 2C33C48823E2C475005F963B /* Release */ = {
  3772. isa = XCBuildConfiguration;
  3773. buildSettings = {
  3774. APPLICATION_EXTENSION_API_ONLY = NO;
  3775. CLANG_ANALYZER_NONNULL = YES;
  3776. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3777. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3778. CLANG_ENABLE_OBJC_WEAK = YES;
  3779. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3780. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  3781. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3782. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3783. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3784. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
  3785. CODE_SIGN_IDENTITY = "iPhone Developer";
  3786. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3787. CODE_SIGN_STYLE = Automatic;
  3788. CURRENT_PROJECT_VERSION = 0;
  3789. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3790. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3791. FRAMEWORK_SEARCH_PATHS = (
  3792. "$(inherited)",
  3793. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3794. );
  3795. GCC_C_LANGUAGE_STANDARD = gnu11;
  3796. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3797. GCC_PREPROCESSOR_DEFINITIONS = (
  3798. "$(inherited)",
  3799. EXTENSION,
  3800. EXTENSION_NOTIFICATION_SERVICE,
  3801. );
  3802. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3803. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
  3804. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3805. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3806. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3807. MARKETING_VERSION = 3.00.0;
  3808. MTL_FAST_MATH = YES;
  3809. OTHER_LDFLAGS = "-ObjC";
  3810. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  3811. PRODUCT_NAME = "$(TARGET_NAME)";
  3812. SKIP_INSTALL = YES;
  3813. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3814. SWIFT_OBJC_BRIDGING_HEADER = "Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  3815. SWIFT_VERSION = 5.0;
  3816. TARGETED_DEVICE_FAMILY = "1,2";
  3817. };
  3818. name = Release;
  3819. };
  3820. F7145A261D12E3B700CAFEEC /* Debug */ = {
  3821. isa = XCBuildConfiguration;
  3822. buildSettings = {
  3823. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3824. APPLICATION_EXTENSION_API_ONLY = NO;
  3825. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  3826. CLANG_ENABLE_MODULES = YES;
  3827. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3828. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  3829. CODE_SIGN_IDENTITY = "iPhone Developer";
  3830. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3831. CURRENT_PROJECT_VERSION = 0;
  3832. DEBUG_INFORMATION_FORMAT = dwarf;
  3833. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3834. FRAMEWORK_SEARCH_PATHS = (
  3835. "$(inherited)",
  3836. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3837. );
  3838. GCC_NO_COMMON_BLOCKS = YES;
  3839. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3840. GCC_PREPROCESSOR_DEFINITIONS = (
  3841. "$(inherited)",
  3842. EXTENSION,
  3843. EXTENSION_SHARE,
  3844. );
  3845. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3846. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  3847. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  3848. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3849. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3850. MARKETING_VERSION = 3.00.0;
  3851. OTHER_LDFLAGS = "-ObjC";
  3852. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  3853. PRODUCT_NAME = "$(TARGET_NAME)";
  3854. SKIP_INSTALL = YES;
  3855. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3856. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  3857. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3858. SWIFT_VERSION = 5.0;
  3859. TARGETED_DEVICE_FAMILY = "1,2";
  3860. USE_HEADERMAP = YES;
  3861. };
  3862. name = Debug;
  3863. };
  3864. F7145A271D12E3B700CAFEEC /* Release */ = {
  3865. isa = XCBuildConfiguration;
  3866. buildSettings = {
  3867. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3868. APPLICATION_EXTENSION_API_ONLY = NO;
  3869. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  3870. CLANG_ENABLE_MODULES = YES;
  3871. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3872. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  3873. CODE_SIGN_IDENTITY = "iPhone Developer";
  3874. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3875. CURRENT_PROJECT_VERSION = 0;
  3876. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3877. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3878. FRAMEWORK_SEARCH_PATHS = (
  3879. "$(inherited)",
  3880. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3881. );
  3882. GCC_NO_COMMON_BLOCKS = YES;
  3883. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3884. GCC_PREPROCESSOR_DEFINITIONS = (
  3885. "$(inherited)",
  3886. EXTENSION,
  3887. EXTENSION_SHARE,
  3888. );
  3889. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3890. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  3891. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  3892. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3893. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3894. MARKETING_VERSION = 3.00.0;
  3895. OTHER_LDFLAGS = "-ObjC";
  3896. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  3897. PRODUCT_NAME = "$(TARGET_NAME)";
  3898. SKIP_INSTALL = YES;
  3899. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3900. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  3901. SWIFT_VERSION = 5.0;
  3902. TARGETED_DEVICE_FAMILY = "1,2";
  3903. USE_HEADERMAP = YES;
  3904. };
  3905. name = Release;
  3906. };
  3907. F771E3F020E2392E00AFB62D /* Debug */ = {
  3908. isa = XCBuildConfiguration;
  3909. buildSettings = {
  3910. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3911. APPLICATION_EXTENSION_API_ONLY = NO;
  3912. CLANG_ANALYZER_NONNULL = YES;
  3913. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3914. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3915. CLANG_ENABLE_OBJC_WEAK = YES;
  3916. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  3917. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  3918. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3919. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3920. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3921. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  3922. CODE_SIGN_IDENTITY = "iPhone Developer";
  3923. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3924. CODE_SIGN_STYLE = Automatic;
  3925. CURRENT_PROJECT_VERSION = 0;
  3926. DEBUG_INFORMATION_FORMAT = dwarf;
  3927. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3928. FRAMEWORK_SEARCH_PATHS = (
  3929. "$(inherited)",
  3930. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3931. );
  3932. GCC_C_LANGUAGE_STANDARD = gnu11;
  3933. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3934. GCC_PREPROCESSOR_DEFINITIONS = (
  3935. "$(inherited)",
  3936. EXTENSION,
  3937. EXTENSION_FILE_PROVIDER_EXTENSION,
  3938. );
  3939. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3940. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  3941. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3942. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3943. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3944. MARKETING_VERSION = 3.00.0;
  3945. OTHER_LDFLAGS = "-ObjC";
  3946. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  3947. PRODUCT_NAME = "$(TARGET_NAME)";
  3948. SKIP_INSTALL = YES;
  3949. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3950. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  3951. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3952. SWIFT_VERSION = 5.0;
  3953. TARGETED_DEVICE_FAMILY = "1,2";
  3954. };
  3955. name = Debug;
  3956. };
  3957. F771E3F120E2392E00AFB62D /* Release */ = {
  3958. isa = XCBuildConfiguration;
  3959. buildSettings = {
  3960. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3961. APPLICATION_EXTENSION_API_ONLY = NO;
  3962. CLANG_ANALYZER_NONNULL = YES;
  3963. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3964. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3965. CLANG_ENABLE_OBJC_WEAK = YES;
  3966. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  3967. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  3968. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3969. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3970. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3971. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  3972. CODE_SIGN_IDENTITY = "iPhone Developer";
  3973. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3974. CODE_SIGN_STYLE = Automatic;
  3975. CURRENT_PROJECT_VERSION = 0;
  3976. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3977. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3978. FRAMEWORK_SEARCH_PATHS = (
  3979. "$(inherited)",
  3980. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3981. );
  3982. GCC_C_LANGUAGE_STANDARD = gnu11;
  3983. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3984. GCC_PREPROCESSOR_DEFINITIONS = (
  3985. "$(inherited)",
  3986. EXTENSION,
  3987. EXTENSION_FILE_PROVIDER_EXTENSION,
  3988. );
  3989. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3990. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  3991. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3992. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3993. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3994. MARKETING_VERSION = 3.00.0;
  3995. OTHER_LDFLAGS = "-ObjC";
  3996. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  3997. PRODUCT_NAME = "$(TARGET_NAME)";
  3998. SKIP_INSTALL = YES;
  3999. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4000. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  4001. SWIFT_VERSION = 5.0;
  4002. TARGETED_DEVICE_FAMILY = "1,2";
  4003. };
  4004. name = Release;
  4005. };
  4006. F77B0F9B1D118A16002130FE /* Debug */ = {
  4007. isa = XCBuildConfiguration;
  4008. buildSettings = {
  4009. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4010. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4011. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4012. CLANG_ENABLE_MODULES = YES;
  4013. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4014. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  4015. CODE_SIGN_IDENTITY = "iPhone Developer";
  4016. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4017. CURRENT_PROJECT_VERSION = 0;
  4018. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4019. ENABLE_BITCODE = YES;
  4020. FRAMEWORK_SEARCH_PATHS = (
  4021. "$(inherited)",
  4022. "$(PROJECT_DIR)/Carthage/Build/iOS",
  4023. "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
  4024. "$(PROJECT_DIR)\"/Libraries external/Firebase\"/**",
  4025. );
  4026. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  4027. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4028. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  4029. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  4030. HEADER_SEARCH_PATHS = "$(PROJECT_DIR)\"/Libraries external/openssl\"";
  4031. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  4032. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4033. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4034. LIBRARY_SEARCH_PATHS = "";
  4035. MARKETING_VERSION = 3.00.0;
  4036. OTHER_LDFLAGS = "-ObjC";
  4037. OTHER_SWIFT_FLAGS = "";
  4038. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4039. PRODUCT_NAME = "$(TARGET_NAME)";
  4040. PROVISIONING_PROFILE = "";
  4041. PROVISIONING_PROFILE_SPECIFIER = "";
  4042. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4043. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  4044. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4045. SWIFT_VERSION = 5.0;
  4046. TARGETED_DEVICE_FAMILY = "1,2";
  4047. USE_HEADERMAP = YES;
  4048. VERSIONING_SYSTEM = "";
  4049. };
  4050. name = Debug;
  4051. };
  4052. F77B0F9C1D118A16002130FE /* Release */ = {
  4053. isa = XCBuildConfiguration;
  4054. buildSettings = {
  4055. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4056. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4057. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4058. CLANG_ENABLE_MODULES = YES;
  4059. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4060. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  4061. CODE_SIGN_IDENTITY = "iPhone Developer";
  4062. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4063. COPY_PHASE_STRIP = NO;
  4064. CURRENT_PROJECT_VERSION = 0;
  4065. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4066. ENABLE_BITCODE = YES;
  4067. FRAMEWORK_SEARCH_PATHS = (
  4068. "$(inherited)",
  4069. "$(PROJECT_DIR)/Carthage/Build/iOS",
  4070. "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
  4071. "$(PROJECT_DIR)\"/Libraries external/Firebase\"/**",
  4072. );
  4073. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  4074. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4075. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  4076. HEADER_SEARCH_PATHS = "$(PROJECT_DIR)\"/Libraries external/openssl\"";
  4077. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  4078. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4079. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4080. LIBRARY_SEARCH_PATHS = "";
  4081. MARKETING_VERSION = 3.00.0;
  4082. OTHER_LDFLAGS = "-ObjC";
  4083. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4084. PRODUCT_NAME = "$(TARGET_NAME)";
  4085. PROVISIONING_PROFILE = "";
  4086. PROVISIONING_PROFILE_SPECIFIER = "";
  4087. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4088. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  4089. SWIFT_VERSION = 5.0;
  4090. TARGETED_DEVICE_FAMILY = "1,2";
  4091. USE_HEADERMAP = YES;
  4092. VERSIONING_SYSTEM = "";
  4093. };
  4094. name = Release;
  4095. };
  4096. F7F67BC91A24D27800EE80DA /* Debug */ = {
  4097. isa = XCBuildConfiguration;
  4098. buildSettings = {
  4099. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4100. ALWAYS_SEARCH_USER_PATHS = NO;
  4101. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4102. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  4103. CLANG_CXX_LIBRARY = "libc++";
  4104. CLANG_ENABLE_MODULES = YES;
  4105. CLANG_ENABLE_OBJC_ARC = YES;
  4106. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4107. CLANG_WARN_BOOL_CONVERSION = YES;
  4108. CLANG_WARN_COMMA = YES;
  4109. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4110. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4111. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4112. CLANG_WARN_EMPTY_BODY = YES;
  4113. CLANG_WARN_ENUM_CONVERSION = YES;
  4114. CLANG_WARN_INFINITE_RECURSION = YES;
  4115. CLANG_WARN_INT_CONVERSION = YES;
  4116. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4117. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4118. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4119. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4120. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4121. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4122. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4123. CLANG_WARN_UNREACHABLE_CODE = YES;
  4124. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4125. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4126. COPY_PHASE_STRIP = NO;
  4127. DEFINES_MODULE = YES;
  4128. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4129. ENABLE_TESTABILITY = YES;
  4130. GCC_C_LANGUAGE_STANDARD = gnu99;
  4131. GCC_DYNAMIC_NO_PIC = NO;
  4132. GCC_NO_COMMON_BLOCKS = YES;
  4133. GCC_OPTIMIZATION_LEVEL = 0;
  4134. GCC_PREPROCESSOR_DEFINITIONS = (
  4135. "$(inherited)",
  4136. DEBUG,
  4137. NC,
  4138. );
  4139. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  4140. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4141. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4142. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4143. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4144. GCC_WARN_UNUSED_FUNCTION = YES;
  4145. GCC_WARN_UNUSED_VARIABLE = YES;
  4146. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4147. MTL_ENABLE_DEBUG_INFO = YES;
  4148. ONLY_ACTIVE_ARCH = YES;
  4149. OTHER_LDFLAGS = (
  4150. "-Obj-C",
  4151. "-all_load",
  4152. );
  4153. SDKROOT = iphoneos;
  4154. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) NC";
  4155. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4156. };
  4157. name = Debug;
  4158. };
  4159. F7F67BCA1A24D27800EE80DA /* Release */ = {
  4160. isa = XCBuildConfiguration;
  4161. buildSettings = {
  4162. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4163. ALWAYS_SEARCH_USER_PATHS = NO;
  4164. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4165. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  4166. CLANG_CXX_LIBRARY = "libc++";
  4167. CLANG_ENABLE_MODULES = YES;
  4168. CLANG_ENABLE_OBJC_ARC = YES;
  4169. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4170. CLANG_WARN_BOOL_CONVERSION = YES;
  4171. CLANG_WARN_COMMA = YES;
  4172. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4173. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4174. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4175. CLANG_WARN_EMPTY_BODY = YES;
  4176. CLANG_WARN_ENUM_CONVERSION = YES;
  4177. CLANG_WARN_INFINITE_RECURSION = YES;
  4178. CLANG_WARN_INT_CONVERSION = YES;
  4179. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4180. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4181. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4182. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4183. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4184. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4185. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4186. CLANG_WARN_UNREACHABLE_CODE = YES;
  4187. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4188. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4189. COPY_PHASE_STRIP = NO;
  4190. DEFINES_MODULE = YES;
  4191. ENABLE_NS_ASSERTIONS = NO;
  4192. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4193. GCC_C_LANGUAGE_STANDARD = gnu99;
  4194. GCC_NO_COMMON_BLOCKS = YES;
  4195. GCC_PREPROCESSOR_DEFINITIONS = (
  4196. "$(inherited)",
  4197. NC,
  4198. );
  4199. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4200. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4201. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4202. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4203. GCC_WARN_UNUSED_FUNCTION = YES;
  4204. GCC_WARN_UNUSED_VARIABLE = YES;
  4205. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4206. MTL_ENABLE_DEBUG_INFO = NO;
  4207. OTHER_LDFLAGS = (
  4208. "-Obj-C",
  4209. "-all_load",
  4210. );
  4211. SDKROOT = iphoneos;
  4212. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG NC";
  4213. SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
  4214. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4215. VALIDATE_PRODUCT = YES;
  4216. };
  4217. name = Release;
  4218. };
  4219. /* End XCBuildConfiguration section */
  4220. /* Begin XCConfigurationList section */
  4221. 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */ = {
  4222. isa = XCConfigurationList;
  4223. buildConfigurations = (
  4224. 2C33C48723E2C475005F963B /* Debug */,
  4225. 2C33C48823E2C475005F963B /* Release */,
  4226. );
  4227. defaultConfigurationIsVisible = 0;
  4228. defaultConfigurationName = Release;
  4229. };
  4230. F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */ = {
  4231. isa = XCConfigurationList;
  4232. buildConfigurations = (
  4233. F7145A261D12E3B700CAFEEC /* Debug */,
  4234. F7145A271D12E3B700CAFEEC /* Release */,
  4235. );
  4236. defaultConfigurationIsVisible = 0;
  4237. defaultConfigurationName = Release;
  4238. };
  4239. F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */ = {
  4240. isa = XCConfigurationList;
  4241. buildConfigurations = (
  4242. F771E3F020E2392E00AFB62D /* Debug */,
  4243. F771E3F120E2392E00AFB62D /* Release */,
  4244. );
  4245. defaultConfigurationIsVisible = 0;
  4246. defaultConfigurationName = Release;
  4247. };
  4248. F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */ = {
  4249. isa = XCConfigurationList;
  4250. buildConfigurations = (
  4251. F77B0F9B1D118A16002130FE /* Debug */,
  4252. F77B0F9C1D118A16002130FE /* Release */,
  4253. );
  4254. defaultConfigurationIsVisible = 0;
  4255. defaultConfigurationName = Release;
  4256. };
  4257. F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */ = {
  4258. isa = XCConfigurationList;
  4259. buildConfigurations = (
  4260. F7F67BC91A24D27800EE80DA /* Debug */,
  4261. F7F67BCA1A24D27800EE80DA /* Release */,
  4262. );
  4263. defaultConfigurationIsVisible = 0;
  4264. defaultConfigurationName = Release;
  4265. };
  4266. /* End XCConfigurationList section */
  4267. };
  4268. rootObject = F7F67BA01A24D27800EE80DA /* Project object */;
  4269. }