project.pbxproj 257 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303
  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. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  12. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C33C48123E2C475005F963B /* NotificationService.swift */; };
  13. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  14. 2CB7D1CA23E2EDCB00376EF9 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  15. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3704EB2923D5A58400455C5B /* NCMenu.storyboard */; };
  16. 371B5A2E23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 371B5A2D23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift */; };
  17. 371B5A3323D0BD5500FAFAE9 /* FloatingPanel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */; };
  18. 3757A35523D9D76300EC369E /* NCMenuPanelController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3757A35423D9D76300EC369E /* NCMenuPanelController.swift */; };
  19. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */; };
  20. 3781B9B223DB2B9F006B4B1D /* CCMain+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9B123DB2B9F006B4B1D /* CCMain+Menu.swift */; };
  21. 3781B9B423DB2BC9006B4B1D /* CCFavorites+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9B323DB2BC9006B4B1D /* CCFavorites+Menu.swift */; };
  22. 37C83A0D24532B7200618A3B /* AppDelegate+Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37C83A0C24532B7200618A3B /* AppDelegate+Swift.swift */; };
  23. 37C83A0F24532BA600618A3B /* CCMain+Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37C83A0E24532BA600618A3B /* CCMain+Swift.swift */; };
  24. 37ECC83B23D0C7410082EFA2 /* NCMenuAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37ECC83A23D0C7400082EFA2 /* NCMenuAction.swift */; };
  25. F70006FA24164F8D00F214A5 /* NCViewerImageVideo.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70006F924164F8D00F214A5 /* NCViewerImageVideo.storyboard */; };
  26. F70006FC2416500B00F214A5 /* NCViewerImageVideo.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70006FB2416500B00F214A5 /* NCViewerImageVideo.swift */; };
  27. F700222C1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  28. F700222D1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  29. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F700510022DF63AC003A3356 /* NCShare.storyboard */; };
  30. F700510322DF6897003A3356 /* Parchment.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F700510222DF6897003A3356 /* Parchment.framework */; };
  31. F700510522DF6A89003A3356 /* NCShare.swift in Sources */ = {isa = PBXBuildFile; fileRef = F700510422DF6A89003A3356 /* NCShare.swift */; };
  32. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */; };
  33. F704B5E32430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */; };
  34. F704B5E52430AA8000632F5F /* NCCreateFormUploadConflict.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */; };
  35. F704B5E72430C06700632F5F /* NCCreateFormUploadConflictCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */; };
  36. F704B5E92430C0B800632F5F /* NCCreateFormUploadConflictCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */; };
  37. F704FA5C232A343F00BBA952 /* IMImagemeterViewer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704FA5B232A343F00BBA952 /* IMImagemeterViewer.swift */; };
  38. F7063DED2199E55F003F38DA /* SVGKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7063DEC2199E55F003F38DA /* SVGKit.framework */; };
  39. F7063DEF2199E568003F38DA /* CocoaLumberjack.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */; };
  40. F7063DF12199E56F003F38DA /* CocoaLumberjackSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */; };
  41. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */ = {isa = PBXBuildFile; fileRef = F707C26421A2DC5200F6181E /* NCStoreReview.swift */; };
  42. F70968A424212C4E00ED60E5 /* NCLivePhoto.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */; };
  43. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  44. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  45. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  46. F70CEF5623E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  47. F70F2BA5225F2D8900EBB73E /* ZIPFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */; };
  48. F710C5F02471A6D1009AD8B7 /* Sentry.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F710C5EF2471A6D1009AD8B7 /* Sentry.framework */; };
  49. F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F42405770F00A6033D /* NCViewerPDF.swift */; };
  50. F710D1F724057C9400A6033D /* NCDetailNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F624057C9400A6033D /* NCDetailNavigationController.swift */; };
  51. F710D1F924057C9D00A6033D /* NCDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F824057C9D00A6033D /* NCDetailViewController.swift */; };
  52. F710D1FE24057E5E00A6033D /* NCActionSheetHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1FB24057E5E00A6033D /* NCActionSheetHeader.swift */; };
  53. F710D1FF24057E5E00A6033D /* NCActionSheetHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1FC24057E5E00A6033D /* NCActionSheetHeaderView.swift */; };
  54. F710D20024057E5E00A6033D /* NCActionSheetHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F710D1FD24057E5E00A6033D /* NCActionSheetHeaderView.xib */; };
  55. F710D2022405826100A6033D /* NCDetailNavigationController+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D2012405826100A6033D /* NCDetailNavigationController+Menu.swift */; };
  56. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */; };
  57. F711CCB0246AC99E0009B204 /* NCRichDocumentTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC76246AC99E0009B204 /* NCRichDocumentTemplate.m */; };
  58. F711CCB1246AC99E0009B204 /* NCRichDocumentTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC76246AC99E0009B204 /* NCRichDocumentTemplate.m */; };
  59. F711CCB2246AC99E0009B204 /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC79246AC99E0009B204 /* OCFileDto.m */; };
  60. F711CCB3246AC99E0009B204 /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC79246AC99E0009B204 /* OCFileDto.m */; };
  61. F711CCB4246AC99E0009B204 /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC7C246AC99E0009B204 /* HCFeatures.m */; };
  62. F711CCB5246AC99E0009B204 /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC7C246AC99E0009B204 /* HCFeatures.m */; };
  63. F711CCB6246AC99E0009B204 /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC7E246AC99E0009B204 /* OCNotificationsAction.m */; };
  64. F711CCB7246AC99E0009B204 /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC7E246AC99E0009B204 /* OCNotificationsAction.m */; };
  65. F711CCB8246AC99E0009B204 /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC7F246AC99E0009B204 /* OCUserProfile.m */; };
  66. F711CCB9246AC99E0009B204 /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC7F246AC99E0009B204 /* OCUserProfile.m */; };
  67. F711CCBA246AC99E0009B204 /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC80246AC99E0009B204 /* OCShareUser.m */; };
  68. F711CCBB246AC99E0009B204 /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC80246AC99E0009B204 /* OCShareUser.m */; };
  69. F711CCBC246AC99E0009B204 /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC86246AC99E0009B204 /* UtilsFramework.m */; };
  70. F711CCBD246AC99E0009B204 /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC86246AC99E0009B204 /* UtilsFramework.m */; };
  71. F711CCBE246AC99E0009B204 /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC87246AC99E0009B204 /* NSString+Encode.m */; };
  72. F711CCBF246AC99E0009B204 /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC87246AC99E0009B204 /* NSString+Encode.m */; };
  73. F711CCC0246AC99E0009B204 /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC88246AC99E0009B204 /* OCRichObjectStrings.m */; };
  74. F711CCC1246AC99E0009B204 /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC88246AC99E0009B204 /* OCRichObjectStrings.m */; };
  75. F711CCC2246AC99E0009B204 /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC89246AC99E0009B204 /* OCExternalSites.m */; };
  76. F711CCC3246AC99E0009B204 /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC89246AC99E0009B204 /* OCExternalSites.m */; };
  77. F711CCC4246AC99E0009B204 /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC8D246AC99E0009B204 /* OCCapabilities.m */; };
  78. F711CCC5246AC99E0009B204 /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC8D246AC99E0009B204 /* OCCapabilities.m */; };
  79. F711CCC6246AC99E0009B204 /* NCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC90246AC99E0009B204 /* NCXMLListParser.m */; };
  80. F711CCC7246AC99E0009B204 /* NCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC90246AC99E0009B204 /* NCXMLListParser.m */; };
  81. F711CCC8246AC99E0009B204 /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC91246AC99E0009B204 /* OCXMLSharedParser.m */; };
  82. F711CCC9246AC99E0009B204 /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC91246AC99E0009B204 /* OCXMLSharedParser.m */; };
  83. F711CCCA246AC99E0009B204 /* NCXMLGetAppPasswordParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC92246AC99E0009B204 /* NCXMLGetAppPasswordParser.m */; };
  84. F711CCCB246AC99E0009B204 /* NCXMLGetAppPasswordParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC92246AC99E0009B204 /* NCXMLGetAppPasswordParser.m */; };
  85. F711CCCC246AC99E0009B204 /* NCXMLCommentsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC93246AC99E0009B204 /* NCXMLCommentsParser.m */; };
  86. F711CCCD246AC99E0009B204 /* NCXMLCommentsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC93246AC99E0009B204 /* NCXMLCommentsParser.m */; };
  87. F711CCCE246AC99E0009B204 /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC94246AC99E0009B204 /* OCXMLShareByLinkParser.m */; };
  88. F711CCCF246AC99E0009B204 /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC94246AC99E0009B204 /* OCXMLShareByLinkParser.m */; };
  89. F711CCD0246AC99E0009B204 /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC95246AC99E0009B204 /* OCXMLServerErrorsParser.m */; };
  90. F711CCD1246AC99E0009B204 /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC95246AC99E0009B204 /* OCXMLServerErrorsParser.m */; };
  91. F711CCD2246AC99E0009B204 /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC9E246AC99E0009B204 /* OCHTTPRequestOperation.m */; };
  92. F711CCD3246AC99E0009B204 /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC9E246AC99E0009B204 /* OCHTTPRequestOperation.m */; };
  93. F711CCD4246AC99E0009B204 /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC9F246AC99E0009B204 /* OCWebDAVClient.m */; };
  94. F711CCD5246AC99E0009B204 /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CC9F246AC99E0009B204 /* OCWebDAVClient.m */; };
  95. F711CCD6246AC99E0009B204 /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCA0246AC99E0009B204 /* NSDate+ISO8601.m */; };
  96. F711CCD7246AC99E0009B204 /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCA0246AC99E0009B204 /* NSDate+ISO8601.m */; };
  97. F711CCD8246AC99E0009B204 /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCA3246AC99E0009B204 /* NSDate+RFC1123.m */; };
  98. F711CCD9246AC99E0009B204 /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCA3246AC99E0009B204 /* NSDate+RFC1123.m */; };
  99. F711CCDA246AC99E0009B204 /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCA4246AC99E0009B204 /* OCActivity.m */; };
  100. F711CCDB246AC99E0009B204 /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCA4246AC99E0009B204 /* OCActivity.m */; };
  101. F711CCDC246AC99E0009B204 /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCA7246AC99E0009B204 /* OCSharedDto.m */; };
  102. F711CCDD246AC99E0009B204 /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCA7246AC99E0009B204 /* OCSharedDto.m */; };
  103. F711CCDE246AC99E0009B204 /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCA8246AC99E0009B204 /* NCComments.m */; };
  104. F711CCDF246AC99E0009B204 /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCA8246AC99E0009B204 /* NCComments.m */; };
  105. F711CCE0246AC99E0009B204 /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCA9246AC99E0009B204 /* OCCommunication.m */; };
  106. F711CCE1246AC99E0009B204 /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCA9246AC99E0009B204 /* OCCommunication.m */; };
  107. F711CCE2246AC99E0009B204 /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCAD246AC99E0009B204 /* OCNotifications.m */; };
  108. F711CCE3246AC99E0009B204 /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CCAD246AC99E0009B204 /* OCNotifications.m */; };
  109. F711CD04246AC9B10009B204 /* DropdownItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F711CCFF246AC9B10009B204 /* DropdownItem.swift */; };
  110. F711CD05246AC9B10009B204 /* DropUpMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F711CD00246AC9B10009B204 /* DropUpMenu.swift */; };
  111. F711CD06246AC9B10009B204 /* DropdownMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F711CD02246AC9B10009B204 /* DropdownMenu.swift */; };
  112. F711CD07246AC9B10009B204 /* SectionHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = F711CD03246AC9B10009B204 /* SectionHeader.swift */; };
  113. F711CD4C246AC9B80009B204 /* NCUchardet.m in Sources */ = {isa = PBXBuildFile; fileRef = F711CD09246AC9B70009B204 /* NCUchardet.m */; };
  114. F711CD4D246AC9B80009B204 /* nsEUCTWProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD0C246AC9B70009B204 /* nsEUCTWProber.cpp */; };
  115. F711CD4E246AC9B80009B204 /* symbols.cmake in Resources */ = {isa = PBXBuildFile; fileRef = F711CD0D246AC9B70009B204 /* symbols.cmake */; };
  116. F711CD4F246AC9B80009B204 /* uchardet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD0E246AC9B70009B204 /* uchardet.cpp */; };
  117. F711CD50246AC9B80009B204 /* CMakeLists.txt in Resources */ = {isa = PBXBuildFile; fileRef = F711CD11246AC9B70009B204 /* CMakeLists.txt */; };
  118. F711CD51246AC9B80009B204 /* nsMBCSGroupProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD12246AC9B70009B204 /* nsMBCSGroupProber.cpp */; };
  119. F711CD52246AC9B80009B204 /* nsSBCSGroupProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD13246AC9B70009B204 /* nsSBCSGroupProber.cpp */; };
  120. F711CD53246AC9B80009B204 /* nsSBCharSetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD17246AC9B70009B204 /* nsSBCharSetProber.cpp */; };
  121. F711CD54246AC9B80009B204 /* nsBig5Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD18246AC9B70009B204 /* nsBig5Prober.cpp */; };
  122. F711CD55246AC9B80009B204 /* EUCTWFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F711CD19246AC9B70009B204 /* EUCTWFreq.tab */; };
  123. F711CD56246AC9B80009B204 /* nsEUCKRProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD1E246AC9B80009B204 /* nsEUCKRProber.cpp */; };
  124. F711CD57246AC9B80009B204 /* nsGB2312Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD1F246AC9B80009B204 /* nsGB2312Prober.cpp */; };
  125. F711CD58246AC9B80009B204 /* nsMBCSSM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD20246AC9B80009B204 /* nsMBCSSM.cpp */; };
  126. F711CD59246AC9B80009B204 /* JpCntx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD22246AC9B80009B204 /* JpCntx.cpp */; };
  127. F711CD5A246AC9B80009B204 /* CharDistribution.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD23246AC9B80009B204 /* CharDistribution.cpp */; };
  128. F711CD5B246AC9B80009B204 /* nsLatin1Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD24246AC9B80009B204 /* nsLatin1Prober.cpp */; };
  129. F711CD5C246AC9B80009B204 /* nsEUCJPProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD25246AC9B80009B204 /* nsEUCJPProber.cpp */; };
  130. F711CD5D246AC9B80009B204 /* JISFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F711CD27246AC9B80009B204 /* JISFreq.tab */; };
  131. F711CD5E246AC9B80009B204 /* nsHebrewProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD29246AC9B80009B204 /* nsHebrewProber.cpp */; };
  132. F711CD5F246AC9B80009B204 /* EUCKRFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F711CD2A246AC9B80009B204 /* EUCKRFreq.tab */; };
  133. F711CD60246AC9B80009B204 /* nsSJISProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD2B246AC9B80009B204 /* nsSJISProber.cpp */; };
  134. F711CD61246AC9B80009B204 /* nsCharSetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD2C246AC9B80009B204 /* nsCharSetProber.cpp */; };
  135. F711CD62246AC9B80009B204 /* LangHungarianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD2E246AC9B80009B204 /* LangHungarianModel.cpp */; };
  136. F711CD63246AC9B80009B204 /* LangVietnameseModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD2F246AC9B80009B204 /* LangVietnameseModel.cpp */; };
  137. F711CD64246AC9B80009B204 /* LangBulgarianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD30246AC9B80009B204 /* LangBulgarianModel.cpp */; };
  138. F711CD65246AC9B80009B204 /* LangFrenchModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD31246AC9B80009B204 /* LangFrenchModel.cpp */; };
  139. F711CD66246AC9B80009B204 /* LangThaiModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD32246AC9B80009B204 /* LangThaiModel.cpp */; };
  140. F711CD67246AC9B80009B204 /* LangSpanishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD33246AC9B80009B204 /* LangSpanishModel.cpp */; };
  141. F711CD68246AC9B80009B204 /* LangArabicModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD34246AC9B80009B204 /* LangArabicModel.cpp */; };
  142. F711CD69246AC9B80009B204 /* LangRussianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD35246AC9B80009B204 /* LangRussianModel.cpp */; };
  143. F711CD6A246AC9B80009B204 /* LangHebrewModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD36246AC9B80009B204 /* LangHebrewModel.cpp */; };
  144. F711CD6B246AC9B80009B204 /* LangEsperantoModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD37246AC9B80009B204 /* LangEsperantoModel.cpp */; };
  145. F711CD6C246AC9B80009B204 /* LangTurkishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD38246AC9B80009B204 /* LangTurkishModel.cpp */; };
  146. F711CD6D246AC9B80009B204 /* LangGermanModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD39246AC9B80009B204 /* LangGermanModel.cpp */; };
  147. F711CD6E246AC9B80009B204 /* LangGreekModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD3A246AC9B80009B204 /* LangGreekModel.cpp */; };
  148. F711CD6F246AC9B80009B204 /* LangDanishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD3B246AC9B80009B204 /* LangDanishModel.cpp */; };
  149. F711CD70246AC9B80009B204 /* Big5Freq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F711CD3C246AC9B80009B204 /* Big5Freq.tab */; };
  150. F711CD71246AC9B80009B204 /* GB2312Freq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F711CD3F246AC9B80009B204 /* GB2312Freq.tab */; };
  151. F711CD72246AC9B80009B204 /* nsUniversalDetector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD42246AC9B80009B204 /* nsUniversalDetector.cpp */; };
  152. F711CD73246AC9B80009B204 /* nsEscCharsetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD43246AC9B80009B204 /* nsEscCharsetProber.cpp */; };
  153. F711CD74246AC9B80009B204 /* nsUTF8Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD45246AC9B80009B204 /* nsUTF8Prober.cpp */; };
  154. F711CD75246AC9B80009B204 /* nsEscSM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F711CD48246AC9B80009B204 /* nsEscSM.cpp */; };
  155. F713FF002472764100214AF6 /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */; };
  156. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  157. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  158. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  159. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C0F46F1C8880540059EC54 /* ShareViewController.m */; };
  160. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  161. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  162. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  163. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  164. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7296A661C8880ED001A7809 /* CCloadItemData.swift */; };
  165. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  166. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  167. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A181EE590930086BD69 /* NCShares.m */; };
  168. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A1A1EE590930086BD69 /* NCSharesCell.m */; };
  169. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7169A1B1EE590930086BD69 /* NCSharesCell.xib */; };
  170. F716FE7823795E5000FABE50 /* NCCommunication.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F716FE7723795E5000FABE50 /* NCCommunication.framework */; settings = {ATTRIBUTES = (Required, ); }; };
  171. F716FE7A23795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F716FE7923795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift */; };
  172. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7226EDB1EE4089300EBECB1 /* Main.storyboard */; };
  173. F722814323C8C34500C41898 /* NCRichWorkspace.xib in Resources */ = {isa = PBXBuildFile; fileRef = F722814223C8C34500C41898 /* NCRichWorkspace.xib */; };
  174. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */; };
  175. F7267A82225DFCE100D6DB7D /* AFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7267A81225DFCE100D6DB7D /* AFNetworking.framework */; };
  176. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */; };
  177. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  178. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */; };
  179. F72E0B9D21AD60BC00898D7B /* WeScan.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F72E0B9C21AD60BC00898D7B /* WeScan.framework */; };
  180. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  181. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  182. F733B65221997CC2001C1FFA /* TLPhotoPicker.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */; };
  183. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */; };
  184. F738143A240FE48D00404AC7 /* NCViewerImageCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7381439240FE48D00404AC7 /* NCViewerImageCommon.swift */; };
  185. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7381EDA218218C9000B1560 /* NCOffline.swift */; };
  186. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7381EDE218218C9000B1560 /* NCOffline.storyboard */; };
  187. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */; };
  188. F739513A221B127F00D986C8 /* NCSectionMediaHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7395139221B127F00D986C8 /* NCSectionMediaHeader.xib */; };
  189. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */; };
  190. F73D5E47246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  191. F73D5E48246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  192. F73D5E49246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  193. F73D5E4A246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  194. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73F537E1E929C8500F8678D /* CCMore.swift */; };
  195. F7417DB3216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */; };
  196. F7421EAF2294044B00C4B7C1 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7421EAE2294044B00C4B7C1 /* Accelerate.framework */; };
  197. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  198. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  199. F7434B3820E2400600417916 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  200. F745B251222D871800346520 /* QRCodeReader.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F745B250222D871800346520 /* QRCodeReader.framework */; };
  201. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F745B252222D88AE00346520 /* NCLoginQRCode.swift */; };
  202. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */; };
  203. F749C10B23C4A5340027D966 /* NCIntroCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */; };
  204. F749C10C23C4A5340027D966 /* NCIntroViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749C10823C4A5330027D966 /* NCIntroViewController.swift */; };
  205. F749C10D23C4A5340027D966 /* NCIntro.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F749C10923C4A5330027D966 /* NCIntro.storyboard */; };
  206. F749C10E23C4A5340027D966 /* NCIntroCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */; };
  207. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  208. F74AFCE922E8B025003DE61F /* FSCalendar.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F74AFCE822E8B024003DE61F /* FSCalendar.framework */; };
  209. F74C4FBB2328C3C200A23E25 /* OpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */; };
  210. F74E432620B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  211. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7501C302212E57400FB1415 /* NCMedia.storyboard */; };
  212. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7501C312212E57400FB1415 /* NCMedia.swift */; };
  213. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037441DBFA91A008FB480 /* ALView+PureLayout.m */; };
  214. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */; };
  215. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */; };
  216. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F755BD9A20594AC7008C5FBB /* NCService.swift */; };
  217. F758B45A212C564000515F55 /* Scan.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F758B457212C564000515F55 /* Scan.storyboard */; };
  218. F758B45E212C569D00515F55 /* ScanCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45D212C569C00515F55 /* ScanCell.swift */; };
  219. F758B460212C56A400515F55 /* ScanCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45F212C56A400515F55 /* ScanCollectionView.swift */; };
  220. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  221. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  222. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */; };
  223. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */; };
  224. F75B0ABD244C4DBB00E58DCA /* NCNetworkingNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75B0ABC244C4DBB00E58DCA /* NCNetworkingNotificationCenter.swift */; };
  225. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */; };
  226. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */; };
  227. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */; };
  228. F7632FBF21832F8700721B71 /* NCTrashSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */; };
  229. F7632FC1218353AA00721B71 /* NCTrashSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */; };
  230. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */; };
  231. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */; };
  232. F765608723BF806D00765969 /* QuickLayout.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F765608623BF806C00765969 /* QuickLayout.framework */; };
  233. F765608B23BF80A400765969 /* SwiftEntryKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F765608A23BF80A400765969 /* SwiftEntryKit.framework */; };
  234. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  235. F765609023BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  236. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EC22C901F5007ED366 /* FileProviderDomain.swift */; };
  237. F76673EE22C901F6007ED366 /* FileProviderDomain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EC22C901F5007ED366 /* FileProviderDomain.swift */; };
  238. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EF22C90433007ED366 /* FileProviderUtility.swift */; };
  239. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */; };
  240. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453B22E9CFFF000A798A /* NCShareUserCell.xib */; };
  241. F769453E22E9E97E000A798A /* NCShareUserMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */; };
  242. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769453F22E9F077000A798A /* NCSharePaging.swift */; };
  243. F769454222E9F0EE000A798A /* NCShareLinkMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */; };
  244. F769454422E9F142000A798A /* NCShareUserMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454322E9F142000A798A /* NCShareUserMenuView.swift */; };
  245. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454522E9F1B0000A798A /* NCShareCommon.swift */; };
  246. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454722E9F20D000A798A /* NCShareNetworking.swift */; };
  247. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  248. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  249. F76D3CF12428B40E005DFA87 /* NCViewerPDFSearch.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */; };
  250. F76D3CF32428B94E005DFA87 /* NCViewerPDFSearchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */; };
  251. F76D3CF52428D0C1005DFA87 /* NCViewerPDF.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */; };
  252. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */; };
  253. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D420E2392D00AFB62D /* FileProviderItem.swift */; };
  254. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */; };
  255. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  256. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F220E239A600AFB62D /* FileProviderData.swift */; };
  257. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */; };
  258. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */; };
  259. F774264122EB3F7300B23912 /* DropDown.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F774264022EB3F7300B23912 /* DropDown.framework */; };
  260. F774264A22EB4D0000B23912 /* NCShareUserDropDownCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */; };
  261. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F322281649000D5EB0 /* NCGridMediaCell.swift */; };
  262. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F77444F422281649000D5EB0 /* NCGridMediaCell.xib */; };
  263. F77444F8222816D5000D5EB0 /* NCPhotosPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F7222816D5000D5EB0 /* NCPhotosPickerViewController.swift */; };
  264. F774DF0F1FCC26BE002AF9FC /* iTunesArtwork@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */; };
  265. F774DF101FCC26BE002AF9FC /* iTunesArtwork@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */; };
  266. F774DF111FCC26BE002AF9FC /* iTunesArtwork@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */; };
  267. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */ = {isa = PBXBuildFile; fileRef = F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */; };
  268. F77B0DF41D118A16002130FE /* CCMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211FB1BAC56E9003FC03E /* CCMain.m */; };
  269. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  270. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  271. F77B0E141D118A16002130FE /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  272. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  273. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BFCCC11B68C21900548E76 /* CCManageLocation.m */; };
  274. F77B0E301D118A16002130FE /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  275. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  276. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */; };
  277. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* CCSettings.m */; };
  278. F77B0E671D118A16002130FE /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  279. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */; };
  280. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */; };
  281. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
  282. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  283. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F51BAC56E9003FC03E /* CCCellMain.m */; };
  284. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
  285. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */ = {isa = PBXBuildFile; fileRef = F777F0311C29717F00CE81CB /* PHAsset+Utility.m */; };
  286. F77B0ED91D118A16002130FE /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F67BAD1A24D27800EE80DA /* main.m */; };
  287. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */; };
  288. F77B0F481D118A16002130FE /* synchronized.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344751BF259A800188725 /* synchronized.gif */; };
  289. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344761BF259A800188725 /* synchronizedcrypto.gif */; };
  290. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */ = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */; };
  291. F77B0F631D118A16002130FE /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  292. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  293. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F61BAC56E9003FC03E /* CCCellMain.xib */; };
  294. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */; };
  295. F77D49A91DC238E500CDC568 /* loading.gif in Resources */ = {isa = PBXBuildFile; fileRef = F77D49A71DC238E500CDC568 /* loading.gif */; };
  296. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  297. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  298. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  299. F785EE9D246196DF00B3F945 /* NCNetworkingE2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */; };
  300. F785EE9E2461A09900B3F945 /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  301. F785EEA32461A23C00B3F945 /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  302. F785EEA42461A4A600B3F945 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  303. F785EEA52461A4CF00B3F945 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  304. F785EEA62461A4FB00B3F945 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  305. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F787704E22E7019900F287A9 /* NCShareLinkCell.xib */; };
  306. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */; };
  307. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */; };
  308. F78AA20621F783E900D0F205 /* SwiftRichString.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F78AA20521F783E900D0F205 /* SwiftRichString.framework */; };
  309. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD3F21903CC20088454D /* NCGridCell.swift */; };
  310. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4121903CE00088454D /* NCListCell.swift */; };
  311. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4321903CF20088454D /* NCListCell.xib */; };
  312. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4521903D010088454D /* NCGridCell.xib */; };
  313. F78ACD4A21903F850088454D /* NCTrashListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4821903F850088454D /* NCTrashListCell.swift */; };
  314. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4921903F850088454D /* NCTrashListCell.xib */; };
  315. F78ACD4F2190440D0088454D /* NCLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4E2190440D0088454D /* NCLayout.swift */; };
  316. F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */; };
  317. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD53219047D40088454D /* NCSectionFooter.xib */; };
  318. F78ACD56219047E90088454D /* NCSectionHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD55219047E90088454D /* NCSectionHeader.xib */; };
  319. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */; };
  320. F78B9685234F785300F54315 /* NCSelectDestination.m in Sources */ = {isa = PBXBuildFile; fileRef = F78B9682234F785300F54315 /* NCSelectDestination.m */; };
  321. F78B9686234F785300F54315 /* NCSelectDestination.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78B9684234F785300F54315 /* NCSelectDestination.storyboard */; };
  322. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */; };
  323. F78E7065219F096B006F23E4 /* NCAvatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E7064219F096B006F23E4 /* NCAvatar.swift */; };
  324. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78F74332163757000C2ADAD /* NCTrash.storyboard */; };
  325. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78F74352163781100C2ADAD /* NCTrash.swift */; };
  326. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */; };
  327. F79018B6240962C7007C9B6D /* NCViewerImageDismissAnimationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79018B2240962C7007C9B6D /* NCViewerImageDismissAnimationController.swift */; };
  328. F79018B7240962C7007C9B6D /* NCViewerImageContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79018B3240962C7007C9B6D /* NCViewerImageContentView.swift */; };
  329. F79018B8240962C7007C9B6D /* NCViewerImageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79018B4240962C7007C9B6D /* NCViewerImageViewController.swift */; };
  330. F79018B9240962C7007C9B6D /* NCViewerImageContentTransformers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79018B5240962C7007C9B6D /* NCViewerImageContentTransformers.swift */; };
  331. F79630EE215527D40015EEA5 /* NCViewerVideo.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79630ED215527D40015EEA5 /* NCViewerVideo.swift */; };
  332. F79728D422F96F2E003CACA7 /* NCShareLinkFolderMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */; };
  333. F79728D622F9A0B1003CACA7 /* NCShareUserFolderMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */; };
  334. F79918A221997FA300C2E308 /* UICKeyChainStore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F79918A021997F9000C2E308 /* UICKeyChainStore.framework */; };
  335. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */; };
  336. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79A65C52191D95E00FF6DCC /* NCSelect.swift */; };
  337. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3214F1E9E2A070069AD1B /* CCFavorites.m */; };
  338. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */; };
  339. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */; };
  340. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */; };
  341. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */; };
  342. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */; };
  343. F7AF7633246BEDFE00B86E3C /* TOPasscodeViewController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7AF7632246BEDFE00B86E3C /* TOPasscodeViewController.framework */; };
  344. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */; };
  345. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */; };
  346. F7B174C822FAC0A8000B7579 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B174C722FAC0A8000B7579 /* AppDelegate.m */; };
  347. F7B2DEF01F976854007CF4D2 /* NYMnemonic.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */; };
  348. F7B2DEF11F976859007CF4D2 /* english.txt in Resources */ = {isa = PBXBuildFile; fileRef = F7B2DEED1F976785007CF4D2 /* english.txt */; };
  349. F7B7504B2397D38F004E13EC /* UIImage+fixedOrientation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+fixedOrientation.swift */; };
  350. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  351. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  352. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  353. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  354. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BF1B401D51E893000854F6 /* CCLogin.m */; };
  355. F7C40BE521998D5B0004137E /* MGSwipeTableCell.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */; };
  356. F7C40BE721998F410004137E /* DZNEmptyDataSet.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */; };
  357. F7C40BEF219994ED0004137E /* KTVCocoaHTTPServer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */; };
  358. F7C40BF1219994F20004137E /* KTVHTTPCache.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BF0219994F20004137E /* KTVHTTPCache.framework */; };
  359. F7C40BF32199978B0004137E /* MBProgressHUD.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BF22199978B0004137E /* MBProgressHUD.framework */; };
  360. F7C40C102199BA5D0004137E /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40C0F2199BA5D0004137E /* Realm.framework */; };
  361. F7C40C122199BA620004137E /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40C112199BA620004137E /* RealmSwift.framework */; };
  362. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C5259F1E3B48B700FFE02C /* CCNotification.swift */; };
  363. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */; };
  364. F7C7B489245EBA4100D93E60 /* NCViewerQuickLook.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */; };
  365. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C9555221F0C4CA0024296E /* NCActivity.storyboard */; };
  366. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9555421F0C5470024296E /* NCActivity.swift */; };
  367. F7CA1ED020E7E3FE002CC65E /* UIImage+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */; };
  368. F7CA1ED120E7E3FE002CC65E /* PKCircleProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */; };
  369. F7CA1ED220E7E3FE002CC65E /* PKCircleView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */; };
  370. F7CA1ED320E7E3FE002CC65E /* PKStopDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */; };
  371. F7CA1ED420E7E3FE002CC65E /* PKPendingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */; };
  372. F7CA1ED620E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */; };
  373. F7CA1ED720E7E3FE002CC65E /* PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */; };
  374. F7CA1ED820E7E3FE002CC65E /* PKBorderedButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */; };
  375. F7CA1ED920E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */; };
  376. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */; };
  377. F7D2C773246470CA008513AE /* XLForm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D2C772246470CA008513AE /* XLForm.framework */; };
  378. F7D6650720FF341600BFBA9E /* NCMainCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D6650620FF341600BFBA9E /* NCMainCommon.swift */; };
  379. F7D96FCC246ED7E200536D73 /* NCNetworkingCheckRemoteUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */; };
  380. F7DBC37C23325E02001A85BA /* NCAppConfigView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */; };
  381. F7DBD82C23E46A4700ECB7C6 /* MarkdownKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */; };
  382. F7DFAA8A22E22EF100FC4527 /* NCShareLinkMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */; };
  383. F7DFB7F0219C5B8000680748 /* NCCreateFormUploadAssets.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */; };
  384. F7DFB7F4219C5CA800680748 /* NCCreateFormUploadScanDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */; };
  385. F7E09CE323E3088000FB3E9E /* NCMainRefreshControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E09CE223E3087F00FB3E9E /* NCMainRefreshControl.swift */; };
  386. F7E09CE523E3088C00FB3E9E /* NCSplitViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E09CE423E3088A00FB3E9E /* NCSplitViewController.swift */; };
  387. F7E09CE723E308AD00FB3E9E /* NCMasterNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E09CE623E308AD00FB3E9E /* NCMasterNavigationController.swift */; };
  388. F7E0E1DC22327885006B0911 /* NCAudioRecorderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E0E1DB22327885006B0911 /* NCAudioRecorderViewController.swift */; };
  389. F7E0E1DE22327DBA006B0911 /* NCAudioRecorderViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7E0E1DD22327DBA006B0911 /* NCAudioRecorderViewController.storyboard */; };
  390. F7E4D9C422ED929B003675FD /* NCShareComments.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E4D9C322ED929B003675FD /* NCShareComments.swift */; };
  391. F7E87CC3241A559E005E8C6F /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  392. F7E9C41B20F4CA870040CF18 /* CCTransfers.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E9C41820F4CA870040CF18 /* CCTransfers.m */; };
  393. F7F4B1D823C74B3E00D82A6E /* NCRichWorkspace.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F4B1D723C74B3E00D82A6E /* NCRichWorkspace.swift */; };
  394. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  395. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  396. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */; };
  397. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */; };
  398. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F7FC7D551DC1F93800BB2C6A /* libz.tbd */; };
  399. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */; };
  400. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */; };
  401. /* End PBXBuildFile section */
  402. /* Begin PBXContainerItemProxy section */
  403. 2C33C48423E2C475005F963B /* PBXContainerItemProxy */ = {
  404. isa = PBXContainerItemProxy;
  405. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  406. proxyType = 1;
  407. remoteGlobalIDString = 2C33C47E23E2C475005F963B;
  408. remoteInfo = "Notification Service Extension";
  409. };
  410. F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */ = {
  411. isa = PBXContainerItemProxy;
  412. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  413. proxyType = 1;
  414. remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
  415. remoteInfo = "Share Ext Nextcloud";
  416. };
  417. F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */ = {
  418. isa = PBXContainerItemProxy;
  419. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  420. proxyType = 1;
  421. remoteGlobalIDString = F771E3CF20E2392D00AFB62D;
  422. remoteInfo = "File Provider Extension";
  423. };
  424. /* End PBXContainerItemProxy section */
  425. /* Begin PBXCopyFilesBuildPhase section */
  426. F77B0F981D118A16002130FE /* Embed App Extensions */ = {
  427. isa = PBXCopyFilesBuildPhase;
  428. buildActionMask = 2147483647;
  429. dstPath = "";
  430. dstSubfolderSpec = 13;
  431. files = (
  432. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */,
  433. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */,
  434. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed App Extensions */,
  435. );
  436. name = "Embed App Extensions";
  437. runOnlyForDeploymentPostprocessing = 0;
  438. };
  439. /* End PBXCopyFilesBuildPhase section */
  440. /* Begin PBXFileReference section */
  441. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  442. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  443. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  444. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  445. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  446. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Notification Service Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  447. 2C33C48123E2C475005F963B /* NotificationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = "<group>"; };
  448. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Notification_Service_Extension-Bridging-Header.h"; sourceTree = "<group>"; };
  449. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCMenu.storyboard; sourceTree = "<group>"; };
  450. 371B5A2D23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainMenuTableViewController.swift; sourceTree = "<group>"; };
  451. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FloatingPanel.framework; path = Carthage/Build/iOS/FloatingPanel.framework; sourceTree = "<group>"; };
  452. 3757A35423D9D76300EC369E /* NCMenuPanelController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenuPanelController.swift; sourceTree = "<group>"; };
  453. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Menu.swift"; sourceTree = "<group>"; };
  454. 3781B9B123DB2B9F006B4B1D /* CCMain+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CCMain+Menu.swift"; sourceTree = "<group>"; };
  455. 3781B9B323DB2BC9006B4B1D /* CCFavorites+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CCFavorites+Menu.swift"; sourceTree = "<group>"; };
  456. 37C83A0C24532B7200618A3B /* AppDelegate+Swift.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Swift.swift"; sourceTree = "<group>"; };
  457. 37C83A0E24532BA600618A3B /* CCMain+Swift.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CCMain+Swift.swift"; sourceTree = "<group>"; };
  458. 37ECC83A23D0C7400082EFA2 /* NCMenuAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenuAction.swift; sourceTree = "<group>"; };
  459. F70006F924164F8D00F214A5 /* NCViewerImageVideo.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerImageVideo.storyboard; sourceTree = "<group>"; };
  460. F70006FB2416500B00F214A5 /* NCViewerImageVideo.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerImageVideo.swift; sourceTree = "<group>"; };
  461. F700222B1EC479840080073F /* Custom.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Custom.xcassets; sourceTree = "<group>"; };
  462. F700510022DF63AC003A3356 /* NCShare.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCShare.storyboard; sourceTree = "<group>"; };
  463. F700510222DF6897003A3356 /* Parchment.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Parchment.framework; path = Carthage/Build/iOS/Parchment.framework; sourceTree = "<group>"; };
  464. F700510422DF6A89003A3356 /* NCShare.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShare.swift; sourceTree = "<group>"; };
  465. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadVoiceNote.swift; sourceTree = "<group>"; };
  466. F70211F51BAC56E9003FC03E /* CCCellMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMain.m; sourceTree = "<group>"; };
  467. F70211F61BAC56E9003FC03E /* CCCellMain.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMain.xib; sourceTree = "<group>"; };
  468. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellMainTransfer.h; sourceTree = "<group>"; };
  469. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMainTransfer.m; sourceTree = "<group>"; };
  470. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMainTransfer.xib; sourceTree = "<group>"; };
  471. F70211FA1BAC56E9003FC03E /* CCMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMain.h; sourceTree = "<group>"; };
  472. F70211FB1BAC56E9003FC03E /* CCMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCMain.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  473. F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCCreateFormUploadConflict.storyboard; sourceTree = "<group>"; };
  474. F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadConflict.swift; sourceTree = "<group>"; };
  475. F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCCreateFormUploadConflictCell.xib; sourceTree = "<group>"; };
  476. F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadConflictCell.swift; sourceTree = "<group>"; };
  477. F704FA5B232A343F00BBA952 /* IMImagemeterViewer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IMImagemeterViewer.swift; sourceTree = "<group>"; };
  478. F7053E3C1C639DF500741EA5 /* CCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
  479. F7053E3D1C639DF500741EA5 /* CCUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
  480. F7063DEC2199E55F003F38DA /* SVGKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SVGKit.framework; path = Carthage/Build/iOS/SVGKit.framework; sourceTree = "<group>"; };
  481. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjack.framework; path = Carthage/Build/iOS/CocoaLumberjack.framework; sourceTree = "<group>"; };
  482. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjackSwift.framework; path = Carthage/Build/iOS/CocoaLumberjackSwift.framework; sourceTree = "<group>"; };
  483. F707C26421A2DC5200F6181E /* NCStoreReview.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCStoreReview.swift; sourceTree = "<group>"; };
  484. F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCLivePhoto.swift; sourceTree = "<group>"; };
  485. F70A07C8205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  486. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtility.swift; sourceTree = "<group>"; };
  487. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCEndToEndEncryption.h; sourceTree = "<group>"; };
  488. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCEndToEndEncryption.m; sourceTree = "<group>"; };
  489. F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+adjust.swift"; sourceTree = "<group>"; };
  490. F70F05251C889184008DAB36 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  491. F70F05261C889184008DAB36 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  492. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ZIPFoundation.framework; path = Carthage/Build/iOS/ZIPFoundation.framework; sourceTree = "<group>"; };
  493. F710C5EF2471A6D1009AD8B7 /* Sentry.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sentry.framework; path = Carthage/Build/iOS/Sentry.framework; sourceTree = "<group>"; };
  494. F710D1F42405770F00A6033D /* NCViewerPDF.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerPDF.swift; sourceTree = "<group>"; };
  495. F710D1F624057C9400A6033D /* NCDetailNavigationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDetailNavigationController.swift; sourceTree = "<group>"; };
  496. F710D1F824057C9D00A6033D /* NCDetailViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDetailViewController.swift; sourceTree = "<group>"; };
  497. F710D1FB24057E5E00A6033D /* NCActionSheetHeader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCActionSheetHeader.swift; sourceTree = "<group>"; };
  498. F710D1FC24057E5E00A6033D /* NCActionSheetHeaderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCActionSheetHeaderView.swift; sourceTree = "<group>"; };
  499. F710D1FD24057E5E00A6033D /* NCActionSheetHeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCActionSheetHeaderView.xib; sourceTree = "<group>"; };
  500. F710D2012405826100A6033D /* NCDetailNavigationController+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCDetailNavigationController+Menu.swift"; sourceTree = "<group>"; };
  501. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ImagesIntro.xcassets; sourceTree = "<group>"; };
  502. F711CC76246AC99E0009B204 /* NCRichDocumentTemplate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCRichDocumentTemplate.m; sourceTree = "<group>"; };
  503. F711CC77246AC99E0009B204 /* OCActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCActivity.h; sourceTree = "<group>"; };
  504. F711CC78246AC99E0009B204 /* OCCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCapabilities.h; sourceTree = "<group>"; };
  505. F711CC79246AC99E0009B204 /* OCFileDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCFileDto.m; sourceTree = "<group>"; };
  506. F711CC7A246AC99E0009B204 /* NCComments.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCComments.h; sourceTree = "<group>"; };
  507. F711CC7B246AC99E0009B204 /* OCSharedDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCSharedDto.h; sourceTree = "<group>"; };
  508. F711CC7C246AC99E0009B204 /* HCFeatures.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HCFeatures.m; sourceTree = "<group>"; };
  509. F711CC7D246AC99E0009B204 /* OCCommunication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCommunication.h; sourceTree = "<group>"; };
  510. F711CC7E246AC99E0009B204 /* OCNotificationsAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotificationsAction.m; sourceTree = "<group>"; };
  511. F711CC7F246AC99E0009B204 /* OCUserProfile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCUserProfile.m; sourceTree = "<group>"; };
  512. F711CC80246AC99E0009B204 /* OCShareUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCShareUser.m; sourceTree = "<group>"; };
  513. F711CC81246AC99E0009B204 /* OCNotifications.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotifications.h; sourceTree = "<group>"; };
  514. F711CC83246AC99E0009B204 /* OCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCConstants.h; sourceTree = "<group>"; };
  515. F711CC84246AC99E0009B204 /* UtilsFramework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilsFramework.h; sourceTree = "<group>"; };
  516. F711CC85246AC99E0009B204 /* NSString+Encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Encode.h"; sourceTree = "<group>"; };
  517. F711CC86246AC99E0009B204 /* UtilsFramework.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UtilsFramework.m; sourceTree = "<group>"; };
  518. F711CC87246AC99E0009B204 /* NSString+Encode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Encode.m"; sourceTree = "<group>"; };
  519. F711CC88246AC99E0009B204 /* OCRichObjectStrings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCRichObjectStrings.m; sourceTree = "<group>"; };
  520. F711CC89246AC99E0009B204 /* OCExternalSites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCExternalSites.m; sourceTree = "<group>"; };
  521. F711CC8A246AC99E0009B204 /* OCFileDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFileDto.h; sourceTree = "<group>"; };
  522. F711CC8B246AC99E0009B204 /* OCFrameworkConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFrameworkConstants.h; sourceTree = "<group>"; };
  523. F711CC8C246AC99E0009B204 /* OCErrorMsg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCErrorMsg.h; sourceTree = "<group>"; };
  524. F711CC8D246AC99E0009B204 /* OCCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCapabilities.m; sourceTree = "<group>"; };
  525. F711CC90246AC99E0009B204 /* NCXMLListParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCXMLListParser.m; sourceTree = "<group>"; };
  526. F711CC91246AC99E0009B204 /* OCXMLSharedParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLSharedParser.m; sourceTree = "<group>"; };
  527. F711CC92246AC99E0009B204 /* NCXMLGetAppPasswordParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCXMLGetAppPasswordParser.m; sourceTree = "<group>"; };
  528. F711CC93246AC99E0009B204 /* NCXMLCommentsParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCXMLCommentsParser.m; sourceTree = "<group>"; };
  529. F711CC94246AC99E0009B204 /* OCXMLShareByLinkParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLShareByLinkParser.m; sourceTree = "<group>"; };
  530. F711CC95246AC99E0009B204 /* OCXMLServerErrorsParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLServerErrorsParser.m; sourceTree = "<group>"; };
  531. F711CC96246AC99E0009B204 /* OCXMLSharedParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLSharedParser.h; sourceTree = "<group>"; };
  532. F711CC97246AC99E0009B204 /* NCXMLListParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCXMLListParser.h; sourceTree = "<group>"; };
  533. F711CC98246AC99E0009B204 /* NCXMLCommentsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCXMLCommentsParser.h; sourceTree = "<group>"; };
  534. F711CC99246AC99E0009B204 /* NCXMLGetAppPasswordParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCXMLGetAppPasswordParser.h; sourceTree = "<group>"; };
  535. F711CC9A246AC99E0009B204 /* OCXMLServerErrorsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLServerErrorsParser.h; sourceTree = "<group>"; };
  536. F711CC9B246AC99E0009B204 /* OCXMLShareByLinkParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLShareByLinkParser.h; sourceTree = "<group>"; };
  537. F711CC9C246AC99E0009B204 /* NSDate+ISO8601.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+ISO8601.h"; sourceTree = "<group>"; };
  538. F711CC9D246AC99E0009B204 /* NSDate+RFC1123.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+RFC1123.h"; sourceTree = "<group>"; };
  539. F711CC9E246AC99E0009B204 /* OCHTTPRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCHTTPRequestOperation.m; sourceTree = "<group>"; };
  540. F711CC9F246AC99E0009B204 /* OCWebDAVClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCWebDAVClient.m; sourceTree = "<group>"; };
  541. F711CCA0246AC99E0009B204 /* NSDate+ISO8601.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+ISO8601.m"; sourceTree = "<group>"; };
  542. F711CCA1246AC99E0009B204 /* OCWebDAVClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCWebDAVClient.h; sourceTree = "<group>"; };
  543. F711CCA2246AC99E0009B204 /* OCHTTPRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCHTTPRequestOperation.h; sourceTree = "<group>"; };
  544. F711CCA3246AC99E0009B204 /* NSDate+RFC1123.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+RFC1123.m"; sourceTree = "<group>"; };
  545. F711CCA4246AC99E0009B204 /* OCActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCActivity.m; sourceTree = "<group>"; };
  546. F711CCA5246AC99E0009B204 /* NCRichDocumentTemplate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCRichDocumentTemplate.h; sourceTree = "<group>"; };
  547. F711CCA6246AC99E0009B204 /* HCFeatures.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HCFeatures.h; sourceTree = "<group>"; };
  548. F711CCA7246AC99E0009B204 /* OCSharedDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCSharedDto.m; sourceTree = "<group>"; };
  549. F711CCA8246AC99E0009B204 /* NCComments.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCComments.m; sourceTree = "<group>"; };
  550. F711CCA9246AC99E0009B204 /* OCCommunication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCommunication.m; sourceTree = "<group>"; };
  551. F711CCAA246AC99E0009B204 /* OCNotificationsAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotificationsAction.h; sourceTree = "<group>"; };
  552. F711CCAB246AC99E0009B204 /* OCExternalSites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCExternalSites.h; sourceTree = "<group>"; };
  553. F711CCAC246AC99E0009B204 /* OCRichObjectStrings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCRichObjectStrings.h; sourceTree = "<group>"; };
  554. F711CCAD246AC99E0009B204 /* OCNotifications.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotifications.m; sourceTree = "<group>"; };
  555. F711CCAE246AC99E0009B204 /* OCShareUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCShareUser.h; sourceTree = "<group>"; };
  556. F711CCAF246AC99E0009B204 /* OCUserProfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCUserProfile.h; sourceTree = "<group>"; };
  557. F711CCFF246AC9B10009B204 /* DropdownItem.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropdownItem.swift; sourceTree = "<group>"; };
  558. F711CD00246AC9B10009B204 /* DropUpMenu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropUpMenu.swift; sourceTree = "<group>"; };
  559. F711CD01246AC9B10009B204 /* DropdownMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DropdownMenu.h; sourceTree = "<group>"; };
  560. F711CD02246AC9B10009B204 /* DropdownMenu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropdownMenu.swift; sourceTree = "<group>"; };
  561. F711CD03246AC9B10009B204 /* SectionHeader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SectionHeader.swift; sourceTree = "<group>"; };
  562. F711CD09246AC9B70009B204 /* NCUchardet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCUchardet.m; sourceTree = "<group>"; };
  563. F711CD0A246AC9B70009B204 /* NCUchardet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCUchardet.h; sourceTree = "<group>"; };
  564. F711CD0C246AC9B70009B204 /* nsEUCTWProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCTWProber.cpp; sourceTree = "<group>"; };
  565. F711CD0D246AC9B70009B204 /* symbols.cmake */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = symbols.cmake; sourceTree = "<group>"; };
  566. F711CD0E246AC9B70009B204 /* uchardet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uchardet.cpp; sourceTree = "<group>"; };
  567. F711CD0F246AC9B70009B204 /* prmem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prmem.h; sourceTree = "<group>"; };
  568. F711CD10246AC9B70009B204 /* CharDistribution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CharDistribution.h; sourceTree = "<group>"; };
  569. F711CD11246AC9B70009B204 /* CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = "<group>"; };
  570. F711CD12246AC9B70009B204 /* nsMBCSGroupProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSGroupProber.cpp; sourceTree = "<group>"; };
  571. F711CD13246AC9B70009B204 /* nsSBCSGroupProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCSGroupProber.cpp; sourceTree = "<group>"; };
  572. F711CD14246AC9B70009B204 /* nsHebrewProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsHebrewProber.h; sourceTree = "<group>"; };
  573. F711CD15246AC9B70009B204 /* nsEUCKRProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCKRProber.h; sourceTree = "<group>"; };
  574. F711CD16246AC9B70009B204 /* nsMBCSGroupProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsMBCSGroupProber.h; sourceTree = "<group>"; };
  575. F711CD17246AC9B70009B204 /* nsSBCharSetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCharSetProber.cpp; sourceTree = "<group>"; };
  576. F711CD18246AC9B70009B204 /* nsBig5Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsBig5Prober.cpp; sourceTree = "<group>"; };
  577. F711CD19246AC9B70009B204 /* EUCTWFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCTWFreq.tab; sourceTree = "<group>"; };
  578. F711CD1A246AC9B70009B204 /* nsEUCJPProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCJPProber.h; sourceTree = "<group>"; };
  579. F711CD1B246AC9B70009B204 /* JpCntx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JpCntx.h; sourceTree = "<group>"; };
  580. F711CD1C246AC9B80009B204 /* nsCodingStateMachine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCodingStateMachine.h; sourceTree = "<group>"; };
  581. F711CD1D246AC9B80009B204 /* nsGB2312Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsGB2312Prober.h; sourceTree = "<group>"; };
  582. F711CD1E246AC9B80009B204 /* nsEUCKRProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCKRProber.cpp; sourceTree = "<group>"; };
  583. F711CD1F246AC9B80009B204 /* nsGB2312Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsGB2312Prober.cpp; sourceTree = "<group>"; };
  584. F711CD20246AC9B80009B204 /* nsMBCSSM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSSM.cpp; sourceTree = "<group>"; };
  585. F711CD21246AC9B80009B204 /* nscore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nscore.h; sourceTree = "<group>"; };
  586. F711CD22246AC9B80009B204 /* JpCntx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JpCntx.cpp; sourceTree = "<group>"; };
  587. F711CD23246AC9B80009B204 /* CharDistribution.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CharDistribution.cpp; sourceTree = "<group>"; };
  588. F711CD24246AC9B80009B204 /* nsLatin1Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsLatin1Prober.cpp; sourceTree = "<group>"; };
  589. F711CD25246AC9B80009B204 /* nsEUCJPProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCJPProber.cpp; sourceTree = "<group>"; };
  590. F711CD26246AC9B80009B204 /* nsCharSetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCharSetProber.h; sourceTree = "<group>"; };
  591. F711CD27246AC9B80009B204 /* JISFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = JISFreq.tab; sourceTree = "<group>"; };
  592. F711CD28246AC9B80009B204 /* nsUTF8Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUTF8Prober.h; sourceTree = "<group>"; };
  593. F711CD29246AC9B80009B204 /* nsHebrewProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsHebrewProber.cpp; sourceTree = "<group>"; };
  594. F711CD2A246AC9B80009B204 /* EUCKRFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCKRFreq.tab; sourceTree = "<group>"; };
  595. F711CD2B246AC9B80009B204 /* nsSJISProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSJISProber.cpp; sourceTree = "<group>"; };
  596. F711CD2C246AC9B80009B204 /* nsCharSetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsCharSetProber.cpp; sourceTree = "<group>"; };
  597. F711CD2E246AC9B80009B204 /* LangHungarianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHungarianModel.cpp; sourceTree = "<group>"; };
  598. F711CD2F246AC9B80009B204 /* LangVietnameseModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangVietnameseModel.cpp; sourceTree = "<group>"; };
  599. F711CD30246AC9B80009B204 /* LangBulgarianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangBulgarianModel.cpp; sourceTree = "<group>"; };
  600. F711CD31246AC9B80009B204 /* LangFrenchModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangFrenchModel.cpp; sourceTree = "<group>"; };
  601. F711CD32246AC9B80009B204 /* LangThaiModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangThaiModel.cpp; sourceTree = "<group>"; };
  602. F711CD33246AC9B80009B204 /* LangSpanishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangSpanishModel.cpp; sourceTree = "<group>"; };
  603. F711CD34246AC9B80009B204 /* LangArabicModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangArabicModel.cpp; sourceTree = "<group>"; };
  604. F711CD35246AC9B80009B204 /* LangRussianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangRussianModel.cpp; sourceTree = "<group>"; };
  605. F711CD36246AC9B80009B204 /* LangHebrewModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHebrewModel.cpp; sourceTree = "<group>"; };
  606. F711CD37246AC9B80009B204 /* LangEsperantoModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangEsperantoModel.cpp; sourceTree = "<group>"; };
  607. F711CD38246AC9B80009B204 /* LangTurkishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangTurkishModel.cpp; sourceTree = "<group>"; };
  608. F711CD39246AC9B80009B204 /* LangGermanModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGermanModel.cpp; sourceTree = "<group>"; };
  609. F711CD3A246AC9B80009B204 /* LangGreekModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGreekModel.cpp; sourceTree = "<group>"; };
  610. F711CD3B246AC9B80009B204 /* LangDanishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangDanishModel.cpp; sourceTree = "<group>"; };
  611. F711CD3C246AC9B80009B204 /* Big5Freq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Big5Freq.tab; sourceTree = "<group>"; };
  612. F711CD3D246AC9B80009B204 /* nsUniversalDetector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUniversalDetector.h; sourceTree = "<group>"; };
  613. F711CD3E246AC9B80009B204 /* nsSBCSGroupProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCSGroupProber.h; sourceTree = "<group>"; };
  614. F711CD3F246AC9B80009B204 /* GB2312Freq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GB2312Freq.tab; sourceTree = "<group>"; };
  615. F711CD40246AC9B80009B204 /* nsSBCharSetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCharSetProber.h; sourceTree = "<group>"; };
  616. F711CD41246AC9B80009B204 /* nsPkgInt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsPkgInt.h; sourceTree = "<group>"; };
  617. F711CD42246AC9B80009B204 /* nsUniversalDetector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUniversalDetector.cpp; sourceTree = "<group>"; };
  618. F711CD43246AC9B80009B204 /* nsEscCharsetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscCharsetProber.cpp; sourceTree = "<group>"; };
  619. F711CD44246AC9B80009B204 /* nsEscCharsetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEscCharsetProber.h; sourceTree = "<group>"; };
  620. F711CD45246AC9B80009B204 /* nsUTF8Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUTF8Prober.cpp; sourceTree = "<group>"; };
  621. F711CD46246AC9B80009B204 /* nsBig5Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsBig5Prober.h; sourceTree = "<group>"; };
  622. F711CD47246AC9B80009B204 /* nsSJISProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSJISProber.h; sourceTree = "<group>"; };
  623. F711CD48246AC9B80009B204 /* nsEscSM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscSM.cpp; sourceTree = "<group>"; };
  624. F711CD49246AC9B80009B204 /* nsLatin1Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsLatin1Prober.h; sourceTree = "<group>"; };
  625. F711CD4A246AC9B80009B204 /* nsEUCTWProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCTWProber.h; sourceTree = "<group>"; };
  626. F711CD4B246AC9B80009B204 /* uchardet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uchardet.h; sourceTree = "<group>"; };
  627. F713FEFE2472764000214AF6 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
  628. F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
  629. F7151A811D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  630. F7169A171EE590930086BD69 /* NCShares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCShares.h; sourceTree = "<group>"; };
  631. F7169A181EE590930086BD69 /* NCShares.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCShares.m; sourceTree = "<group>"; };
  632. F7169A191EE590930086BD69 /* NCSharesCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSharesCell.h; sourceTree = "<group>"; };
  633. F7169A1A1EE590930086BD69 /* NCSharesCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSharesCell.m; sourceTree = "<group>"; };
  634. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSharesCell.xib; sourceTree = "<group>"; };
  635. F7169A301EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  636. F7169A4C1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  637. F716FE7723795E5000FABE50 /* NCCommunication.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = NCCommunication.framework; path = Carthage/Build/iOS/NCCommunication.framework; sourceTree = "<group>"; };
  638. F716FE7923795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+NetworkingDelegate.swift"; sourceTree = "<group>"; };
  639. F7226EDB1EE4089300EBECB1 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  640. F722814223C8C34500C41898 /* NCRichWorkspace.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCRichWorkspace.xib; sourceTree = "<group>"; };
  641. F7229B491DF71BB300E8C4E7 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = SOURCE_ROOT; };
  642. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareCommentsCell.xib; sourceTree = "<group>"; };
  643. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AFNetworking.framework; path = Carthage/Build/iOS/AFNetworking.framework; sourceTree = "<group>"; };
  644. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCEndToEndInitialize.swift; sourceTree = "<group>"; };
  645. F728B2BB23E83AD200E12DA0 /* Notification_Service_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Notification_Service_Extension.plist; sourceTree = "<group>"; };
  646. F728B2BC23E83AD200E12DA0 /* Notification_Service_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Notification_Service_Extension.entitlements; sourceTree = "<group>"; };
  647. F7296A661C8880ED001A7809 /* CCloadItemData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCloadItemData.swift; sourceTree = "<group>"; };
  648. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCPushNotificationEncryption.m; sourceTree = "<group>"; };
  649. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCPushNotificationEncryption.h; sourceTree = "<group>"; };
  650. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerNextcloudText.swift; sourceTree = "<group>"; };
  651. F72E0B9C21AD60BC00898D7B /* WeScan.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WeScan.framework; path = Carthage/Build/iOS/WeScan.framework; sourceTree = "<group>"; };
  652. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+TruncateToWidth.h"; sourceTree = "<group>"; };
  653. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+TruncateToWidth.m"; sourceTree = "<group>"; };
  654. F7320934201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  655. F732093B201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Localizable.strings"; sourceTree = "<group>"; };
  656. F732BA031D76CE1500E9878B /* CCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNetworking.h; sourceTree = "<group>"; };
  657. F732BA041D76CE1500E9878B /* CCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNetworking.m; sourceTree = "<group>"; };
  658. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TLPhotoPicker.framework; path = Carthage/Build/iOS/TLPhotoPicker.framework; sourceTree = "<group>"; };
  659. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
  660. F736B551234DCF57008A5C9F /* Alamofire.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Alamofire.framework; path = Carthage/Build/iOS/Alamofire.framework; sourceTree = "<group>"; };
  661. F7381439240FE48D00404AC7 /* NCViewerImageCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerImageCommon.swift; sourceTree = "<group>"; };
  662. F7381EDA218218C9000B1560 /* NCOffline.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCOffline.swift; sourceTree = "<group>"; };
  663. F7381EDE218218C9000B1560 /* NCOffline.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCOffline.storyboard; sourceTree = "<group>"; };
  664. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCManageEndToEndEncryption.h; sourceTree = "<group>"; };
  665. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCManageEndToEndEncryption.m; sourceTree = "<group>"; };
  666. F7395139221B127F00D986C8 /* NCSectionMediaHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSectionMediaHeader.xib; sourceTree = "<group>"; };
  667. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCShareHeaderView.xib; sourceTree = "<group>"; };
  668. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCBridgeSwift.h; sourceTree = "<group>"; };
  669. F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCElementsJSON.swift; sourceTree = "<group>"; };
  670. F73F537E1E929C8500F8678D /* CCMore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCMore.swift; sourceTree = "<group>"; };
  671. F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrashSectionHeaderFooter.swift; sourceTree = "<group>"; };
  672. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  673. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtension-Bridging-Header.h"; sourceTree = "<group>"; };
  674. F745B250222D871800346520 /* QRCodeReader.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QRCodeReader.framework; path = Carthage/Build/iOS/QRCodeReader.framework; sourceTree = "<group>"; };
  675. F745B252222D88AE00346520 /* NCLoginQRCode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginQRCode.swift; sourceTree = "<group>"; };
  676. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadVoiceNote.storyboard; sourceTree = "<group>"; };
  677. F7496B81208F5651004B299C /* iOSClient.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = iOSClient.plist; sourceTree = "<group>"; };
  678. F7496B83208F5652004B299C /* Share.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Share.plist; sourceTree = "<group>"; };
  679. F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroCollectionViewCell.swift; sourceTree = "<group>"; };
  680. F749C10823C4A5330027D966 /* NCIntroViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroViewController.swift; sourceTree = "<group>"; };
  681. F749C10923C4A5330027D966 /* NCIntro.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCIntro.storyboard; sourceTree = "<group>"; };
  682. F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCIntroCollectionViewCell.xib; sourceTree = "<group>"; };
  683. F74AFCE822E8B024003DE61F /* FSCalendar.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FSCalendar.framework; path = Carthage/Build/iOS/FSCalendar.framework; sourceTree = "<group>"; };
  684. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenSSL.framework; path = Carthage/Build/iOS/OpenSSL.framework; sourceTree = "<group>"; };
  685. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNetworking.h; sourceTree = "<group>"; };
  686. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNetworking.m; sourceTree = "<group>"; };
  687. F74E432420B5547700C2E54C /* NCNetworkingEndToEnd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCNetworkingEndToEnd.h; sourceTree = "<group>"; };
  688. F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCNetworkingEndToEnd.m; sourceTree = "<group>"; };
  689. F7501C302212E57400FB1415 /* NCMedia.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCMedia.storyboard; sourceTree = "<group>"; };
  690. F7501C312212E57400FB1415 /* NCMedia.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMedia.swift; sourceTree = "<group>"; };
  691. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ALView+PureLayout.h"; sourceTree = "<group>"; };
  692. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ALView+PureLayout.m"; sourceTree = "<group>"; };
  693. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+PureLayout.h"; sourceTree = "<group>"; };
  694. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+PureLayout.m"; sourceTree = "<group>"; };
  695. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PureLayout.h"; sourceTree = "<group>"; };
  696. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PureLayout.m"; sourceTree = "<group>"; };
  697. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PureLayout+Internal.h"; sourceTree = "<group>"; };
  698. F750374A1DBFA91A008FB480 /* PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayout.h; sourceTree = "<group>"; };
  699. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayoutDefines.h; sourceTree = "<group>"; };
  700. F7514EDA1C7B1336008F3338 /* CCHud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHud.h; sourceTree = "<group>"; };
  701. F7514EDB1C7B1336008F3338 /* CCHud.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHud.m; sourceTree = "<group>"; };
  702. F75153232226920200323DDC /* FastScroll.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FastScroll.framework; path = Carthage/Build/iOS/FastScroll.framework; sourceTree = "<group>"; };
  703. F753701822723D620041C76C /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
  704. F753701922723E0D0041C76C /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  705. F753701A22723EC80041C76C /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  706. F755BD9A20594AC7008C5FBB /* NCService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCService.swift; sourceTree = "<group>"; };
  707. F758B457212C564000515F55 /* Scan.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Scan.storyboard; sourceTree = "<group>"; };
  708. F758B45D212C569C00515F55 /* ScanCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScanCell.swift; sourceTree = "<group>"; };
  709. F758B45F212C56A400515F55 /* ScanCollectionView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScanCollectionView.swift; sourceTree = "<group>"; };
  710. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworking.swift; sourceTree = "<group>"; };
  711. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageAutoUploadFileName.swift; sourceTree = "<group>"; };
  712. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCLogin.storyboard; sourceTree = "<group>"; };
  713. F75B0ABC244C4DBB00E58DCA /* NCNetworkingNotificationCenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingNotificationCenter.swift; sourceTree = "<group>"; };
  714. F75B91E21ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  715. F75B91F71ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  716. F75B923D1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  717. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRichWorkspaceCommon.swift; sourceTree = "<group>"; };
  718. F75CDBF51DF063AD00116AD0 /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; name = .gitignore; path = ../.gitignore; sourceTree = "<group>"; };
  719. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  720. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
  721. F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCTrashSectionHeaderMenu.xib; sourceTree = "<group>"; };
  722. F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCTrashSectionFooter.xib; sourceTree = "<group>"; };
  723. F76344751BF259A800188725 /* synchronized.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronized.gif; sourceTree = "<group>"; };
  724. F76344761BF259A800188725 /* synchronizedcrypto.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronizedcrypto.gif; sourceTree = "<group>"; };
  725. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadDocuments.storyboard; sourceTree = "<group>"; };
  726. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadDocuments.swift; sourceTree = "<group>"; };
  727. F765608623BF806C00765969 /* QuickLayout.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLayout.framework; path = Carthage/Build/iOS/QuickLayout.framework; sourceTree = "<group>"; };
  728. F765608A23BF80A400765969 /* SwiftEntryKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftEntryKit.framework; path = Carthage/Build/iOS/SwiftEntryKit.framework; sourceTree = "<group>"; };
  729. F765608E23BF813500765969 /* NCContentPresenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCContentPresenter.swift; sourceTree = "<group>"; };
  730. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderDomain.swift; sourceTree = "<group>"; };
  731. F76673EF22C90433007ED366 /* FileProviderUtility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderUtility.swift; sourceTree = "<group>"; };
  732. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainTabBar.swift; sourceTree = "<group>"; };
  733. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserCell.xib; sourceTree = "<group>"; };
  734. F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserMenuView.xib; sourceTree = "<group>"; };
  735. F769453F22E9F077000A798A /* NCSharePaging.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSharePaging.swift; sourceTree = "<group>"; };
  736. F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareLinkMenuView.swift; sourceTree = "<group>"; };
  737. F769454322E9F142000A798A /* NCShareUserMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareUserMenuView.swift; sourceTree = "<group>"; };
  738. F769454522E9F1B0000A798A /* NCShareCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCommon.swift; sourceTree = "<group>"; };
  739. F769454722E9F20D000A798A /* NCShareNetworking.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareNetworking.swift; sourceTree = "<group>"; };
  740. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBrand.swift; sourceTree = "<group>"; };
  741. F76C3B831C6388BC00DC4301 /* CCGraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGraphics.h; sourceTree = "<group>"; };
  742. F76C3B841C6388BC00DC4301 /* CCGraphics.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGraphics.m; sourceTree = "<group>"; };
  743. F76C3B871C638A4C00DC4301 /* CCError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCError.h; sourceTree = "<group>"; };
  744. F76C3B881C638A4C00DC4301 /* CCError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCError.m; sourceTree = "<group>"; };
  745. F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerPDFSearch.swift; sourceTree = "<group>"; };
  746. F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCViewerPDFSearchCell.xib; sourceTree = "<group>"; };
  747. F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCViewerPDF.storyboard; sourceTree = "<group>"; };
  748. F76E71E42244DF6900690001 /* Zip.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Zip.framework; path = Carthage/Build/iOS/Zip.framework; sourceTree = "<group>"; };
  749. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Share-Bridging-Header.h"; sourceTree = "<group>"; };
  750. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  751. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderExtension.swift; sourceTree = "<group>"; };
  752. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderItem.swift; sourceTree = "<group>"; };
  753. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderEnumerator.swift; sourceTree = "<group>"; };
  754. F771E3F220E239A600AFB62D /* FileProviderData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderData.swift; sourceTree = "<group>"; };
  755. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Actions.swift"; sourceTree = "<group>"; };
  756. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Thumbnail.swift"; sourceTree = "<group>"; };
  757. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = File_Provider_Extension.entitlements; sourceTree = "<group>"; };
  758. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = File_Provider_Extension.plist; sourceTree = "<group>"; };
  759. F774264022EB3F7300B23912 /* DropDown.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropDown.framework; path = Carthage/Build/iOS/DropDown.framework; sourceTree = "<group>"; };
  760. F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserDropDownCell.xib; sourceTree = "<group>"; };
  761. F77438EB1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  762. F77438F21FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  763. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Localizable.strings"; sourceTree = "<group>"; };
  764. F77439001FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
  765. F77439071FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Localizable.strings"; sourceTree = "<group>"; };
  766. F774390E1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  767. F77439151FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  768. F774391C1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  769. F77439231FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Localizable.strings"; sourceTree = "<group>"; };
  770. F774392A1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  771. F77439311FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Localizable.strings"; sourceTree = "<group>"; };
  772. F77439381FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Localizable.strings"; sourceTree = "<group>"; };
  773. F774393F1FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Localizable.strings"; sourceTree = "<group>"; };
  774. F77439461FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  775. F774394D1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  776. F77439541FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  777. F774395B1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Localizable.strings"; sourceTree = "<group>"; };
  778. F77439621FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  779. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGridMediaCell.swift; sourceTree = "<group>"; };
  780. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCGridMediaCell.xib; sourceTree = "<group>"; };
  781. F77444F7222816D5000D5EB0 /* NCPhotosPickerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPhotosPickerViewController.swift; sourceTree = "<group>"; };
  782. F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@1x.png"; sourceTree = "<group>"; };
  783. F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@2x.png"; sourceTree = "<group>"; };
  784. F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@3x.png"; sourceTree = "<group>"; };
  785. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+Utility.h"; sourceTree = "<group>"; };
  786. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+Utility.m"; sourceTree = "<group>"; };
  787. F77D49A71DC238E500CDC568 /* loading.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = loading.gif; sourceTree = "<group>"; };
  788. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+MainThread.h"; sourceTree = "<group>"; };
  789. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+MainThread.m"; sourceTree = "<group>"; };
  790. F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EE.swift; sourceTree = "<group>"; };
  791. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkCell.xib; sourceTree = "<group>"; };
  792. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspaceWebView.swift; sourceTree = "<group>"; };
  793. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspace.swift; sourceTree = "<group>"; };
  794. F78AA20521F783E900D0F205 /* SwiftRichString.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftRichString.framework; path = Carthage/Build/iOS/SwiftRichString.framework; sourceTree = "<group>"; };
  795. F78ACD3F21903CC20088454D /* NCGridCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCGridCell.swift; sourceTree = "<group>"; };
  796. F78ACD4121903CE00088454D /* NCListCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCListCell.swift; sourceTree = "<group>"; };
  797. F78ACD4321903CF20088454D /* NCListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCListCell.xib; sourceTree = "<group>"; };
  798. F78ACD4521903D010088454D /* NCGridCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCGridCell.xib; sourceTree = "<group>"; };
  799. F78ACD4821903F850088454D /* NCTrashListCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCTrashListCell.swift; sourceTree = "<group>"; };
  800. F78ACD4921903F850088454D /* NCTrashListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCTrashListCell.xib; sourceTree = "<group>"; };
  801. F78ACD4E2190440D0088454D /* NCLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLayout.swift; sourceTree = "<group>"; };
  802. F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSectionHeaderFooter.swift; sourceTree = "<group>"; };
  803. F78ACD53219047D40088454D /* NCSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionFooter.xib; sourceTree = "<group>"; };
  804. F78ACD55219047E90088454D /* NCSectionHeader.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionHeader.xib; sourceTree = "<group>"; };
  805. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionHeaderMenu.xib; sourceTree = "<group>"; };
  806. F78B9682234F785300F54315 /* NCSelectDestination.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSelectDestination.m; sourceTree = "<group>"; };
  807. F78B9683234F785300F54315 /* NCSelectDestination.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSelectDestination.h; sourceTree = "<group>"; };
  808. F78B9684234F785300F54315 /* NCSelectDestination.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCSelectDestination.storyboard; sourceTree = "<group>"; };
  809. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  810. F78D6F461F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
  811. F78D6F4D1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  812. F78D6F541F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  813. F78E7064219F096B006F23E4 /* NCAvatar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAvatar.swift; sourceTree = "<group>"; };
  814. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSection.h; sourceTree = "<group>"; };
  815. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSection.m; sourceTree = "<group>"; };
  816. F78F74332163757000C2ADAD /* NCTrash.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCTrash.storyboard; sourceTree = "<group>"; };
  817. F78F74352163781100C2ADAD /* NCTrash.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrash.swift; sourceTree = "<group>"; };
  818. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichdocument.swift; sourceTree = "<group>"; };
  819. F79018A424092EF4007C9B6D /* ATGMediaBrowser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ATGMediaBrowser.framework; path = Carthage/Build/iOS/ATGMediaBrowser.framework; sourceTree = "<group>"; };
  820. F79018B2240962C7007C9B6D /* NCViewerImageDismissAnimationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerImageDismissAnimationController.swift; sourceTree = "<group>"; };
  821. F79018B3240962C7007C9B6D /* NCViewerImageContentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerImageContentView.swift; sourceTree = "<group>"; };
  822. F79018B4240962C7007C9B6D /* NCViewerImageViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerImageViewController.swift; sourceTree = "<group>"; };
  823. F79018B5240962C7007C9B6D /* NCViewerImageContentTransformers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerImageContentTransformers.swift; sourceTree = "<group>"; };
  824. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUploadFromOtherUpp.h; sourceTree = "<group>"; };
  825. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUploadFromOtherUpp.m; sourceTree = "<group>"; };
  826. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCUploadFromOtherUpp.storyboard; sourceTree = "<group>"; };
  827. F79630ED215527D40015EEA5 /* NCViewerVideo.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerVideo.swift; sourceTree = "<group>"; };
  828. F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkFolderMenuView.xib; sourceTree = "<group>"; };
  829. F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserFolderMenuView.xib; sourceTree = "<group>"; };
  830. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UICKeyChainStore.framework; path = Carthage/Build/iOS/UICKeyChainStore.framework; sourceTree = "<group>"; };
  831. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sheeeeeeeeet.framework; path = Carthage/Build/iOS/Sheeeeeeeeet.framework; sourceTree = "<group>"; };
  832. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCSelect.storyboard; sourceTree = "<group>"; };
  833. F79A65C52191D95E00FF6DCC /* NCSelect.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSelect.swift; sourceTree = "<group>"; };
  834. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCFavorites.h; sourceTree = "<group>"; };
  835. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCFavorites.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  836. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMenuAccount.h; sourceTree = "<group>"; };
  837. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMenuAccount.m; sourceTree = "<group>"; };
  838. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAdvanced.h; sourceTree = "<group>"; };
  839. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAdvanced.m; sourceTree = "<group>"; };
  840. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCExifGeo.h; sourceTree = "<group>"; };
  841. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCExifGeo.m; sourceTree = "<group>"; };
  842. F7A582D71A24DAB500E903D7 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = AppDelegate.h; sourceTree = "<group>"; };
  843. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
  844. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
  845. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
  846. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
  847. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
  848. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAutoUpload.h; sourceTree = "<group>"; };
  849. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAutoUpload.m; sourceTree = "<group>"; };
  850. F7ACE4301BAC0268006C0017 /* CCSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSettings.h; sourceTree = "<group>"; };
  851. F7ACE4311BAC0268006C0017 /* CCSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSettings.m; sourceTree = "<group>"; };
  852. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginWeb.swift; sourceTree = "<group>"; };
  853. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCBrowserWeb.swift; sourceTree = "<group>"; };
  854. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCBrowserWeb.storyboard; sourceTree = "<group>"; };
  855. F7AF7632246BEDFE00B86E3C /* TOPasscodeViewController.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TOPasscodeViewController.framework; path = Carthage/Build/iOS/TOPasscodeViewController.framework; sourceTree = "<group>"; };
  856. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSynchronize.h; sourceTree = "<group>"; };
  857. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSynchronize.m; sourceTree = "<group>"; };
  858. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCAutoUpload.h; sourceTree = "<group>"; };
  859. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCAutoUpload.m; sourceTree = "<group>"; };
  860. F7B174C722FAC0A8000B7579 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  861. F7B1A7761EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  862. F7B2DEED1F976785007CF4D2 /* english.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = english.txt; sourceTree = "<group>"; };
  863. F7B2DEEE1F976785007CF4D2 /* NYMnemonic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NYMnemonic.h; sourceTree = "<group>"; };
  864. F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NYMnemonic.m; sourceTree = "<group>"; };
  865. F7B7504A2397D38E004E13EC /* UIImage+fixedOrientation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+fixedOrientation.swift"; sourceTree = "<group>"; };
  866. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDatabase.swift; sourceTree = "<group>"; };
  867. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageDatabase.swift; sourceTree = "<group>"; };
  868. F7BB04851FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Localizable.strings"; sourceTree = "<group>"; };
  869. F7BF1B3F1D51E893000854F6 /* CCLogin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLogin.h; sourceTree = "<group>"; };
  870. F7BF1B401D51E893000854F6 /* CCLogin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLogin.m; sourceTree = "<group>"; };
  871. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageLocation.h; sourceTree = "<group>"; };
  872. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageLocation.m; sourceTree = "<group>"; };
  873. F7C0F46E1C8880540059EC54 /* ShareViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = ShareViewController.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  874. F7C0F46F1C8880540059EC54 /* ShareViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = ShareViewController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  875. F7C40BE221998C050004137E /* PDFGenerator.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PDFGenerator.framework; path = Carthage/Build/iOS/PDFGenerator.framework; sourceTree = "<group>"; };
  876. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MGSwipeTableCell.framework; path = Carthage/Build/iOS/MGSwipeTableCell.framework; sourceTree = "<group>"; };
  877. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DZNEmptyDataSet.framework; path = Carthage/Build/iOS/DZNEmptyDataSet.framework; sourceTree = "<group>"; };
  878. F7C40BE8219991A60004137E /* EAIntroView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EAIntroView.framework; path = Carthage/Build/iOS/EAIntroView.framework; sourceTree = "<group>"; };
  879. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EARestrictedScrollView.framework; path = Carthage/Build/iOS/EARestrictedScrollView.framework; sourceTree = "<group>"; };
  880. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JDStatusBarNotification.framework; path = Carthage/Build/iOS/JDStatusBarNotification.framework; sourceTree = "<group>"; };
  881. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVCocoaHTTPServer.framework; path = Carthage/Build/iOS/KTVCocoaHTTPServer.framework; sourceTree = "<group>"; };
  882. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVHTTPCache.framework; path = Carthage/Build/iOS/KTVHTTPCache.framework; sourceTree = "<group>"; };
  883. F7C40BF22199978B0004137E /* MBProgressHUD.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MBProgressHUD.framework; path = Carthage/Build/iOS/MBProgressHUD.framework; sourceTree = "<group>"; };
  884. F7C40C0F2199BA5D0004137E /* Realm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Realm.framework; path = Carthage/Build/iOS/Realm.framework; sourceTree = "<group>"; };
  885. F7C40C112199BA620004137E /* RealmSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RealmSwift.framework; path = Carthage/Build/iOS/RealmSwift.framework; sourceTree = "<group>"; };
  886. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CCNotification.swift; path = Notification/CCNotification.swift; sourceTree = "<group>"; };
  887. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CCNotification.storyboard; path = Notification/CCNotification.storyboard; sourceTree = "<group>"; };
  888. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = iOSClient.entitlements; sourceTree = "<group>"; };
  889. F7C742D01E7BD35B00D9C973 /* Share.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Share.entitlements; sourceTree = "<group>"; };
  890. F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerQuickLook.swift; sourceTree = "<group>"; };
  891. F7C8C1901B482CEA0048180E /* CCGlobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGlobal.h; sourceTree = "<group>"; };
  892. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCActivity.storyboard; sourceTree = "<group>"; };
  893. F7C9555421F0C5470024296E /* NCActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivity.swift; sourceTree = "<group>"; };
  894. F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+PKDownloadButton.m"; sourceTree = "<group>"; };
  895. F7CA1EBD20E7E3FE002CC65E /* PKBorderedButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKBorderedButton.h; sourceTree = "<group>"; };
  896. F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKCircleProgressView.m; sourceTree = "<group>"; };
  897. F7CA1EBF20E7E3FE002CC65E /* PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKDownloadButton.h; sourceTree = "<group>"; };
  898. F7CA1EC020E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+PKDownloadButtonAnimations.h"; sourceTree = "<group>"; };
  899. F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKCircleView.m; sourceTree = "<group>"; };
  900. F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKStopDownloadButton.m; sourceTree = "<group>"; };
  901. F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKPendingView.m; sourceTree = "<group>"; };
  902. F7CA1EC420E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PKDownloadButton.h"; sourceTree = "<group>"; };
  903. F7CA1EC620E7E3FE002CC65E /* PKMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKMacros.h; sourceTree = "<group>"; };
  904. F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+PKDownloadButtonAnimations.m"; sourceTree = "<group>"; };
  905. F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKDownloadButton.m; sourceTree = "<group>"; };
  906. F7CA1EC920E7E3FE002CC65E /* PKCircleProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKCircleProgressView.h; sourceTree = "<group>"; };
  907. F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKBorderedButton.m; sourceTree = "<group>"; };
  908. F7CA1ECB20E7E3FE002CC65E /* UIImage+PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+PKDownloadButton.h"; sourceTree = "<group>"; };
  909. F7CA1ECC20E7E3FE002CC65E /* PKStopDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKStopDownloadButton.h; sourceTree = "<group>"; };
  910. F7CA1ECD20E7E3FE002CC65E /* PKCircleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKCircleView.h; sourceTree = "<group>"; };
  911. F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PKDownloadButton.m"; sourceTree = "<group>"; };
  912. F7CA1ECF20E7E3FE002CC65E /* PKPendingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKPendingView.h; sourceTree = "<group>"; };
  913. F7CC04E61F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  914. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
  915. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  916. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
  917. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerRichWorkspace.storyboard; sourceTree = "<group>"; };
  918. F7D2C772246470CA008513AE /* XLForm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XLForm.framework; path = Carthage/Build/iOS/XLForm.framework; sourceTree = "<group>"; };
  919. F7D532461F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Localizable.strings; sourceTree = "<group>"; };
  920. F7D5324D1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  921. F7D532541F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Localizable.strings"; sourceTree = "<group>"; };
  922. F7D5328F1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
  923. F7D532A41F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  924. F7D6650620FF341600BFBA9E /* NCMainCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainCommon.swift; sourceTree = "<group>"; };
  925. F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworkingCheckRemoteUser.swift; sourceTree = "<group>"; };
  926. F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAppConfigView.swift; sourceTree = "<group>"; };
  927. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MarkdownKit.framework; path = Carthage/Build/iOS/MarkdownKit.framework; sourceTree = "<group>"; };
  928. F7DE9AB01F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  929. F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkMenuView.xib; sourceTree = "<group>"; };
  930. F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadAssets.swift; sourceTree = "<group>"; };
  931. F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadScanDocument.swift; sourceTree = "<group>"; };
  932. F7E09CE223E3087F00FB3E9E /* NCMainRefreshControl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMainRefreshControl.swift; sourceTree = "<group>"; };
  933. F7E09CE423E3088A00FB3E9E /* NCSplitViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCSplitViewController.swift; sourceTree = "<group>"; };
  934. F7E09CE623E308AD00FB3E9E /* NCMasterNavigationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMasterNavigationController.swift; sourceTree = "<group>"; };
  935. F7E0E1DB22327885006B0911 /* NCAudioRecorderViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAudioRecorderViewController.swift; sourceTree = "<group>"; };
  936. F7E0E1DD22327DBA006B0911 /* NCAudioRecorderViewController.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCAudioRecorderViewController.storyboard; sourceTree = "<group>"; };
  937. F7E45E6D21E75BF200579249 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/Localizable.strings"; sourceTree = "<group>"; };
  938. F7E4D9C322ED929B003675FD /* NCShareComments.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareComments.swift; sourceTree = "<group>"; };
  939. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftyXMLParser.framework; path = Carthage/Build/iOS/SwiftyXMLParser.framework; sourceTree = "<group>"; };
  940. F7E9C41520F4CA870040CF18 /* CCTransfers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransfers.h; sourceTree = "<group>"; };
  941. F7E9C41820F4CA870040CF18 /* CCTransfers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTransfers.m; sourceTree = "<group>"; };
  942. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CryptoCloud.pch; sourceTree = "<group>"; };
  943. F7F4B1D723C74B3E00D82A6E /* NCRichWorkspace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRichWorkspace.swift; sourceTree = "<group>"; };
  944. F7F67BAD1A24D27800EE80DA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  945. F7F67BB81A24D27800EE80DA /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  946. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEndToEndMetadata.swift; sourceTree = "<group>"; };
  947. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellShareExt.h; sourceTree = "<group>"; };
  948. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellShareExt.m; sourceTree = "<group>"; };
  949. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellShareExt.xib; sourceTree = "<group>"; };
  950. F7FC7D551DC1F93800BB2C6A /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  951. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCPeekPop.storyboard; sourceTree = "<group>"; };
  952. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPeekPop.h; sourceTree = "<group>"; };
  953. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPeekPop.m; sourceTree = "<group>"; };
  954. F7FFEACE1F82BB23005E5C17 /* CCCellMain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CCCellMain.h; sourceTree = "<group>"; };
  955. /* End PBXFileReference section */
  956. /* Begin PBXFrameworksBuildPhase section */
  957. 2C33C47C23E2C475005F963B /* Frameworks */ = {
  958. isa = PBXFrameworksBuildPhase;
  959. buildActionMask = 2147483647;
  960. files = (
  961. );
  962. runOnlyForDeploymentPostprocessing = 0;
  963. };
  964. F7145A141D12E3B700CAFEEC /* Frameworks */ = {
  965. isa = PBXFrameworksBuildPhase;
  966. buildActionMask = 2147483647;
  967. files = (
  968. );
  969. runOnlyForDeploymentPostprocessing = 0;
  970. };
  971. F771E3CD20E2392D00AFB62D /* Frameworks */ = {
  972. isa = PBXFrameworksBuildPhase;
  973. buildActionMask = 2147483647;
  974. files = (
  975. );
  976. runOnlyForDeploymentPostprocessing = 0;
  977. };
  978. F77B0EDC1D118A16002130FE /* Frameworks */ = {
  979. isa = PBXFrameworksBuildPhase;
  980. buildActionMask = 2147483647;
  981. files = (
  982. F716FE7823795E5000FABE50 /* NCCommunication.framework in Frameworks */,
  983. F74C4FBB2328C3C200A23E25 /* OpenSSL.framework in Frameworks */,
  984. F7421EAF2294044B00C4B7C1 /* Accelerate.framework in Frameworks */,
  985. F7267A82225DFCE100D6DB7D /* AFNetworking.framework in Frameworks */,
  986. F7C40BF32199978B0004137E /* MBProgressHUD.framework in Frameworks */,
  987. F79918A221997FA300C2E308 /* UICKeyChainStore.framework in Frameworks */,
  988. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */,
  989. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */,
  990. F733B65221997CC2001C1FFA /* TLPhotoPicker.framework in Frameworks */,
  991. F7AF7633246BEDFE00B86E3C /* TOPasscodeViewController.framework in Frameworks */,
  992. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */,
  993. F7C40BE521998D5B0004137E /* MGSwipeTableCell.framework in Frameworks */,
  994. F745B251222D871800346520 /* QRCodeReader.framework in Frameworks */,
  995. F710C5F02471A6D1009AD8B7 /* Sentry.framework in Frameworks */,
  996. F765608723BF806D00765969 /* QuickLayout.framework in Frameworks */,
  997. F72E0B9D21AD60BC00898D7B /* WeScan.framework in Frameworks */,
  998. F7063DED2199E55F003F38DA /* SVGKit.framework in Frameworks */,
  999. F7063DEF2199E568003F38DA /* CocoaLumberjack.framework in Frameworks */,
  1000. F765608B23BF80A400765969 /* SwiftEntryKit.framework in Frameworks */,
  1001. F7063DF12199E56F003F38DA /* CocoaLumberjackSwift.framework in Frameworks */,
  1002. F7C40BE721998F410004137E /* DZNEmptyDataSet.framework in Frameworks */,
  1003. F7C40BEF219994ED0004137E /* KTVCocoaHTTPServer.framework in Frameworks */,
  1004. F7C40BF1219994F20004137E /* KTVHTTPCache.framework in Frameworks */,
  1005. F7C40C102199BA5D0004137E /* Realm.framework in Frameworks */,
  1006. F774264122EB3F7300B23912 /* DropDown.framework in Frameworks */,
  1007. F7C40C122199BA620004137E /* RealmSwift.framework in Frameworks */,
  1008. F78AA20621F783E900D0F205 /* SwiftRichString.framework in Frameworks */,
  1009. F7DBD82C23E46A4700ECB7C6 /* MarkdownKit.framework in Frameworks */,
  1010. F74AFCE922E8B025003DE61F /* FSCalendar.framework in Frameworks */,
  1011. F700510322DF6897003A3356 /* Parchment.framework in Frameworks */,
  1012. F7D2C773246470CA008513AE /* XLForm.framework in Frameworks */,
  1013. 371B5A3323D0BD5500FAFAE9 /* FloatingPanel.framework in Frameworks */,
  1014. F70F2BA5225F2D8900EBB73E /* ZIPFoundation.framework in Frameworks */,
  1015. );
  1016. runOnlyForDeploymentPostprocessing = 0;
  1017. };
  1018. /* End PBXFrameworksBuildPhase section */
  1019. /* Begin PBXGroup section */
  1020. 2C33C48023E2C475005F963B /* Notification Service Extension */ = {
  1021. isa = PBXGroup;
  1022. children = (
  1023. 2C33C48123E2C475005F963B /* NotificationService.swift */,
  1024. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */,
  1025. );
  1026. path = "Notification Service Extension";
  1027. sourceTree = "<group>";
  1028. };
  1029. 371B5A2F23D0B04B00FAFAE9 /* Menu */ = {
  1030. isa = PBXGroup;
  1031. children = (
  1032. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */,
  1033. 3781B9B323DB2BC9006B4B1D /* CCFavorites+Menu.swift */,
  1034. 3781B9B123DB2B9F006B4B1D /* CCMain+Menu.swift */,
  1035. F710D2012405826100A6033D /* NCDetailNavigationController+Menu.swift */,
  1036. 371B5A2D23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift */,
  1037. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */,
  1038. 37ECC83A23D0C7400082EFA2 /* NCMenuAction.swift */,
  1039. 3757A35423D9D76300EC369E /* NCMenuPanelController.swift */,
  1040. );
  1041. path = Menu;
  1042. sourceTree = "<group>";
  1043. };
  1044. F70211F31BAC56E9003FC03E /* Main */ = {
  1045. isa = PBXGroup;
  1046. children = (
  1047. F710D1FA24057E5E00A6033D /* ActionSheetHeaderView */,
  1048. F70211FA1BAC56E9003FC03E /* CCMain.h */,
  1049. F70211FB1BAC56E9003FC03E /* CCMain.m */,
  1050. F73F537E1E929C8500F8678D /* CCMore.swift */,
  1051. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */,
  1052. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */,
  1053. F78ACD3E21903BA20088454D /* Cell */,
  1054. F7DFB7E9219C5A0500680748 /* Create cloud */,
  1055. F78ACD4D219043E70088454D /* Layout */,
  1056. F7226EDB1EE4089300EBECB1 /* Main.storyboard */,
  1057. 371B5A2F23D0B04B00FAFAE9 /* Menu */,
  1058. F710D1F624057C9400A6033D /* NCDetailNavigationController.swift */,
  1059. 37C83A0C24532B7200618A3B /* AppDelegate+Swift.swift */,
  1060. 37C83A0E24532BA600618A3B /* CCMain+Swift.swift */,
  1061. F710D1F824057C9D00A6033D /* NCDetailViewController.swift */,
  1062. F7D6650620FF341600BFBA9E /* NCMainCommon.swift */,
  1063. F7E09CE223E3087F00FB3E9E /* NCMainRefreshControl.swift */,
  1064. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */,
  1065. F7E09CE623E308AD00FB3E9E /* NCMasterNavigationController.swift */,
  1066. F77444F7222816D5000D5EB0 /* NCPhotosPickerViewController.swift */,
  1067. F7E09CE423E3088A00FB3E9E /* NCSplitViewController.swift */,
  1068. F78ACD50219046AC0088454D /* Section */,
  1069. );
  1070. path = Main;
  1071. sourceTree = "<group>";
  1072. };
  1073. F704FA5A232A341800BBA952 /* Imagemeter */ = {
  1074. isa = PBXGroup;
  1075. children = (
  1076. F704FA5B232A343F00BBA952 /* IMImagemeterViewer.swift */,
  1077. );
  1078. path = Imagemeter;
  1079. sourceTree = "<group>";
  1080. };
  1081. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */ = {
  1082. isa = PBXGroup;
  1083. children = (
  1084. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */,
  1085. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */,
  1086. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */,
  1087. );
  1088. path = UploadFromOtherUpp;
  1089. sourceTree = "<group>";
  1090. };
  1091. F70F02A81C889183008DAB36 /* Libraries external */ = {
  1092. isa = PBXGroup;
  1093. children = (
  1094. F711CC75246AC99E0009B204 /* OCCommunicationLib */,
  1095. F711CD08246AC9B70009B204 /* NCUchardet */,
  1096. F711CCFE246AC9B10009B204 /* DropdownMenu */,
  1097. F704FA5A232A341800BBA952 /* Imagemeter */,
  1098. F7B2DEEB1F976785007CF4D2 /* NYMnemonic */,
  1099. F7CA1EBB20E7E3FE002CC65E /* PKDownloadButton */,
  1100. F75037421DBFA91A008FB480 /* PureLayout */,
  1101. F70F05241C889184008DAB36 /* Reachability */,
  1102. );
  1103. path = "Libraries external";
  1104. sourceTree = SOURCE_ROOT;
  1105. };
  1106. F70F05241C889184008DAB36 /* Reachability */ = {
  1107. isa = PBXGroup;
  1108. children = (
  1109. F70F05251C889184008DAB36 /* Reachability.h */,
  1110. F70F05261C889184008DAB36 /* Reachability.m */,
  1111. );
  1112. path = Reachability;
  1113. sourceTree = "<group>";
  1114. };
  1115. F710D1FA24057E5E00A6033D /* ActionSheetHeaderView */ = {
  1116. isa = PBXGroup;
  1117. children = (
  1118. F710D1FB24057E5E00A6033D /* NCActionSheetHeader.swift */,
  1119. F710D1FC24057E5E00A6033D /* NCActionSheetHeaderView.swift */,
  1120. F710D1FD24057E5E00A6033D /* NCActionSheetHeaderView.xib */,
  1121. );
  1122. path = ActionSheetHeaderView;
  1123. sourceTree = "<group>";
  1124. };
  1125. F710E80C1EF95C9C00DC2427 /* Intro */ = {
  1126. isa = PBXGroup;
  1127. children = (
  1128. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */,
  1129. F749C10923C4A5330027D966 /* NCIntro.storyboard */,
  1130. F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */,
  1131. F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */,
  1132. F749C10823C4A5330027D966 /* NCIntroViewController.swift */,
  1133. );
  1134. path = Intro;
  1135. sourceTree = "<group>";
  1136. };
  1137. F711CC75246AC99E0009B204 /* OCCommunicationLib */ = {
  1138. isa = PBXGroup;
  1139. children = (
  1140. F711CC76246AC99E0009B204 /* NCRichDocumentTemplate.m */,
  1141. F711CC77246AC99E0009B204 /* OCActivity.h */,
  1142. F711CC78246AC99E0009B204 /* OCCapabilities.h */,
  1143. F711CC79246AC99E0009B204 /* OCFileDto.m */,
  1144. F711CC7A246AC99E0009B204 /* NCComments.h */,
  1145. F711CC7B246AC99E0009B204 /* OCSharedDto.h */,
  1146. F711CC7C246AC99E0009B204 /* HCFeatures.m */,
  1147. F711CC7D246AC99E0009B204 /* OCCommunication.h */,
  1148. F711CC7E246AC99E0009B204 /* OCNotificationsAction.m */,
  1149. F711CC7F246AC99E0009B204 /* OCUserProfile.m */,
  1150. F711CC80246AC99E0009B204 /* OCShareUser.m */,
  1151. F711CC81246AC99E0009B204 /* OCNotifications.h */,
  1152. F711CC82246AC99E0009B204 /* Utils */,
  1153. F711CC88246AC99E0009B204 /* OCRichObjectStrings.m */,
  1154. F711CC89246AC99E0009B204 /* OCExternalSites.m */,
  1155. F711CC8A246AC99E0009B204 /* OCFileDto.h */,
  1156. F711CC8B246AC99E0009B204 /* OCFrameworkConstants.h */,
  1157. F711CC8C246AC99E0009B204 /* OCErrorMsg.h */,
  1158. F711CC8D246AC99E0009B204 /* OCCapabilities.m */,
  1159. F711CC8E246AC99E0009B204 /* OCWebDavClient */,
  1160. F711CCA4246AC99E0009B204 /* OCActivity.m */,
  1161. F711CCA5246AC99E0009B204 /* NCRichDocumentTemplate.h */,
  1162. F711CCA6246AC99E0009B204 /* HCFeatures.h */,
  1163. F711CCA7246AC99E0009B204 /* OCSharedDto.m */,
  1164. F711CCA8246AC99E0009B204 /* NCComments.m */,
  1165. F711CCA9246AC99E0009B204 /* OCCommunication.m */,
  1166. F711CCAA246AC99E0009B204 /* OCNotificationsAction.h */,
  1167. F711CCAB246AC99E0009B204 /* OCExternalSites.h */,
  1168. F711CCAC246AC99E0009B204 /* OCRichObjectStrings.h */,
  1169. F711CCAD246AC99E0009B204 /* OCNotifications.m */,
  1170. F711CCAE246AC99E0009B204 /* OCShareUser.h */,
  1171. F711CCAF246AC99E0009B204 /* OCUserProfile.h */,
  1172. );
  1173. path = OCCommunicationLib;
  1174. sourceTree = "<group>";
  1175. };
  1176. F711CC82246AC99E0009B204 /* Utils */ = {
  1177. isa = PBXGroup;
  1178. children = (
  1179. F711CC83246AC99E0009B204 /* OCConstants.h */,
  1180. F711CC84246AC99E0009B204 /* UtilsFramework.h */,
  1181. F711CC85246AC99E0009B204 /* NSString+Encode.h */,
  1182. F711CC86246AC99E0009B204 /* UtilsFramework.m */,
  1183. F711CC87246AC99E0009B204 /* NSString+Encode.m */,
  1184. );
  1185. path = Utils;
  1186. sourceTree = "<group>";
  1187. };
  1188. F711CC8E246AC99E0009B204 /* OCWebDavClient */ = {
  1189. isa = PBXGroup;
  1190. children = (
  1191. F711CC8F246AC99E0009B204 /* Parsers */,
  1192. F711CC9C246AC99E0009B204 /* NSDate+ISO8601.h */,
  1193. F711CC9D246AC99E0009B204 /* NSDate+RFC1123.h */,
  1194. F711CC9E246AC99E0009B204 /* OCHTTPRequestOperation.m */,
  1195. F711CC9F246AC99E0009B204 /* OCWebDAVClient.m */,
  1196. F711CCA0246AC99E0009B204 /* NSDate+ISO8601.m */,
  1197. F711CCA1246AC99E0009B204 /* OCWebDAVClient.h */,
  1198. F711CCA2246AC99E0009B204 /* OCHTTPRequestOperation.h */,
  1199. F711CCA3246AC99E0009B204 /* NSDate+RFC1123.m */,
  1200. );
  1201. path = OCWebDavClient;
  1202. sourceTree = "<group>";
  1203. };
  1204. F711CC8F246AC99E0009B204 /* Parsers */ = {
  1205. isa = PBXGroup;
  1206. children = (
  1207. F711CC90246AC99E0009B204 /* NCXMLListParser.m */,
  1208. F711CC91246AC99E0009B204 /* OCXMLSharedParser.m */,
  1209. F711CC92246AC99E0009B204 /* NCXMLGetAppPasswordParser.m */,
  1210. F711CC93246AC99E0009B204 /* NCXMLCommentsParser.m */,
  1211. F711CC94246AC99E0009B204 /* OCXMLShareByLinkParser.m */,
  1212. F711CC95246AC99E0009B204 /* OCXMLServerErrorsParser.m */,
  1213. F711CC96246AC99E0009B204 /* OCXMLSharedParser.h */,
  1214. F711CC97246AC99E0009B204 /* NCXMLListParser.h */,
  1215. F711CC98246AC99E0009B204 /* NCXMLCommentsParser.h */,
  1216. F711CC99246AC99E0009B204 /* NCXMLGetAppPasswordParser.h */,
  1217. F711CC9A246AC99E0009B204 /* OCXMLServerErrorsParser.h */,
  1218. F711CC9B246AC99E0009B204 /* OCXMLShareByLinkParser.h */,
  1219. );
  1220. path = Parsers;
  1221. sourceTree = "<group>";
  1222. };
  1223. F711CCFE246AC9B10009B204 /* DropdownMenu */ = {
  1224. isa = PBXGroup;
  1225. children = (
  1226. F711CCFF246AC9B10009B204 /* DropdownItem.swift */,
  1227. F711CD00246AC9B10009B204 /* DropUpMenu.swift */,
  1228. F711CD01246AC9B10009B204 /* DropdownMenu.h */,
  1229. F711CD02246AC9B10009B204 /* DropdownMenu.swift */,
  1230. F711CD03246AC9B10009B204 /* SectionHeader.swift */,
  1231. );
  1232. path = DropdownMenu;
  1233. sourceTree = "<group>";
  1234. };
  1235. F711CD08246AC9B70009B204 /* NCUchardet */ = {
  1236. isa = PBXGroup;
  1237. children = (
  1238. F711CD09246AC9B70009B204 /* NCUchardet.m */,
  1239. F711CD0A246AC9B70009B204 /* NCUchardet.h */,
  1240. F711CD0B246AC9B70009B204 /* src */,
  1241. );
  1242. path = NCUchardet;
  1243. sourceTree = "<group>";
  1244. };
  1245. F711CD0B246AC9B70009B204 /* src */ = {
  1246. isa = PBXGroup;
  1247. children = (
  1248. F711CD0C246AC9B70009B204 /* nsEUCTWProber.cpp */,
  1249. F711CD0D246AC9B70009B204 /* symbols.cmake */,
  1250. F711CD0E246AC9B70009B204 /* uchardet.cpp */,
  1251. F711CD0F246AC9B70009B204 /* prmem.h */,
  1252. F711CD10246AC9B70009B204 /* CharDistribution.h */,
  1253. F711CD11246AC9B70009B204 /* CMakeLists.txt */,
  1254. F711CD12246AC9B70009B204 /* nsMBCSGroupProber.cpp */,
  1255. F711CD13246AC9B70009B204 /* nsSBCSGroupProber.cpp */,
  1256. F711CD14246AC9B70009B204 /* nsHebrewProber.h */,
  1257. F711CD15246AC9B70009B204 /* nsEUCKRProber.h */,
  1258. F711CD16246AC9B70009B204 /* nsMBCSGroupProber.h */,
  1259. F711CD17246AC9B70009B204 /* nsSBCharSetProber.cpp */,
  1260. F711CD18246AC9B70009B204 /* nsBig5Prober.cpp */,
  1261. F711CD19246AC9B70009B204 /* EUCTWFreq.tab */,
  1262. F711CD1A246AC9B70009B204 /* nsEUCJPProber.h */,
  1263. F711CD1B246AC9B70009B204 /* JpCntx.h */,
  1264. F711CD1C246AC9B80009B204 /* nsCodingStateMachine.h */,
  1265. F711CD1D246AC9B80009B204 /* nsGB2312Prober.h */,
  1266. F711CD1E246AC9B80009B204 /* nsEUCKRProber.cpp */,
  1267. F711CD1F246AC9B80009B204 /* nsGB2312Prober.cpp */,
  1268. F711CD20246AC9B80009B204 /* nsMBCSSM.cpp */,
  1269. F711CD21246AC9B80009B204 /* nscore.h */,
  1270. F711CD22246AC9B80009B204 /* JpCntx.cpp */,
  1271. F711CD23246AC9B80009B204 /* CharDistribution.cpp */,
  1272. F711CD24246AC9B80009B204 /* nsLatin1Prober.cpp */,
  1273. F711CD25246AC9B80009B204 /* nsEUCJPProber.cpp */,
  1274. F711CD26246AC9B80009B204 /* nsCharSetProber.h */,
  1275. F711CD27246AC9B80009B204 /* JISFreq.tab */,
  1276. F711CD28246AC9B80009B204 /* nsUTF8Prober.h */,
  1277. F711CD29246AC9B80009B204 /* nsHebrewProber.cpp */,
  1278. F711CD2A246AC9B80009B204 /* EUCKRFreq.tab */,
  1279. F711CD2B246AC9B80009B204 /* nsSJISProber.cpp */,
  1280. F711CD2C246AC9B80009B204 /* nsCharSetProber.cpp */,
  1281. F711CD2D246AC9B80009B204 /* LangModels */,
  1282. F711CD3C246AC9B80009B204 /* Big5Freq.tab */,
  1283. F711CD3D246AC9B80009B204 /* nsUniversalDetector.h */,
  1284. F711CD3E246AC9B80009B204 /* nsSBCSGroupProber.h */,
  1285. F711CD3F246AC9B80009B204 /* GB2312Freq.tab */,
  1286. F711CD40246AC9B80009B204 /* nsSBCharSetProber.h */,
  1287. F711CD41246AC9B80009B204 /* nsPkgInt.h */,
  1288. F711CD42246AC9B80009B204 /* nsUniversalDetector.cpp */,
  1289. F711CD43246AC9B80009B204 /* nsEscCharsetProber.cpp */,
  1290. F711CD44246AC9B80009B204 /* nsEscCharsetProber.h */,
  1291. F711CD45246AC9B80009B204 /* nsUTF8Prober.cpp */,
  1292. F711CD46246AC9B80009B204 /* nsBig5Prober.h */,
  1293. F711CD47246AC9B80009B204 /* nsSJISProber.h */,
  1294. F711CD48246AC9B80009B204 /* nsEscSM.cpp */,
  1295. F711CD49246AC9B80009B204 /* nsLatin1Prober.h */,
  1296. F711CD4A246AC9B80009B204 /* nsEUCTWProber.h */,
  1297. F711CD4B246AC9B80009B204 /* uchardet.h */,
  1298. );
  1299. path = src;
  1300. sourceTree = "<group>";
  1301. };
  1302. F711CD2D246AC9B80009B204 /* LangModels */ = {
  1303. isa = PBXGroup;
  1304. children = (
  1305. F711CD2E246AC9B80009B204 /* LangHungarianModel.cpp */,
  1306. F711CD2F246AC9B80009B204 /* LangVietnameseModel.cpp */,
  1307. F711CD30246AC9B80009B204 /* LangBulgarianModel.cpp */,
  1308. F711CD31246AC9B80009B204 /* LangFrenchModel.cpp */,
  1309. F711CD32246AC9B80009B204 /* LangThaiModel.cpp */,
  1310. F711CD33246AC9B80009B204 /* LangSpanishModel.cpp */,
  1311. F711CD34246AC9B80009B204 /* LangArabicModel.cpp */,
  1312. F711CD35246AC9B80009B204 /* LangRussianModel.cpp */,
  1313. F711CD36246AC9B80009B204 /* LangHebrewModel.cpp */,
  1314. F711CD37246AC9B80009B204 /* LangEsperantoModel.cpp */,
  1315. F711CD38246AC9B80009B204 /* LangTurkishModel.cpp */,
  1316. F711CD39246AC9B80009B204 /* LangGermanModel.cpp */,
  1317. F711CD3A246AC9B80009B204 /* LangGreekModel.cpp */,
  1318. F711CD3B246AC9B80009B204 /* LangDanishModel.cpp */,
  1319. );
  1320. path = LangModels;
  1321. sourceTree = "<group>";
  1322. };
  1323. F7169A161EE590930086BD69 /* Shares */ = {
  1324. isa = PBXGroup;
  1325. children = (
  1326. F7169A171EE590930086BD69 /* NCShares.h */,
  1327. F7169A181EE590930086BD69 /* NCShares.m */,
  1328. F7169A191EE590930086BD69 /* NCSharesCell.h */,
  1329. F7169A1A1EE590930086BD69 /* NCSharesCell.m */,
  1330. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */,
  1331. );
  1332. path = Shares;
  1333. sourceTree = "<group>";
  1334. };
  1335. F728CE741BF6322C00E69702 /* Share */ = {
  1336. isa = PBXGroup;
  1337. children = (
  1338. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */,
  1339. F700510022DF63AC003A3356 /* NCShare.storyboard */,
  1340. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */,
  1341. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */,
  1342. F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */,
  1343. F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */,
  1344. F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */,
  1345. F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */,
  1346. F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */,
  1347. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */,
  1348. F769453F22E9F077000A798A /* NCSharePaging.swift */,
  1349. F700510422DF6A89003A3356 /* NCShare.swift */,
  1350. F7E4D9C322ED929B003675FD /* NCShareComments.swift */,
  1351. F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */,
  1352. F769454322E9F142000A798A /* NCShareUserMenuView.swift */,
  1353. F769454722E9F20D000A798A /* NCShareNetworking.swift */,
  1354. F769454522E9F1B0000A798A /* NCShareCommon.swift */,
  1355. );
  1356. path = Share;
  1357. sourceTree = "<group>";
  1358. };
  1359. F72B60941A24F04E004EF66F /* Localizations */ = {
  1360. isa = PBXGroup;
  1361. children = (
  1362. F7E70DE91A24DE4100E1B66A /* Localizable.strings */,
  1363. );
  1364. name = Localizations;
  1365. sourceTree = "<group>";
  1366. };
  1367. F7381ED9218218A4000B1560 /* Offline */ = {
  1368. isa = PBXGroup;
  1369. children = (
  1370. F7381EDE218218C9000B1560 /* NCOffline.storyboard */,
  1371. F7381EDA218218C9000B1560 /* NCOffline.swift */,
  1372. );
  1373. path = Offline;
  1374. sourceTree = "<group>";
  1375. };
  1376. F74D3DB81BAC1941000BAE4B /* Networking */ = {
  1377. isa = PBXGroup;
  1378. children = (
  1379. F755BD9A20594AC7008C5FBB /* NCService.swift */,
  1380. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */,
  1381. F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */,
  1382. F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */,
  1383. F75B0ABC244C4DBB00E58DCA /* NCNetworkingNotificationCenter.swift */,
  1384. F732BA031D76CE1500E9878B /* CCNetworking.h */,
  1385. F732BA041D76CE1500E9878B /* CCNetworking.m */,
  1386. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */,
  1387. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */,
  1388. F74E432420B5547700C2E54C /* NCNetworkingEndToEnd.h */,
  1389. F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */,
  1390. );
  1391. path = Networking;
  1392. sourceTree = "<group>";
  1393. };
  1394. F75037421DBFA91A008FB480 /* PureLayout */ = {
  1395. isa = PBXGroup;
  1396. children = (
  1397. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */,
  1398. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */,
  1399. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */,
  1400. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */,
  1401. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */,
  1402. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */,
  1403. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */,
  1404. F750374A1DBFA91A008FB480 /* PureLayout.h */,
  1405. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */,
  1406. );
  1407. path = PureLayout;
  1408. sourceTree = "<group>";
  1409. };
  1410. F758B41E212C516300515F55 /* ScanDocument */ = {
  1411. isa = PBXGroup;
  1412. children = (
  1413. F758B45F212C56A400515F55 /* ScanCollectionView.swift */,
  1414. F758B45D212C569C00515F55 /* ScanCell.swift */,
  1415. F758B457212C564000515F55 /* Scan.storyboard */,
  1416. );
  1417. path = ScanDocument;
  1418. sourceTree = "<group>";
  1419. };
  1420. F7632FC32183667400721B71 /* Section */ = {
  1421. isa = PBXGroup;
  1422. children = (
  1423. F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */,
  1424. F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */,
  1425. F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */,
  1426. );
  1427. path = Section;
  1428. sourceTree = "<group>";
  1429. };
  1430. F76D3CEF2428B3DD005DFA87 /* NCViewerPDF */ = {
  1431. isa = PBXGroup;
  1432. children = (
  1433. F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */,
  1434. F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */,
  1435. F710D1F42405770F00A6033D /* NCViewerPDF.swift */,
  1436. F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */,
  1437. );
  1438. path = NCViewerPDF;
  1439. sourceTree = "<group>";
  1440. };
  1441. F771E3D120E2392D00AFB62D /* File Provider Extension */ = {
  1442. isa = PBXGroup;
  1443. children = (
  1444. F771E3F220E239A600AFB62D /* FileProviderData.swift */,
  1445. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */,
  1446. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */,
  1447. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */,
  1448. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */,
  1449. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */,
  1450. F716FE7923795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift */,
  1451. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */,
  1452. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */,
  1453. F76673EF22C90433007ED366 /* FileProviderUtility.swift */,
  1454. );
  1455. path = "File Provider Extension";
  1456. sourceTree = "<group>";
  1457. };
  1458. F78ACD3E21903BA20088454D /* Cell */ = {
  1459. isa = PBXGroup;
  1460. children = (
  1461. F7FFEACE1F82BB23005E5C17 /* CCCellMain.h */,
  1462. F70211F51BAC56E9003FC03E /* CCCellMain.m */,
  1463. F70211F61BAC56E9003FC03E /* CCCellMain.xib */,
  1464. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */,
  1465. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */,
  1466. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */,
  1467. F78ACD3F21903CC20088454D /* NCGridCell.swift */,
  1468. F78ACD4521903D010088454D /* NCGridCell.xib */,
  1469. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */,
  1470. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */,
  1471. F78ACD4121903CE00088454D /* NCListCell.swift */,
  1472. F78ACD4321903CF20088454D /* NCListCell.xib */,
  1473. );
  1474. path = Cell;
  1475. sourceTree = "<group>";
  1476. };
  1477. F78ACD4721903F850088454D /* Cell */ = {
  1478. isa = PBXGroup;
  1479. children = (
  1480. F78ACD4821903F850088454D /* NCTrashListCell.swift */,
  1481. F78ACD4921903F850088454D /* NCTrashListCell.xib */,
  1482. );
  1483. path = Cell;
  1484. sourceTree = "<group>";
  1485. };
  1486. F78ACD4D219043E70088454D /* Layout */ = {
  1487. isa = PBXGroup;
  1488. children = (
  1489. F78ACD4E2190440D0088454D /* NCLayout.swift */,
  1490. );
  1491. path = Layout;
  1492. sourceTree = "<group>";
  1493. };
  1494. F78ACD50219046AC0088454D /* Section */ = {
  1495. isa = PBXGroup;
  1496. children = (
  1497. F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */,
  1498. F7395139221B127F00D986C8 /* NCSectionMediaHeader.xib */,
  1499. F78ACD55219047E90088454D /* NCSectionHeader.xib */,
  1500. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */,
  1501. F78ACD53219047D40088454D /* NCSectionFooter.xib */,
  1502. );
  1503. path = Section;
  1504. sourceTree = "<group>";
  1505. };
  1506. F78F74322163753B00C2ADAD /* Trash */ = {
  1507. isa = PBXGroup;
  1508. children = (
  1509. F78F74332163757000C2ADAD /* NCTrash.storyboard */,
  1510. F78F74352163781100C2ADAD /* NCTrash.swift */,
  1511. F78ACD4721903F850088454D /* Cell */,
  1512. F7632FC32183667400721B71 /* Section */,
  1513. );
  1514. path = Trash;
  1515. sourceTree = "<group>";
  1516. };
  1517. F79018B1240962C7007C9B6D /* NCViewerImage */ = {
  1518. isa = PBXGroup;
  1519. children = (
  1520. F79018B2240962C7007C9B6D /* NCViewerImageDismissAnimationController.swift */,
  1521. F70006F924164F8D00F214A5 /* NCViewerImageVideo.storyboard */,
  1522. F70006FB2416500B00F214A5 /* NCViewerImageVideo.swift */,
  1523. F79018B3240962C7007C9B6D /* NCViewerImageContentView.swift */,
  1524. F7381439240FE48D00404AC7 /* NCViewerImageCommon.swift */,
  1525. F79018B4240962C7007C9B6D /* NCViewerImageViewController.swift */,
  1526. F79018B5240962C7007C9B6D /* NCViewerImageContentTransformers.swift */,
  1527. );
  1528. path = NCViewerImage;
  1529. sourceTree = "<group>";
  1530. };
  1531. F79630EC215526B60015EEA5 /* Viewer */ = {
  1532. isa = PBXGroup;
  1533. children = (
  1534. F79018B1240962C7007C9B6D /* NCViewerImage */,
  1535. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */,
  1536. F76D3CEF2428B3DD005DFA87 /* NCViewerPDF */,
  1537. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */,
  1538. F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */,
  1539. F79630ED215527D40015EEA5 /* NCViewerVideo.swift */,
  1540. );
  1541. path = Viewer;
  1542. sourceTree = "<group>";
  1543. };
  1544. F79A65C12191D8DC00FF6DCC /* Select */ = {
  1545. isa = PBXGroup;
  1546. children = (
  1547. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */,
  1548. F79A65C52191D95E00FF6DCC /* NCSelect.swift */,
  1549. );
  1550. path = Select;
  1551. sourceTree = "<group>";
  1552. };
  1553. F7A3214D1E9E2A070069AD1B /* Favorites */ = {
  1554. isa = PBXGroup;
  1555. children = (
  1556. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */,
  1557. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */,
  1558. );
  1559. path = Favorites;
  1560. sourceTree = "<group>";
  1561. };
  1562. F7A321621E9E37960069AD1B /* Activity */ = {
  1563. isa = PBXGroup;
  1564. children = (
  1565. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */,
  1566. F7C9555421F0C5470024296E /* NCActivity.swift */,
  1567. );
  1568. path = Activity;
  1569. sourceTree = "<group>";
  1570. };
  1571. F7A321891E9E42B20069AD1B /* MenuAccount */ = {
  1572. isa = PBXGroup;
  1573. children = (
  1574. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */,
  1575. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */,
  1576. );
  1577. path = MenuAccount;
  1578. sourceTree = "<group>";
  1579. };
  1580. F7ACE4281BAC0268006C0017 /* Settings */ = {
  1581. isa = PBXGroup;
  1582. children = (
  1583. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */,
  1584. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */,
  1585. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */,
  1586. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */,
  1587. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */,
  1588. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */,
  1589. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */,
  1590. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */,
  1591. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */,
  1592. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */,
  1593. F7ACE4301BAC0268006C0017 /* CCSettings.h */,
  1594. F7ACE4311BAC0268006C0017 /* CCSettings.m */,
  1595. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */,
  1596. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */,
  1597. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */,
  1598. );
  1599. path = Settings;
  1600. sourceTree = "<group>";
  1601. };
  1602. F7AE00F6230E8191007ACF8A /* BrowserWeb */ = {
  1603. isa = PBXGroup;
  1604. children = (
  1605. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */,
  1606. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */,
  1607. );
  1608. path = BrowserWeb;
  1609. sourceTree = "<group>";
  1610. };
  1611. F7B0C0CA1EE7E7750033AC24 /* Synchronize */ = {
  1612. isa = PBXGroup;
  1613. children = (
  1614. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */,
  1615. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */,
  1616. );
  1617. path = Synchronize;
  1618. sourceTree = "<group>";
  1619. };
  1620. F7B0C1701EE8397E0033AC24 /* AutoUpload */ = {
  1621. isa = PBXGroup;
  1622. children = (
  1623. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */,
  1624. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */,
  1625. );
  1626. path = AutoUpload;
  1627. sourceTree = "<group>";
  1628. };
  1629. F7B2DEEB1F976785007CF4D2 /* NYMnemonic */ = {
  1630. isa = PBXGroup;
  1631. children = (
  1632. F7B2DEEC1F976785007CF4D2 /* languages */,
  1633. F7B2DEEE1F976785007CF4D2 /* NYMnemonic.h */,
  1634. F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */,
  1635. );
  1636. path = NYMnemonic;
  1637. sourceTree = "<group>";
  1638. };
  1639. F7B2DEEC1F976785007CF4D2 /* languages */ = {
  1640. isa = PBXGroup;
  1641. children = (
  1642. F7B2DEED1F976785007CF4D2 /* english.txt */,
  1643. );
  1644. path = languages;
  1645. sourceTree = "<group>";
  1646. };
  1647. F7BAAD951ED5A63D00B7EAD4 /* Database */ = {
  1648. isa = PBXGroup;
  1649. children = (
  1650. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */,
  1651. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */,
  1652. F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */,
  1653. );
  1654. path = Database;
  1655. sourceTree = "<group>";
  1656. };
  1657. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */ = {
  1658. isa = PBXGroup;
  1659. children = (
  1660. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */,
  1661. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */,
  1662. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */,
  1663. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */,
  1664. );
  1665. path = "ManageLocation+ManageAsset";
  1666. sourceTree = "<group>";
  1667. };
  1668. F7BFFA621A24D7300044ED85 /* Login */ = {
  1669. isa = PBXGroup;
  1670. children = (
  1671. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */,
  1672. F7BF1B3F1D51E893000854F6 /* CCLogin.h */,
  1673. F7BF1B401D51E893000854F6 /* CCLogin.m */,
  1674. F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */,
  1675. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */,
  1676. F745B252222D88AE00346520 /* NCLoginQRCode.swift */,
  1677. );
  1678. path = Login;
  1679. sourceTree = "<group>";
  1680. };
  1681. F7BFFA991A24D7BB0044ED85 /* Utility */ = {
  1682. isa = PBXGroup;
  1683. children = (
  1684. F76C3B871C638A4C00DC4301 /* CCError.h */,
  1685. F76C3B881C638A4C00DC4301 /* CCError.m */,
  1686. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */,
  1687. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */,
  1688. F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */,
  1689. F76C3B831C6388BC00DC4301 /* CCGraphics.h */,
  1690. F76C3B841C6388BC00DC4301 /* CCGraphics.m */,
  1691. F713FEFE2472764000214AF6 /* UIImage+animatedGIF.h */,
  1692. F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */,
  1693. F7514EDA1C7B1336008F3338 /* CCHud.h */,
  1694. F7514EDB1C7B1336008F3338 /* CCHud.m */,
  1695. F7053E3C1C639DF500741EA5 /* CCUtility.h */,
  1696. F7053E3D1C639DF500741EA5 /* CCUtility.m */,
  1697. F78E7064219F096B006F23E4 /* NCAvatar.swift */,
  1698. F765608E23BF813500765969 /* NCContentPresenter.swift */,
  1699. F707C26421A2DC5200F6181E /* NCStoreReview.swift */,
  1700. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */,
  1701. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */,
  1702. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */,
  1703. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */,
  1704. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */,
  1705. F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */,
  1706. F7B7504A2397D38E004E13EC /* UIImage+fixedOrientation.swift */,
  1707. );
  1708. path = Utility;
  1709. sourceTree = "<group>";
  1710. };
  1711. F7C0F46D1C8880540059EC54 /* Share */ = {
  1712. isa = PBXGroup;
  1713. children = (
  1714. F78B9683234F785300F54315 /* NCSelectDestination.h */,
  1715. F78B9682234F785300F54315 /* NCSelectDestination.m */,
  1716. F78B9684234F785300F54315 /* NCSelectDestination.storyboard */,
  1717. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */,
  1718. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */,
  1719. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */,
  1720. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */,
  1721. F7C0F46E1C8880540059EC54 /* ShareViewController.h */,
  1722. F7C0F46F1C8880540059EC54 /* ShareViewController.m */,
  1723. F7296A661C8880ED001A7809 /* CCloadItemData.swift */,
  1724. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */,
  1725. );
  1726. path = Share;
  1727. sourceTree = "<group>";
  1728. };
  1729. F7C1CDD91E6DFC6F005D92BE /* Brand */ = {
  1730. isa = PBXGroup;
  1731. children = (
  1732. F7C742D31E7BD36600D9C973 /* Supporting Files */,
  1733. F710E80C1EF95C9C00DC2427 /* Intro */,
  1734. F700222B1EC479840080073F /* Custom.xcassets */,
  1735. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */,
  1736. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */,
  1737. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */,
  1738. );
  1739. path = Brand;
  1740. sourceTree = "<group>";
  1741. };
  1742. F7C5259A1E3B441D00FFE02C /* Notification */ = {
  1743. isa = PBXGroup;
  1744. children = (
  1745. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */,
  1746. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */,
  1747. );
  1748. name = Notification;
  1749. sourceTree = "<group>";
  1750. };
  1751. F7C742D31E7BD36600D9C973 /* Supporting Files */ = {
  1752. isa = PBXGroup;
  1753. children = (
  1754. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */,
  1755. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */,
  1756. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */,
  1757. F7496B81208F5651004B299C /* iOSClient.plist */,
  1758. F728B2BC23E83AD200E12DA0 /* Notification_Service_Extension.entitlements */,
  1759. F728B2BB23E83AD200E12DA0 /* Notification_Service_Extension.plist */,
  1760. F7C742D01E7BD35B00D9C973 /* Share.entitlements */,
  1761. F7496B83208F5652004B299C /* Share.plist */,
  1762. );
  1763. name = "Supporting Files";
  1764. sourceTree = "<group>";
  1765. };
  1766. F7CA1EBB20E7E3FE002CC65E /* PKDownloadButton */ = {
  1767. isa = PBXGroup;
  1768. children = (
  1769. F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */,
  1770. F7CA1EBD20E7E3FE002CC65E /* PKBorderedButton.h */,
  1771. F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */,
  1772. F7CA1EBF20E7E3FE002CC65E /* PKDownloadButton.h */,
  1773. F7CA1EC020E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.h */,
  1774. F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */,
  1775. F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */,
  1776. F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */,
  1777. F7CA1EC420E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.h */,
  1778. F7CA1EC620E7E3FE002CC65E /* PKMacros.h */,
  1779. F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */,
  1780. F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */,
  1781. F7CA1EC920E7E3FE002CC65E /* PKCircleProgressView.h */,
  1782. F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */,
  1783. F7CA1ECB20E7E3FE002CC65E /* UIImage+PKDownloadButton.h */,
  1784. F7CA1ECC20E7E3FE002CC65E /* PKStopDownloadButton.h */,
  1785. F7CA1ECD20E7E3FE002CC65E /* PKCircleView.h */,
  1786. F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */,
  1787. F7CA1ECF20E7E3FE002CC65E /* PKPendingView.h */,
  1788. );
  1789. path = PKDownloadButton;
  1790. sourceTree = "<group>";
  1791. };
  1792. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */ = {
  1793. isa = PBXGroup;
  1794. children = (
  1795. F7F4B1D723C74B3E00D82A6E /* NCRichWorkspace.swift */,
  1796. F722814223C8C34500C41898 /* NCRichWorkspace.xib */,
  1797. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */,
  1798. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */,
  1799. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */,
  1800. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */,
  1801. );
  1802. path = RichWorkspace;
  1803. sourceTree = "<group>";
  1804. };
  1805. F7DFB7E9219C5A0500680748 /* Create cloud */ = {
  1806. isa = PBXGroup;
  1807. children = (
  1808. F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */,
  1809. F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */,
  1810. F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */,
  1811. F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */,
  1812. F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */,
  1813. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */,
  1814. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */,
  1815. F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */,
  1816. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */,
  1817. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */,
  1818. );
  1819. path = "Create cloud";
  1820. sourceTree = "<group>";
  1821. };
  1822. F7E0E1DA22327885006B0911 /* AudioRecorder */ = {
  1823. isa = PBXGroup;
  1824. children = (
  1825. F7E0E1DB22327885006B0911 /* NCAudioRecorderViewController.swift */,
  1826. F7E0E1DD22327DBA006B0911 /* NCAudioRecorderViewController.storyboard */,
  1827. );
  1828. path = AudioRecorder;
  1829. sourceTree = "<group>";
  1830. };
  1831. F7E9C41320F4CA870040CF18 /* Transfers */ = {
  1832. isa = PBXGroup;
  1833. children = (
  1834. F7E9C41520F4CA870040CF18 /* CCTransfers.h */,
  1835. F7E9C41820F4CA870040CF18 /* CCTransfers.m */,
  1836. );
  1837. path = Transfers;
  1838. sourceTree = "<group>";
  1839. };
  1840. F7EC9CB921185F2000F1C5CE /* Media */ = {
  1841. isa = PBXGroup;
  1842. children = (
  1843. F7501C302212E57400FB1415 /* NCMedia.storyboard */,
  1844. F7501C312212E57400FB1415 /* NCMedia.swift */,
  1845. );
  1846. path = Media;
  1847. sourceTree = "<group>";
  1848. };
  1849. F7F67B9F1A24D27800EE80DA = {
  1850. isa = PBXGroup;
  1851. children = (
  1852. F7F67BAA1A24D27800EE80DA /* iOSClient */,
  1853. F7F67BAB1A24D27800EE80DA /* Supporting Files */,
  1854. F771E3D120E2392D00AFB62D /* File Provider Extension */,
  1855. F7C0F46D1C8880540059EC54 /* Share */,
  1856. 2C33C48023E2C475005F963B /* Notification Service Extension */,
  1857. F7FC7D651DC1F98700BB2C6A /* Products */,
  1858. F7FC7D541DC1F93700BB2C6A /* Frameworks */,
  1859. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */,
  1860. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */,
  1861. );
  1862. sourceTree = "<group>";
  1863. };
  1864. F7F67BAA1A24D27800EE80DA /* iOSClient */ = {
  1865. isa = PBXGroup;
  1866. children = (
  1867. F70F02A81C889183008DAB36 /* Libraries external */,
  1868. F7C1CDD91E6DFC6F005D92BE /* Brand */,
  1869. F70211F31BAC56E9003FC03E /* Main */,
  1870. F7A582D71A24DAB500E903D7 /* AppDelegate.h */,
  1871. F7B174C722FAC0A8000B7579 /* AppDelegate.m */,
  1872. F7C8C1901B482CEA0048180E /* CCGlobal.h */,
  1873. F7F67BB81A24D27800EE80DA /* Images.xcassets */,
  1874. F7A321621E9E37960069AD1B /* Activity */,
  1875. F7E0E1DA22327885006B0911 /* AudioRecorder */,
  1876. F7B0C1701EE8397E0033AC24 /* AutoUpload */,
  1877. F7AE00F6230E8191007ACF8A /* BrowserWeb */,
  1878. F7BAAD951ED5A63D00B7EAD4 /* Database */,
  1879. F7A3214D1E9E2A070069AD1B /* Favorites */,
  1880. F7BFFA621A24D7300044ED85 /* Login */,
  1881. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */,
  1882. F7EC9CB921185F2000F1C5CE /* Media */,
  1883. F7A321891E9E42B20069AD1B /* MenuAccount */,
  1884. F74D3DB81BAC1941000BAE4B /* Networking */,
  1885. F7C5259A1E3B441D00FFE02C /* Notification */,
  1886. F7381ED9218218A4000B1560 /* Offline */,
  1887. F7FCFFD51D70798C000E6E29 /* PeekPop */,
  1888. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */,
  1889. F758B41E212C516300515F55 /* ScanDocument */,
  1890. F7FE125B1BAC03FB0041924B /* Security */,
  1891. F79A65C12191D8DC00FF6DCC /* Select */,
  1892. F7ACE4281BAC0268006C0017 /* Settings */,
  1893. F728CE741BF6322C00E69702 /* Share */,
  1894. F7169A161EE590930086BD69 /* Shares */,
  1895. F7B0C0CA1EE7E7750033AC24 /* Synchronize */,
  1896. F7E9C41320F4CA870040CF18 /* Transfers */,
  1897. F78F74322163753B00C2ADAD /* Trash */,
  1898. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */,
  1899. F7BFFA991A24D7BB0044ED85 /* Utility */,
  1900. F79630EC215526B60015EEA5 /* Viewer */,
  1901. );
  1902. path = iOSClient;
  1903. sourceTree = "<group>";
  1904. };
  1905. F7F67BAB1A24D27800EE80DA /* Supporting Files */ = {
  1906. isa = PBXGroup;
  1907. children = (
  1908. F72B60941A24F04E004EF66F /* Localizations */,
  1909. F75CDBF51DF063AD00116AD0 /* .gitignore */,
  1910. F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */,
  1911. F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */,
  1912. F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */,
  1913. F7229B491DF71BB300E8C4E7 /* AUTHORS */,
  1914. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */,
  1915. F77D49A71DC238E500CDC568 /* loading.gif */,
  1916. F7F67BAD1A24D27800EE80DA /* main.m */,
  1917. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */,
  1918. F76344751BF259A800188725 /* synchronized.gif */,
  1919. F76344761BF259A800188725 /* synchronizedcrypto.gif */,
  1920. );
  1921. name = "Supporting Files";
  1922. path = iOSClient;
  1923. sourceTree = "<group>";
  1924. };
  1925. F7FC7D541DC1F93700BB2C6A /* Frameworks */ = {
  1926. isa = PBXGroup;
  1927. children = (
  1928. F710C5EF2471A6D1009AD8B7 /* Sentry.framework */,
  1929. F7AF7632246BEDFE00B86E3C /* TOPasscodeViewController.framework */,
  1930. F7D2C772246470CA008513AE /* XLForm.framework */,
  1931. F79018A424092EF4007C9B6D /* ATGMediaBrowser.framework */,
  1932. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */,
  1933. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */,
  1934. F765608A23BF80A400765969 /* SwiftEntryKit.framework */,
  1935. F765608623BF806C00765969 /* QuickLayout.framework */,
  1936. F716FE7723795E5000FABE50 /* NCCommunication.framework */,
  1937. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */,
  1938. F736B551234DCF57008A5C9F /* Alamofire.framework */,
  1939. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */,
  1940. F774264022EB3F7300B23912 /* DropDown.framework */,
  1941. F74AFCE822E8B024003DE61F /* FSCalendar.framework */,
  1942. F700510222DF6897003A3356 /* Parchment.framework */,
  1943. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */,
  1944. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */,
  1945. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */,
  1946. F76E71E42244DF6900690001 /* Zip.framework */,
  1947. F745B250222D871800346520 /* QRCodeReader.framework */,
  1948. F75153232226920200323DDC /* FastScroll.framework */,
  1949. F78AA20521F783E900D0F205 /* SwiftRichString.framework */,
  1950. F72E0B9C21AD60BC00898D7B /* WeScan.framework */,
  1951. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */,
  1952. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */,
  1953. F7063DEC2199E55F003F38DA /* SVGKit.framework */,
  1954. F7C40C112199BA620004137E /* RealmSwift.framework */,
  1955. F7C40C0F2199BA5D0004137E /* Realm.framework */,
  1956. F7C40BF22199978B0004137E /* MBProgressHUD.framework */,
  1957. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */,
  1958. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */,
  1959. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */,
  1960. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */,
  1961. F7C40BE8219991A60004137E /* EAIntroView.framework */,
  1962. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */,
  1963. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */,
  1964. F7C40BE221998C050004137E /* PDFGenerator.framework */,
  1965. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */,
  1966. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */,
  1967. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */,
  1968. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */,
  1969. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */,
  1970. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */,
  1971. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */,
  1972. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */,
  1973. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */,
  1974. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */,
  1975. F7FC7D551DC1F93800BB2C6A /* libz.tbd */,
  1976. );
  1977. name = Frameworks;
  1978. sourceTree = "<group>";
  1979. };
  1980. F7FC7D651DC1F98700BB2C6A /* Products */ = {
  1981. isa = PBXGroup;
  1982. children = (
  1983. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */,
  1984. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */,
  1985. );
  1986. name = Products;
  1987. sourceTree = "<group>";
  1988. };
  1989. F7FCFFD51D70798C000E6E29 /* PeekPop */ = {
  1990. isa = PBXGroup;
  1991. children = (
  1992. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */,
  1993. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */,
  1994. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */,
  1995. );
  1996. path = PeekPop;
  1997. sourceTree = "<group>";
  1998. };
  1999. F7FE125B1BAC03FB0041924B /* Security */ = {
  2000. isa = PBXGroup;
  2001. children = (
  2002. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */,
  2003. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */,
  2004. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */,
  2005. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */,
  2006. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */,
  2007. );
  2008. path = Security;
  2009. sourceTree = "<group>";
  2010. };
  2011. /* End PBXGroup section */
  2012. /* Begin PBXNativeTarget section */
  2013. 2C33C47E23E2C475005F963B /* Notification Service Extension */ = {
  2014. isa = PBXNativeTarget;
  2015. buildConfigurationList = 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */;
  2016. buildPhases = (
  2017. 2C33C47B23E2C475005F963B /* Sources */,
  2018. 2C33C47C23E2C475005F963B /* Frameworks */,
  2019. 2C33C47D23E2C475005F963B /* Resources */,
  2020. );
  2021. buildRules = (
  2022. );
  2023. dependencies = (
  2024. );
  2025. name = "Notification Service Extension";
  2026. productName = "Notification Service Extension";
  2027. productReference = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */;
  2028. productType = "com.apple.product-type.app-extension";
  2029. };
  2030. F71459B41D12E3B700CAFEEC /* Share */ = {
  2031. isa = PBXNativeTarget;
  2032. buildConfigurationList = F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */;
  2033. buildPhases = (
  2034. F71459B51D12E3B700CAFEEC /* Sources */,
  2035. F7145A141D12E3B700CAFEEC /* Frameworks */,
  2036. F7145A181D12E3B700CAFEEC /* Resources */,
  2037. );
  2038. buildRules = (
  2039. );
  2040. dependencies = (
  2041. );
  2042. name = Share;
  2043. productName = "Share Ext";
  2044. productReference = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */;
  2045. productType = "com.apple.product-type.app-extension";
  2046. };
  2047. F771E3CF20E2392D00AFB62D /* File Provider Extension */ = {
  2048. isa = PBXNativeTarget;
  2049. buildConfigurationList = F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */;
  2050. buildPhases = (
  2051. F771E3CC20E2392D00AFB62D /* Sources */,
  2052. F771E3CD20E2392D00AFB62D /* Frameworks */,
  2053. F771E3CE20E2392D00AFB62D /* Resources */,
  2054. );
  2055. buildRules = (
  2056. );
  2057. dependencies = (
  2058. );
  2059. name = "File Provider Extension";
  2060. productName = "File Provider Extension";
  2061. productReference = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */;
  2062. productType = "com.apple.product-type.app-extension";
  2063. };
  2064. F77B0DEB1D118A16002130FE /* Nextcloud */ = {
  2065. isa = PBXNativeTarget;
  2066. buildConfigurationList = F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */;
  2067. buildPhases = (
  2068. F77B0DEF1D118A16002130FE /* Sources */,
  2069. F77B0EDC1D118A16002130FE /* Frameworks */,
  2070. F77B0EE91D118A16002130FE /* Resources */,
  2071. F77B0F981D118A16002130FE /* Embed App Extensions */,
  2072. F73B02C01DC0F1C900EC2C33 /* ShellScript */,
  2073. F75A40001EBCB82B00B213E8 /* ShellScript */,
  2074. );
  2075. buildRules = (
  2076. );
  2077. dependencies = (
  2078. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */,
  2079. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */,
  2080. 2C33C48523E2C475005F963B /* PBXTargetDependency */,
  2081. );
  2082. name = Nextcloud;
  2083. productName = "Crypto Cloud";
  2084. productReference = F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */;
  2085. productType = "com.apple.product-type.application";
  2086. };
  2087. /* End PBXNativeTarget section */
  2088. /* Begin PBXProject section */
  2089. F7F67BA01A24D27800EE80DA /* Project object */ = {
  2090. isa = PBXProject;
  2091. attributes = {
  2092. LastSwiftUpdateCheck = 1130;
  2093. LastUpgradeCheck = 1020;
  2094. ORGANIZATIONNAME = "Marino Faggiana";
  2095. TargetAttributes = {
  2096. 2C33C47E23E2C475005F963B = {
  2097. CreatedOnToolsVersion = 11.3.1;
  2098. DevelopmentTeam = 6JLRKY9ZV7;
  2099. ProvisioningStyle = Automatic;
  2100. };
  2101. F71459B41D12E3B700CAFEEC = {
  2102. DevelopmentTeam = 6JLRKY9ZV7;
  2103. LastSwiftMigration = 1020;
  2104. SystemCapabilities = {
  2105. com.apple.ApplicationGroups.iOS = {
  2106. enabled = 1;
  2107. };
  2108. com.apple.iCloud = {
  2109. enabled = 0;
  2110. };
  2111. };
  2112. };
  2113. F771E3CF20E2392D00AFB62D = {
  2114. CreatedOnToolsVersion = 9.4.1;
  2115. DevelopmentTeam = 6JLRKY9ZV7;
  2116. LastSwiftMigration = 1020;
  2117. ProvisioningStyle = Automatic;
  2118. };
  2119. F77B0DEB1D118A16002130FE = {
  2120. DevelopmentTeam = 6JLRKY9ZV7;
  2121. LastSwiftMigration = 1020;
  2122. ProvisioningStyle = Automatic;
  2123. SystemCapabilities = {
  2124. com.apple.Push = {
  2125. enabled = 1;
  2126. };
  2127. com.apple.iCloud = {
  2128. enabled = 1;
  2129. };
  2130. };
  2131. };
  2132. };
  2133. };
  2134. buildConfigurationList = F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */;
  2135. compatibilityVersion = "Xcode 3.2";
  2136. developmentRegion = en;
  2137. hasScannedForEncodings = 0;
  2138. knownRegions = (
  2139. en,
  2140. Base,
  2141. de,
  2142. fr,
  2143. "pt-BR",
  2144. ru,
  2145. it,
  2146. tr,
  2147. "es-MX",
  2148. "nb-NO",
  2149. pl,
  2150. sv,
  2151. es,
  2152. is,
  2153. nl,
  2154. "sk-SK",
  2155. "en-GB",
  2156. "zh-Hans",
  2157. "ka-GE",
  2158. hu,
  2159. "zh-Hant-TW",
  2160. sr,
  2161. "es-CL",
  2162. "es-CO",
  2163. "es-CR",
  2164. "es-DO",
  2165. "es-EC",
  2166. "es-GT",
  2167. "es-HN",
  2168. "es-NI",
  2169. "es-PA",
  2170. "es-PE",
  2171. "es-PR",
  2172. "es-PY",
  2173. "es-SV",
  2174. "es-UY",
  2175. "cs-CZ",
  2176. ko,
  2177. "es-419",
  2178. "pt-PT",
  2179. "ja-JP",
  2180. gl,
  2181. ca,
  2182. da,
  2183. );
  2184. mainGroup = F7F67B9F1A24D27800EE80DA;
  2185. productRefGroup = F7F67B9F1A24D27800EE80DA;
  2186. projectDirPath = "";
  2187. projectRoot = "";
  2188. targets = (
  2189. F77B0DEB1D118A16002130FE /* Nextcloud */,
  2190. F71459B41D12E3B700CAFEEC /* Share */,
  2191. F771E3CF20E2392D00AFB62D /* File Provider Extension */,
  2192. 2C33C47E23E2C475005F963B /* Notification Service Extension */,
  2193. );
  2194. };
  2195. /* End PBXProject section */
  2196. /* Begin PBXResourcesBuildPhase section */
  2197. 2C33C47D23E2C475005F963B /* Resources */ = {
  2198. isa = PBXResourcesBuildPhase;
  2199. buildActionMask = 2147483647;
  2200. files = (
  2201. );
  2202. runOnlyForDeploymentPostprocessing = 0;
  2203. };
  2204. F7145A181D12E3B700CAFEEC /* Resources */ = {
  2205. isa = PBXResourcesBuildPhase;
  2206. buildActionMask = 2147483647;
  2207. files = (
  2208. F78B9686234F785300F54315 /* NCSelectDestination.storyboard in Resources */,
  2209. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */,
  2210. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */,
  2211. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */,
  2212. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */,
  2213. F700222D1EC479840080073F /* Custom.xcassets in Resources */,
  2214. );
  2215. runOnlyForDeploymentPostprocessing = 0;
  2216. };
  2217. F771E3CE20E2392D00AFB62D /* Resources */ = {
  2218. isa = PBXResourcesBuildPhase;
  2219. buildActionMask = 2147483647;
  2220. files = (
  2221. );
  2222. runOnlyForDeploymentPostprocessing = 0;
  2223. };
  2224. F77B0EE91D118A16002130FE /* Resources */ = {
  2225. isa = PBXResourcesBuildPhase;
  2226. buildActionMask = 2147483647;
  2227. files = (
  2228. F79728D422F96F2E003CACA7 /* NCShareLinkFolderMenuView.xib in Resources */,
  2229. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */,
  2230. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */,
  2231. F77D49A91DC238E500CDC568 /* loading.gif in Resources */,
  2232. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */,
  2233. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */,
  2234. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */,
  2235. F711CD71246AC9B80009B204 /* GB2312Freq.tab in Resources */,
  2236. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */,
  2237. F76D3CF52428D0C1005DFA87 /* NCViewerPDF.storyboard in Resources */,
  2238. F700222C1EC479840080073F /* Custom.xcassets in Resources */,
  2239. F710D20024057E5E00A6033D /* NCActionSheetHeaderView.xib in Resources */,
  2240. F758B45A212C564000515F55 /* Scan.storyboard in Resources */,
  2241. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */,
  2242. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */,
  2243. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */,
  2244. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */,
  2245. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */,
  2246. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */,
  2247. F711CD5F246AC9B80009B204 /* EUCKRFreq.tab in Resources */,
  2248. F7632FBF21832F8700721B71 /* NCTrashSectionHeaderMenu.xib in Resources */,
  2249. F739513A221B127F00D986C8 /* NCSectionMediaHeader.xib in Resources */,
  2250. F77B0F481D118A16002130FE /* synchronized.gif in Resources */,
  2251. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */,
  2252. F7E0E1DE22327DBA006B0911 /* NCAudioRecorderViewController.storyboard in Resources */,
  2253. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */,
  2254. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */,
  2255. F76D3CF32428B94E005DFA87 /* NCViewerPDFSearchCell.xib in Resources */,
  2256. F769453E22E9E97E000A798A /* NCShareUserMenuView.xib in Resources */,
  2257. F749C10E23C4A5340027D966 /* NCIntroCollectionViewCell.xib in Resources */,
  2258. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */,
  2259. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */,
  2260. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */,
  2261. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */,
  2262. F711CD4E246AC9B80009B204 /* symbols.cmake in Resources */,
  2263. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */,
  2264. F711CD70246AC9B80009B204 /* Big5Freq.tab in Resources */,
  2265. F749C10D23C4A5340027D966 /* NCIntro.storyboard in Resources */,
  2266. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */,
  2267. F7B2DEF11F976859007CF4D2 /* english.txt in Resources */,
  2268. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */,
  2269. F704B5E72430C06700632F5F /* NCCreateFormUploadConflictCell.xib in Resources */,
  2270. F79728D622F9A0B1003CACA7 /* NCShareUserFolderMenuView.xib in Resources */,
  2271. F711CD50246AC9B80009B204 /* CMakeLists.txt in Resources */,
  2272. F7DFAA8A22E22EF100FC4527 /* NCShareLinkMenuView.xib in Resources */,
  2273. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */,
  2274. F774DF0F1FCC26BE002AF9FC /* iTunesArtwork@1x.png in Resources */,
  2275. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */,
  2276. F704B5E32430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard in Resources */,
  2277. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */,
  2278. F711CD55246AC9B80009B204 /* EUCTWFreq.tab in Resources */,
  2279. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */,
  2280. F77B0F631D118A16002130FE /* Localizable.strings in Resources */,
  2281. F7632FC1218353AA00721B71 /* NCTrashSectionFooter.xib in Resources */,
  2282. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */,
  2283. F774264A22EB4D0000B23912 /* NCShareUserDropDownCell.xib in Resources */,
  2284. F722814323C8C34500C41898 /* NCRichWorkspace.xib in Resources */,
  2285. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */,
  2286. F78ACD56219047E90088454D /* NCSectionHeader.xib in Resources */,
  2287. F711CD5D246AC9B80009B204 /* JISFreq.tab in Resources */,
  2288. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */,
  2289. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */,
  2290. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */,
  2291. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */,
  2292. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */,
  2293. F70006FA24164F8D00F214A5 /* NCViewerImageVideo.storyboard in Resources */,
  2294. F774DF101FCC26BE002AF9FC /* iTunesArtwork@2x.png in Resources */,
  2295. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */,
  2296. F774DF111FCC26BE002AF9FC /* iTunesArtwork@3x.png in Resources */,
  2297. );
  2298. runOnlyForDeploymentPostprocessing = 0;
  2299. };
  2300. /* End PBXResourcesBuildPhase section */
  2301. /* Begin PBXShellScriptBuildPhase section */
  2302. F73B02C01DC0F1C900EC2C33 /* ShellScript */ = {
  2303. isa = PBXShellScriptBuildPhase;
  2304. buildActionMask = 2147483647;
  2305. files = (
  2306. );
  2307. inputPaths = (
  2308. );
  2309. outputPaths = (
  2310. );
  2311. runOnlyForDeploymentPostprocessing = 0;
  2312. shellPath = /bin/sh;
  2313. 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";
  2314. };
  2315. F75A40001EBCB82B00B213E8 /* ShellScript */ = {
  2316. isa = PBXShellScriptBuildPhase;
  2317. buildActionMask = 2147483647;
  2318. files = (
  2319. );
  2320. inputPaths = (
  2321. "$(SRCROOT)/Carthage/Build/iOS/TLPhotoPicker.framework",
  2322. "$(SRCROOT)/Carthage/Build/iOS/UICKeyChainStore.framework",
  2323. "$(SRCROOT)/Carthage/Build/iOS/MGSwipeTableCell.framework",
  2324. "$(SRCROOT)/Carthage/Build/iOS/DZNEmptyDataSet.framework",
  2325. "$(SRCROOT)/Carthage/Build/iOS/KTVHTTPCache.framework",
  2326. "$(SRCROOT)/Carthage/Build/iOS/KTVCocoaHTTPServer.framework",
  2327. "$(SRCROOT)/Carthage/Build/iOS/MBProgressHUD.framework",
  2328. "$(SRCROOT)/Carthage/Build/iOS/Realm.framework",
  2329. "$(SRCROOT)/Carthage/Build/iOS/RealmSwift.framework",
  2330. "$(SRCROOT)/Carthage/Build/iOS/SVGKit.framework",
  2331. "$(SRCROOT)/Carthage/Build/iOS/CocoaLumberjack.framework",
  2332. "$(SRCROOT)/Carthage/Build/iOS/CocoaLumberjackSwift.framework",
  2333. "$(SRCROOT)/Carthage/Build/iOS/WeScan.framework",
  2334. "$(SRCROOT)/Carthage/Build/iOS/SwiftRichString.framework",
  2335. "$(SRCROOT)/Carthage/Build/iOS/QRCodeReader.framework",
  2336. "$(SRCROOT)/Carthage/Build/iOS/AFNetworking.framework",
  2337. "$(SRCROOT)/Carthage/Build/iOS/ZIPFoundation.framework",
  2338. "$(SRCROOT)/Carthage/Build/iOS/Parchment.framework",
  2339. "$(SRCROOT)/Carthage/Build/iOS/FSCalendar.framework",
  2340. "$(SRCROOT)/Carthage/Build/iOS/DropDown.framework",
  2341. "$(SRCROOT)/Carthage/Build/iOS/OpenSSL.framework",
  2342. "$(SRCROOT)/Carthage/Build/iOS/Alamofire.framework",
  2343. "$(SRCROOT)/Carthage/Build/iOS/SwiftyXMLParser.framework",
  2344. "$(SRCROOT)/Carthage/Build/iOS/NCCommunication.framework",
  2345. "$(SRCROOT)/Carthage/Build/iOS/SwiftyJSON.framework",
  2346. "$(SRCROOT)/Carthage/Build/iOS/QuickLayout.framework",
  2347. "$(SRCROOT)/Carthage/Build/iOS/SwiftEntryKit.framework",
  2348. "$(SRCROOT)/Carthage/Build/iOS/FloatingPanel.framework",
  2349. "$(SRCROOT)/Carthage/Build/iOS/MarkdownKit.framework",
  2350. "$(SRCROOT)/Carthage/Build/iOS/XLForm.framework",
  2351. "$(SRCROOT)/Carthage/Build/iOS/TOPasscodeViewController.framework",
  2352. "$(SRCROOT)/Carthage/Build/iOS/Sentry.framework",
  2353. );
  2354. outputPaths = (
  2355. );
  2356. runOnlyForDeploymentPostprocessing = 0;
  2357. shellPath = /bin/sh;
  2358. shellScript = "/usr/local/bin/carthage copy-frameworks\n";
  2359. };
  2360. /* End PBXShellScriptBuildPhase section */
  2361. /* Begin PBXSourcesBuildPhase section */
  2362. 2C33C47B23E2C475005F963B /* Sources */ = {
  2363. isa = PBXSourcesBuildPhase;
  2364. buildActionMask = 2147483647;
  2365. files = (
  2366. F785EEA52461A4CF00B3F945 /* CCUtility.m in Sources */,
  2367. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */,
  2368. 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */,
  2369. 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */,
  2370. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */,
  2371. F73D5E4A246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
  2372. 2CB7D1CA23E2EDCB00376EF9 /* NCPushNotificationEncryption.m in Sources */,
  2373. );
  2374. runOnlyForDeploymentPostprocessing = 0;
  2375. };
  2376. F71459B51D12E3B700CAFEEC /* Sources */ = {
  2377. isa = PBXSourcesBuildPhase;
  2378. buildActionMask = 2147483647;
  2379. files = (
  2380. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */,
  2381. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */,
  2382. F73D5E48246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
  2383. F711CCBD246AC99E0009B204 /* UtilsFramework.m in Sources */,
  2384. F711CCE3246AC99E0009B204 /* OCNotifications.m in Sources */,
  2385. F785EEA32461A23C00B3F945 /* CCExifGeo.m in Sources */,
  2386. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */,
  2387. F711CCDB246AC99E0009B204 /* OCActivity.m in Sources */,
  2388. F711CCB7246AC99E0009B204 /* OCNotificationsAction.m in Sources */,
  2389. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */,
  2390. F711CCD1246AC99E0009B204 /* OCXMLServerErrorsParser.m in Sources */,
  2391. F7E87CC3241A559E005E8C6F /* NCNetworkingEndToEnd.m in Sources */,
  2392. F711CCB5246AC99E0009B204 /* HCFeatures.m in Sources */,
  2393. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */,
  2394. F711CCE1246AC99E0009B204 /* OCCommunication.m in Sources */,
  2395. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */,
  2396. F711CCBF246AC99E0009B204 /* NSString+Encode.m in Sources */,
  2397. F711CCD7246AC99E0009B204 /* NSDate+ISO8601.m in Sources */,
  2398. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  2399. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */,
  2400. F711CCC5246AC99E0009B204 /* OCCapabilities.m in Sources */,
  2401. F711CCDD246AC99E0009B204 /* OCSharedDto.m in Sources */,
  2402. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */,
  2403. F711CCC7246AC99E0009B204 /* NCXMLListParser.m in Sources */,
  2404. F711CCD9246AC99E0009B204 /* NSDate+RFC1123.m in Sources */,
  2405. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */,
  2406. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */,
  2407. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */,
  2408. F711CCC1246AC99E0009B204 /* OCRichObjectStrings.m in Sources */,
  2409. F711CCB9246AC99E0009B204 /* OCUserProfile.m in Sources */,
  2410. F711CCB3246AC99E0009B204 /* OCFileDto.m in Sources */,
  2411. F765609023BF813600765969 /* NCContentPresenter.swift in Sources */,
  2412. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */,
  2413. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */,
  2414. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  2415. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  2416. F711CCDF246AC99E0009B204 /* NCComments.m in Sources */,
  2417. F711CCCF246AC99E0009B204 /* OCXMLShareByLinkParser.m in Sources */,
  2418. F711CCD3246AC99E0009B204 /* OCHTTPRequestOperation.m in Sources */,
  2419. F78B9685234F785300F54315 /* NCSelectDestination.m in Sources */,
  2420. F711CCC9246AC99E0009B204 /* OCXMLSharedParser.m in Sources */,
  2421. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */,
  2422. F711CCC3246AC99E0009B204 /* OCExternalSites.m in Sources */,
  2423. F711CCCB246AC99E0009B204 /* NCXMLGetAppPasswordParser.m in Sources */,
  2424. F711CCB1246AC99E0009B204 /* NCRichDocumentTemplate.m in Sources */,
  2425. F711CCBB246AC99E0009B204 /* OCShareUser.m in Sources */,
  2426. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  2427. F711CCD5246AC99E0009B204 /* OCWebDAVClient.m in Sources */,
  2428. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  2429. F711CCCD246AC99E0009B204 /* NCXMLCommentsParser.m in Sources */,
  2430. );
  2431. runOnlyForDeploymentPostprocessing = 0;
  2432. };
  2433. F771E3CC20E2392D00AFB62D /* Sources */ = {
  2434. isa = PBXSourcesBuildPhase;
  2435. buildActionMask = 2147483647;
  2436. files = (
  2437. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */,
  2438. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */,
  2439. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */,
  2440. F76673EE22C901F6007ED366 /* FileProviderDomain.swift in Sources */,
  2441. F7434B3820E2400600417916 /* NCBrand.swift in Sources */,
  2442. F785EE9E2461A09900B3F945 /* NCNetworking.swift in Sources */,
  2443. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */,
  2444. F73D5E49246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
  2445. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */,
  2446. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */,
  2447. F716FE7A23795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift in Sources */,
  2448. F785EEA42461A4A600B3F945 /* NCUtility.swift in Sources */,
  2449. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */,
  2450. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */,
  2451. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */,
  2452. F785EEA62461A4FB00B3F945 /* CCUtility.m in Sources */,
  2453. );
  2454. runOnlyForDeploymentPostprocessing = 0;
  2455. };
  2456. F77B0DEF1D118A16002130FE /* Sources */ = {
  2457. isa = PBXSourcesBuildPhase;
  2458. buildActionMask = 2147483647;
  2459. files = (
  2460. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */,
  2461. F711CCB6246AC99E0009B204 /* OCNotificationsAction.m in Sources */,
  2462. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */,
  2463. F711CD5C246AC9B80009B204 /* nsEUCJPProber.cpp in Sources */,
  2464. F7E09CE323E3088000FB3E9E /* NCMainRefreshControl.swift in Sources */,
  2465. F77B0DF41D118A16002130FE /* CCMain.m in Sources */,
  2466. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */,
  2467. F7E9C41B20F4CA870040CF18 /* CCTransfers.m in Sources */,
  2468. 37C83A0F24532BA600618A3B /* CCMain+Swift.swift in Sources */,
  2469. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */,
  2470. F711CD4F246AC9B80009B204 /* uchardet.cpp in Sources */,
  2471. F711CD66246AC9B80009B204 /* LangThaiModel.cpp in Sources */,
  2472. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */,
  2473. F711CCBA246AC99E0009B204 /* OCShareUser.m in Sources */,
  2474. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */,
  2475. F711CCE2246AC99E0009B204 /* OCNotifications.m in Sources */,
  2476. F710D1FE24057E5E00A6033D /* NCActionSheetHeader.swift in Sources */,
  2477. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */,
  2478. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */,
  2479. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */,
  2480. F711CD61246AC9B80009B204 /* nsCharSetProber.cpp in Sources */,
  2481. 37ECC83B23D0C7410082EFA2 /* NCMenuAction.swift in Sources */,
  2482. F75B0ABD244C4DBB00E58DCA /* NCNetworkingNotificationCenter.swift in Sources */,
  2483. F79018B8240962C7007C9B6D /* NCViewerImageViewController.swift in Sources */,
  2484. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */,
  2485. F711CCDC246AC99E0009B204 /* OCSharedDto.m in Sources */,
  2486. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */,
  2487. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */,
  2488. F76D3CF12428B40E005DFA87 /* NCViewerPDFSearch.swift in Sources */,
  2489. F78ACD4F2190440D0088454D /* NCLayout.swift in Sources */,
  2490. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */,
  2491. F79018B7240962C7007C9B6D /* NCViewerImageContentView.swift in Sources */,
  2492. F711CCD6246AC99E0009B204 /* NSDate+ISO8601.m in Sources */,
  2493. F78E7065219F096B006F23E4 /* NCAvatar.swift in Sources */,
  2494. F711CD6F246AC9B80009B204 /* LangDanishModel.cpp in Sources */,
  2495. F7DFB7F0219C5B8000680748 /* NCCreateFormUploadAssets.swift in Sources */,
  2496. 371B5A2E23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift in Sources */,
  2497. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */,
  2498. F711CD6B246AC9B80009B204 /* LangEsperantoModel.cpp in Sources */,
  2499. F77444F8222816D5000D5EB0 /* NCPhotosPickerViewController.swift in Sources */,
  2500. F711CCDE246AC99E0009B204 /* NCComments.m in Sources */,
  2501. F77B0E141D118A16002130FE /* CCError.m in Sources */,
  2502. F7E09CE523E3088C00FB3E9E /* NCSplitViewController.swift in Sources */,
  2503. F710D1F724057C9400A6033D /* NCDetailNavigationController.swift in Sources */,
  2504. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */,
  2505. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */,
  2506. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */,
  2507. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */,
  2508. F711CD60246AC9B80009B204 /* nsSJISProber.cpp in Sources */,
  2509. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */,
  2510. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */,
  2511. F758B460212C56A400515F55 /* ScanCollectionView.swift in Sources */,
  2512. F711CD67246AC9B80009B204 /* LangSpanishModel.cpp in Sources */,
  2513. F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */,
  2514. F711CD65246AC9B80009B204 /* LangFrenchModel.cpp in Sources */,
  2515. F711CD5B246AC9B80009B204 /* nsLatin1Prober.cpp in Sources */,
  2516. F749C10C23C4A5340027D966 /* NCIntroViewController.swift in Sources */,
  2517. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */,
  2518. F710D2022405826100A6033D /* NCDetailNavigationController+Menu.swift in Sources */,
  2519. F711CCBC246AC99E0009B204 /* UtilsFramework.m in Sources */,
  2520. 3757A35523D9D76300EC369E /* NCMenuPanelController.swift in Sources */,
  2521. F7CA1ED320E7E3FE002CC65E /* PKStopDownloadButton.m in Sources */,
  2522. F704B5E92430C0B800632F5F /* NCCreateFormUploadConflictCell.swift in Sources */,
  2523. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */,
  2524. F711CCBE246AC99E0009B204 /* NSString+Encode.m in Sources */,
  2525. F711CD6A246AC9B80009B204 /* LangHebrewModel.cpp in Sources */,
  2526. F711CCB8246AC99E0009B204 /* OCUserProfile.m in Sources */,
  2527. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */,
  2528. F7D6650720FF341600BFBA9E /* NCMainCommon.swift in Sources */,
  2529. F700510522DF6A89003A3356 /* NCShare.swift in Sources */,
  2530. F711CCCE246AC99E0009B204 /* OCXMLShareByLinkParser.m in Sources */,
  2531. F7CA1ED120E7E3FE002CC65E /* PKCircleProgressView.m in Sources */,
  2532. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */,
  2533. F7CA1ED420E7E3FE002CC65E /* PKPendingView.m in Sources */,
  2534. F769454222E9F0EE000A798A /* NCShareLinkMenuView.swift in Sources */,
  2535. F785EE9D246196DF00B3F945 /* NCNetworkingE2EE.swift in Sources */,
  2536. F77B0E301D118A16002130FE /* CCHud.m in Sources */,
  2537. F711CCE0246AC99E0009B204 /* OCCommunication.m in Sources */,
  2538. F711CCC0246AC99E0009B204 /* OCRichObjectStrings.m in Sources */,
  2539. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */,
  2540. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */,
  2541. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */,
  2542. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */,
  2543. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */,
  2544. F711CD74246AC9B80009B204 /* nsUTF8Prober.cpp in Sources */,
  2545. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */,
  2546. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  2547. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */,
  2548. F711CD58246AC9B80009B204 /* nsMBCSSM.cpp in Sources */,
  2549. F78ACD4A21903F850088454D /* NCTrashListCell.swift in Sources */,
  2550. F711CD62246AC9B80009B204 /* LangHungarianModel.cpp in Sources */,
  2551. F711CD04246AC9B10009B204 /* DropdownItem.swift in Sources */,
  2552. F711CD72246AC9B80009B204 /* nsUniversalDetector.cpp in Sources */,
  2553. F711CCB2246AC99E0009B204 /* OCFileDto.m in Sources */,
  2554. F711CD63246AC9B80009B204 /* LangVietnameseModel.cpp in Sources */,
  2555. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */,
  2556. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */,
  2557. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */,
  2558. F711CD5E246AC9B80009B204 /* nsHebrewProber.cpp in Sources */,
  2559. F711CCD4246AC99E0009B204 /* OCWebDAVClient.m in Sources */,
  2560. 3781B9B223DB2B9F006B4B1D /* CCMain+Menu.swift in Sources */,
  2561. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */,
  2562. F7417DB3216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift in Sources */,
  2563. F711CD51246AC9B80009B204 /* nsMBCSGroupProber.cpp in Sources */,
  2564. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  2565. F7DBC37C23325E02001A85BA /* NCAppConfigView.swift in Sources */,
  2566. F711CCC6246AC99E0009B204 /* NCXMLListParser.m in Sources */,
  2567. F738143A240FE48D00404AC7 /* NCViewerImageCommon.swift in Sources */,
  2568. F711CD57246AC9B80009B204 /* nsGB2312Prober.cpp in Sources */,
  2569. F711CCC4246AC99E0009B204 /* OCCapabilities.m in Sources */,
  2570. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */,
  2571. F77B0E671D118A16002130FE /* Reachability.m in Sources */,
  2572. F73D5E47246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
  2573. F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */,
  2574. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */,
  2575. F711CD54246AC9B80009B204 /* nsBig5Prober.cpp in Sources */,
  2576. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */,
  2577. F713FF002472764100214AF6 /* UIImage+animatedGIF.m in Sources */,
  2578. F711CD75246AC9B80009B204 /* nsEscSM.cpp in Sources */,
  2579. F7B174C822FAC0A8000B7579 /* AppDelegate.m in Sources */,
  2580. F749C10B23C4A5340027D966 /* NCIntroCollectionViewCell.swift in Sources */,
  2581. F711CD07246AC9B10009B204 /* SectionHeader.swift in Sources */,
  2582. F711CCB4246AC99E0009B204 /* HCFeatures.m in Sources */,
  2583. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */,
  2584. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */,
  2585. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  2586. F711CD06246AC9B10009B204 /* DropdownMenu.swift in Sources */,
  2587. F711CCC2246AC99E0009B204 /* OCExternalSites.m in Sources */,
  2588. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  2589. F711CD69246AC9B80009B204 /* LangRussianModel.cpp in Sources */,
  2590. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */,
  2591. F769454422E9F142000A798A /* NCShareUserMenuView.swift in Sources */,
  2592. F711CD4C246AC9B80009B204 /* NCUchardet.m in Sources */,
  2593. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */,
  2594. F711CD4D246AC9B80009B204 /* nsEUCTWProber.cpp in Sources */,
  2595. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */,
  2596. F7CA1ED720E7E3FE002CC65E /* PKDownloadButton.m in Sources */,
  2597. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */,
  2598. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
  2599. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */,
  2600. F711CCD2246AC99E0009B204 /* OCHTTPRequestOperation.m in Sources */,
  2601. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */,
  2602. F711CD64246AC9B80009B204 /* LangBulgarianModel.cpp in Sources */,
  2603. F7B7504B2397D38F004E13EC /* UIImage+fixedOrientation.swift in Sources */,
  2604. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */,
  2605. F711CD52246AC9B80009B204 /* nsSBCSGroupProber.cpp in Sources */,
  2606. F7CA1ED020E7E3FE002CC65E /* UIImage+PKDownloadButton.m in Sources */,
  2607. F7DFB7F4219C5CA800680748 /* NCCreateFormUploadScanDocument.swift in Sources */,
  2608. F711CCC8246AC99E0009B204 /* OCXMLSharedParser.m in Sources */,
  2609. F70006FC2416500B00F214A5 /* NCViewerImageVideo.swift in Sources */,
  2610. F711CD59246AC9B80009B204 /* JpCntx.cpp in Sources */,
  2611. F710D1FF24057E5E00A6033D /* NCActionSheetHeaderView.swift in Sources */,
  2612. F7E09CE723E308AD00FB3E9E /* NCMasterNavigationController.swift in Sources */,
  2613. F79018B6240962C7007C9B6D /* NCViewerImageDismissAnimationController.swift in Sources */,
  2614. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */,
  2615. F7F4B1D823C74B3E00D82A6E /* NCRichWorkspace.swift in Sources */,
  2616. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */,
  2617. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */,
  2618. F7E0E1DC22327885006B0911 /* NCAudioRecorderViewController.swift in Sources */,
  2619. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */,
  2620. 3781B9B423DB2BC9006B4B1D /* CCFavorites+Menu.swift in Sources */,
  2621. F711CD56246AC9B80009B204 /* nsEUCKRProber.cpp in Sources */,
  2622. F711CCD8246AC99E0009B204 /* NSDate+RFC1123.m in Sources */,
  2623. F711CD6D246AC9B80009B204 /* LangGermanModel.cpp in Sources */,
  2624. F710D1F924057C9D00A6033D /* NCDetailViewController.swift in Sources */,
  2625. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */,
  2626. F711CD53246AC9B80009B204 /* nsSBCharSetProber.cpp in Sources */,
  2627. F7B2DEF01F976854007CF4D2 /* NYMnemonic.m in Sources */,
  2628. F711CD68246AC9B80009B204 /* LangArabicModel.cpp in Sources */,
  2629. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */,
  2630. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  2631. F79018B9240962C7007C9B6D /* NCViewerImageContentTransformers.swift in Sources */,
  2632. F70968A424212C4E00ED60E5 /* NCLivePhoto.swift in Sources */,
  2633. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */,
  2634. F711CCCA246AC99E0009B204 /* NCXMLGetAppPasswordParser.m in Sources */,
  2635. F704FA5C232A343F00BBA952 /* IMImagemeterViewer.swift in Sources */,
  2636. F711CCDA246AC99E0009B204 /* OCActivity.m in Sources */,
  2637. F7CA1ED220E7E3FE002CC65E /* PKCircleView.m in Sources */,
  2638. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */,
  2639. F711CD6C246AC9B80009B204 /* LangTurkishModel.cpp in Sources */,
  2640. F711CD5A246AC9B80009B204 /* CharDistribution.cpp in Sources */,
  2641. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */,
  2642. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */,
  2643. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */,
  2644. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */,
  2645. F711CCD0246AC99E0009B204 /* OCXMLServerErrorsParser.m in Sources */,
  2646. F711CD6E246AC9B80009B204 /* LangGreekModel.cpp in Sources */,
  2647. F7CA1ED820E7E3FE002CC65E /* PKBorderedButton.m in Sources */,
  2648. F704B5E52430AA8000632F5F /* NCCreateFormUploadConflict.swift in Sources */,
  2649. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */,
  2650. F70CEF5623E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  2651. F711CD73246AC9B80009B204 /* nsEscCharsetProber.cpp in Sources */,
  2652. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */,
  2653. F79630EE215527D40015EEA5 /* NCViewerVideo.swift in Sources */,
  2654. F7CA1ED620E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m in Sources */,
  2655. F711CCCC246AC99E0009B204 /* NCXMLCommentsParser.m in Sources */,
  2656. F7C7B489245EBA4100D93E60 /* NCViewerQuickLook.swift in Sources */,
  2657. F758B45E212C569D00515F55 /* ScanCell.swift in Sources */,
  2658. F7CA1ED920E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m in Sources */,
  2659. F74E432620B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */,
  2660. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
  2661. F711CD05246AC9B10009B204 /* DropUpMenu.swift in Sources */,
  2662. F7D96FCC246ED7E200536D73 /* NCNetworkingCheckRemoteUser.swift in Sources */,
  2663. F7E4D9C422ED929B003675FD /* NCShareComments.swift in Sources */,
  2664. 37C83A0D24532B7200618A3B /* AppDelegate+Swift.swift in Sources */,
  2665. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */,
  2666. F711CCB0246AC99E0009B204 /* NCRichDocumentTemplate.m in Sources */,
  2667. F77B0ED91D118A16002130FE /* main.m in Sources */,
  2668. );
  2669. runOnlyForDeploymentPostprocessing = 0;
  2670. };
  2671. /* End PBXSourcesBuildPhase section */
  2672. /* Begin PBXTargetDependency section */
  2673. 2C33C48523E2C475005F963B /* PBXTargetDependency */ = {
  2674. isa = PBXTargetDependency;
  2675. target = 2C33C47E23E2C475005F963B /* Notification Service Extension */;
  2676. targetProxy = 2C33C48423E2C475005F963B /* PBXContainerItemProxy */;
  2677. };
  2678. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */ = {
  2679. isa = PBXTargetDependency;
  2680. target = F71459B41D12E3B700CAFEEC /* Share */;
  2681. targetProxy = F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */;
  2682. };
  2683. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */ = {
  2684. isa = PBXTargetDependency;
  2685. target = F771E3CF20E2392D00AFB62D /* File Provider Extension */;
  2686. targetProxy = F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */;
  2687. };
  2688. /* End PBXTargetDependency section */
  2689. /* Begin PBXVariantGroup section */
  2690. F7E70DE91A24DE4100E1B66A /* Localizable.strings */ = {
  2691. isa = PBXVariantGroup;
  2692. children = (
  2693. F7151A811D477A4B00E6AF45 /* en */,
  2694. F7B1A7761EBB3C8000BFB6D1 /* de */,
  2695. F75B91E21ECAE17800199C96 /* fr */,
  2696. F75B91F71ECAE26300199C96 /* pt-BR */,
  2697. F75B923D1ECAE55E00199C96 /* ru */,
  2698. F7169A301EE59BB70086BD69 /* it */,
  2699. F7169A4C1EE59C640086BD69 /* tr */,
  2700. F78D6F461F0B7CB9002F9619 /* es-MX */,
  2701. F78D6F4D1F0B7CE4002F9619 /* nb-NO */,
  2702. F78D6F541F0B7D47002F9619 /* pl */,
  2703. F7DE9AB01F482FA5008DFE10 /* sv */,
  2704. F7CC04E61F5AD50D00378CEF /* es */,
  2705. F7D532461F5D4123006568B1 /* is */,
  2706. F7D5324D1F5D4137006568B1 /* nl */,
  2707. F7D532541F5D4155006568B1 /* sk-SK */,
  2708. F7D5328F1F5D443B006568B1 /* en-GB */,
  2709. F7D532A41F5D4461006568B1 /* zh-Hans */,
  2710. F77438EB1FCD694900662C46 /* ka-GE */,
  2711. F77438F21FCD69D300662C46 /* hu */,
  2712. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */,
  2713. F77439001FCD6B7F00662C46 /* sr */,
  2714. F77439071FCD6BF000662C46 /* es-CL */,
  2715. F774390E1FCD6C0C00662C46 /* es-CO */,
  2716. F77439151FCD6C4A00662C46 /* es-CR */,
  2717. F774391C1FCD6C6700662C46 /* es-DO */,
  2718. F77439231FCD6C8700662C46 /* es-EC */,
  2719. F774392A1FCD6CAA00662C46 /* es-GT */,
  2720. F77439311FCD6CC400662C46 /* es-HN */,
  2721. F77439381FCD6CDE00662C46 /* es-NI */,
  2722. F774393F1FCD6D0B00662C46 /* es-PA */,
  2723. F77439461FCD6D2300662C46 /* es-PE */,
  2724. F774394D1FCD6D3E00662C46 /* es-PR */,
  2725. F77439541FCD6D6100662C46 /* es-PY */,
  2726. F774395B1FCD6D8200662C46 /* es-SV */,
  2727. F77439621FCD6D9C00662C46 /* es-UY */,
  2728. F7BB04851FD58ACB00BBFD2A /* cs-CZ */,
  2729. F7320934201B812F008A0888 /* ko */,
  2730. F732093B201B81E4008A0888 /* es-419 */,
  2731. F70A07C8205285FB00DC1231 /* pt-PT */,
  2732. F7E45E6D21E75BF200579249 /* ja-JP */,
  2733. F753701822723D620041C76C /* gl */,
  2734. F753701922723E0D0041C76C /* ca */,
  2735. F753701A22723EC80041C76C /* da */,
  2736. );
  2737. name = Localizable.strings;
  2738. path = "Supporting Files";
  2739. sourceTree = "<group>";
  2740. };
  2741. /* End PBXVariantGroup section */
  2742. /* Begin XCBuildConfiguration section */
  2743. 2C33C48723E2C475005F963B /* Debug */ = {
  2744. isa = XCBuildConfiguration;
  2745. buildSettings = {
  2746. APPLICATION_EXTENSION_API_ONLY = NO;
  2747. CLANG_ANALYZER_NONNULL = YES;
  2748. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2749. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2750. CLANG_ENABLE_OBJC_WEAK = YES;
  2751. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2752. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  2753. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  2754. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2755. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2756. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
  2757. CODE_SIGN_IDENTITY = "iPhone Developer";
  2758. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2759. CODE_SIGN_STYLE = Automatic;
  2760. CURRENT_PROJECT_VERSION = 53;
  2761. DEBUG_INFORMATION_FORMAT = dwarf;
  2762. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2763. FRAMEWORK_SEARCH_PATHS = (
  2764. "$(inherited)",
  2765. "$(PROJECT_DIR)/Carthage/Build/iOS",
  2766. );
  2767. GCC_C_LANGUAGE_STANDARD = gnu11;
  2768. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  2769. GCC_PREPROCESSOR_DEFINITIONS = (
  2770. "$(inherited)",
  2771. EXTENSION,
  2772. EXTENSION_NOTIFICATION_SERVICE,
  2773. );
  2774. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  2775. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
  2776. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2777. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  2778. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  2779. MARKETING_VERSION = 3.0.0;
  2780. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2781. MTL_FAST_MATH = YES;
  2782. OTHER_LDFLAGS = "-ObjC";
  2783. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  2784. PRODUCT_NAME = "$(TARGET_NAME)";
  2785. SKIP_INSTALL = YES;
  2786. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_NOTIFICATION_SERVICE";
  2787. SWIFT_OBJC_BRIDGING_HEADER = "Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  2788. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2789. SWIFT_VERSION = 5.0;
  2790. TARGETED_DEVICE_FAMILY = "1,2";
  2791. };
  2792. name = Debug;
  2793. };
  2794. 2C33C48823E2C475005F963B /* Release */ = {
  2795. isa = XCBuildConfiguration;
  2796. buildSettings = {
  2797. APPLICATION_EXTENSION_API_ONLY = NO;
  2798. CLANG_ANALYZER_NONNULL = YES;
  2799. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2800. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2801. CLANG_ENABLE_OBJC_WEAK = YES;
  2802. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2803. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  2804. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  2805. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2806. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2807. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
  2808. CODE_SIGN_IDENTITY = "iPhone Developer";
  2809. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2810. CODE_SIGN_STYLE = Automatic;
  2811. CURRENT_PROJECT_VERSION = 53;
  2812. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2813. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2814. FRAMEWORK_SEARCH_PATHS = (
  2815. "$(inherited)",
  2816. "$(PROJECT_DIR)/Carthage/Build/iOS",
  2817. );
  2818. GCC_C_LANGUAGE_STANDARD = gnu11;
  2819. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  2820. GCC_PREPROCESSOR_DEFINITIONS = (
  2821. "$(inherited)",
  2822. EXTENSION,
  2823. EXTENSION_NOTIFICATION_SERVICE,
  2824. );
  2825. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  2826. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
  2827. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2828. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  2829. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  2830. MARKETING_VERSION = 3.0.0;
  2831. MTL_FAST_MATH = YES;
  2832. OTHER_LDFLAGS = "-ObjC";
  2833. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  2834. PRODUCT_NAME = "$(TARGET_NAME)";
  2835. SKIP_INSTALL = YES;
  2836. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_NOTIFICATION_SERVICE";
  2837. SWIFT_OBJC_BRIDGING_HEADER = "Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  2838. SWIFT_VERSION = 5.0;
  2839. TARGETED_DEVICE_FAMILY = "1,2";
  2840. };
  2841. name = Release;
  2842. };
  2843. F7145A261D12E3B700CAFEEC /* Debug */ = {
  2844. isa = XCBuildConfiguration;
  2845. buildSettings = {
  2846. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2847. APPLICATION_EXTENSION_API_ONLY = NO;
  2848. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  2849. CLANG_ENABLE_MODULES = YES;
  2850. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2851. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  2852. CODE_SIGN_IDENTITY = "iPhone Developer";
  2853. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2854. CURRENT_PROJECT_VERSION = 53;
  2855. DEBUG_INFORMATION_FORMAT = dwarf;
  2856. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2857. FRAMEWORK_SEARCH_PATHS = (
  2858. "$(inherited)",
  2859. "$(PROJECT_DIR)/Carthage/Build/iOS",
  2860. );
  2861. GCC_NO_COMMON_BLOCKS = YES;
  2862. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  2863. GCC_PREPROCESSOR_DEFINITIONS = (
  2864. "$(inherited)",
  2865. EXTENSION,
  2866. EXTENSION_SHARE,
  2867. );
  2868. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  2869. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  2870. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2871. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  2872. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  2873. MARKETING_VERSION = 3.0.0;
  2874. OTHER_LDFLAGS = "-ObjC";
  2875. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  2876. PRODUCT_NAME = "$(TARGET_NAME)";
  2877. SKIP_INSTALL = YES;
  2878. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_SHARE";
  2879. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  2880. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2881. SWIFT_VERSION = 5.0;
  2882. TARGETED_DEVICE_FAMILY = "1,2";
  2883. USE_HEADERMAP = YES;
  2884. };
  2885. name = Debug;
  2886. };
  2887. F7145A271D12E3B700CAFEEC /* Release */ = {
  2888. isa = XCBuildConfiguration;
  2889. buildSettings = {
  2890. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2891. APPLICATION_EXTENSION_API_ONLY = NO;
  2892. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  2893. CLANG_ENABLE_MODULES = YES;
  2894. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2895. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  2896. CODE_SIGN_IDENTITY = "iPhone Developer";
  2897. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2898. CURRENT_PROJECT_VERSION = 53;
  2899. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2900. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2901. FRAMEWORK_SEARCH_PATHS = (
  2902. "$(inherited)",
  2903. "$(PROJECT_DIR)/Carthage/Build/iOS",
  2904. );
  2905. GCC_NO_COMMON_BLOCKS = YES;
  2906. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  2907. GCC_PREPROCESSOR_DEFINITIONS = (
  2908. "$(inherited)",
  2909. EXTENSION,
  2910. EXTENSION_SHARE,
  2911. );
  2912. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  2913. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  2914. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2915. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  2916. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  2917. MARKETING_VERSION = 3.0.0;
  2918. OTHER_LDFLAGS = "-ObjC";
  2919. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  2920. PRODUCT_NAME = "$(TARGET_NAME)";
  2921. SKIP_INSTALL = YES;
  2922. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_SHARE";
  2923. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  2924. SWIFT_VERSION = 5.0;
  2925. TARGETED_DEVICE_FAMILY = "1,2";
  2926. USE_HEADERMAP = YES;
  2927. };
  2928. name = Release;
  2929. };
  2930. F771E3F020E2392E00AFB62D /* Debug */ = {
  2931. isa = XCBuildConfiguration;
  2932. buildSettings = {
  2933. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2934. APPLICATION_EXTENSION_API_ONLY = NO;
  2935. CLANG_ANALYZER_NONNULL = YES;
  2936. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2937. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2938. CLANG_ENABLE_OBJC_WEAK = YES;
  2939. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  2940. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  2941. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  2942. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2943. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2944. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  2945. CODE_SIGN_IDENTITY = "iPhone Developer";
  2946. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2947. CODE_SIGN_STYLE = Automatic;
  2948. CURRENT_PROJECT_VERSION = 53;
  2949. DEBUG_INFORMATION_FORMAT = dwarf;
  2950. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2951. FRAMEWORK_SEARCH_PATHS = (
  2952. "$(inherited)",
  2953. "$(PROJECT_DIR)/Carthage/Build/iOS",
  2954. );
  2955. GCC_C_LANGUAGE_STANDARD = gnu11;
  2956. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  2957. GCC_PREPROCESSOR_DEFINITIONS = (
  2958. "$(inherited)",
  2959. EXTENSION,
  2960. EXTENSION_FILE_PROVIDER_EXTENSION,
  2961. );
  2962. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  2963. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  2964. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2965. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  2966. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  2967. MARKETING_VERSION = 3.0.0;
  2968. OTHER_LDFLAGS = "-ObjC";
  2969. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  2970. PRODUCT_NAME = "$(TARGET_NAME)";
  2971. SKIP_INSTALL = YES;
  2972. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION";
  2973. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  2974. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2975. SWIFT_VERSION = 5.0;
  2976. TARGETED_DEVICE_FAMILY = "1,2";
  2977. };
  2978. name = Debug;
  2979. };
  2980. F771E3F120E2392E00AFB62D /* Release */ = {
  2981. isa = XCBuildConfiguration;
  2982. buildSettings = {
  2983. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2984. APPLICATION_EXTENSION_API_ONLY = NO;
  2985. CLANG_ANALYZER_NONNULL = YES;
  2986. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2987. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2988. CLANG_ENABLE_OBJC_WEAK = YES;
  2989. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  2990. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  2991. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  2992. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2993. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2994. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  2995. CODE_SIGN_IDENTITY = "iPhone Developer";
  2996. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2997. CODE_SIGN_STYLE = Automatic;
  2998. CURRENT_PROJECT_VERSION = 53;
  2999. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3000. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3001. FRAMEWORK_SEARCH_PATHS = (
  3002. "$(inherited)",
  3003. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3004. );
  3005. GCC_C_LANGUAGE_STANDARD = gnu11;
  3006. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3007. GCC_PREPROCESSOR_DEFINITIONS = (
  3008. "$(inherited)",
  3009. EXTENSION,
  3010. EXTENSION_FILE_PROVIDER_EXTENSION,
  3011. );
  3012. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3013. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  3014. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3015. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3016. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3017. MARKETING_VERSION = 3.0.0;
  3018. OTHER_LDFLAGS = "-ObjC";
  3019. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  3020. PRODUCT_NAME = "$(TARGET_NAME)";
  3021. SKIP_INSTALL = YES;
  3022. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION";
  3023. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  3024. SWIFT_VERSION = 5.0;
  3025. TARGETED_DEVICE_FAMILY = "1,2";
  3026. };
  3027. name = Release;
  3028. };
  3029. F77B0F9B1D118A16002130FE /* Debug */ = {
  3030. isa = XCBuildConfiguration;
  3031. buildSettings = {
  3032. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3033. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3034. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  3035. CLANG_ENABLE_MODULES = YES;
  3036. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3037. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  3038. CODE_SIGN_IDENTITY = "iPhone Developer";
  3039. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3040. CURRENT_PROJECT_VERSION = 53;
  3041. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3042. ENABLE_BITCODE = YES;
  3043. FRAMEWORK_SEARCH_PATHS = (
  3044. "$(inherited)",
  3045. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3046. );
  3047. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  3048. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3049. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  3050. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  3051. HEADER_SEARCH_PATHS = "$(PROJECT_DIR)\"/Libraries external/openssl\"";
  3052. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  3053. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3054. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3055. LIBRARY_SEARCH_PATHS = "";
  3056. MARKETING_VERSION = 3.0.0;
  3057. OTHER_LDFLAGS = "-ObjC";
  3058. OTHER_SWIFT_FLAGS = "";
  3059. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  3060. PRODUCT_NAME = "$(TARGET_NAME)";
  3061. PROVISIONING_PROFILE = "";
  3062. PROVISIONING_PROFILE_SPECIFIER = "";
  3063. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3064. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  3065. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3066. SWIFT_VERSION = 5.0;
  3067. TARGETED_DEVICE_FAMILY = "1,2";
  3068. USE_HEADERMAP = YES;
  3069. VERSIONING_SYSTEM = "";
  3070. };
  3071. name = Debug;
  3072. };
  3073. F77B0F9C1D118A16002130FE /* Release */ = {
  3074. isa = XCBuildConfiguration;
  3075. buildSettings = {
  3076. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3077. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3078. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  3079. CLANG_ENABLE_MODULES = YES;
  3080. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3081. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  3082. CODE_SIGN_IDENTITY = "iPhone Developer";
  3083. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3084. COPY_PHASE_STRIP = NO;
  3085. CURRENT_PROJECT_VERSION = 53;
  3086. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3087. ENABLE_BITCODE = YES;
  3088. FRAMEWORK_SEARCH_PATHS = (
  3089. "$(inherited)",
  3090. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3091. );
  3092. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  3093. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3094. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  3095. HEADER_SEARCH_PATHS = "$(PROJECT_DIR)\"/Libraries external/openssl\"";
  3096. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  3097. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3098. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3099. LIBRARY_SEARCH_PATHS = "";
  3100. MARKETING_VERSION = 3.0.0;
  3101. OTHER_LDFLAGS = "-ObjC";
  3102. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  3103. PRODUCT_NAME = "$(TARGET_NAME)";
  3104. PROVISIONING_PROFILE = "";
  3105. PROVISIONING_PROFILE_SPECIFIER = "";
  3106. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3107. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  3108. SWIFT_VERSION = 5.0;
  3109. TARGETED_DEVICE_FAMILY = "1,2";
  3110. USE_HEADERMAP = YES;
  3111. VERSIONING_SYSTEM = "";
  3112. };
  3113. name = Release;
  3114. };
  3115. F7F67BC91A24D27800EE80DA /* Debug */ = {
  3116. isa = XCBuildConfiguration;
  3117. buildSettings = {
  3118. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3119. ALWAYS_SEARCH_USER_PATHS = NO;
  3120. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3121. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  3122. CLANG_CXX_LIBRARY = "libc++";
  3123. CLANG_ENABLE_MODULES = YES;
  3124. CLANG_ENABLE_OBJC_ARC = YES;
  3125. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3126. CLANG_WARN_BOOL_CONVERSION = YES;
  3127. CLANG_WARN_COMMA = YES;
  3128. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3129. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3130. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3131. CLANG_WARN_EMPTY_BODY = YES;
  3132. CLANG_WARN_ENUM_CONVERSION = YES;
  3133. CLANG_WARN_INFINITE_RECURSION = YES;
  3134. CLANG_WARN_INT_CONVERSION = YES;
  3135. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3136. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3137. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3138. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3139. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3140. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3141. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3142. CLANG_WARN_UNREACHABLE_CODE = YES;
  3143. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3144. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3145. COPY_PHASE_STRIP = NO;
  3146. DEFINES_MODULE = YES;
  3147. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3148. ENABLE_TESTABILITY = YES;
  3149. GCC_C_LANGUAGE_STANDARD = gnu99;
  3150. GCC_DYNAMIC_NO_PIC = NO;
  3151. GCC_NO_COMMON_BLOCKS = YES;
  3152. GCC_OPTIMIZATION_LEVEL = 0;
  3153. GCC_PREPROCESSOR_DEFINITIONS = (
  3154. "$(inherited)",
  3155. DEBUG,
  3156. NC,
  3157. );
  3158. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  3159. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3160. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3161. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3162. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3163. GCC_WARN_UNUSED_FUNCTION = YES;
  3164. GCC_WARN_UNUSED_VARIABLE = YES;
  3165. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  3166. MTL_ENABLE_DEBUG_INFO = YES;
  3167. ONLY_ACTIVE_ARCH = YES;
  3168. OTHER_LDFLAGS = (
  3169. "-Obj-C",
  3170. "-all_load",
  3171. );
  3172. SDKROOT = iphoneos;
  3173. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) NC";
  3174. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  3175. };
  3176. name = Debug;
  3177. };
  3178. F7F67BCA1A24D27800EE80DA /* Release */ = {
  3179. isa = XCBuildConfiguration;
  3180. buildSettings = {
  3181. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3182. ALWAYS_SEARCH_USER_PATHS = NO;
  3183. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3184. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  3185. CLANG_CXX_LIBRARY = "libc++";
  3186. CLANG_ENABLE_MODULES = YES;
  3187. CLANG_ENABLE_OBJC_ARC = YES;
  3188. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3189. CLANG_WARN_BOOL_CONVERSION = YES;
  3190. CLANG_WARN_COMMA = YES;
  3191. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3192. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3193. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3194. CLANG_WARN_EMPTY_BODY = YES;
  3195. CLANG_WARN_ENUM_CONVERSION = YES;
  3196. CLANG_WARN_INFINITE_RECURSION = YES;
  3197. CLANG_WARN_INT_CONVERSION = YES;
  3198. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3199. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3200. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3201. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3202. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3203. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3204. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3205. CLANG_WARN_UNREACHABLE_CODE = YES;
  3206. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3207. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3208. COPY_PHASE_STRIP = NO;
  3209. DEFINES_MODULE = YES;
  3210. ENABLE_NS_ASSERTIONS = NO;
  3211. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3212. GCC_C_LANGUAGE_STANDARD = gnu99;
  3213. GCC_NO_COMMON_BLOCKS = YES;
  3214. GCC_PREPROCESSOR_DEFINITIONS = (
  3215. "$(inherited)",
  3216. NC,
  3217. );
  3218. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3219. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3220. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3221. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3222. GCC_WARN_UNUSED_FUNCTION = YES;
  3223. GCC_WARN_UNUSED_VARIABLE = YES;
  3224. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  3225. MTL_ENABLE_DEBUG_INFO = NO;
  3226. OTHER_LDFLAGS = (
  3227. "-Obj-C",
  3228. "-all_load",
  3229. );
  3230. SDKROOT = iphoneos;
  3231. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG NC";
  3232. SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
  3233. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  3234. VALIDATE_PRODUCT = YES;
  3235. };
  3236. name = Release;
  3237. };
  3238. /* End XCBuildConfiguration section */
  3239. /* Begin XCConfigurationList section */
  3240. 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */ = {
  3241. isa = XCConfigurationList;
  3242. buildConfigurations = (
  3243. 2C33C48723E2C475005F963B /* Debug */,
  3244. 2C33C48823E2C475005F963B /* Release */,
  3245. );
  3246. defaultConfigurationIsVisible = 0;
  3247. defaultConfigurationName = Release;
  3248. };
  3249. F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */ = {
  3250. isa = XCConfigurationList;
  3251. buildConfigurations = (
  3252. F7145A261D12E3B700CAFEEC /* Debug */,
  3253. F7145A271D12E3B700CAFEEC /* Release */,
  3254. );
  3255. defaultConfigurationIsVisible = 0;
  3256. defaultConfigurationName = Release;
  3257. };
  3258. F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */ = {
  3259. isa = XCConfigurationList;
  3260. buildConfigurations = (
  3261. F771E3F020E2392E00AFB62D /* Debug */,
  3262. F771E3F120E2392E00AFB62D /* Release */,
  3263. );
  3264. defaultConfigurationIsVisible = 0;
  3265. defaultConfigurationName = Release;
  3266. };
  3267. F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */ = {
  3268. isa = XCConfigurationList;
  3269. buildConfigurations = (
  3270. F77B0F9B1D118A16002130FE /* Debug */,
  3271. F77B0F9C1D118A16002130FE /* Release */,
  3272. );
  3273. defaultConfigurationIsVisible = 0;
  3274. defaultConfigurationName = Release;
  3275. };
  3276. F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */ = {
  3277. isa = XCConfigurationList;
  3278. buildConfigurations = (
  3279. F7F67BC91A24D27800EE80DA /* Debug */,
  3280. F7F67BCA1A24D27800EE80DA /* Release */,
  3281. );
  3282. defaultConfigurationIsVisible = 0;
  3283. defaultConfigurationName = Release;
  3284. };
  3285. /* End XCConfigurationList section */
  3286. };
  3287. rootObject = F7F67BA01A24D27800EE80DA /* Project object */;
  3288. }