project.pbxproj 347 KB

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