project.pbxproj 260 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXAggregateTarget section */
  9. 2C80449F84CF910DF6AD6AFDDE039F2A /* OpenCV */ = {
  10. isa = PBXAggregateTarget;
  11. buildConfigurationList = 251859CCDBE46B920FE9CC5E6DDB1DD5 /* Build configuration list for PBXAggregateTarget "OpenCV" */;
  12. buildPhases = (
  13. );
  14. dependencies = (
  15. );
  16. name = OpenCV;
  17. };
  18. A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */ = {
  19. isa = PBXAggregateTarget;
  20. buildConfigurationList = 3397B830BC8BA069FBDEC81C57521AF2 /* Build configuration list for PBXAggregateTarget "TensorFlowLite" */;
  21. buildPhases = (
  22. );
  23. dependencies = (
  24. );
  25. name = TensorFlowLite;
  26. };
  27. /* End PBXAggregateTarget section */
  28. /* Begin PBXBuildFile section */
  29. 005B231AA85A6BFC8647CD640A1A1FB4 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED4F8C5E0FB36B0CD6CC7F9616D52B7 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  30. 018F4FA75C96E3E1E353513BD1125909 /* PCSPreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 204CA60EC1B7C772C3D36025B1B6DA86 /* PCSPreviewViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  31. 01B35A0F9D57306DF777EE47481D4B82 /* OperationNodePanorama.m in Sources */ = {isa = PBXBuildFile; fileRef = 76AACD0328038A9E1220704F08A441B1 /* OperationNodePanorama.m */; };
  32. 022C51C27CC7FABE56E5F7CE72D8BB74 /* YYTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 676142B5756DF90D6870BBDB0AE3F608 /* YYTextView.m */; };
  33. 024BCB935C4E36CED14B0928D313EB87 /* YYTextDebugOption.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DABCF75E98DDA7FBB1906C577003884 /* YYTextDebugOption.m */; };
  34. 02D5EF905F6F4A9F4900E3F0A2BD82F5 /* LenzSDKConstant.h in Headers */ = {isa = PBXBuildFile; fileRef = F5049C5F877CBD72B509EC4B1DEC8658 /* LenzSDKConstant.h */; settings = {ATTRIBUTES = (Project, ); }; };
  35. 03D1213FA21588FD345696AD8D39E3D5 /* PreviewSingleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DB6663A010226558D707C281C209AB38 /* PreviewSingleViewController.m */; };
  36. 04C566EDDB0AB17AC2A3260531654EDE /* CustomModalViewTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = A37C778A14DC752AE1507A0BDA2C786D /* CustomModalViewTransition.m */; };
  37. 05DFCD690BFEE2E630599310DE67C7EF /* YYText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2606EA301C7ABE12319FE8E5FEA351CF /* YYText-dummy.m */; };
  38. 0667B110459F4806AF8640AB8906A52B /* PhotoCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E3097F9E53FF4FA4EE93F31ABF162D4C /* PhotoCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  39. 0723595B90F6E6429F513AE4FD44DC86 /* PhotoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = E66591112B11D3B2807F8285E4CD78F4 /* PhotoCell.xib */; };
  40. 08D755DC12FE748D7255803153721531 /* PhotoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 0381D6264AACCED00039B43DF5BF249F /* PhotoCell.m */; };
  41. 092E48F4355F5E1E1269D312C6E1527D /* PhotoAlbumListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F492E22DCE8C4BEC347DA3EFB78F04E /* PhotoAlbumListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  42. 0B12D684B663DE752981635E5E7E1D5F /* YYTextRunDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 03AFFE13C349A3114DE7204AF43D6680 /* YYTextRunDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
  43. 0B2C13F6CD7295BCD5EEE2944857E495 /* CameraTextureRenderPass.m in Sources */ = {isa = PBXBuildFile; fileRef = F8899028D046196EA57FCE66B9E701AB /* CameraTextureRenderPass.m */; };
  44. 0DCD461D5C85883E70A2DD64D0727E1F /* OperationNodeMultiple.m in Sources */ = {isa = PBXBuildFile; fileRef = 373580D0F071057971D7BF1AE9E50A3E /* OperationNodeMultiple.m */; };
  45. 0ECDD6415A550A7A133FEEBEA429AD85 /* YYTextArchiver.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DFC0F8998D1FA349D1E54D8E1283BED /* YYTextArchiver.m */; };
  46. 110DF4590D2C678B870D325E7ED656C3 /* PCSMotionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DD203947A7FEADCBEE348B4005B59810 /* PCSMotionManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  47. 117776BBF42988106BF561FDAFEE0697 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B6D881545362B2B169BD3A2D2DB4A35 /* MASViewConstraint.m */; };
  48. 125AF6B177294E3A6B91CB2DCCABE6AE /* YYTextAsyncLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = C6AD000DB191B44DFC2F8C13A686EF9C /* YYTextAsyncLayer.m */; };
  49. 12A83A59D24975A4E3FF42BC9CC48B1E /* OperationNodeProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D934080A70BD4395BE8B64F373AA744 /* OperationNodeProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; };
  50. 12EE5222B056A0B40984081BF3AEC1F6 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 358CC6AC3C97C40150E9B61BF3B6E61D /* MASLayoutConstraint.m */; };
  51. 13CF02D246163A750E2961DD009AB924 /* Localizable.strings in Sources */ = {isa = PBXBuildFile; fileRef = B64616E4AD17F736F1BADBA2EF127E6F /* Localizable.strings */; };
  52. 144200426C6A9C84CA0730B5C8525054 /* YYTextRubyAnnotation.h in Headers */ = {isa = PBXBuildFile; fileRef = 705D56BBE5EC4DC23360F2FB38751822 /* YYTextRubyAnnotation.h */; settings = {ATTRIBUTES = (Project, ); }; };
  53. 176E744831F2561F70E6637C53E337CD /* OperationNodeMultiple.h in Headers */ = {isa = PBXBuildFile; fileRef = D91048A235AB83FB966D87A7128F5EBD /* OperationNodeMultiple.h */; settings = {ATTRIBUTES = (Project, ); }; };
  54. 19618D24C110524772EBFFA9EDBDC6A7 /* LenzDataManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AFE61FB930DCE67894411202942F84B2 /* LenzDataManager.m */; };
  55. 1B522B62CEFBF4180C711975502ED9E2 /* TensorFlowWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = B6C5C2C653F1C9C1593022709562F4CE /* TensorFlowWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; };
  56. 1BDA000F27087AA4B491C26CB777A35C /* YYTextMagnifier.h in Headers */ = {isa = PBXBuildFile; fileRef = F06CB2764FD8A0B4FD319F420A48CB65 /* YYTextMagnifier.h */; settings = {ATTRIBUTES = (Project, ); }; };
  57. 1C4BE900C7A425F8B0A52EB7C4A3B84B /* PhotoCollectionViewCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = 7F9123FC2C70C4889B7A4C15B8E927AB /* PhotoCollectionViewCell.xib */; };
  58. 1DF67F590F45D43954EE03C2B080F4B3 /* YYTextEffectWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 30007945463B9DCDEAD0AE3EE0A88B47 /* YYTextEffectWindow.m */; };
  59. 1E7629895A0652F6FD0EB648BA6ADD90 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 297B311818D27768A6AFABABBFC0B616 /* NSArray+MASAdditions.m */; };
  60. 1EF2F7110C47A2DFC8CEC6C6E0EAB214 /* AlbumCounterLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F204DD8659EF00E3504B4219C1A6A37 /* AlbumCounterLabel.m */; };
  61. 1F7C784242D8531EBD4640CEFFEB5AC7 /* UIImage+name.h in Headers */ = {isa = PBXBuildFile; fileRef = AD5825DACE28052E151075551E902B54 /* UIImage+name.h */; settings = {ATTRIBUTES = (Project, ); }; };
  62. 217BD3FFD7A208B1287291EC25B5EBC2 /* YYTextParser.h in Headers */ = {isa = PBXBuildFile; fileRef = F88B06FC6D8C55F610D2B1691BBC70D9 /* YYTextParser.h */; settings = {ATTRIBUTES = (Project, ); }; };
  63. 22490466CF2D2DA82430F0080A746C76 /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = B63A65BC6D803D6DDFD0EC61F3CC380F /* SVProgressHUD.m */; };
  64. 2263DAFFB8E79EBB090200008F44BA8D /* UIButton+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E8D50672304655930FBEE3ABFF3D45B /* UIButton+Layout.m */; };
  65. 25615B76BA83195B7EE3855F7D764944 /* PCSRoundButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A6FDB503D60999CA1431880C50F2CDCD /* PCSRoundButton.m */; };
  66. 26C0089ACE4BF68787A691FE5E4F3238 /* PanoramaGuideView.m in Sources */ = {isa = PBXBuildFile; fileRef = CC27C862E41AF7D57E07C4D1F62E7909 /* PanoramaGuideView.m */; };
  67. 27CEA8163C19A8259DB35A54608725A0 /* PhotoListCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = E846495FF769A13567980F3F2949225D /* PhotoListCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  68. 281EB070A810441DC7972C933624FAFD /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = D87DC04B6DBADD682E2C53B0072AF4EE /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  69. 285601774A3C951246F06826455BBE75 /* OperationNodeVideoBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A98C205CBCEB82AFBB50E5DA6CBCB23 /* OperationNodeVideoBase.h */; settings = {ATTRIBUTES = (Project, ); }; };
  70. 2877B928CAA87597E727C21533111115 /* BaseViewTapGestureDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E7274F3C5694CDF3AD35024BEAB1805 /* BaseViewTapGestureDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
  71. 2961A2633D62DCE293C9E2048887CC43 /* OperationNodeMovie.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EC5AD8503326BB582E654BE70FB4689 /* OperationNodeMovie.h */; settings = {ATTRIBUTES = (Project, ); }; };
  72. 2A8D88F05B5F2A763FB2B4F08877A18A /* YYTextInput.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C9F4EBD687C5DBDF1CED0657F2DADC /* YYTextInput.h */; settings = {ATTRIBUTES = (Project, ); }; };
  73. 2B839C696685267D6EA51D26964F2C3C /* YYTextWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 36C5150554884D89751CE9BE164F5FEA /* YYTextWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; };
  74. 2C9ACA7B8A711F9EF02E6384C53FF9C3 /* LenzCachedResourceModel.h in Headers */ = {isa = PBXBuildFile; fileRef = D06CAB0EB78BBA36B6A2477B90EC7B03 /* LenzCachedResourceModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  75. 2D44504350D265E26CA6528DD31CEA73 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = CCA35841F40ADE1827CAF5395D1ACD1B /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  76. 2D8982D47510D699127053B7649A8394 /* UIImage+ext.m in Sources */ = {isa = PBXBuildFile; fileRef = CF73DFC7AEA2987BC574FDB4206007C6 /* UIImage+ext.m */; };
  77. 2E5322D2B11C2303A7D12D6997770E57 /* SVProgressAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = EBF2DB684F61E3656F002DD6E44431CF /* SVProgressAnimatedView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  78. 2E608980FA03626B340029AE003036AE /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = FF88A8B704E76F4EF7F072D4C452246B /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  79. 3178EE126551DED26479650C3FE16405 /* YYTextLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E664EE3535FE7EE797EC2F31EBF8E7F /* YYTextLayout.h */; settings = {ATTRIBUTES = (Project, ); }; };
  80. 32022A696444C1E9127A5B86BCEB1A6A /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 4283144422CF4681426BD8335ECAF04C /* MASCompositeConstraint.m */; };
  81. 331ED0DB97FF4EA5F6C09DB0CE9619AC /* MovieListCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AE8EA71628F139BB7FA168254EEB6E1 /* MovieListCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  82. 35264269BB319058AA5B49E27A6A2D21 /* PhotoCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = E66591112B11D3B2807F8285E4CD78F4 /* PhotoCell.xib */; };
  83. 3A47B30821E6BFFCA4F902B82160C750 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = E4112C76524A14FB3C8DCBE109D8674A /* MASConstraint.m */; };
  84. 3B057C7A4F411FA517E06A0C26DA3756 /* UIButton+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = A10AAE6503FA41A5365262ACDA714B3D /* UIButton+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; };
  85. 3BDDFCA9E632BDBE6934CB18BE9893F5 /* moire_mobilenetv2_79.tflite in Resources */ = {isa = PBXBuildFile; fileRef = 59D4357D2C68FCDBB1A6940BD8D6C977 /* moire_mobilenetv2_79.tflite */; };
  86. 3C389BF8E477673BA6B0823291FA2DBD /* PCSThemeColorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E1AE2F39DAEB596F181B821A7F142366 /* PCSThemeColorManager.m */; };
  87. 3EA42F7AC77535D0077BECBF3B380CE4 /* OperationNodePanorama.h in Headers */ = {isa = PBXBuildFile; fileRef = 1042B4C2243940700B19228C32E8C43D /* OperationNodePanorama.h */; settings = {ATTRIBUTES = (Project, ); }; };
  88. 3F35958B5E1A4968B833E214C0E46015 /* CameraManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C3EF3F75B16917EC98D3720E4BA79BA5 /* CameraManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  89. 3F623F980D90C08F81D04012E8F2C8AB /* SVProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = E30558A1851D5C05C621CD77EB2BBCCB /* SVProgressHUD.h */; settings = {ATTRIBUTES = (Project, ); }; };
  90. 40155ADB90EFD86361E91323160CE22D /* CustomModalViewTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 292EA97555A989158B70EAC40E9C4362 /* CustomModalViewTransition.h */; settings = {ATTRIBUTES = (Project, ); }; };
  91. 409B0030DB2A3E2AAFA11A2E05A68871 /* PhotoCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F8088C64914375597AD32A789E60C7AF /* PhotoCollectionViewCell.m */; };
  92. 415FF2E68630397AAEEAD286850AF175 /* PreviewSingleViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BA027EBDB869859191FF46767A35F03 /* PreviewSingleViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  93. 41D1744A0B74DF8896AD695A94615A3A /* PaddingLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = AA1A02AE75D01DA6707941035BF279C7 /* PaddingLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  94. 42FCCF35D2EEE0886FE2F1ACB041E62E /* VC.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = CA3EAD24CA087AE9EFE3A51BDA28748C /* VC.storyboard */; };
  95. 44145CAEC491F2FE4D098232F6A9CA73 /* YYLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 47C3312D87AA41677BF69FA238B1D55B /* YYLabel.m */; };
  96. 44D9042A7DD01895685BF874A36390A5 /* OperationNodeAIPanorama.h in Headers */ = {isa = PBXBuildFile; fileRef = 6390DCF94F940BAB67F9567698A3AF93 /* OperationNodeAIPanorama.h */; settings = {ATTRIBUTES = (Project, ); }; };
  97. 45063A67EAE9CC4E926098B7F48BCC1B /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 52C43B9C0804B3A71ED6D02D252084DF /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  98. 494B60CAEE7393305EC6C738B483C4C5 /* UIView+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C835322A854253ADD9F5BC98CB96D71 /* UIView+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  99. 4C036777D71900ECF0D5C0AEE7A9B92A /* YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C9CB6FA65481DC8D7D73A3E6F69459D /* YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  100. 4C9CC1CED288BBA6629D30E2B133EF64 /* MovieListCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D8C530710AD71EDF8A4968381A254177 /* MovieListCellModel.m */; };
  101. 4D8B01F5A721B0963A4E57EC8A95A100 /* cpp-headers.h in Headers */ = {isa = PBXBuildFile; fileRef = 930E8712F0A98EFAF6CDF41E82E37D23 /* cpp-headers.h */; settings = {ATTRIBUTES = (Project, ); }; };
  102. 4EE24068FEDAA65164CFB914EE02D6E8 /* YYTextLine.h in Headers */ = {isa = PBXBuildFile; fileRef = A8AAD0CBF6B94AC725E7CA6C5799CFE0 /* YYTextLine.h */; settings = {ATTRIBUTES = (Project, ); }; };
  103. 4F8A50D434C3E5B9D9C46F70B07445E1 /* YYTextSelectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99A2DDA3C047059071FF314B3B2B9A6C /* YYTextSelectionView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  104. 4F91FFF1232D07DC8D6B7020D02B26C6 /* PanoramaOrientationView.m in Sources */ = {isa = PBXBuildFile; fileRef = E16F5AB657F5FCF7D7828ABFDEAC7B0C /* PanoramaOrientationView.m */; };
  105. 505020BD890028870D34E723EE252B88 /* PCSSessionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = C8E01240A044DA073A13FA7C495BD7C1 /* PCSSessionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; };
  106. 50BF819A7B469BD8359969A7F178993D /* PCSMotionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E31A913AEC1971A2D3E14C6A8EB3EB /* PCSMotionManager.m */; };
  107. 5115B0C4DFBC7A76C2A2C110EC9BD69C /* Renderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DFC753EF1FD24F5D2F62E307238636E /* Renderer.h */; settings = {ATTRIBUTES = (Project, ); }; };
  108. 52CDFA2F20A3EA332065C7280D28FA89 /* PhotoCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7F9123FC2C70C4889B7A4C15B8E927AB /* PhotoCollectionViewCell.xib */; };
  109. 530F6F356176E259D5841F647E96DC83 /* CollectionViewPlayerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C9994E77EA181E93E0F487D242B57964 /* CollectionViewPlayerCell.m */; };
  110. 53826533BEE4DEAE4B94E07DA489057E /* PCSBaseViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FE420F971CB469AF63C2C847B6E2B6CD /* PCSBaseViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  111. 56695B8AF8260EE126810CE40F9D4ADD /* YYTextWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = BFC0F33A78326D11EB375324B8459460 /* YYTextWeakProxy.m */; };
  112. 5AF21B67419C78AFD57799DB19234419 /* LenzCameraSDK.h in Headers */ = {isa = PBXBuildFile; fileRef = E5530F1AD0952B55A563430E0D97A55D /* LenzCameraSDK.h */; settings = {ATTRIBUTES = (Project, ); }; };
  113. 5BBF4E94E453F96EA59EEF37F7052604 /* YYTextTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = D58F9DF1BCFAD6AA58833AC57243594C /* YYTextTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; };
  114. 5CB5196D4F3D5681FE36BE49BEC703A6 /* DBManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A0BA9F3CF032F40FA5AD9615208E3C01 /* DBManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  115. 5CDB27ADC653B910E5B8DF3E111291F0 /* PhotoAlbumModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F847A3507D00C18A7A05775D2BF5CD0 /* PhotoAlbumModel.m */; };
  116. 5DD11041F5F16ACC6F7BF6913458E267 /* SDKParameters.m in Sources */ = {isa = PBXBuildFile; fileRef = DB7D4BE0B299881BDAA16524E221F155 /* SDKParameters.m */; };
  117. 5E2C89E20E1D62BB7B2EA07429D5310A /* AlbumCounterLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EEC06BA8089F52C602F0F28D8B32134 /* AlbumCounterLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  118. 5E322EEEEC1D81E294523B0620D005FA /* YYTextTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = F54727732A7E53DA3AD6997DF0020A5D /* YYTextTransaction.m */; };
  119. 5EA5788FEC35AA1B6E9BBE70FFE133FF /* PCSTools.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B70A8C574471B692123BD0B1DB7ECBF /* PCSTools.h */; settings = {ATTRIBUTES = (Project, ); }; };
  120. 5F42C3D9561ADE2F067717753FBD58C4 /* QuitMultipleModeAlertViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B3C3646B9DC7C39710307FBFB7FD9A9 /* QuitMultipleModeAlertViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  121. 6056C7755357C821E9CF1737CB698849 /* UIImage+ext.h in Headers */ = {isa = PBXBuildFile; fileRef = BD66DEFEA3C448B76F66EE7883BA13D6 /* UIImage+ext.h */; settings = {ATTRIBUTES = (Project, ); }; };
  122. 6292CA8F6263B40B7E25B55F3B2C6B59 /* AlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 280F56DA10B7D2B5F66DDE67E21CE4BA /* AlertView.m */; };
  123. 62E6F63C77FF3EE8B8888B9D20BB510B /* LenzSDK-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C89F2864593F6D24B8FD4530A3779204 /* LenzSDK-dummy.m */; };
  124. 62F44093DC66FAA697B5FE21FB8C1531 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = DDEDFE98E81661EE1D0AF42A8B178AA7 /* MASConstraintMaker.m */; };
  125. 64107DD75FF590C7823422415538177E /* UIPasteboard+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = D8C6C86805D19BBF0FD6C3BE0617D24B /* UIPasteboard+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  126. 641F4A3E68BA7E358E4BE621F7ADC247 /* cpp-headers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1E47B253D87480E190E02C4274637679 /* cpp-headers.mm */; };
  127. 64DF8B9736E05A1D1D02F55B27EF32C2 /* ImageCacheLRU.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D284A04C37371DA021C67F89D5FD438 /* ImageCacheLRU.m */; };
  128. 661062E4C8E017D227B1DC62F92BF7DD /* NSParagraphStyle+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F9E2BA1F0DD51F89C167D74F42F35D9 /* NSParagraphStyle+YYText.m */; };
  129. 661FA0589225A32FD92563BD0982E079 /* PhotoAlbumListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AC34EC02002CFD78CF46CAD9BB12CB8 /* PhotoAlbumListViewController.m */; };
  130. 6B1844F0D7B40329857C4648FDD80150 /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */; };
  131. 6BC549DF3C1FF4DFCD848DC296BE3989 /* NSAttributedString+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D9C4206A87792945D06CB0F4B0460D6 /* NSAttributedString+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  132. 6D283BCA3BECBC19840DCA6447782CF4 /* TimerLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 582A935B7FDA30B4ECA9AD504C063AE3 /* TimerLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  133. 6F15F88CC3BEBDE852AC7B016AD98DF7 /* PhotoAlbumModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5160D0986B919E44AEA2F4FA73D547A4 /* PhotoAlbumModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  134. 7009C65D69EA835CED4D78BBA2A98282 /* TimerLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = FB589890B9B7F7766ABAC19DE54791B6 /* TimerLabel.m */; };
  135. 7038AA2CBA2B4D2CCE07EED2A25D757B /* NSParagraphStyle+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = E8DE50D2BF6B270EB1E2AB3414917DF3 /* NSParagraphStyle+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  136. 70402D30D3C7E6F874860A9758A974A0 /* PCSModeList.m in Sources */ = {isa = PBXBuildFile; fileRef = 505D9E5C40C6F172AD8AC02C0DE522BF /* PCSModeList.m */; };
  137. 718D2EC99AE386CB3726124AFF4A0B73 /* YYTextKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1BF1FE601B3AC930F7093C2DB2EEB90 /* YYTextKeyboardManager.m */; };
  138. 71A119E487407DF525BA6F4C2307B8CF /* QuitMultipleModeAlertViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 52CD6803000C6863E9439FB85F5FC47C /* QuitMultipleModeAlertViewController.m */; };
  139. 73C90633C203AB01C6A3CF400DDA0BBF /* PCSBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5A8F4C2F7996B13D9771754778C1DB2 /* PCSBaseViewController.m */; };
  140. 7555474D9817AE487772855D7C0FCCEB /* YYTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 950F6F376B6EF8F414D301D8C8ABA68A /* YYTextView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  141. 76835997FEA6894B89B39F8B081B4C71 /* YYTextDebugOption.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB96CE46B2521BA8AF63A7187728C99 /* YYTextDebugOption.h */; settings = {ATTRIBUTES = (Project, ); }; };
  142. 780181830CFC82E8313AF047E5BBF611 /* QuitMultipleModeAlertViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = AF25D6A947DC0F618AACAA20CB6E3A9F /* QuitMultipleModeAlertViewController.xib */; };
  143. 78E0334DA026BE305CE1C4A418E40E95 /* PCSSDF-prefix-header.h in Headers */ = {isa = PBXBuildFile; fileRef = 82A5A9A9C51967A4C186A1EA30E692D5 /* PCSSDF-prefix-header.h */; settings = {ATTRIBUTES = (Project, ); }; };
  144. 7A85C81BD15042D878553840A722D1AE /* QuitMultipleModeAlertViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = AF25D6A947DC0F618AACAA20CB6E3A9F /* QuitMultipleModeAlertViewController.xib */; };
  145. 7B7A5F30A7E2EEC8F42C57AE326459C5 /* SDKParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E781E33614C6762F221B2C5CE929F9A /* SDKParameters.h */; settings = {ATTRIBUTES = (Project, ); }; };
  146. 7C53E655AD8688236C679079EE53A7E5 /* PhotoListCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1733FD41571475966EBCDD51D8F41D15 /* PhotoListCellModel.m */; };
  147. 7C5B82C8A8BEF8D00909DB65407BE271 /* Renderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C3541A1227FF278E9C155178272BD9E /* Renderer.m */; };
  148. 7D12A8EC5A153A93DEBE96F1737A0EEA /* CollectionViewPlayerCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E14454206C777C6B6BC5DF980B76E9E1 /* CollectionViewPlayerCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  149. 7F9F9EA35B9CB4969350390F67B9C9B2 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 40F5C4A17B510BEE0C544A73BAB06084 /* NSLayoutConstraint+MASDebugAdditions.m */; };
  150. 82A073E4E51BD919CE2C2FD4C161A4A8 /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = B53853BE0AAFF07C795F2FC53512BF1B /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Project, ); }; };
  151. 834B6EF569343F13A8B196B0B296D9DB /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 49FA81C35EB88895B9D2B9C585836D40 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  152. 84D2D5BDEFF698134BB33153B5437F23 /* PhotoListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F2E77569AC7EFB74006B0F9A1EC17FD /* PhotoListViewController.m */; };
  153. 855E011B34397A3E1AF85599D1D67886 /* PCSTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C80A669E157AE983B129787FF1F7CEA /* PCSTools.m */; };
  154. 868C7807A6489D093B5974A526D27483 /* UIColor+JKAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AA918D87B1EAA4EF2EFB17B36B3745F /* UIColor+JKAdd.m */; };
  155. 8874119B9D92905719CE25EF5BEF6F41 /* UIView+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F9D4030F06E502C5B21A5236DD8D247 /* UIView+YYText.m */; };
  156. 8A0D3CAABDF57E5BAC41BA90A5030C5E /* YYTextLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E2104735EA7A78538678C495ECFE1A2 /* YYTextLayout.m */; };
  157. 8B3F9BA694AA35D5D1F3263F401C8736 /* YYTextLine.m in Sources */ = {isa = PBXBuildFile; fileRef = A8AAD305CF02D66084E98C738018D020 /* YYTextLine.m */; };
  158. 8B5EDED745AF45DB0C80CFD0AFADC0C0 /* NSString+Localization.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E756E6FE39D38C7A59E600B325EDFB /* NSString+Localization.h */; settings = {ATTRIBUTES = (Project, ); }; };
  159. 8BF492DAC4219AF16FC5C98502A58D39 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = AB3C79243ED15BFAE4821D460368EAF4 /* Localizable.strings */; };
  160. 8E0025A6E85B974768DE4DCC711182BD /* UIView+JKAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = D1FC4F94C39D09C06AA249E3A6C1118C /* UIView+JKAdd.m */; };
  161. 8F0C29D8A0FDB7892DEDD24E8F4E1D93 /* LenzCameraSDK.m in Sources */ = {isa = PBXBuildFile; fileRef = D27FBB6D00805C17D1FDFFF4D7BD217A /* LenzCameraSDK.m */; };
  162. 8F0FFD3754AA76F40F9C09A09BFBFE2E /* LenzHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A494889491906BF9D14DFCAC2B28BE /* LenzHeader.h */; settings = {ATTRIBUTES = (Project, ); }; };
  163. 9058061AB6346BC6C63803A128F98DC4 /* SVIndefiniteAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 72180575EBE88D6DDC2D08102FA7B574 /* SVIndefiniteAnimatedView.m */; };
  164. 937BE2837E1599EE54F713A4CFDD34E1 /* DBManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FD94F366A2FE52E42F260FBD185624D /* DBManager.m */; };
  165. 9386B5CA4C63D3B898D292AC239E33DE /* UIColor+JKAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 96DE0BB340AC968CFE385A33610ABD5B /* UIColor+JKAdd.h */; settings = {ATTRIBUTES = (Project, ); }; };
  166. 94158F0CB9D16C22DB4C1B34F26209DF /* YYTextAsyncLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = D08B81B40D7DA7724956014AA18038AC /* YYTextAsyncLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
  167. 9552BE3DE85670B7BC1D5A1ACAA47938 /* YYTextUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 4608217F480358AB38734B97C23ACDDC /* YYTextUtilities.m */; };
  168. 96D136D68037B522F200E08057615206 /* VerticalButton.h in Headers */ = {isa = PBXBuildFile; fileRef = B4482A26613F72A8595BD0828CAEAEF9 /* VerticalButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
  169. 975CC1AEFE4B937819CEBAAC449EEC3C /* OperationNodeVideoBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 7904D868130F279A7E02E4728FA64A7B /* OperationNodeVideoBase.m */; };
  170. 97A7849A1FC23AA58F18FC075123A7F4 /* LenzCachedResourceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = AEE6650704927962FFC496EFFCED5E15 /* LenzCachedResourceModel.m */; };
  171. 99628C5F423B2628B60DAB3CBC88BCF9 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1497F64FAC1FCB87025D4886FE91CDCC /* Masonry-dummy.m */; };
  172. A0A307D423D48C0575D9B7CEF992221D /* YYTextParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C9074E00C18DA3CB722DB507724EAA4 /* YYTextParser.m */; };
  173. A137EB47358EEF8B2446FCBDCED0BAC8 /* YYTextEffectWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B4111C89633ABF1E097CED012AA381D /* YYTextEffectWindow.h */; settings = {ATTRIBUTES = (Project, ); }; };
  174. A2F31344BA00D3C2510B9775B52A60CF /* VerticalButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 32A89D63C0E73AA6B01075374F418EF4 /* VerticalButton.m */; };
  175. A44E03D82A17947F2227B7CC29E94955 /* OperationNodeSingle.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E19893056FAAE1527B538E64A61A6E4 /* OperationNodeSingle.m */; };
  176. A54B6FFC6C986E2C508E1E36FA06B37F /* SVRadialGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0897EF131BDAA96CDA0319F6299CF976 /* SVRadialGradientLayer.m */; };
  177. AB4FA00F3F58E06F6BD55FD947B6EE03 /* OperationNodeSingle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6708B27939062DFB54B63DBA2606B52E /* OperationNodeSingle.h */; settings = {ATTRIBUTES = (Project, ); }; };
  178. ABD049C2A90A499F751E89B71D04DAA2 /* CameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C479ECD2DDDB0513BDA318CE2A357923 /* CameraManager.m */; };
  179. ABF0705406C3EB205152DC6B268EB2F2 /* OperationNodeMovie.m in Sources */ = {isa = PBXBuildFile; fileRef = 9509BEA56C5BBC338E86AEE18AEB701B /* OperationNodeMovie.m */; };
  180. AD4BD1F5182729EF82D208F3CAE82C95 /* PCSButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 5512C77A7058B2A1EF103A96EE41EEDC /* PCSButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
  181. AD4EE5B316C9F14812CDBD9F77804AE9 /* YYTextArchiver.h in Headers */ = {isa = PBXBuildFile; fileRef = D72393E15017658E11D0F6474FFA041C /* YYTextArchiver.h */; settings = {ATTRIBUTES = (Project, ); }; };
  182. ADECBEDCEB9E3849741468CC930F546E /* ImageCacheLRU.h in Headers */ = {isa = PBXBuildFile; fileRef = FFCB858332E34629F1B78C39D6EA58BD /* ImageCacheLRU.h */; settings = {ATTRIBUTES = (Project, ); }; };
  183. AE8BF1C6A6335AF43955A8173FC143EE /* YYLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = AB7F17C6D7DA0A9C99ADD88AB3E86E80 /* YYLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  184. AF425D61CE26D3E8A5231E35D04713A3 /* YYTextAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 609690592A664AFC1E5202FB37AB0DEF /* YYTextAttribute.h */; settings = {ATTRIBUTES = (Project, ); }; };
  185. AF921B5C5224A49AE26C43CA7B705BFB /* AlertView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D7264D3682C8CB43303E8B4CB23F870 /* AlertView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  186. B1434928F6893485E3A661165E75670F /* SVRadialGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 16A1A0B05DF8A617161C4C7F1FBAB11D /* SVRadialGradientLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
  187. B1B09C7517CF40B4C80F63F115AA8177 /* MovieListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CB09853CF33B11210A1FCCB633FE90A6 /* MovieListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  188. B1C5960EC177C3F731DF697D9BD86F21 /* UIImage+name.m in Sources */ = {isa = PBXBuildFile; fileRef = 60CA6E9B39E65709A81E0F0D9C54E9BB /* UIImage+name.m */; };
  189. B273A07B3D201B217EC96622D4DAC1ED /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 386F092257100796D5764E5C48E9082D /* ViewController+MASAdditions.m */; };
  190. B3DD262C75D14B1ABCD3B95A7BA0BD8C /* YYTextUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DCD65B4FA1B8B8C94BB55122281CC41 /* YYTextUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; };
  191. B63A45F08B7ACB1DD19A870D6C2F9447 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BEFD9597C71AD2C60C0B797E8A8F74 /* MASUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; };
  192. B665104FD74CE9AB7E1D9CD1FE54CA1F /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = ED099C056CE6E43E73ED33FE210BBAA7 /* MASConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  193. B6D8587F8CF676D9E638486194F4AA7D /* YYTextKeyboardManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F709EA11C8E0B1DA3A286C8A04638025 /* YYTextKeyboardManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  194. B8E646C5B9B2A09DCE7D35CCA153E4DF /* YYTextContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA6578C25DC102A1C9AABF66B6D7A8B /* YYTextContainerView.m */; };
  195. B94C6FA698F187D24C716253FD366523 /* PCSRoundButton.h in Headers */ = {isa = PBXBuildFile; fileRef = E77F4EEBAA7BB12BBE11579CF455226D /* PCSRoundButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
  196. BA55907F6DB9B34C2B122D7C391D4885 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 68EF38DD0E7842AC439E27EFBD897B87 /* Masonry.h */; settings = {ATTRIBUTES = (Project, ); }; };
  197. BB4313A3658D69193257E1E708722589 /* PaddingLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 796150F51510DD9BC3FD32301FCA571C /* PaddingLabel.m */; };
  198. BFB7A2AD383977421719D6D782DEE0BD /* PCSButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 7887DF47B96E488E922644F19112D2C5 /* PCSButton.m */; };
  199. C004C8E75278E3EAD9B23C31864CDD3E /* YYTextRunDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7FF8B7B600F4FD78AF346E61B70945 /* YYTextRunDelegate.m */; };
  200. C0BBB5B0D44AD3CD105980009B73E48F /* TensorFlowWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 046EA474A5F0B5621F8F8A6C106B747A /* TensorFlowWrapper.m */; };
  201. C35FDB379B1F73B161CD4E2F934A35B0 /* NSString+Localization.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F155F6FABDB40EA4B9D30E5B485C3DD /* NSString+Localization.m */; };
  202. C3A51F3522A4ACC4EA1505A15F75472A /* PCSModeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 113F1B46619B94BD736DCD65CDF12338 /* PCSModeList.h */; settings = {ATTRIBUTES = (Project, ); }; };
  203. C6829B8844A7D355C02CCBAADC4056BD /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = C2C0B8C1B87787844152E6480B9698DC /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  204. C9CFB1D44AB055C06C260DB4F32CAFFA /* PanoramaOrientationView.h in Headers */ = {isa = PBXBuildFile; fileRef = 426F02238B436054049A685A78BFA852 /* PanoramaOrientationView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  205. CA2F760BEFEAD47812B819D56B8A255F /* VC.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CA3EAD24CA087AE9EFE3A51BDA28748C /* VC.storyboard */; };
  206. CB24803A47A442BA2755F53720F30B1B /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A7C8573ED5247BA0EAC63A655EA23F7 /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Project, ); }; };
  207. CC2DBAD0594E8122FB8E259D3AC3390A /* YYTextSelectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 883B2F1C3C7F72237C5512512B626ED3 /* YYTextSelectionView.m */; };
  208. CC367A9A190EEF9D800419ED15F09507 /* Localizable.strings in Sources */ = {isa = PBXBuildFile; fileRef = E49822E69C1F1F94D5B9FD9BA2B3B965 /* Localizable.strings */; };
  209. CD04E27AB34EB723277B8CD5AA8029CE /* YYTextInput.m in Sources */ = {isa = PBXBuildFile; fileRef = 375E0F154F1C09BB699AE0CCE064C76F /* YYTextInput.m */; };
  210. CDA215CA76CE8E425B5724651E9CDC9F /* CameraTextureRenderPass.h in Headers */ = {isa = PBXBuildFile; fileRef = 341FC0DE5FE7BD2C51EE0EDD73000775 /* CameraTextureRenderPass.h */; settings = {ATTRIBUTES = (Project, ); }; };
  211. CEC01392D81CA74C4B533808BA121CD4 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5956CE89E82E135BF5A60ADEE9324CA6 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  212. CF409B639D0A72E06947795B16F3275A /* assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E9D36FA637506F854A86313824BDE777 /* assets.xcassets */; };
  213. D0CDB214A246D4DAA2C0B08479ED4EDC /* LenzCameraNativeModuleForRN.h in Headers */ = {isa = PBXBuildFile; fileRef = CC45D2676F91737ED2D80C8EB6305050 /* LenzCameraNativeModuleForRN.h */; settings = {ATTRIBUTES = (Project, ); }; };
  214. D2BC89F69ED12D7DF5A0222F97F1A700 /* SVProgressAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = DE0563071104BB4DEDCDDB98CEE27892 /* SVProgressAnimatedView.m */; };
  215. D2D6F6E45256F4CF84872166D60C6770 /* PCSThemeColorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B6139F2C5A8FFA2D954FE40D18E65BD2 /* PCSThemeColorManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  216. D71D1EC77A72DD52A3675AF8BD80CE48 /* UIView+JKAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C3892FD38F09E2DB86C97C5CB3CD65 /* UIView+JKAdd.h */; settings = {ATTRIBUTES = (Project, ); }; };
  217. D7F2EA61B6E1A5A5F6B01AE03E8DC74A /* YYTextContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3C577003FEC7A2B5CD80D570BCF5D9 /* YYTextContainerView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  218. D8BDD774554F422961F952ECCEAE887D /* AVCapturePhotoOutput+VersionAdaptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E37343EE82B8F347F3E29157085A7A6 /* AVCapturePhotoOutput+VersionAdaptor.m */; };
  219. DB71D2C0888F7042E9F601F3B3FA078F /* YYTextRubyAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 85877531F68825A8DAE953CAFC680E4A /* YYTextRubyAnnotation.m */; };
  220. DC4D9BE57B94E35F9F41B9776A4E6254 /* SVProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 581EBAB920DBBFA0C9A842312AA09387 /* SVProgressHUD-dummy.m */; };
  221. DC5AFE7BCC971B79501B66863C0D9BB6 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 264B48E24894CA95EBA58150F9C31FDF /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Project, ); }; };
  222. DC7F45BA88574276B7EA848EB19CCB79 /* OperationNodeAIPanorama.m in Sources */ = {isa = PBXBuildFile; fileRef = 322A116AEFCF1CADD66A2741D176C141 /* OperationNodeAIPanorama.m */; };
  223. DD937F41E3DAF2C415570511058414F8 /* MovieListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C98CAE0D431D5F8DD8D0248FEF6BC33F /* MovieListViewController.m */; };
  224. DEAA634B215B0837AA739034C05A5A5E /* LenzDataManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 18DEF0F2B0B54048BB36BEDBD6445EA7 /* LenzDataManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  225. DECC2F46C0C32C42B9B29F698CA5B07D /* YYTextAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BE98BE0B0CA8687791510FC061C9E55 /* YYTextAttribute.m */; };
  226. E873E2AF3F831AEF50D3F2C412FC9584 /* PhotoListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C348787CE6C4452BE0F4241F8266F2 /* PhotoListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  227. EA0B18EEF5722B858030AB4347D658BA /* MoviePlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DC0682B158FE4E1919AE5333259BC6FE /* MoviePlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  228. EEEED0CE5DA21F36EDA1BA4E5CEC1CD6 /* PCSSessionWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 17AAD46D0CD240EA73ACCD1C9E78BC0C /* PCSSessionWrapper.m */; };
  229. EFDBAD2DA341E349C88D1A773AFDDDD9 /* NSAttributedString+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = A6DD8D62E3F27CBECE15A7983842557C /* NSAttributedString+YYText.m */; };
  230. F00C685C6A4CBB947D55788F25BC1146 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 088F8F4B52A1B8D49AD2E6FA4D3BECD2 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  231. F186FD984ED15AA08FEAAE86D6189CD8 /* AVCapturePhotoOutput+VersionAdaptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F6343CFB04CBD91288A7EB28E48538D /* AVCapturePhotoOutput+VersionAdaptor.h */; settings = {ATTRIBUTES = (Project, ); }; };
  232. F234CB65CC08D706C0036E87B1E83F26 /* BaseViewTapGestureDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 518F2C5E6D99497BDA039011A2086443 /* BaseViewTapGestureDelegate.m */; };
  233. F56892199C5B6CB2195A00F7A26DB078 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 0017EF6140620B590366C8792718F9B2 /* MASViewAttribute.m */; };
  234. F5CE93F4D61F6CAAB4BBF2D11368DE27 /* PanoramaGuideView.h in Headers */ = {isa = PBXBuildFile; fileRef = FCCE1744A31A960C8E4A1D70EE716378 /* PanoramaGuideView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  235. F6227A0CC17D010A77F20E8459E38021 /* MoviePlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D4EDA7026930640A17C22929D7DA3C1 /* MoviePlayerViewController.m */; };
  236. F726FB2A46DA670634F265956CC36044 /* UIPasteboard+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D540548A1FD992F92DC24A9A9275457 /* UIPasteboard+YYText.m */; };
  237. F784CCB8E00CEC7831A8044A4C91B8C6 /* PCSPreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 39609D8DAFFC2D58966A39CF293C8487 /* PCSPreviewViewController.m */; };
  238. F89A4DEC37811CC24806C1C2B68DC368 /* PhotoCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F747D9D8E74982D2956B795190B6FDA8 /* PhotoCollectionViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  239. F9166739899D2C4A792624DADEBB434F /* SVIndefiniteAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AEAACB804415F01404840EED6C405A9 /* SVIndefiniteAnimatedView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  240. FAD78750E4338BAFD47BBEF38502C143 /* YYTextMagnifier.m in Sources */ = {isa = PBXBuildFile; fileRef = A6090E4A5F9787132B719CD08D1A0B35 /* YYTextMagnifier.m */; };
  241. FCFB905AB934B056259CAAF2E579B1C5 /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 68D5BC0B07AFB77ACEA56C309EBAD713 /* View+MASAdditions.m */; };
  242. /* End PBXBuildFile section */
  243. /* Begin PBXContainerItemProxy section */
  244. 1442A6ED08EAA002ACD46414B7F57973 /* PBXContainerItemProxy */ = {
  245. isa = PBXContainerItemProxy;
  246. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  247. proxyType = 1;
  248. remoteGlobalIDString = A2620F0B8F03AA967AF4B9A85EB8DF00;
  249. remoteInfo = TensorFlowLite;
  250. };
  251. 1E9609E7B08E6A4CA04FA9D79432E2B2 /* PBXContainerItemProxy */ = {
  252. isa = PBXContainerItemProxy;
  253. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  254. proxyType = 1;
  255. remoteGlobalIDString = 2C80449F84CF910DF6AD6AFDDE039F2A;
  256. remoteInfo = OpenCV;
  257. };
  258. 2C22A8CE8B9C2C6B0C3EF8D4DD7FC3C7 /* PBXContainerItemProxy */ = {
  259. isa = PBXContainerItemProxy;
  260. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  261. proxyType = 1;
  262. remoteGlobalIDString = 6F5C17E80BD1B7F60A33F79692330A57;
  263. remoteInfo = YYText;
  264. };
  265. 37F1D43E846E12EE868197E15F734976 /* PBXContainerItemProxy */ = {
  266. isa = PBXContainerItemProxy;
  267. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  268. proxyType = 1;
  269. remoteGlobalIDString = E7EBC84E7AFBA5D0740969B92CA58D87;
  270. remoteInfo = "LenzSDK-LenzCameraNativeModuleForRN";
  271. };
  272. 4A5DF6AFAAC5661BBE122EB45EF1B1CD /* PBXContainerItemProxy */ = {
  273. isa = PBXContainerItemProxy;
  274. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  275. proxyType = 1;
  276. remoteGlobalIDString = 6F5C17E80BD1B7F60A33F79692330A57;
  277. remoteInfo = YYText;
  278. };
  279. 4B460C0E497FC29488E1DD33AF1DDBBF /* PBXContainerItemProxy */ = {
  280. isa = PBXContainerItemProxy;
  281. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  282. proxyType = 1;
  283. remoteGlobalIDString = 2C80449F84CF910DF6AD6AFDDE039F2A;
  284. remoteInfo = OpenCV;
  285. };
  286. 57DEBAAEA305A6E7A8D94F9A424244CF /* PBXContainerItemProxy */ = {
  287. isa = PBXContainerItemProxy;
  288. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  289. proxyType = 1;
  290. remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340;
  291. remoteInfo = SVProgressHUD;
  292. };
  293. 5AD0E845CEB20500670B1A4304A0399F /* PBXContainerItemProxy */ = {
  294. isa = PBXContainerItemProxy;
  295. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  296. proxyType = 1;
  297. remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
  298. remoteInfo = Masonry;
  299. };
  300. 6882CF2AF4A1A5A5258994850DA7E1C0 /* PBXContainerItemProxy */ = {
  301. isa = PBXContainerItemProxy;
  302. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  303. proxyType = 1;
  304. remoteGlobalIDString = 22955C745E4D0669DBEFF1F1997E3D7E;
  305. remoteInfo = LenzSDK;
  306. };
  307. 877E5EC526DF4ABA0669D82E27CF9A4D /* PBXContainerItemProxy */ = {
  308. isa = PBXContainerItemProxy;
  309. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  310. proxyType = 1;
  311. remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
  312. remoteInfo = Masonry;
  313. };
  314. DBCDE4EFC3C5C6CF8923640BE5B79760 /* PBXContainerItemProxy */ = {
  315. isa = PBXContainerItemProxy;
  316. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  317. proxyType = 1;
  318. remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340;
  319. remoteInfo = SVProgressHUD;
  320. };
  321. FFF2C62F836788FF3ADDC65DC01AB29D /* PBXContainerItemProxy */ = {
  322. isa = PBXContainerItemProxy;
  323. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  324. proxyType = 1;
  325. remoteGlobalIDString = A2620F0B8F03AA967AF4B9A85EB8DF00;
  326. remoteInfo = TensorFlowLite;
  327. };
  328. /* End PBXContainerItemProxy section */
  329. /* Begin PBXFileReference section */
  330. 0017EF6140620B590366C8792718F9B2 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = "<group>"; };
  331. 016187AEFAB9CF08EFF3E8D30B441AEA /* LenzSDK.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = LenzSDK.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  332. 01A5EBF91C0CFE531626E63171C3BF69 /* highgui_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = highgui_c.h; path = opencv2.framework/Versions/A/Headers/highgui/highgui_c.h; sourceTree = "<group>"; };
  333. 029CFA5331C62E9C2D3035751E63E0FA /* simplex_downhill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = simplex_downhill.h; path = opencv2.framework/Versions/A/Headers/flann/simplex_downhill.h; sourceTree = "<group>"; };
  334. 02D12A79D294F74ED0846BD01AB54357 /* allocator_stats.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = allocator_stats.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/allocator_stats.hpp; sourceTree = "<group>"; };
  335. 0381D6264AACCED00039B43DF5BF249F /* PhotoCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoCell.m; sourceTree = "<group>"; };
  336. 03AFFE13C349A3114DE7204AF43D6680 /* YYTextRunDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextRunDelegate.h; path = YYText/String/YYTextRunDelegate.h; sourceTree = "<group>"; };
  337. 0443C510EEAC03C251C852311BC00F02 /* bindings_utils.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = bindings_utils.hpp; path = opencv2.framework/Versions/A/Headers/core/bindings_utils.hpp; sourceTree = "<group>"; };
  338. 046EA474A5F0B5621F8F8A6C106B747A /* TensorFlowWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TensorFlowWrapper.m; sourceTree = "<group>"; };
  339. 04789F97ADA9FF3CF7A0AE6F05164F38 /* dynamic_smem.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = dynamic_smem.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/dynamic_smem.hpp; sourceTree = "<group>"; };
  340. 04A1618897EEA55507E5BC93D0630287 /* opencl_svm_20.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_svm_20.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_svm_20.hpp; sourceTree = "<group>"; };
  341. 04C6F5D183A5BC34CD64DAF0EA9A78F5 /* matchers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = matchers.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/matchers.hpp; sourceTree = "<group>"; };
  342. 04E880C103BD684699FFE79B53EE73F7 /* directx.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = directx.hpp; path = opencv2.framework/Versions/A/Headers/core/directx.hpp; sourceTree = "<group>"; };
  343. 0572B639FBD82CC8B687DEE03FBCEBF6 /* render.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = render.hpp; path = opencv2.framework/Versions/A/Headers/gapi/render/render.hpp; sourceTree = "<group>"; };
  344. 05EF1CC31303063939240CBF1DB6F8B0 /* intrin_wasm.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_wasm.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_wasm.hpp; sourceTree = "<group>"; };
  345. 0692D9E98A7704F255A5BEEA24C3A160 /* object_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = object_factory.h; path = opencv2.framework/Versions/A/Headers/flann/object_factory.h; sourceTree = "<group>"; };
  346. 06A9BD11DA599412CB353522D7DB207D /* instrumentation.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = instrumentation.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/instrumentation.hpp; sourceTree = "<group>"; };
  347. 07FC54ED78DFD874D9FAF7F2F49C5174 /* plaidml.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = plaidml.hpp; path = opencv2.framework/Versions/A/Headers/gapi/plaidml/plaidml.hpp; sourceTree = "<group>"; };
  348. 088F8F4B52A1B8D49AD2E6FA4D3BECD2 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = "<group>"; };
  349. 0897EF131BDAA96CDA0319F6299CF976 /* SVRadialGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVRadialGradientLayer.m; path = SVProgressHUD/SVRadialGradientLayer.m; sourceTree = "<group>"; };
  350. 0B158CEF44E06879B52A0295CD6B97A0 /* throw.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = throw.hpp; path = opencv2.framework/Versions/A/Headers/gapi/util/throw.hpp; sourceTree = "<group>"; };
  351. 0B4D0AC9112213C9CB37B361BBF0C542 /* TensorFlowLite.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TensorFlowLite.debug.xcconfig; sourceTree = "<group>"; };
  352. 0B99A6EEF576689F4DF9F99F61DCD698 /* async.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = async.hpp; path = opencv2.framework/Versions/A/Headers/core/async.hpp; sourceTree = "<group>"; };
  353. 0BE3C0C1F4A19DACC63FA0C1D05F7E18 /* opencl_core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_core.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/autogenerated/opencl_core.hpp; sourceTree = "<group>"; };
  354. 0C80A669E157AE983B129787FF1F7CEA /* PCSTools.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSTools.m; sourceTree = "<group>"; };
  355. 0D3C75735AC0E619032BE385E8344977 /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gpu/core.hpp; sourceTree = "<group>"; };
  356. 0D7E4A852235AAC6B4B9F4F7E6F48225 /* warp.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = warp.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/warp.hpp; sourceTree = "<group>"; };
  357. 0DFC0F8998D1FA349D1E54D8E1283BED /* YYTextArchiver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextArchiver.m; path = YYText/String/YYTextArchiver.m; sourceTree = "<group>"; };
  358. 0F492E22DCE8C4BEC347DA3EFB78F04E /* PhotoAlbumListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoAlbumListViewController.h; sourceTree = "<group>"; };
  359. 0FFD5E5AE5C060A19DDF60E813E51A99 /* simd_utils.impl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = simd_utils.impl.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/simd_utils.impl.hpp; sourceTree = "<group>"; };
  360. 1042B4C2243940700B19228C32E8C43D /* OperationNodePanorama.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodePanorama.h; sourceTree = "<group>"; };
  361. 113F1B46619B94BD736DCD65CDF12338 /* PCSModeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSModeList.h; sourceTree = "<group>"; };
  362. 11D18AB6F91AB3E64362EE9DB21C3B9F /* interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interface.h; path = opencv2.framework/Versions/A/Headers/core/hal/interface.h; sourceTree = "<group>"; };
  363. 128986F147B16C35E35AF90F3381388A /* vec_math.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = vec_math.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/vec_math.hpp; sourceTree = "<group>"; };
  364. 12CDA4EDCB8ACEB1DB9BE52C93DBE4F3 /* features2d.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = features2d.hpp; path = opencv2.framework/Versions/A/Headers/features2d/features2d.hpp; sourceTree = "<group>"; };
  365. 1456AE6CBF155ED744EEB2128C82D143 /* opencl_clamdfft.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_clamdfft.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp; sourceTree = "<group>"; };
  366. 1458D921665F0145800CFE3AB63CBD3C /* imgcodecs.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgcodecs.hpp; path = opencv2.framework/Versions/A/Headers/imgcodecs/imgcodecs.hpp; sourceTree = "<group>"; };
  367. 1497F64FAC1FCB87025D4886FE91CDCC /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = "<group>"; };
  368. 15193027933E5E122AAF1147667E6201 /* gplaidmlkernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gplaidmlkernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/plaidml/gplaidmlkernel.hpp; sourceTree = "<group>"; };
  369. 16A1A0B05DF8A617161C4C7F1FBAB11D /* SVRadialGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVRadialGradientLayer.h; path = SVProgressHUD/SVRadialGradientLayer.h; sourceTree = "<group>"; };
  370. 1733FD41571475966EBCDD51D8F41D15 /* PhotoListCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoListCellModel.m; sourceTree = "<group>"; };
  371. 17AAD46D0CD240EA73ACCD1C9E78BC0C /* PCSSessionWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSSessionWrapper.m; sourceTree = "<group>"; };
  372. 17EC83619E75B91623C8F27B02D74632 /* goclkernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = goclkernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/ocl/goclkernel.hpp; sourceTree = "<group>"; };
  373. 18C6632C68DCF27D2E2D9211B1368093 /* ml.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ml.hpp; path = opencv2.framework/Versions/A/Headers/ml/ml.hpp; sourceTree = "<group>"; };
  374. 18DEF0F2B0B54048BB36BEDBD6445EA7 /* LenzDataManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzDataManager.h; sourceTree = "<group>"; };
  375. 1A98C205CBCEB82AFBB50E5DA6CBCB23 /* OperationNodeVideoBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeVideoBase.h; sourceTree = "<group>"; };
  376. 1B4111C89633ABF1E097CED012AA381D /* YYTextEffectWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextEffectWindow.h; path = YYText/Component/YYTextEffectWindow.h; sourceTree = "<group>"; };
  377. 1BF7062623367DC6C8E75F6BA4F1459B /* utility.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = utility.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/utility.hpp; sourceTree = "<group>"; };
  378. 1C9074E00C18DA3CB722DB507724EAA4 /* YYTextParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextParser.m; path = YYText/String/YYTextParser.m; sourceTree = "<group>"; };
  379. 1E3E63BC0F706108DE559035A2AE6A2C /* gtransform.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gtransform.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gtransform.hpp; sourceTree = "<group>"; };
  380. 1E47B253D87480E190E02C4274637679 /* cpp-headers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = "cpp-headers.mm"; sourceTree = "<group>"; };
  381. 1E781E33614C6762F221B2C5CE929F9A /* SDKParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SDKParameters.h; sourceTree = "<group>"; };
  382. 1EC5AD8503326BB582E654BE70FB4689 /* OperationNodeMovie.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeMovie.h; sourceTree = "<group>"; };
  383. 1ED4F8C5E0FB36B0CD6CC7F9616D52B7 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
  384. 1F19139A77CA316ACCEF6D7B18F9414C /* Pods-LenzCameraNativeModuleForRN_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LenzCameraNativeModuleForRN_Example-resources.sh"; sourceTree = "<group>"; };
  385. 1FFED36A657123030ABB700256D73F15 /* Masonry */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Masonry; path = libMasonry.a; sourceTree = BUILT_PRODUCTS_DIR; };
  386. 204CA60EC1B7C772C3D36025B1B6DA86 /* PCSPreviewViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSPreviewViewController.h; sourceTree = "<group>"; };
  387. 21CF54AEE3AB121779CFFEB6ED96BECF /* simd_functions.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = simd_functions.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/simd_functions.hpp; sourceTree = "<group>"; };
  388. 2289CF181D8D5BA8FEE98F8045203103 /* videoio.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = videoio.hpp; path = opencv2.framework/Versions/A/Headers/videoio/videoio.hpp; sourceTree = "<group>"; };
  389. 22BBF84535F5D31DAA5B3583F4DA3E25 /* calib3d.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = calib3d.hpp; path = opencv2.framework/Versions/A/Headers/calib3d.hpp; sourceTree = "<group>"; };
  390. 24B17D0FEF2AF09ACFF0F49A34E56C3B /* scalar.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = scalar.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/scalar.hpp; sourceTree = "<group>"; };
  391. 250798A4A3A5D1A0789B238CC7891A63 /* params.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = params.h; path = opencv2.framework/Versions/A/Headers/flann/params.h; sourceTree = "<group>"; };
  392. 256C9647F64A4E2F171D1E0F2F38312E /* gcomputation.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcomputation.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcomputation.hpp; sourceTree = "<group>"; };
  393. 257801B200B6BEDA62071D94166669B4 /* imgcodecs_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = imgcodecs_c.h; path = opencv2.framework/Versions/A/Headers/imgcodecs/imgcodecs_c.h; sourceTree = "<group>"; };
  394. 25A791700887556451D0F73A4BD70EDE /* cvdef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cvdef.h; path = opencv2.framework/Versions/A/Headers/core/cvdef.h; sourceTree = "<group>"; };
  395. 2606EA301C7ABE12319FE8E5FEA351CF /* YYText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YYText-dummy.m"; sourceTree = "<group>"; };
  396. 264B48E24894CA95EBA58150F9C31FDF /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = "<group>"; };
  397. 268C8933BFA17FE6F0EDF0583EA5E667 /* logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logger.h; path = opencv2.framework/Versions/A/Headers/flann/logger.h; sourceTree = "<group>"; };
  398. 27D146FA107BA976FB7401B8FF2A762C /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = opencv2.framework/Versions/A/Headers/flann/config.h; sourceTree = "<group>"; };
  399. 280F56DA10B7D2B5F66DDE67E21CE4BA /* AlertView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AlertView.m; sourceTree = "<group>"; };
  400. 282D203C5F930CD895B6606A4D54C066 /* ml.inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ml.inl.hpp; path = opencv2.framework/Versions/A/Headers/ml/ml.inl.hpp; sourceTree = "<group>"; };
  401. 292EA97555A989158B70EAC40E9C4362 /* CustomModalViewTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CustomModalViewTransition.h; sourceTree = "<group>"; };
  402. 297B311818D27768A6AFABABBFC0B616 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = "<group>"; };
  403. 2A18EA8F5A9FA239A1A792380BC0979C /* general.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = general.h; path = opencv2.framework/Versions/A/Headers/flann/general.h; sourceTree = "<group>"; };
  404. 2AB7967609B050E7B275F21C30209136 /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/imgproc.hpp; sourceTree = "<group>"; };
  405. 2B4332ABF30ACC240296D0BF0104AE37 /* objdetect.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = objdetect.hpp; path = opencv2.framework/Versions/A/Headers/objdetect.hpp; sourceTree = "<group>"; };
  406. 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-LenzCameraNativeModuleForRN_Example"; path = "libPods-LenzCameraNativeModuleForRN_Example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  407. 2CAE1004151CD867853AB2850D35198D /* functional.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = functional.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/functional.hpp; sourceTree = "<group>"; };
  408. 2D45803C87A36FCFE07E0CEED1B11A74 /* matrix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matrix.h; path = opencv2.framework/Versions/A/Headers/flann/matrix.h; sourceTree = "<group>"; };
  409. 2D70EF77F0D7500CCB5E2EBFAA2D8A9E /* cuda.inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cuda.inl.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda.inl.hpp; sourceTree = "<group>"; };
  410. 2DCD65B4FA1B8B8C94BB55122281CC41 /* YYTextUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextUtilities.h; path = YYText/Utility/YYTextUtilities.h; sourceTree = "<group>"; };
  411. 2DF2F686CA86753AD3D3AC4376728019 /* nn_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nn_index.h; path = opencv2.framework/Versions/A/Headers/flann/nn_index.h; sourceTree = "<group>"; };
  412. 2EAE6CF6727C481AB04A269F61B06E7B /* SVProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-prefix.pch"; sourceTree = "<group>"; };
  413. 2F2E77569AC7EFB74006B0F9A1EC17FD /* PhotoListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoListViewController.m; sourceTree = "<group>"; };
  414. 30007945463B9DCDEAD0AE3EE0A88B47 /* YYTextEffectWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextEffectWindow.m; path = YYText/Component/YYTextEffectWindow.m; sourceTree = "<group>"; };
  415. 31459B8AA522606F70B9D95CDF03D7A9 /* index_testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = index_testing.h; path = opencv2.framework/Versions/A/Headers/flann/index_testing.h; sourceTree = "<group>"; };
  416. 31FD0756D1C9A566E3D55CB8C43E6103 /* opencl_clamdblas.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_clamdblas.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_clamdblas.hpp; sourceTree = "<group>"; };
  417. 321B6F3EB9C783B8E699A1508C18F060 /* version.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = version.hpp; path = opencv2.framework/Versions/A/Headers/dnn/version.hpp; sourceTree = "<group>"; };
  418. 322A116AEFCF1CADD66A2741D176C141 /* OperationNodeAIPanorama.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeAIPanorama.m; sourceTree = "<group>"; };
  419. 324686F9B57ED632355D6E81F939B578 /* ml.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ml.hpp; path = opencv2.framework/Versions/A/Headers/ml.hpp; sourceTree = "<group>"; };
  420. 32A89D63C0E73AA6B01075374F418EF4 /* VerticalButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = VerticalButton.m; sourceTree = "<group>"; };
  421. 341FC0DE5FE7BD2C51EE0EDD73000775 /* CameraTextureRenderPass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CameraTextureRenderPass.h; sourceTree = "<group>"; };
  422. 35286C3C27CAC6F29D32095EFFC04A1F /* variant.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = variant.hpp; path = opencv2.framework/Versions/A/Headers/gapi/util/variant.hpp; sourceTree = "<group>"; };
  423. 357C6C1D11DD630C8E711735C6B60FEC /* opencl_info.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_info.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/opencl_info.hpp; sourceTree = "<group>"; };
  424. 358CC6AC3C97C40150E9B61BF3B6E61D /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = "<group>"; };
  425. 368CD2C73EE528119355CD269C081C87 /* saving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = saving.h; path = opencv2.framework/Versions/A/Headers/flann/saving.h; sourceTree = "<group>"; };
  426. 36C5150554884D89751CE9BE164F5FEA /* YYTextWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextWeakProxy.h; path = YYText/Utility/YYTextWeakProxy.h; sourceTree = "<group>"; };
  427. 373580D0F071057971D7BF1AE9E50A3E /* OperationNodeMultiple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeMultiple.m; sourceTree = "<group>"; };
  428. 375E0F154F1C09BB699AE0CCE064C76F /* YYTextInput.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextInput.m; path = YYText/Component/YYTextInput.m; sourceTree = "<group>"; };
  429. 386F092257100796D5764E5C48E9082D /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = "<group>"; };
  430. 38FB2396B0BB57E95A9DB03E1FA8207A /* gtyped.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gtyped.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gtyped.hpp; sourceTree = "<group>"; };
  431. 39609D8DAFFC2D58966A39CF293C8487 /* PCSPreviewViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSPreviewViewController.m; sourceTree = "<group>"; };
  432. 3A2B05FDF48D87D2EC209F6DEE0F9C9F /* flann.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = flann.hpp; path = opencv2.framework/Versions/A/Headers/flann.hpp; sourceTree = "<group>"; };
  433. 3A2FE24EFF89780FE198DF247B7A5975 /* util.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = util.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/util.hpp; sourceTree = "<group>"; };
  434. 3A7D6EF0055B16A5572E3BB587495756 /* opencl_core_wrappers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_core_wrappers.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp; sourceTree = "<group>"; };
  435. 3AA918D87B1EAA4EF2EFB17B36B3745F /* UIColor+JKAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JKAdd.m"; sourceTree = "<group>"; };
  436. 3AB71C280592DDFA4BF2A1797A9F0299 /* result_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = result_set.h; path = opencv2.framework/Versions/A/Headers/flann/result_set.h; sourceTree = "<group>"; };
  437. 3AC34EC02002CFD78CF46CAD9BB12CB8 /* PhotoAlbumListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoAlbumListViewController.m; sourceTree = "<group>"; };
  438. 3B3C3646B9DC7C39710307FBFB7FD9A9 /* QuitMultipleModeAlertViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = QuitMultipleModeAlertViewController.h; sourceTree = "<group>"; };
  439. 3C982811ED69D9C90D5FF2BCE99FC93B /* render.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = render.hpp; path = opencv2.framework/Versions/A/Headers/gapi/render.hpp; sourceTree = "<group>"; };
  440. 3CA6578C25DC102A1C9AABF66B6D7A8B /* YYTextContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextContainerView.m; path = YYText/Component/YYTextContainerView.m; sourceTree = "<group>"; };
  441. 3D0620F82D550558A65B4D68278DDB0C /* logger.defines.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = logger.defines.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/logger.defines.hpp; sourceTree = "<group>"; };
  442. 3D4EDA7026930640A17C22929D7DA3C1 /* MoviePlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MoviePlayerViewController.m; sourceTree = "<group>"; };
  443. 3ECAB81B70F4D1B36DBA7DAABD7E3B57 /* gmat.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gmat.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gmat.hpp; sourceTree = "<group>"; };
  444. 3FD94F366A2FE52E42F260FBD185624D /* DBManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DBManager.m; sourceTree = "<group>"; };
  445. 40CBAB4752C8DABE11583CFCAEBE9332 /* all_indices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = all_indices.h; path = opencv2.framework/Versions/A/Headers/flann/all_indices.h; sourceTree = "<group>"; };
  446. 40F15FFD8D016079FBD6519865F9E5F3 /* exports.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = exports.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/exports.hpp; sourceTree = "<group>"; };
  447. 40F5C4A17B510BEE0C544A73BAB06084 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
  448. 4126864734F84125EB8A14E858BBBFBC /* gasync_context.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gasync_context.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gasync_context.hpp; sourceTree = "<group>"; };
  449. 41CC04C3F662058E063D5AEE38A5D8E0 /* intrin_cpp.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_cpp.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_cpp.hpp; sourceTree = "<group>"; };
  450. 42180682FCA23F12B801A9A450D42999 /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = "<group>"; };
  451. 426F02238B436054049A685A78BFA852 /* PanoramaOrientationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PanoramaOrientationView.h; sourceTree = "<group>"; };
  452. 4283144422CF4681426BD8335ECAF04C /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = "<group>"; };
  453. 42D61DECC46B064B0FD6BA2EDEE3400F /* constants_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constants_c.h; path = opencv2.framework/Versions/A/Headers/video/legacy/constants_c.h; sourceTree = "<group>"; };
  454. 43616C22A8FDEDA79E9EE794DB741A7B /* va_intel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = va_intel.hpp; path = opencv2.framework/Versions/A/Headers/core/va_intel.hpp; sourceTree = "<group>"; };
  455. 4442DD4A5A756E57C510FB7991F5376E /* dist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dist.h; path = opencv2.framework/Versions/A/Headers/flann/dist.h; sourceTree = "<group>"; };
  456. 4608217F480358AB38734B97C23ACDDC /* YYTextUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextUtilities.m; path = YYText/Utility/YYTextUtilities.m; sourceTree = "<group>"; };
  457. 461D76E69F330F8EAEEF296800836DEA /* emulation.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = emulation.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/emulation.hpp; sourceTree = "<group>"; };
  458. 47C3312D87AA41677BF69FA238B1D55B /* YYLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYLabel.m; path = YYText/YYLabel.m; sourceTree = "<group>"; };
  459. 484BA919A20A4432C10B567A5DEA5950 /* video.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = video.hpp; path = opencv2.framework/Versions/A/Headers/video/video.hpp; sourceTree = "<group>"; };
  460. 4878EC2709AE6D7440F5A4432DB2A401 /* type_traits_detail.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = type_traits_detail.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/detail/type_traits_detail.hpp; sourceTree = "<group>"; };
  461. 48CF17FE5B362A7DA2C03A5E615DEA03 /* layer.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = layer.hpp; path = opencv2.framework/Versions/A/Headers/dnn/layer.hpp; sourceTree = "<group>"; };
  462. 49FA81C35EB88895B9D2B9C585836D40 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = "<group>"; };
  463. 4A3A4E47D5AFE3DF832D39EE36EB25BA /* trace.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = trace.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/trace.hpp; sourceTree = "<group>"; };
  464. 4A8C01A8C618CE6B1A6B4E5420CA16CF /* gcommon.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcommon.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcommon.hpp; sourceTree = "<group>"; };
  465. 4AB8D729CA52E69338A85A5232B555D8 /* gcgraph.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcgraph.hpp; path = opencv2.framework/Versions/A/Headers/imgproc/detail/gcgraph.hpp; sourceTree = "<group>"; };
  466. 4AE8EA71628F139BB7FA168254EEB6E1 /* MovieListCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MovieListCellModel.h; sourceTree = "<group>"; };
  467. 4AEAACB804415F01404840EED6C405A9 /* SVIndefiniteAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVIndefiniteAnimatedView.h; path = SVProgressHUD/SVIndefiniteAnimatedView.h; sourceTree = "<group>"; };
  468. 4C268BF678A2ADF07A7B34CE24A3B5DB /* cuda.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cuda.hpp; path = opencv2.framework/Versions/A/Headers/photo/cuda.hpp; sourceTree = "<group>"; };
  469. 4C4BB9AEB8B5CA178061B5C545CD5982 /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/gapi/cpu/imgproc.hpp; sourceTree = "<group>"; };
  470. 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LenzCameraNativeModuleForRN_Example-dummy.m"; sourceTree = "<group>"; };
  471. 4DFACD941452B5F6D38A3111786FF8E9 /* LenzTensorFlowSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = LenzTensorFlowSDK.framework; sourceTree = "<group>"; };
  472. 4E37343EE82B8F347F3E29157085A7A6 /* AVCapturePhotoOutput+VersionAdaptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AVCapturePhotoOutput+VersionAdaptor.m"; sourceTree = "<group>"; };
  473. 4F9E2BA1F0DD51F89C167D74F42F35D9 /* NSParagraphStyle+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSParagraphStyle+YYText.m"; path = "YYText/Utility/NSParagraphStyle+YYText.m"; sourceTree = "<group>"; };
  474. 4FC0C5F4E50752C8DCE412D7A8232FE5 /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/gapi/ocl/core.hpp; sourceTree = "<group>"; };
  475. 4FDF35AE121AB302D770ED666755F2C9 /* LenzSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LenzSDK.release.xcconfig; sourceTree = "<group>"; };
  476. 505D9E5C40C6F172AD8AC02C0DE522BF /* PCSModeList.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSModeList.m; sourceTree = "<group>"; };
  477. 51153524381D256A3577632592B5F471 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = "<group>"; };
  478. 5160D0986B919E44AEA2F4FA73D547A4 /* PhotoAlbumModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoAlbumModel.h; sourceTree = "<group>"; };
  479. 516241D7C95160359FFF3E0772D962A7 /* infer.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = infer.hpp; path = opencv2.framework/Versions/A/Headers/gapi/infer.hpp; sourceTree = "<group>"; };
  480. 5167DF740E02B1B8E592669BA64DC9D0 /* gcall.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcall.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcall.hpp; sourceTree = "<group>"; };
  481. 518F2C5E6D99497BDA039011A2086443 /* BaseViewTapGestureDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BaseViewTapGestureDelegate.m; sourceTree = "<group>"; };
  482. 5210118A285A3C9FD21DCC49277C3FCF /* opencl_gl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_gl.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_gl.hpp; sourceTree = "<group>"; };
  483. 523D8B2BF5E48E5F21241F5AA6E5AF27 /* ios.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ios.h; path = opencv2.framework/Versions/A/Headers/imgcodecs/ios.h; sourceTree = "<group>"; };
  484. 52B547A795CC2A71EA3A969713CA0AF8 /* opencv_modules.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencv_modules.hpp; path = opencv2.framework/Versions/A/Headers/opencv_modules.hpp; sourceTree = "<group>"; };
  485. 52C43B9C0804B3A71ED6D02D252084DF /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = "<group>"; };
  486. 52CD6803000C6863E9439FB85F5FC47C /* QuitMultipleModeAlertViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = QuitMultipleModeAlertViewController.m; sourceTree = "<group>"; };
  487. 53070B027011796EEBE685C8A4B70B6D /* ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist"; sourceTree = "<group>"; };
  488. 532022B4B170DC9D26C2D6B6CBB44910 /* opencl_gl_wrappers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_gl_wrappers.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_gl_wrappers.hpp; sourceTree = "<group>"; };
  489. 5352B141022AB59C700B82BA0C5D91F8 /* intrin.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin.hpp; sourceTree = "<group>"; };
  490. 5398558732C40B5D4697349B53521F93 /* kmeans_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kmeans_index.h; path = opencv2.framework/Versions/A/Headers/flann/kmeans_index.h; sourceTree = "<group>"; };
  491. 54230A35E01113BE92FA52253D841B66 /* affine.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = affine.hpp; path = opencv2.framework/Versions/A/Headers/core/affine.hpp; sourceTree = "<group>"; };
  492. 546664FEB1F495F7D27D499550102098 /* mat.inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = mat.inl.hpp; path = opencv2.framework/Versions/A/Headers/core/mat.inl.hpp; sourceTree = "<group>"; };
  493. 54C9641AB5F79A84BFCC697F8C71DD0A /* gfluidkernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gfluidkernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/fluid/gfluidkernel.hpp; sourceTree = "<group>"; };
  494. 5512C77A7058B2A1EF103A96EE41EEDC /* PCSButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSButton.h; sourceTree = "<group>"; };
  495. 559ED2E851E747AF4600F34F5C8F4141 /* intrin_avx512.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_avx512.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_avx512.hpp; sourceTree = "<group>"; };
  496. 563258983D3A98020065EEFABA382E34 /* logtag.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = logtag.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/logtag.hpp; sourceTree = "<group>"; };
  497. 566BD1B1FEB847926DC7E9C700858ACA /* transform.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = transform.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/transform.hpp; sourceTree = "<group>"; };
  498. 581EBAB920DBBFA0C9A842312AA09387 /* SVProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SVProgressHUD-dummy.m"; sourceTree = "<group>"; };
  499. 582A935B7FDA30B4ECA9AD504C063AE3 /* TimerLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TimerLabel.h; sourceTree = "<group>"; };
  500. 5956CE89E82E135BF5A60ADEE9324CA6 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = "<group>"; };
  501. 5961871F4F9E6A992EF437E4B42503D4 /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/gapi/fluid/imgproc.hpp; sourceTree = "<group>"; };
  502. 59A3DA815D3041D00193157475E4B8EE /* exposure_compensate.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = exposure_compensate.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/exposure_compensate.hpp; sourceTree = "<group>"; };
  503. 59D4357D2C68FCDBB1A6940BD8D6C977 /* moire_mobilenetv2_79.tflite */ = {isa = PBXFileReference; includeInIndex = 1; path = moire_mobilenetv2_79.tflite; sourceTree = "<group>"; };
  504. 5AD23CF5F7D55F69CA736096EB907F06 /* cvstd.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cvstd.hpp; path = opencv2.framework/Versions/A/Headers/core/cvstd.hpp; sourceTree = "<group>"; };
  505. 5B70A8C574471B692123BD0B1DB7ECBF /* PCSTools.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSTools.h; sourceTree = "<group>"; };
  506. 5BA027EBDB869859191FF46767A35F03 /* PreviewSingleViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PreviewSingleViewController.h; sourceTree = "<group>"; };
  507. 5BE98BE0B0CA8687791510FC061C9E55 /* YYTextAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextAttribute.m; path = YYText/String/YYTextAttribute.m; sourceTree = "<group>"; };
  508. 5C1B3735A6E2B7A6DE340F92FEF6659C /* mat.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = mat.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/mat.hpp; sourceTree = "<group>"; };
  509. 5C9CB6FA65481DC8D7D73A3E6F69459D /* YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYText.h; path = YYText/YYText.h; sourceTree = "<group>"; };
  510. 5CE3D1B6068A85FF49EA25EA95969150 /* softfloat.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = softfloat.hpp; path = opencv2.framework/Versions/A/Headers/core/softfloat.hpp; sourceTree = "<group>"; };
  511. 5D478B23071F4696BB6FA6646E602CC6 /* version.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = version.hpp; path = opencv2.framework/Versions/A/Headers/core/version.hpp; sourceTree = "<group>"; };
  512. 5DABCF75E98DDA7FBB1906C577003884 /* YYTextDebugOption.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextDebugOption.m; path = YYText/Component/YYTextDebugOption.m; sourceTree = "<group>"; };
  513. 5DBB806CE0BB1CD3836B263ED575CBE7 /* ground_truth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ground_truth.h; path = opencv2.framework/Versions/A/Headers/flann/ground_truth.h; sourceTree = "<group>"; };
  514. 5E7FCDE9965E0FBE811136E6C6DAEC33 /* limits.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = limits.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/limits.hpp; sourceTree = "<group>"; };
  515. 5F155F6FABDB40EA4B9D30E5B485C3DD /* NSString+Localization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSString+Localization.m"; sourceTree = "<group>"; };
  516. 5FCEB5EBC04B1C20C98F9CF690D14404 /* defines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = defines.h; path = opencv2.framework/Versions/A/Headers/flann/defines.h; sourceTree = "<group>"; };
  517. 609690592A664AFC1E5202FB37AB0DEF /* YYTextAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextAttribute.h; path = YYText/String/YYTextAttribute.h; sourceTree = "<group>"; };
  518. 60B230A61027C3BC6BF806CE29F64D15 /* sampling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sampling.h; path = opencv2.framework/Versions/A/Headers/flann/sampling.h; sourceTree = "<group>"; };
  519. 60CA6E9B39E65709A81E0F0D9C54E9BB /* UIImage+name.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImage+name.m"; sourceTree = "<group>"; };
  520. 61D2A690F49C2363A2D590B1A461CE6D /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/gapi/fluid/core.hpp; sourceTree = "<group>"; };
  521. 621F0404B650D5CF8AE0878D27614789 /* gstreaming.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gstreaming.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gstreaming.hpp; sourceTree = "<group>"; };
  522. 62BEFD9597C71AD2C60C0B797E8A8F74 /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = "<group>"; };
  523. 637E098F4B084BB7C1CB30143196008E /* all_layers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = all_layers.hpp; path = opencv2.framework/Versions/A/Headers/dnn/all_layers.hpp; sourceTree = "<group>"; };
  524. 6390DCF94F940BAB67F9567698A3AF93 /* OperationNodeAIPanorama.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeAIPanorama.h; sourceTree = "<group>"; };
  525. 63E4A349CE3C11F90F34BAD695F51FD5 /* warpers_inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = warpers_inl.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/warpers_inl.hpp; sourceTree = "<group>"; };
  526. 64EB09235E4F89C667108CB55C503F8F /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/core.hpp; sourceTree = "<group>"; };
  527. 65216076890A820998163B358A2BCE3F /* cvdefs.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cvdefs.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/cvdefs.hpp; sourceTree = "<group>"; };
  528. 6524423E30505FFB4297734F88091102 /* operations.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = operations.hpp; path = opencv2.framework/Versions/A/Headers/core/operations.hpp; sourceTree = "<group>"; };
  529. 667752E4B4C80DB04E212AD3984EAD80 /* block.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = block.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/block.hpp; sourceTree = "<group>"; };
  530. 66976340D235F792F6CFB7B22E82D369 /* dnn.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = dnn.hpp; path = opencv2.framework/Versions/A/Headers/dnn.hpp; sourceTree = "<group>"; };
  531. 6708B27939062DFB54B63DBA2606B52E /* OperationNodeSingle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeSingle.h; sourceTree = "<group>"; };
  532. 676142B5756DF90D6870BBDB0AE3F608 /* YYTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextView.m; path = YYText/YYTextView.m; sourceTree = "<group>"; };
  533. 68D5BC0B07AFB77ACEA56C309EBAD713 /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = "<group>"; };
  534. 68EF38DD0E7842AC439E27EFBD897B87 /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = "<group>"; };
  535. 69B78C4E8E2BE5124AAA0C7B2A7B9662 /* utility.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = utility.hpp; path = opencv2.framework/Versions/A/Headers/core/utility.hpp; sourceTree = "<group>"; };
  536. 69C3892FD38F09E2DB86C97C5CB3CD65 /* UIView+JKAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+JKAdd.h"; sourceTree = "<group>"; };
  537. 6C4DD6F641652AEB456462B987C2106D /* vec_traits.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = vec_traits.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/vec_traits.hpp; sourceTree = "<group>"; };
  538. 6D3511C07E4B0D907D56D4DF1A687724 /* lsh_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lsh_table.h; path = opencv2.framework/Versions/A/Headers/flann/lsh_table.h; sourceTree = "<group>"; };
  539. 6D540548A1FD992F92DC24A9A9275457 /* UIPasteboard+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIPasteboard+YYText.m"; path = "YYText/Utility/UIPasteboard+YYText.m"; sourceTree = "<group>"; };
  540. 6D9C4206A87792945D06CB0F4B0460D6 /* NSAttributedString+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+YYText.h"; path = "YYText/Utility/NSAttributedString+YYText.h"; sourceTree = "<group>"; };
  541. 6DEECD7FFBA1E2EC03D00FE64D06A5E7 /* opencl_gl_wrappers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_gl_wrappers.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp; sourceTree = "<group>"; };
  542. 6E2104735EA7A78538678C495ECFE1A2 /* YYTextLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextLayout.m; path = YYText/Component/YYTextLayout.m; sourceTree = "<group>"; };
  543. 6EC418C3C31400F9A13397A9D1B3667E /* opencl_clamdfft.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_clamdfft.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_clamdfft.hpp; sourceTree = "<group>"; };
  544. 6F1280890474C120437F608827CFE2EB /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/gapi/ocl/imgproc.hpp; sourceTree = "<group>"; };
  545. 703864A355E2E1FECF07BCAE82745B38 /* simd_intrinsics.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = simd_intrinsics.hpp; path = opencv2.framework/Versions/A/Headers/core/simd_intrinsics.hpp; sourceTree = "<group>"; };
  546. 704CF1A33EF7E8F7393DA419E09FE129 /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = "<group>"; };
  547. 705D56BBE5EC4DC23360F2FB38751822 /* YYTextRubyAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextRubyAnnotation.h; path = YYText/String/YYTextRubyAnnotation.h; sourceTree = "<group>"; };
  548. 707AD619718E2ECB9DA7F101C6671BE5 /* check.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = check.hpp; path = opencv2.framework/Versions/A/Headers/core/check.hpp; sourceTree = "<group>"; };
  549. 70B2CD42B86668F92168C5DD4C4A2F2C /* assert.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = assert.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/assert.hpp; sourceTree = "<group>"; };
  550. 70C6DA160E126AF5F5F996DA3D30BCFF /* seam_finders.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = seam_finders.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/seam_finders.hpp; sourceTree = "<group>"; };
  551. 70CCED9F559A55CCF10F0A088BB188F4 /* convert.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = convert.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/convert.hpp; sourceTree = "<group>"; };
  552. 70E0A8020D30FA6082AE590D202DFAA5 /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/gapi/core.hpp; sourceTree = "<group>"; };
  553. 7149F31DAF3F46371946232F67003A5B /* gscalar.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gscalar.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gscalar.hpp; sourceTree = "<group>"; };
  554. 71762A728913EB440C97D3616D291AF3 /* YYText */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = YYText; path = libYYText.a; sourceTree = BUILT_PRODUCTS_DIR; };
  555. 71F80A14DC599A1F1A6DBB750FD0C2C6 /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/gapi/cpu/core.hpp; sourceTree = "<group>"; };
  556. 71FFAC0A10D2F498F247362440B92564 /* imgcodecs.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgcodecs.hpp; path = opencv2.framework/Versions/A/Headers/imgcodecs.hpp; sourceTree = "<group>"; };
  557. 72180575EBE88D6DDC2D08102FA7B574 /* SVIndefiniteAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVIndefiniteAnimatedView.m; path = SVProgressHUD/SVIndefiniteAnimatedView.m; sourceTree = "<group>"; };
  558. 72A7B9D18DB41BDB544B17EB9833FE39 /* cv_cpu_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cv_cpu_helper.h; path = opencv2.framework/Versions/A/Headers/core/cv_cpu_helper.h; sourceTree = "<group>"; };
  559. 74CE4D70ED32E11EA5D693630EE30A0E /* world.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = world.hpp; path = opencv2.framework/Versions/A/Headers/world.hpp; sourceTree = "<group>"; };
  560. 75330B5B562170BA22A806F7383BF731 /* ie.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ie.hpp; path = opencv2.framework/Versions/A/Headers/gapi/infer/ie.hpp; sourceTree = "<group>"; };
  561. 76AACD0328038A9E1220704F08A441B1 /* OperationNodePanorama.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodePanorama.m; sourceTree = "<group>"; };
  562. 780011AC74D0F72724A95DC9B8390BCF /* intrin_neon.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_neon.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_neon.hpp; sourceTree = "<group>"; };
  563. 7887DF47B96E488E922644F19112D2C5 /* PCSButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSButton.m; sourceTree = "<group>"; };
  564. 7904D868130F279A7E02E4728FA64A7B /* OperationNodeVideoBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeVideoBase.m; sourceTree = "<group>"; };
  565. 796150F51510DD9BC3FD32301FCA571C /* PaddingLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PaddingLabel.m; sourceTree = "<group>"; };
  566. 7A229DB674E6D6732E45B7AFF63B5DD4 /* common.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = common.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/common.hpp; sourceTree = "<group>"; };
  567. 7A62C47DB52390A272E89D7DCDDB439A /* kdtree_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kdtree_index.h; path = opencv2.framework/Versions/A/Headers/flann/kdtree_index.h; sourceTree = "<group>"; };
  568. 7AA74C246DD54F5F9D674E0DACC0B99E /* linear_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = linear_index.h; path = opencv2.framework/Versions/A/Headers/flann/linear_index.h; sourceTree = "<group>"; };
  569. 7B23B7954609FA67195A123F4FC7FB5A /* warp_shuffle.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = warp_shuffle.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/warp_shuffle.hpp; sourceTree = "<group>"; };
  570. 7B73746DD598F5203C0B2A58E3D3C657 /* gopaque.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gopaque.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gopaque.hpp; sourceTree = "<group>"; };
  571. 7BD8AE403D3F8DAD575890560B74BCFD /* videoio.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = videoio.hpp; path = opencv2.framework/Versions/A/Headers/videoio.hpp; sourceTree = "<group>"; };
  572. 7CE45EF5E562FC6153BC0634391A8926 /* ocl_defs.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ocl_defs.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/ocl_defs.hpp; sourceTree = "<group>"; };
  573. 7D284A04C37371DA021C67F89D5FD438 /* ImageCacheLRU.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ImageCacheLRU.m; sourceTree = "<group>"; };
  574. 7DFC753EF1FD24F5D2F62E307238636E /* Renderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Renderer.h; sourceTree = "<group>"; };
  575. 7E541B33A354B0DA58D9359F91D7EA0B /* util.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = util.hpp; path = opencv2.framework/Versions/A/Headers/gapi/util/util.hpp; sourceTree = "<group>"; };
  576. 7F6333B018A96EC115EE4C9D745123E6 /* cuda.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cuda.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda.hpp; sourceTree = "<group>"; };
  577. 7F6343CFB04CBD91288A7EB28E48538D /* AVCapturePhotoOutput+VersionAdaptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AVCapturePhotoOutput+VersionAdaptor.h"; sourceTree = "<group>"; };
  578. 7F847A3507D00C18A7A05775D2BF5CD0 /* PhotoAlbumModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoAlbumModel.m; sourceTree = "<group>"; };
  579. 7F9123FC2C70C4889B7A4C15B8E927AB /* PhotoCollectionViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = PhotoCollectionViewCell.xib; sourceTree = "<group>"; };
  580. 7F95C3928486C20D9FD66E6F805FA75F /* ovx.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ovx.hpp; path = opencv2.framework/Versions/A/Headers/core/ovx.hpp; sourceTree = "<group>"; };
  581. 7FA7797E3C8A3F02B9397ADD2F4B3B34 /* datamov_utils.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = datamov_utils.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/datamov_utils.hpp; sourceTree = "<group>"; };
  582. 7FDABDED068ADB03E6452804C3E1AF28 /* bufferpool.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = bufferpool.hpp; path = opencv2.framework/Versions/A/Headers/core/bufferpool.hpp; sourceTree = "<group>"; };
  583. 80A83EA3AB806BE102DEF46EA6E95D41 /* any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.h; path = opencv2.framework/Versions/A/Headers/flann/any.h; sourceTree = "<group>"; };
  584. 80D1F3315D4705029E06C370F880E8D2 /* saturate.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = saturate.hpp; path = opencv2.framework/Versions/A/Headers/core/saturate.hpp; sourceTree = "<group>"; };
  585. 812AC5B0E586E857AE9289BEB8A90274 /* persistence.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = persistence.hpp; path = opencv2.framework/Versions/A/Headers/core/persistence.hpp; sourceTree = "<group>"; };
  586. 81D3E21782439C8DF0952DC1F8A3EBD4 /* opencv2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = opencv2.framework; sourceTree = "<group>"; };
  587. 82619293D70C6E546706BAA5C2ABB1D2 /* flann_base.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = flann_base.hpp; path = opencv2.framework/Versions/A/Headers/flann/flann_base.hpp; sourceTree = "<group>"; };
  588. 82A5A9A9C51967A4C186A1EA30E692D5 /* PCSSDF-prefix-header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PCSSDF-prefix-header.h"; path = "LenzCameraNativeModuleForRN/Classes/PCSSDF-prefix-header.h"; sourceTree = "<group>"; };
  589. 83EEA87638055D793BD1E067976BC57F /* intrin_vsx.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_vsx.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_vsx.hpp; sourceTree = "<group>"; };
  590. 83FAB47AC8F4AC807B583B3606A8BFC0 /* types.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = types.hpp; path = opencv2.framework/Versions/A/Headers/core/types.hpp; sourceTree = "<group>"; };
  591. 84259456F20DB620A4BA1E3A5307C556 /* OpenCV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenCV.debug.xcconfig; sourceTree = "<group>"; };
  592. 84E31A913AEC1971A2D3E14C6A8EB3EB /* PCSMotionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSMotionManager.m; sourceTree = "<group>"; };
  593. 85877531F68825A8DAE953CAFC680E4A /* YYTextRubyAnnotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextRubyAnnotation.m; path = YYText/String/YYTextRubyAnnotation.m; sourceTree = "<group>"; };
  594. 85C20DAD9BA0A6E175E55F76CADB7B17 /* kdtree_single_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kdtree_single_index.h; path = opencv2.framework/Versions/A/Headers/flann/kdtree_single_index.h; sourceTree = "<group>"; };
  595. 85D8BE1F453CD63677CB734B15E0D68E /* garg.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = garg.hpp; path = opencv2.framework/Versions/A/Headers/gapi/garg.hpp; sourceTree = "<group>"; };
  596. 8669A8D3011401A562CF901DE395E17F /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/gapi/imgproc.hpp; sourceTree = "<group>"; };
  597. 86B773A796DE992BFEF397D7C0F138B9 /* videoio_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = videoio_c.h; path = opencv2.framework/Versions/A/Headers/videoio/videoio_c.h; sourceTree = "<group>"; };
  598. 86BAAAA5ECFF64E114AC31898C7C0B87 /* opencv.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencv.hpp; path = opencv2.framework/Versions/A/Headers/opencv.hpp; sourceTree = "<group>"; };
  599. 86E896E3A09483FB1663D78DE377A33F /* photo.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = photo.hpp; path = opencv2.framework/Versions/A/Headers/photo.hpp; sourceTree = "<group>"; };
  600. 87380B1B88C76A01D54629ABEF276292 /* transform_detail.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = transform_detail.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/detail/transform_detail.hpp; sourceTree = "<group>"; };
  601. 883B2F1C3C7F72237C5512512B626ED3 /* YYTextSelectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextSelectionView.m; path = YYText/Component/YYTextSelectionView.m; sourceTree = "<group>"; };
  602. 88AE63DACCA4C5A6915F44FB40C52C4B /* scan.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = scan.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/scan.hpp; sourceTree = "<group>"; };
  603. 88AEECB8A0D08228229135658D4C9A7D /* camera.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = camera.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/camera.hpp; sourceTree = "<group>"; };
  604. 8927E5F4D6A4A6CC74194C99768C5DE7 /* gcomputation_async.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcomputation_async.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcomputation_async.hpp; sourceTree = "<group>"; };
  605. 8A524E8F02225EFAA4C059F46C98746C /* opencl_gl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_gl.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/autogenerated/opencl_gl.hpp; sourceTree = "<group>"; };
  606. 8AA1FAF06233FCA0ABADE139A4C48448 /* vec_distance_detail.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = vec_distance_detail.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/detail/vec_distance_detail.hpp; sourceTree = "<group>"; };
  607. 8B4DC4759B1098548FAA7403C6442854 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist"; sourceTree = "<group>"; };
  608. 8B6D881545362B2B169BD3A2D2DB4A35 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = "<group>"; };
  609. 8C3D92E24F51292B7B6EC80B84F67EAE /* reduce.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reduce.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/detail/reduce.hpp; sourceTree = "<group>"; };
  610. 8C835322A854253ADD9F5BC98CB96D71 /* UIView+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+YYText.h"; path = "YYText/Utility/UIView+YYText.h"; sourceTree = "<group>"; };
  611. 8D7264D3682C8CB43303E8B4CB23F870 /* AlertView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AlertView.h; sourceTree = "<group>"; };
  612. 8D934080A70BD4395BE8B64F373AA744 /* OperationNodeProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeProtocol.h; sourceTree = "<group>"; };
  613. 8D9D0358E488CF45973A735B3A66659E /* opencl_core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_core.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_core.hpp; sourceTree = "<group>"; };
  614. 8E664EE3535FE7EE797EC2F31EBF8E7F /* YYTextLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextLayout.h; path = YYText/Component/YYTextLayout.h; sourceTree = "<group>"; };
  615. 8E7274F3C5694CDF3AD35024BEAB1805 /* BaseViewTapGestureDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BaseViewTapGestureDelegate.h; sourceTree = "<group>"; };
  616. 8E8D50672304655930FBEE3ABFF3D45B /* UIButton+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Layout.m"; sourceTree = "<group>"; };
  617. 8EA379E51B5AC81C52133A6EEE91BD45 /* reduce.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reduce.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/reduce.hpp; sourceTree = "<group>"; };
  618. 8F0EB15AF7F2248DF8846C74451DC14F /* neon_utils.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = neon_utils.hpp; path = opencv2.framework/Versions/A/Headers/core/neon_utils.hpp; sourceTree = "<group>"; };
  619. 9073A8BD86BD67FBEEC7F0374E7B75F3 /* features2d.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = features2d.hpp; path = opencv2.framework/Versions/A/Headers/features2d.hpp; sourceTree = "<group>"; };
  620. 9164C10187C036A2DB371FCAD3B2FE82 /* dnn.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = dnn.hpp; path = opencv2.framework/Versions/A/Headers/dnn/dnn.hpp; sourceTree = "<group>"; };
  621. 922C53B0F244091A24886EBB0D9131CD /* any.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = any.hpp; path = opencv2.framework/Versions/A/Headers/gapi/util/any.hpp; sourceTree = "<group>"; };
  622. 926E1B0C94386B86789668D058F15368 /* stitching.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = stitching.hpp; path = opencv2.framework/Versions/A/Headers/stitching.hpp; sourceTree = "<group>"; };
  623. 9299E2277766EA517C11DF7C90A6A9FA /* opencv_includes.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencv_includes.hpp; path = opencv2.framework/Versions/A/Headers/gapi/opencv_includes.hpp; sourceTree = "<group>"; };
  624. 930E8712F0A98EFAF6CDF41E82E37D23 /* cpp-headers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "cpp-headers.h"; sourceTree = "<group>"; };
  625. 932D4FA8B670C4E757469E5E6EED4853 /* tensorflow_lite.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = tensorflow_lite.framework; path = Frameworks/tensorflow_lite.framework; sourceTree = "<group>"; };
  626. 934F5AD64C308682F86E01D48A22E301 /* autocalib.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = autocalib.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/autocalib.hpp; sourceTree = "<group>"; };
  627. 93C348787CE6C4452BE0F4241F8266F2 /* PhotoListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoListViewController.h; sourceTree = "<group>"; };
  628. 93F847ED41F7347D72336243B43652F9 /* vec_distance.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = vec_distance.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/vec_distance.hpp; sourceTree = "<group>"; };
  629. 949044E87D38CC5E8DF3BF99FF37E03E /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/core/core.hpp; sourceTree = "<group>"; };
  630. 94C3EE475A15FB558C65764C7FDC547C /* inference_engine.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = inference_engine.hpp; path = opencv2.framework/Versions/A/Headers/dnn/utils/inference_engine.hpp; sourceTree = "<group>"; };
  631. 9509BEA56C5BBC338E86AEE18AEB701B /* OperationNodeMovie.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeMovie.m; sourceTree = "<group>"; };
  632. 950F6F376B6EF8F414D301D8C8ABA68A /* YYTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextView.h; path = YYText/YYTextView.h; sourceTree = "<group>"; };
  633. 95781CF58040ECE14933D6D6F42F81D3 /* types_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types_c.h; path = opencv2.framework/Versions/A/Headers/core/types_c.h; sourceTree = "<group>"; };
  634. 95DDDD9F3B57A33063664168A330A5FC /* objdetect.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = objdetect.hpp; path = opencv2.framework/Versions/A/Headers/objdetect/objdetect.hpp; sourceTree = "<group>"; };
  635. 96C485EEC3D690E328CCD2E801E22372 /* calib3d.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = calib3d.hpp; path = opencv2.framework/Versions/A/Headers/calib3d/calib3d.hpp; sourceTree = "<group>"; };
  636. 96CB8FEDC86549D926CDC9F8A5864511 /* blenders.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = blenders.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/blenders.hpp; sourceTree = "<group>"; };
  637. 96DE0BB340AC968CFE385A33610ABD5B /* UIColor+JKAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIColor+JKAdd.h"; sourceTree = "<group>"; };
  638. 9704054B4E94220A386B1459E1445266 /* highgui.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = highgui.hpp; path = opencv2.framework/Versions/A/Headers/highgui.hpp; sourceTree = "<group>"; };
  639. 979187E4058B89FA246DF6A5382792C3 /* LenzSDK-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LenzSDK-prefix.pch"; sourceTree = "<group>"; };
  640. 97FB5EB9966C3F8164DED68B5A9CA065 /* YYText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYText.release.xcconfig; sourceTree = "<group>"; };
  641. 9838351179BBAB7FD7B4175E0779DE69 /* imgproc_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = imgproc_c.h; path = opencv2.framework/Versions/A/Headers/imgproc/imgproc_c.h; sourceTree = "<group>"; };
  642. 98F193E58B976283DB7FC97CD3450CD1 /* filesystem.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = filesystem.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/filesystem.hpp; sourceTree = "<group>"; };
  643. 99792F325497BBBC695BDB9E850AFEE0 /* traits.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = traits.hpp; path = opencv2.framework/Versions/A/Headers/core/traits.hpp; sourceTree = "<group>"; };
  644. 99A2DDA3C047059071FF314B3B2B9A6C /* YYTextSelectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextSelectionView.h; path = YYText/Component/YYTextSelectionView.h; sourceTree = "<group>"; };
  645. 99F3669A1C384D556A01978AC155565D /* motion_estimators.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = motion_estimators.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/motion_estimators.hpp; sourceTree = "<group>"; };
  646. 9A484CCB8389B2E9A0852E0BEF3B71E6 /* cvstd_wrapper.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cvstd_wrapper.hpp; path = opencv2.framework/Versions/A/Headers/core/cvstd_wrapper.hpp; sourceTree = "<group>"; };
  647. 9A7C8573ED5247BA0EAC63A655EA23F7 /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = "<group>"; };
  648. 9C3541A1227FF278E9C155178272BD9E /* Renderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Renderer.m; sourceTree = "<group>"; };
  649. 9D4C9BB225C78BE30BE5E594F44ED324 /* tls.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = tls.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/tls.hpp; sourceTree = "<group>"; };
  650. 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  651. 9DB2B7B75F250B2C6B80588C56C646C9 /* garray.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = garray.hpp; path = opencv2.framework/Versions/A/Headers/gapi/garray.hpp; sourceTree = "<group>"; };
  652. 9E19893056FAAE1527B538E64A61A6E4 /* OperationNodeSingle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeSingle.m; sourceTree = "<group>"; };
  653. 9EEC06BA8089F52C602F0F28D8B32134 /* AlbumCounterLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AlbumCounterLabel.h; sourceTree = "<group>"; };
  654. 9F204DD8659EF00E3504B4219C1A6A37 /* AlbumCounterLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AlbumCounterLabel.m; sourceTree = "<group>"; };
  655. 9F8B52AF1A7DBB5B74C642779A2799D5 /* cv_cpu_dispatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cv_cpu_dispatch.h; path = opencv2.framework/Versions/A/Headers/core/cv_cpu_dispatch.h; sourceTree = "<group>"; };
  656. 9F9D4030F06E502C5B21A5236DD8D247 /* UIView+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+YYText.m"; path = "YYText/Utility/UIView+YYText.m"; sourceTree = "<group>"; };
  657. A0BA9F3CF032F40FA5AD9615208E3C01 /* DBManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DBManager.h; sourceTree = "<group>"; };
  658. A10AAE6503FA41A5365262ACDA714B3D /* UIButton+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIButton+Layout.h"; sourceTree = "<group>"; };
  659. A11F0FD481C26C7B40E35F4894C13754 /* cap_ios.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cap_ios.h; path = opencv2.framework/Versions/A/Headers/videoio/cap_ios.h; sourceTree = "<group>"; };
  660. A132D70983AE6A7905D34F1675FFEB40 /* cuda_stream_accessor.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cuda_stream_accessor.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda_stream_accessor.hpp; sourceTree = "<group>"; };
  661. A1B0C644D3FF7A7B418FCB4DB455F76C /* exception_ptr.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = exception_ptr.hpp; path = opencv2.framework/Versions/A/Headers/core/detail/exception_ptr.hpp; sourceTree = "<group>"; };
  662. A37C778A14DC752AE1507A0BDA2C786D /* CustomModalViewTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CustomModalViewTransition.m; sourceTree = "<group>"; };
  663. A4EF3406C9C97670B00156D289B80BCE /* opencl_core_wrappers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_core_wrappers.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_core_wrappers.hpp; sourceTree = "<group>"; };
  664. A5C4AC19EA61A10D3CAC1CED3F9C36E6 /* cap.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cap.hpp; path = opencv2.framework/Versions/A/Headers/gapi/streaming/cap.hpp; sourceTree = "<group>"; };
  665. A5E4C57F3122EBA57FAC1D0695A32335 /* msa_macros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macros.h; path = opencv2.framework/Versions/A/Headers/core/hal/msa_macros.h; sourceTree = "<group>"; };
  666. A6090E4A5F9787132B719CD08D1A0B35 /* YYTextMagnifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextMagnifier.m; path = YYText/Component/YYTextMagnifier.m; sourceTree = "<group>"; };
  667. A67F09CECCB537AD208D3303A493022F /* hdf5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hdf5.h; path = opencv2.framework/Versions/A/Headers/flann/hdf5.h; sourceTree = "<group>"; };
  668. A6979532DBA03286C5A599B01EA1E14D /* border_interpolate.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = border_interpolate.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/border_interpolate.hpp; sourceTree = "<group>"; };
  669. A6DD8D62E3F27CBECE15A7983842557C /* NSAttributedString+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+YYText.m"; path = "YYText/Utility/NSAttributedString+YYText.m"; sourceTree = "<group>"; };
  670. A6FDB503D60999CA1431880C50F2CDCD /* PCSRoundButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSRoundButton.m; sourceTree = "<group>"; };
  671. A7E756E6FE39D38C7A59E600B325EDFB /* NSString+Localization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSString+Localization.h"; sourceTree = "<group>"; };
  672. A7EB027D90914D53A2A0D5BB23DF2B22 /* warp_reduce.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = warp_reduce.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/warp_reduce.hpp; sourceTree = "<group>"; };
  673. A8AAD0CBF6B94AC725E7CA6C5799CFE0 /* YYTextLine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextLine.h; path = YYText/Component/YYTextLine.h; sourceTree = "<group>"; };
  674. A8AAD305CF02D66084E98C738018D020 /* YYTextLine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextLine.m; path = YYText/Component/YYTextLine.m; sourceTree = "<group>"; };
  675. A92ED11553D30ED154569AE88DD09E15 /* eigen.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = eigen.hpp; path = opencv2.framework/Versions/A/Headers/core/eigen.hpp; sourceTree = "<group>"; };
  676. A9BCA4F54D2626DC60DBB618DF6D69D4 /* gcpukernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcpukernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/cpu/gcpukernel.hpp; sourceTree = "<group>"; };
  677. AA1A02AE75D01DA6707941035BF279C7 /* PaddingLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PaddingLabel.h; sourceTree = "<group>"; };
  678. AA8AD54A83213A78B6DF49BD7683E1EA /* intrin_forward.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_forward.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_forward.hpp; sourceTree = "<group>"; };
  679. AB7F17C6D7DA0A9C99ADD88AB3E86E80 /* YYLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYLabel.h; path = YYText/YYLabel.h; sourceTree = "<group>"; };
  680. AC29044ECE0EE1956DC5649E631C8DFA /* cvstd.inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cvstd.inl.hpp; path = opencv2.framework/Versions/A/Headers/core/cvstd.inl.hpp; sourceTree = "<group>"; };
  681. ACCEF111035126FF188C5368946AEED7 /* async_promise.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = async_promise.hpp; path = opencv2.framework/Versions/A/Headers/core/detail/async_promise.hpp; sourceTree = "<group>"; };
  682. AD5825DACE28052E151075551E902B54 /* UIImage+name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImage+name.h"; sourceTree = "<group>"; };
  683. AE44E80EF6245FE2ED31EEB49A819226 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
  684. AEE6650704927962FFC496EFFCED5E15 /* LenzCachedResourceModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzCachedResourceModel.m; sourceTree = "<group>"; };
  685. AEE75E6677DAE06ED201B6DDD94BA774 /* filters.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = filters.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/filters.hpp; sourceTree = "<group>"; };
  686. AF25D6A947DC0F618AACAA20CB6E3A9F /* QuitMultipleModeAlertViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = QuitMultipleModeAlertViewController.xib; sourceTree = "<group>"; };
  687. AF80401BBC3E26AB25EAFF02D7F84189 /* matx.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = matx.hpp; path = opencv2.framework/Versions/A/Headers/core/matx.hpp; sourceTree = "<group>"; };
  688. AFB96CE46B2521BA8AF63A7187728C99 /* YYTextDebugOption.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextDebugOption.h; path = YYText/Component/YYTextDebugOption.h; sourceTree = "<group>"; };
  689. AFC2DA5D82B1ED75556F6DAD43FEEFCA /* constants_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constants_c.h; path = opencv2.framework/Versions/A/Headers/photo/legacy/constants_c.h; sourceTree = "<group>"; };
  690. AFE61FB930DCE67894411202942F84B2 /* LenzDataManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzDataManager.m; sourceTree = "<group>"; };
  691. AFFB2E8B5A08DC6138324BFD39DB4B81 /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = opencv2.framework/Versions/A/Headers/flann/random.h; sourceTree = "<group>"; };
  692. B06FE8BCE3CB1D1F202D65A810052811 /* base.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = base.hpp; path = opencv2.framework/Versions/A/Headers/core/base.hpp; sourceTree = "<group>"; };
  693. B1D2E6AB420401D0E497EF0F778AEF0C /* composite_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = composite_index.h; path = opencv2.framework/Versions/A/Headers/flann/composite_index.h; sourceTree = "<group>"; };
  694. B27BC8A2E351364B501D65A389F62FB5 /* funcattrib.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = funcattrib.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/funcattrib.hpp; sourceTree = "<group>"; };
  695. B30A76B4BF61032783394E85D4AAE83A /* sse_utils.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = sse_utils.hpp; path = opencv2.framework/Versions/A/Headers/core/sse_utils.hpp; sourceTree = "<group>"; };
  696. B4482A26613F72A8595BD0828CAEAEF9 /* VerticalButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = VerticalButton.h; sourceTree = "<group>"; };
  697. B508CC04900963B641BA2069D3701BD0 /* color_detail.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = color_detail.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/detail/color_detail.hpp; sourceTree = "<group>"; };
  698. B53853BE0AAFF07C795F2FC53512BF1B /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = "<group>"; };
  699. B6139F2C5A8FFA2D954FE40D18E65BD2 /* PCSThemeColorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSThemeColorManager.h; sourceTree = "<group>"; };
  700. B63A65BC6D803D6DDFD0EC61F3CC380F /* SVProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressHUD.m; path = SVProgressHUD/SVProgressHUD.m; sourceTree = "<group>"; };
  701. B64616E4AD17F736F1BADBA2EF127E6F /* Localizable.strings */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = Localizable.strings; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  702. B66DA868C86497DDE371DDD1F9317B1C /* intrin_sse.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_sse.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_sse.hpp; sourceTree = "<group>"; };
  703. B6C5C2C653F1C9C1593022709562F4CE /* TensorFlowWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TensorFlowWrapper.h; sourceTree = "<group>"; };
  704. B754455A6BDDCEC782C270F501B55548 /* optional.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = optional.hpp; path = opencv2.framework/Versions/A/Headers/gapi/util/optional.hpp; sourceTree = "<group>"; };
  705. B8D9DC178ABDBFABBF25EBD18CE3AC5E /* dummy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dummy.h; path = opencv2.framework/Versions/A/Headers/flann/dummy.h; sourceTree = "<group>"; };
  706. B9B3C773E369816AC03FE61E1E4F9EF2 /* constants_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constants_c.h; path = opencv2.framework/Versions/A/Headers/videoio/legacy/constants_c.h; sourceTree = "<group>"; };
  707. BA171DA934719E8B098C8900B57B7F27 /* opencl_clamdblas.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_clamdblas.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/autogenerated/opencl_clamdblas.hpp; sourceTree = "<group>"; };
  708. BAE779A45DA41C1D3957ED61EE3F6B9B /* detection_based_tracker.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = detection_based_tracker.hpp; path = opencv2.framework/Versions/A/Headers/objdetect/detection_based_tracker.hpp; sourceTree = "<group>"; };
  709. BC576F70BF6690812A8D8A2F0A262D37 /* gapi.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gapi.hpp; path = opencv2.framework/Versions/A/Headers/gapi.hpp; sourceTree = "<group>"; };
  710. BC6CFEAD3909C6545504B7E021521286 /* types.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = types.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/types.hpp; sourceTree = "<group>"; };
  711. BD66DEFEA3C448B76F66EE7883BA13D6 /* UIImage+ext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImage+ext.h"; sourceTree = "<group>"; };
  712. BE4B0E143C15D8A8F524904129856126 /* gcompoundkernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcompoundkernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcompoundkernel.hpp; sourceTree = "<group>"; };
  713. BFC0F33A78326D11EB375324B8459460 /* YYTextWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextWeakProxy.m; path = YYText/Utility/YYTextWeakProxy.m; sourceTree = "<group>"; };
  714. BFC9F66B90DDC5A4FCF7651C08F272A4 /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/imgproc/imgproc.hpp; sourceTree = "<group>"; };
  715. C0C118AA9F2B253DC0BE9E7B0F04EF16 /* miniflann.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = miniflann.hpp; path = opencv2.framework/Versions/A/Headers/flann/miniflann.hpp; sourceTree = "<group>"; };
  716. C0FB0E4BADF95084A1F22A453FA85555 /* opengl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opengl.hpp; path = opencv2.framework/Versions/A/Headers/core/opengl.hpp; sourceTree = "<group>"; };
  717. C1BF9418E375222D7D9DDD8438BCDC58 /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/gapi/plaidml/core.hpp; sourceTree = "<group>"; };
  718. C224780DCA48668A7B71BFA072ED6EBB /* gtype_traits.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gtype_traits.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gtype_traits.hpp; sourceTree = "<group>"; };
  719. C29782FD113418A07A34A569DF470AC4 /* calib3d_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = calib3d_c.h; path = opencv2.framework/Versions/A/Headers/calib3d/calib3d_c.h; sourceTree = "<group>"; };
  720. C2C0B8C1B87787844152E6480B9698DC /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = "<group>"; };
  721. C352F848C4DF5E6E23772054C80C1A46 /* fast_math.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = fast_math.hpp; path = opencv2.framework/Versions/A/Headers/core/fast_math.hpp; sourceTree = "<group>"; };
  722. C3EF3F75B16917EC98D3720E4BA79BA5 /* CameraManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CameraManager.h; sourceTree = "<group>"; };
  723. C479ECD2DDDB0513BDA318CE2A357923 /* CameraManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CameraManager.m; sourceTree = "<group>"; };
  724. C5351341EA29C8D3677247DC222CAD03 /* type_traits.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = type_traits.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/type_traits.hpp; sourceTree = "<group>"; };
  725. C674920BC297402FB94A131843889435 /* LenzSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LenzSDK.debug.xcconfig; sourceTree = "<group>"; };
  726. C6AD000DB191B44DFC2F8C13A686EF9C /* YYTextAsyncLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextAsyncLayer.m; path = YYText/Utility/YYTextAsyncLayer.m; sourceTree = "<group>"; };
  727. C788E9DF8878E7474D3EDF9144BF7C56 /* dynamic_bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_bitset.h; path = opencv2.framework/Versions/A/Headers/flann/dynamic_bitset.h; sourceTree = "<group>"; };
  728. C89F2864593F6D24B8FD4530A3779204 /* LenzSDK-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LenzSDK-dummy.m"; sourceTree = "<group>"; };
  729. C8E01240A044DA073A13FA7C495BD7C1 /* PCSSessionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSSessionWrapper.h; sourceTree = "<group>"; };
  730. C954DB54C73854D0C8206ED3D40252A3 /* intrin_sse_em.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_sse_em.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_sse_em.hpp; sourceTree = "<group>"; };
  731. C98CAE0D431D5F8DD8D0248FEF6BC33F /* MovieListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MovieListViewController.m; sourceTree = "<group>"; };
  732. C9994E77EA181E93E0F487D242B57964 /* CollectionViewPlayerCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CollectionViewPlayerCell.m; sourceTree = "<group>"; };
  733. C9F41A58397BBF951F34CF4EA9F23539 /* opencl_svm_hsa_extension.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_svm_hsa_extension.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_svm_hsa_extension.hpp; sourceTree = "<group>"; };
  734. CA00BC803C2BEC3ECDE1EBBF474A0E01 /* mat.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = mat.hpp; path = opencv2.framework/Versions/A/Headers/core/mat.hpp; sourceTree = "<group>"; };
  735. CA3EAD24CA087AE9EFE3A51BDA28748C /* VC.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; path = VC.storyboard; sourceTree = "<group>"; };
  736. CB09853CF33B11210A1FCCB633FE90A6 /* MovieListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MovieListViewController.h; sourceTree = "<group>"; };
  737. CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig"; sourceTree = "<group>"; };
  738. CC27C862E41AF7D57E07C4D1F62E7909 /* PanoramaGuideView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PanoramaGuideView.m; sourceTree = "<group>"; };
  739. CC45D2676F91737ED2D80C8EB6305050 /* LenzCameraNativeModuleForRN.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCameraNativeModuleForRN.h; sourceTree = "<group>"; };
  740. CCA35841F40ADE1827CAF5395D1ACD1B /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
  741. CCA96C67929975FFE93BF734428EA217 /* operators.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = operators.hpp; path = opencv2.framework/Versions/A/Headers/gapi/operators.hpp; sourceTree = "<group>"; };
  742. CCC2A2D9BE13B566A864D567615045F6 /* LenzSDK-LenzCameraNativeModuleForRN */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "LenzSDK-LenzCameraNativeModuleForRN"; path = LenzCameraNativeModuleForRN.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
  743. CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = LenzSDK; path = libLenzSDK.a; sourceTree = BUILT_PRODUCTS_DIR; };
  744. CD5B67A87E48AAC89364DD4F00A24EED /* intrin_msa.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_msa.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_msa.hpp; sourceTree = "<group>"; };
  745. CDDDFA3212B8FF26A1A44D8864383D0F /* flann.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = flann.hpp; path = opencv2.framework/Versions/A/Headers/flann/flann.hpp; sourceTree = "<group>"; };
  746. CE6C32E91C73BFECAACC24B416CC2207 /* hal.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = hal.hpp; path = opencv2.framework/Versions/A/Headers/imgproc/hal/hal.hpp; sourceTree = "<group>"; };
  747. CF5B34DF5D836B9AB2EC710BE6AA7693 /* logger.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = logger.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/logger.hpp; sourceTree = "<group>"; };
  748. CF73DFC7AEA2987BC574FDB4206007C6 /* UIImage+ext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ext.m"; sourceTree = "<group>"; };
  749. CFC96DBA5B23FDBB9A64056CA1860EDE /* ggpukernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ggpukernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gpu/ggpukernel.hpp; sourceTree = "<group>"; };
  750. D06CAB0EB78BBA36B6A2477B90EC7B03 /* LenzCachedResourceModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCachedResourceModel.h; sourceTree = "<group>"; };
  751. D08B81B40D7DA7724956014AA18038AC /* YYTextAsyncLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextAsyncLayer.h; path = YYText/Utility/YYTextAsyncLayer.h; sourceTree = "<group>"; };
  752. D09A38C8C9D6B54BEF9DCDDE6615FA35 /* ocl_genbase.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ocl_genbase.hpp; path = opencv2.framework/Versions/A/Headers/core/ocl_genbase.hpp; sourceTree = "<group>"; };
  753. D0B6CE3FFBDDD194B93879C36270531E /* hal.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = hal.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/hal.hpp; sourceTree = "<group>"; };
  754. D101CE8373A03C3AB3EF967C4B0E2718 /* gmetaarg.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gmetaarg.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gmetaarg.hpp; sourceTree = "<group>"; };
  755. D1FC4F94C39D09C06AA249E3A6C1118C /* UIView+JKAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+JKAdd.m"; sourceTree = "<group>"; };
  756. D2798626ED853F01DA475E0546EC56F5 /* timelapsers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = timelapsers.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/timelapsers.hpp; sourceTree = "<group>"; };
  757. D27FBB6D00805C17D1FDFFF4D7BD217A /* LenzCameraSDK.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzCameraSDK.m; sourceTree = "<group>"; };
  758. D2CBE31AED27837CD6D91DA8F38C0548 /* gcompiled_async.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcompiled_async.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcompiled_async.hpp; sourceTree = "<group>"; };
  759. D3BF067894938EA3A93951E050928958 /* intrin_avx.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_avx.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_avx.hpp; sourceTree = "<group>"; };
  760. D3CA38146DC28688F664620C88569AC2 /* cvconfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cvconfig.h; path = opencv2.framework/Versions/A/Headers/cvconfig.h; sourceTree = "<group>"; };
  761. D58F9DF1BCFAD6AA58833AC57243594C /* YYTextTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextTransaction.h; path = YYText/Utility/YYTextTransaction.h; sourceTree = "<group>"; };
  762. D598567E605065ABF519DA931A591A58 /* lsh_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lsh_index.h; path = opencv2.framework/Versions/A/Headers/flann/lsh_index.h; sourceTree = "<group>"; };
  763. D62F99E99E5B134511919F8F47EFA9AF /* registry.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = registry.hpp; path = opencv2.framework/Versions/A/Headers/videoio/registry.hpp; sourceTree = "<group>"; };
  764. D6B022860824F7D5B52C9C9D0555F33B /* source.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = source.hpp; path = opencv2.framework/Versions/A/Headers/gapi/streaming/source.hpp; sourceTree = "<group>"; };
  765. D72393E15017658E11D0F6474FFA041C /* YYTextArchiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextArchiver.h; path = YYText/String/YYTextArchiver.h; sourceTree = "<group>"; };
  766. D7CADCCF6D6765012A74999D3749528F /* warpers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = warpers.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/warpers.hpp; sourceTree = "<group>"; };
  767. D861C133048FADD354AB8997E265828E /* allocator_stats.impl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = allocator_stats.impl.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/allocator_stats.impl.hpp; sourceTree = "<group>"; };
  768. D87DC04B6DBADD682E2C53B0072AF4EE /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
  769. D8C23AB5511905C9505806BF96AA2F56 /* tracking.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = tracking.hpp; path = opencv2.framework/Versions/A/Headers/video/tracking.hpp; sourceTree = "<group>"; };
  770. D8C530710AD71EDF8A4968381A254177 /* MovieListCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MovieListCellModel.m; sourceTree = "<group>"; };
  771. D8C6C86805D19BBF0FD6C3BE0617D24B /* UIPasteboard+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIPasteboard+YYText.h"; path = "YYText/Utility/UIPasteboard+YYText.h"; sourceTree = "<group>"; };
  772. D91048A235AB83FB966D87A7128F5EBD /* OperationNodeMultiple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeMultiple.h; sourceTree = "<group>"; };
  773. D954C7FBF4E1BA970FB0230E2CCC1519 /* cuda_types.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cuda_types.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda_types.hpp; sourceTree = "<group>"; };
  774. D98BA064A5C2C6C3677AE67C485DB030 /* TensorFlowLite.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TensorFlowLite.release.xcconfig; sourceTree = "<group>"; };
  775. D9A3715095BA2EA58FD904C931B47FDB /* YYText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YYText-prefix.pch"; sourceTree = "<group>"; };
  776. D9C8AB20FFF2E77748DB75C3A02C669B /* OpenCV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenCV.release.xcconfig; sourceTree = "<group>"; };
  777. DB314BF6E089B8A3E53CA76B57F67741 /* SVProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.debug.xcconfig; sourceTree = "<group>"; };
  778. DB602CDE7B2F80B09ED7160DA540AD55 /* gcompiled.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcompiled.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcompiled.hpp; sourceTree = "<group>"; };
  779. DB6663A010226558D707C281C209AB38 /* PreviewSingleViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PreviewSingleViewController.m; sourceTree = "<group>"; };
  780. DB7D4BE0B299881BDAA16524E221F155 /* SDKParameters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SDKParameters.m; sourceTree = "<group>"; };
  781. DC0682B158FE4E1919AE5333259BC6FE /* MoviePlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MoviePlayerViewController.h; sourceTree = "<group>"; };
  782. DC9B5F2A4703AEA2373AB84C5B84A6D3 /* layer.details.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = layer.details.hpp; path = opencv2.framework/Versions/A/Headers/dnn/layer.details.hpp; sourceTree = "<group>"; };
  783. DD08CF98AB9044CFEB3E3C2A672E4F9E /* hierarchical_clustering_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hierarchical_clustering_index.h; path = opencv2.framework/Versions/A/Headers/flann/hierarchical_clustering_index.h; sourceTree = "<group>"; };
  784. DD203947A7FEADCBEE348B4005B59810 /* PCSMotionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSMotionManager.h; sourceTree = "<group>"; };
  785. DD4DF793E279140A7949B94BE5B99D88 /* shape_utils.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = shape_utils.hpp; path = opencv2.framework/Versions/A/Headers/dnn/shape_utils.hpp; sourceTree = "<group>"; };
  786. DDEDFE98E81661EE1D0AF42A8B178AA7 /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = "<group>"; };
  787. DE0563071104BB4DEDCDDB98CEE27892 /* SVProgressAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressAnimatedView.m; path = SVProgressHUD/SVProgressAnimatedView.m; sourceTree = "<group>"; };
  788. DE8CA3662FE18BD0C56FB4BC05B8F6DA /* interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interface.h; path = opencv2.framework/Versions/A/Headers/features2d/hal/interface.h; sourceTree = "<group>"; };
  789. DEC3B41A8524F8B9A7C4EF205AEBA40D /* background_segm.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = background_segm.hpp; path = opencv2.framework/Versions/A/Headers/video/background_segm.hpp; sourceTree = "<group>"; };
  790. E14454206C777C6B6BC5DF980B76E9E1 /* CollectionViewPlayerCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CollectionViewPlayerCell.h; sourceTree = "<group>"; };
  791. E16F5AB657F5FCF7D7828ABFDEAC7B0C /* PanoramaOrientationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PanoramaOrientationView.m; sourceTree = "<group>"; };
  792. E1AE2F39DAEB596F181B821A7F142366 /* PCSThemeColorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSThemeColorManager.m; sourceTree = "<group>"; };
  793. E2AD0EF11FF3F8C8DF43F8D0B957B80F /* gfluidbuffer.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gfluidbuffer.hpp; path = opencv2.framework/Versions/A/Headers/gapi/fluid/gfluidbuffer.hpp; sourceTree = "<group>"; };
  794. E2E252AFAF6DE744C01A80471DE4C46D /* warpers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = warpers.hpp; path = opencv2.framework/Versions/A/Headers/stitching/warpers.hpp; sourceTree = "<group>"; };
  795. E30558A1851D5C05C621CD77EB2BBCCB /* SVProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressHUD.h; path = SVProgressHUD/SVProgressHUD.h; sourceTree = "<group>"; };
  796. E3097F9E53FF4FA4EE93F31ABF162D4C /* PhotoCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoCell.h; sourceTree = "<group>"; };
  797. E4112C76524A14FB3C8DCBE109D8674A /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = "<group>"; };
  798. E49822E69C1F1F94D5B9FD9BA2B3B965 /* Localizable.strings */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = Localizable.strings; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  799. E5530F1AD0952B55A563430E0D97A55D /* LenzCameraSDK.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCameraSDK.h; sourceTree = "<group>"; };
  800. E62AA343DB92485BEE0C1BDE47C3E59F /* gkernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gkernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gkernel.hpp; sourceTree = "<group>"; };
  801. E66591112B11D3B2807F8285E4CD78F4 /* PhotoCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = PhotoCell.xib; sourceTree = "<group>"; };
  802. E6CE2336BC686176A207A700CEB169D5 /* video.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = video.hpp; path = opencv2.framework/Versions/A/Headers/video.hpp; sourceTree = "<group>"; };
  803. E77E2DC6261DD7A1550A872959BFD822 /* constants_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constants_c.h; path = opencv2.framework/Versions/A/Headers/imgcodecs/legacy/constants_c.h; sourceTree = "<group>"; };
  804. E77F4EEBAA7BB12BBE11579CF455226D /* PCSRoundButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSRoundButton.h; sourceTree = "<group>"; };
  805. E846495FF769A13567980F3F2949225D /* PhotoListCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoListCellModel.h; sourceTree = "<group>"; };
  806. E8DE50D2BF6B270EB1E2AB3414917DF3 /* NSParagraphStyle+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSParagraphStyle+YYText.h"; path = "YYText/Utility/NSParagraphStyle+YYText.h"; sourceTree = "<group>"; };
  807. E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SVProgressHUD; path = libSVProgressHUD.a; sourceTree = BUILT_PRODUCTS_DIR; };
  808. E9D18BB95C1ED0D62B09938B8D23EEBD /* SVProgressHUD.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = SVProgressHUD.bundle; path = SVProgressHUD/SVProgressHUD.bundle; sourceTree = "<group>"; };
  809. E9D36FA637506F854A86313824BDE777 /* assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; path = assets.xcassets; sourceTree = "<group>"; };
  810. EB7FF8B7B600F4FD78AF346E61B70945 /* YYTextRunDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextRunDelegate.m; path = YYText/String/YYTextRunDelegate.m; sourceTree = "<group>"; };
  811. EBF2DB684F61E3656F002DD6E44431CF /* SVProgressAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressAnimatedView.h; path = SVProgressHUD/SVProgressAnimatedView.h; sourceTree = "<group>"; };
  812. EC533D97A0341CBCCAF35659548EC67A /* saturate_cast.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = saturate_cast.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/saturate_cast.hpp; sourceTree = "<group>"; };
  813. ED099C056CE6E43E73ED33FE210BBAA7 /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = "<group>"; };
  814. ED9363F019FD0A0019E82EEDF4EEF736 /* allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = allocator.h; path = opencv2.framework/Versions/A/Headers/flann/allocator.h; sourceTree = "<group>"; };
  815. EDA7E9EC771910BC1784B8D628BB71A1 /* autotuned_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = autotuned_index.h; path = opencv2.framework/Versions/A/Headers/flann/autotuned_index.h; sourceTree = "<group>"; };
  816. EE6711E39E90B948C247B4D3BBBD50D8 /* dict.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = dict.hpp; path = opencv2.framework/Versions/A/Headers/dnn/dict.hpp; sourceTree = "<group>"; };
  817. EF44505618A80A9AAB9DDF8C2C74D858 /* core_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_c.h; path = opencv2.framework/Versions/A/Headers/core/core_c.h; sourceTree = "<group>"; };
  818. EF6DAAE482182EB0A860505B49985D11 /* optim.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = optim.hpp; path = opencv2.framework/Versions/A/Headers/core/optim.hpp; sourceTree = "<group>"; };
  819. F03D0305CE64CD3DB6DCD570AF1207E7 /* LenzStitchSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = LenzStitchSDK.framework; sourceTree = "<group>"; };
  820. F06CB2764FD8A0B4FD319F420A48CB65 /* YYTextMagnifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextMagnifier.h; path = YYText/Component/YYTextMagnifier.h; sourceTree = "<group>"; };
  821. F0A11610E70582484D43CFB7CF31A530 /* photo.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = photo.hpp; path = opencv2.framework/Versions/A/Headers/photo/photo.hpp; sourceTree = "<group>"; };
  822. F1BF1FE601B3AC930F7093C2DB2EEB90 /* YYTextKeyboardManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextKeyboardManager.m; path = YYText/Component/YYTextKeyboardManager.m; sourceTree = "<group>"; };
  823. F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig"; sourceTree = "<group>"; };
  824. F1F6333AC5E32DC32CA860E22EE95249 /* reduce_key_val.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reduce_key_val.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/detail/reduce_key_val.hpp; sourceTree = "<group>"; };
  825. F2A494889491906BF9D14DFCAC2B28BE /* LenzHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzHeader.h; sourceTree = "<group>"; };
  826. F2C9F4EBD687C5DBDF1CED0657F2DADC /* YYTextInput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextInput.h; path = YYText/Component/YYTextInput.h; sourceTree = "<group>"; };
  827. F35C88AA85FD0F5C08755F2D030BB414 /* SVProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.release.xcconfig; sourceTree = "<group>"; };
  828. F3E49E2A040BD35DC54E69ED7677A619 /* opencl_svm.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_svm.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/opencl_svm.hpp; sourceTree = "<group>"; };
  829. F428F070A4B8B45FA7C2F44562C40DBD /* color.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = color.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/color.hpp; sourceTree = "<group>"; };
  830. F5049C5F877CBD72B509EC4B1DEC8658 /* LenzSDKConstant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzSDKConstant.h; sourceTree = "<group>"; };
  831. F50A1ADE40F38ADEDA56443E5F2F6B41 /* opencl_svm_definitions.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_svm_definitions.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_svm_definitions.hpp; sourceTree = "<group>"; };
  832. F54727732A7E53DA3AD6997DF0020A5D /* YYTextTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextTransaction.m; path = YYText/Utility/YYTextTransaction.m; sourceTree = "<group>"; };
  833. F55A4A7B43F05A026936A8466866E2C8 /* ocl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ocl.hpp; path = opencv2.framework/Versions/A/Headers/core/ocl.hpp; sourceTree = "<group>"; };
  834. F5A8F4C2F7996B13D9771754778C1DB2 /* PCSBaseViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSBaseViewController.m; sourceTree = "<group>"; };
  835. F5E7E4D92F3D9699109164910267D81D /* heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = heap.h; path = opencv2.framework/Versions/A/Headers/flann/heap.h; sourceTree = "<group>"; };
  836. F67E66BB22F82DF4D9D016EF42323496 /* gproto.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gproto.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gproto.hpp; sourceTree = "<group>"; };
  837. F6AD81B40F65F016CC61F998140D0761 /* highgui.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = highgui.hpp; path = opencv2.framework/Versions/A/Headers/highgui/highgui.hpp; sourceTree = "<group>"; };
  838. F709EA11C8E0B1DA3A286C8A04638025 /* YYTextKeyboardManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextKeyboardManager.h; path = YYText/Component/YYTextKeyboardManager.h; sourceTree = "<group>"; };
  839. F747D9D8E74982D2956B795190B6FDA8 /* PhotoCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoCollectionViewCell.h; sourceTree = "<group>"; };
  840. F8088C64914375597AD32A789E60C7AF /* PhotoCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoCollectionViewCell.m; sourceTree = "<group>"; };
  841. F8749FBB21DEDF16A2FE4C4B79C72EBA /* compiler_hints.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = compiler_hints.hpp; path = opencv2.framework/Versions/A/Headers/gapi/util/compiler_hints.hpp; sourceTree = "<group>"; };
  842. F885A804025DA9A8F6B8E65414B8A922 /* YYText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYText.debug.xcconfig; sourceTree = "<group>"; };
  843. F8899028D046196EA57FCE66B9E701AB /* CameraTextureRenderPass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CameraTextureRenderPass.m; sourceTree = "<group>"; };
  844. F88B06FC6D8C55F610D2B1691BBC70D9 /* YYTextParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextParser.h; path = YYText/String/YYTextParser.h; sourceTree = "<group>"; };
  845. F9BE606E04380240DA40FE970FC51736 /* dnn.inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = dnn.inl.hpp; path = opencv2.framework/Versions/A/Headers/dnn/dnn.inl.hpp; sourceTree = "<group>"; };
  846. FA9E01B4ED0744F55D6EB61DD6D120DB /* interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interface.h; path = opencv2.framework/Versions/A/Headers/imgproc/hal/interface.h; sourceTree = "<group>"; };
  847. FAD77BA60287DD99A0268A3FB4A94B6C /* vsx_utils.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = vsx_utils.hpp; path = opencv2.framework/Versions/A/Headers/core/vsx_utils.hpp; sourceTree = "<group>"; };
  848. FB4CBD02D32F0B1645188D9D19E5A458 /* saturate.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = saturate.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/saturate.hpp; sourceTree = "<group>"; };
  849. FB589890B9B7F7766ABAC19DE54791B6 /* TimerLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TimerLabel.m; sourceTree = "<group>"; };
  850. FC52B5918084550BE142B3ADB88CF980 /* types_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types_c.h; path = opencv2.framework/Versions/A/Headers/imgproc/types_c.h; sourceTree = "<group>"; };
  851. FCCE1744A31A960C8E4A1D70EE716378 /* PanoramaGuideView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PanoramaGuideView.h; sourceTree = "<group>"; };
  852. FCF8994938D89F6AF82D0A82A6CFA7AC /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gpu/imgproc.hpp; sourceTree = "<group>"; };
  853. FE093AB3705D69EFE7D97BC8C0A56A79 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = opencv2.framework/Versions/A/Headers/flann/timer.h; sourceTree = "<group>"; };
  854. FE26723F2128212797F90808CE9DD35E /* util_inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = util_inl.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/util_inl.hpp; sourceTree = "<group>"; };
  855. FE3C577003FEC7A2B5CD80D570BCF5D9 /* YYTextContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextContainerView.h; path = YYText/Component/YYTextContainerView.h; sourceTree = "<group>"; };
  856. FE420F971CB469AF63C2C847B6E2B6CD /* PCSBaseViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSBaseViewController.h; sourceTree = "<group>"; };
  857. FF88A8B704E76F4EF7F072D4C452246B /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = "<group>"; };
  858. FFCB858332E34629F1B78C39D6EA58BD /* ImageCacheLRU.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ImageCacheLRU.h; sourceTree = "<group>"; };
  859. /* End PBXFileReference section */
  860. /* Begin PBXFrameworksBuildPhase section */
  861. 0A75E87060FECC162E30AFB1C8B6E30E /* Frameworks */ = {
  862. isa = PBXFrameworksBuildPhase;
  863. buildActionMask = 2147483647;
  864. files = (
  865. );
  866. runOnlyForDeploymentPostprocessing = 0;
  867. };
  868. 51CFEEFD7454041CBD131636E5A32582 /* Frameworks */ = {
  869. isa = PBXFrameworksBuildPhase;
  870. buildActionMask = 2147483647;
  871. files = (
  872. );
  873. runOnlyForDeploymentPostprocessing = 0;
  874. };
  875. 7D584E96DF98C44C96C94E4D4152233E /* Frameworks */ = {
  876. isa = PBXFrameworksBuildPhase;
  877. buildActionMask = 2147483647;
  878. files = (
  879. );
  880. runOnlyForDeploymentPostprocessing = 0;
  881. };
  882. A98376CDFC541ED7B9AB8CA18732CF6A /* Frameworks */ = {
  883. isa = PBXFrameworksBuildPhase;
  884. buildActionMask = 2147483647;
  885. files = (
  886. );
  887. runOnlyForDeploymentPostprocessing = 0;
  888. };
  889. C2198D747800F0F4A77AEF33F73FEFBF /* Frameworks */ = {
  890. isa = PBXFrameworksBuildPhase;
  891. buildActionMask = 2147483647;
  892. files = (
  893. );
  894. runOnlyForDeploymentPostprocessing = 0;
  895. };
  896. EED544A4A5DBB46D3827EFDE3227622F /* Frameworks */ = {
  897. isa = PBXFrameworksBuildPhase;
  898. buildActionMask = 2147483647;
  899. files = (
  900. );
  901. runOnlyForDeploymentPostprocessing = 0;
  902. };
  903. /* End PBXFrameworksBuildPhase section */
  904. /* Begin PBXGroup section */
  905. 096B779F8F3DE64C1F895F92928BEC42 /* Support Files */ = {
  906. isa = PBXGroup;
  907. children = (
  908. 84259456F20DB620A4BA1E3A5307C556 /* OpenCV.debug.xcconfig */,
  909. D9C8AB20FFF2E77748DB75C3A02C669B /* OpenCV.release.xcconfig */,
  910. );
  911. name = "Support Files";
  912. path = "../Target Support Files/OpenCV";
  913. sourceTree = "<group>";
  914. };
  915. 0B0C8531F8E699861CE5A6692B771430 /* Assets */ = {
  916. isa = PBXGroup;
  917. children = (
  918. E9D36FA637506F854A86313824BDE777 /* assets.xcassets */,
  919. 59D4357D2C68FCDBB1A6940BD8D6C977 /* moire_mobilenetv2_79.tflite */,
  920. );
  921. name = Assets;
  922. path = LenzCameraNativeModuleForRN/Assets;
  923. sourceTree = "<group>";
  924. };
  925. 0CBCE16E838A8CEF15C624C22AA3FD75 /* UI */ = {
  926. isa = PBXGroup;
  927. children = (
  928. B6139F2C5A8FFA2D954FE40D18E65BD2 /* PCSThemeColorManager.h */,
  929. E1AE2F39DAEB596F181B821A7F142366 /* PCSThemeColorManager.m */,
  930. C2DE670151F0485DC9D9FCA4F0315363 /* Button */,
  931. 64ACFD320B9751DEEF27893DBE0D1E59 /* color */,
  932. 896246F54ABCD7F7D9D3AF5E1EB4CD6F /* Label */,
  933. F38B8104E15F9648C4B90EC723800846 /* ModeListView */,
  934. E3B90133C7D7986D400CAC303EEB26CB /* PanoramaGuideView */,
  935. 645AF505005A09B31887625D90061E65 /* PanoramaOrientaionView */,
  936. 46A9422BA245E0184052E8DA93A234AF /* Transition */,
  937. 1B09D3086C3E10F2CA6FCF314CE524D4 /* UIView+tool */,
  938. );
  939. name = UI;
  940. path = UI;
  941. sourceTree = "<group>";
  942. };
  943. 177E9A26FB4B2CD951B7BFBDC074AA9F /* Frameworks */ = {
  944. isa = PBXGroup;
  945. children = (
  946. 81D3E21782439C8DF0952DC1F8A3EBD4 /* opencv2.framework */,
  947. );
  948. name = Frameworks;
  949. sourceTree = "<group>";
  950. };
  951. 1B09D3086C3E10F2CA6FCF314CE524D4 /* UIView+tool */ = {
  952. isa = PBXGroup;
  953. children = (
  954. AD5825DACE28052E151075551E902B54 /* UIImage+name.h */,
  955. 60CA6E9B39E65709A81E0F0D9C54E9BB /* UIImage+name.m */,
  956. 69C3892FD38F09E2DB86C97C5CB3CD65 /* UIView+JKAdd.h */,
  957. D1FC4F94C39D09C06AA249E3A6C1118C /* UIView+JKAdd.m */,
  958. );
  959. name = "UIView+tool";
  960. path = "UIView+tool";
  961. sourceTree = "<group>";
  962. };
  963. 22F8EE379F9EA1B25E89C167E57E4BA5 /* TensorFlow */ = {
  964. isa = PBXGroup;
  965. children = (
  966. B6C5C2C653F1C9C1593022709562F4CE /* TensorFlowWrapper.h */,
  967. 046EA474A5F0B5621F8F8A6C106B747A /* TensorFlowWrapper.m */,
  968. );
  969. name = TensorFlow;
  970. path = TensorFlow;
  971. sourceTree = "<group>";
  972. };
  973. 24F16F0AE58E5D34094D9C68D41B38AA /* YYText */ = {
  974. isa = PBXGroup;
  975. children = (
  976. 6D9C4206A87792945D06CB0F4B0460D6 /* NSAttributedString+YYText.h */,
  977. A6DD8D62E3F27CBECE15A7983842557C /* NSAttributedString+YYText.m */,
  978. E8DE50D2BF6B270EB1E2AB3414917DF3 /* NSParagraphStyle+YYText.h */,
  979. 4F9E2BA1F0DD51F89C167D74F42F35D9 /* NSParagraphStyle+YYText.m */,
  980. D8C6C86805D19BBF0FD6C3BE0617D24B /* UIPasteboard+YYText.h */,
  981. 6D540548A1FD992F92DC24A9A9275457 /* UIPasteboard+YYText.m */,
  982. 8C835322A854253ADD9F5BC98CB96D71 /* UIView+YYText.h */,
  983. 9F9D4030F06E502C5B21A5236DD8D247 /* UIView+YYText.m */,
  984. AB7F17C6D7DA0A9C99ADD88AB3E86E80 /* YYLabel.h */,
  985. 47C3312D87AA41677BF69FA238B1D55B /* YYLabel.m */,
  986. 5C9CB6FA65481DC8D7D73A3E6F69459D /* YYText.h */,
  987. D72393E15017658E11D0F6474FFA041C /* YYTextArchiver.h */,
  988. 0DFC0F8998D1FA349D1E54D8E1283BED /* YYTextArchiver.m */,
  989. D08B81B40D7DA7724956014AA18038AC /* YYTextAsyncLayer.h */,
  990. C6AD000DB191B44DFC2F8C13A686EF9C /* YYTextAsyncLayer.m */,
  991. 609690592A664AFC1E5202FB37AB0DEF /* YYTextAttribute.h */,
  992. 5BE98BE0B0CA8687791510FC061C9E55 /* YYTextAttribute.m */,
  993. FE3C577003FEC7A2B5CD80D570BCF5D9 /* YYTextContainerView.h */,
  994. 3CA6578C25DC102A1C9AABF66B6D7A8B /* YYTextContainerView.m */,
  995. AFB96CE46B2521BA8AF63A7187728C99 /* YYTextDebugOption.h */,
  996. 5DABCF75E98DDA7FBB1906C577003884 /* YYTextDebugOption.m */,
  997. 1B4111C89633ABF1E097CED012AA381D /* YYTextEffectWindow.h */,
  998. 30007945463B9DCDEAD0AE3EE0A88B47 /* YYTextEffectWindow.m */,
  999. F2C9F4EBD687C5DBDF1CED0657F2DADC /* YYTextInput.h */,
  1000. 375E0F154F1C09BB699AE0CCE064C76F /* YYTextInput.m */,
  1001. F709EA11C8E0B1DA3A286C8A04638025 /* YYTextKeyboardManager.h */,
  1002. F1BF1FE601B3AC930F7093C2DB2EEB90 /* YYTextKeyboardManager.m */,
  1003. 8E664EE3535FE7EE797EC2F31EBF8E7F /* YYTextLayout.h */,
  1004. 6E2104735EA7A78538678C495ECFE1A2 /* YYTextLayout.m */,
  1005. A8AAD0CBF6B94AC725E7CA6C5799CFE0 /* YYTextLine.h */,
  1006. A8AAD305CF02D66084E98C738018D020 /* YYTextLine.m */,
  1007. F06CB2764FD8A0B4FD319F420A48CB65 /* YYTextMagnifier.h */,
  1008. A6090E4A5F9787132B719CD08D1A0B35 /* YYTextMagnifier.m */,
  1009. F88B06FC6D8C55F610D2B1691BBC70D9 /* YYTextParser.h */,
  1010. 1C9074E00C18DA3CB722DB507724EAA4 /* YYTextParser.m */,
  1011. 705D56BBE5EC4DC23360F2FB38751822 /* YYTextRubyAnnotation.h */,
  1012. 85877531F68825A8DAE953CAFC680E4A /* YYTextRubyAnnotation.m */,
  1013. 03AFFE13C349A3114DE7204AF43D6680 /* YYTextRunDelegate.h */,
  1014. EB7FF8B7B600F4FD78AF346E61B70945 /* YYTextRunDelegate.m */,
  1015. 99A2DDA3C047059071FF314B3B2B9A6C /* YYTextSelectionView.h */,
  1016. 883B2F1C3C7F72237C5512512B626ED3 /* YYTextSelectionView.m */,
  1017. D58F9DF1BCFAD6AA58833AC57243594C /* YYTextTransaction.h */,
  1018. F54727732A7E53DA3AD6997DF0020A5D /* YYTextTransaction.m */,
  1019. 2DCD65B4FA1B8B8C94BB55122281CC41 /* YYTextUtilities.h */,
  1020. 4608217F480358AB38734B97C23ACDDC /* YYTextUtilities.m */,
  1021. 950F6F376B6EF8F414D301D8C8ABA68A /* YYTextView.h */,
  1022. 676142B5756DF90D6870BBDB0AE3F608 /* YYTextView.m */,
  1023. 36C5150554884D89751CE9BE164F5FEA /* YYTextWeakProxy.h */,
  1024. BFC0F33A78326D11EB375324B8459460 /* YYTextWeakProxy.m */,
  1025. 8D4C0D0BD32B4FF27EB67BBB07BAD55A /* Support Files */,
  1026. );
  1027. name = YYText;
  1028. path = YYText;
  1029. sourceTree = "<group>";
  1030. };
  1031. 259DB217CDF8F07E6F9C6B9709930C65 /* DB */ = {
  1032. isa = PBXGroup;
  1033. children = (
  1034. A0BA9F3CF032F40FA5AD9615208E3C01 /* DBManager.h */,
  1035. 3FD94F366A2FE52E42F260FBD185624D /* DBManager.m */,
  1036. 18DEF0F2B0B54048BB36BEDBD6445EA7 /* LenzDataManager.h */,
  1037. AFE61FB930DCE67894411202942F84B2 /* LenzDataManager.m */,
  1038. 28D5396F1B12A8103A34D2227B97DC93 /* DBModels */,
  1039. );
  1040. name = DB;
  1041. path = DB;
  1042. sourceTree = "<group>";
  1043. };
  1044. 28D5396F1B12A8103A34D2227B97DC93 /* DBModels */ = {
  1045. isa = PBXGroup;
  1046. children = (
  1047. D06CAB0EB78BBA36B6A2477B90EC7B03 /* LenzCachedResourceModel.h */,
  1048. AEE6650704927962FFC496EFFCED5E15 /* LenzCachedResourceModel.m */,
  1049. );
  1050. name = DBModels;
  1051. path = DBModels;
  1052. sourceTree = "<group>";
  1053. };
  1054. 2A0CE3A145C2F5AAD1A4A4D10B13E97C /* Support Files */ = {
  1055. isa = PBXGroup;
  1056. children = (
  1057. 581EBAB920DBBFA0C9A842312AA09387 /* SVProgressHUD-dummy.m */,
  1058. 2EAE6CF6727C481AB04A269F61B06E7B /* SVProgressHUD-prefix.pch */,
  1059. DB314BF6E089B8A3E53CA76B57F67741 /* SVProgressHUD.debug.xcconfig */,
  1060. F35C88AA85FD0F5C08755F2D030BB414 /* SVProgressHUD.release.xcconfig */,
  1061. );
  1062. name = "Support Files";
  1063. path = "../Target Support Files/SVProgressHUD";
  1064. sourceTree = "<group>";
  1065. };
  1066. 2CD675A72F60B6AE8EEB34568F7000C1 /* inner */ = {
  1067. isa = PBXGroup;
  1068. children = (
  1069. 930E8712F0A98EFAF6CDF41E82E37D23 /* cpp-headers.h */,
  1070. 1E47B253D87480E190E02C4274637679 /* cpp-headers.mm */,
  1071. F2A494889491906BF9D14DFCAC2B28BE /* LenzHeader.h */,
  1072. AB3C79243ED15BFAE4821D460368EAF4 /* Localizable.strings */,
  1073. C8E01240A044DA073A13FA7C495BD7C1 /* PCSSessionWrapper.h */,
  1074. 17AAD46D0CD240EA73ACCD1C9E78BC0C /* PCSSessionWrapper.m */,
  1075. 5B70A8C574471B692123BD0B1DB7ECBF /* PCSTools.h */,
  1076. 0C80A669E157AE983B129787FF1F7CEA /* PCSTools.m */,
  1077. DB7D4BE0B299881BDAA16524E221F155 /* SDKParameters.m */,
  1078. CA3EAD24CA087AE9EFE3A51BDA28748C /* VC.storyboard */,
  1079. EB8703BFEC8E7ED71E5FBE705E248E6F /* Alert */,
  1080. 7449C42CDEA40532259C3F9EB3E6CD1E /* CameraManager */,
  1081. 259DB217CDF8F07E6F9C6B9709930C65 /* DB */,
  1082. 8888234D7C7CD764752CFCEC254E9BAF /* Exts */,
  1083. 73365B1B2901E178D487B2D596DA4C96 /* LRU */,
  1084. 91EBC6832C2A7B7FC8F355FD60F0714C /* MoviePlayerViewController */,
  1085. 6BE2A22FA1549C016FF55D0B295D7B36 /* OperationNode */,
  1086. 3679167748A29CDBABEC135B4B9F1955 /* PCSBaseViewController */,
  1087. BFCC05CB73024127E592CD714151230C /* PhotoListController */,
  1088. A1F150EA919FD40488EE59D94B75AA7A /* Renderer */,
  1089. 22F8EE379F9EA1B25E89C167E57E4BA5 /* TensorFlow */,
  1090. 0CBCE16E838A8CEF15C624C22AA3FD75 /* UI */,
  1091. );
  1092. name = inner;
  1093. path = LenzCameraNativeModuleForRN/Classes/inner;
  1094. sourceTree = "<group>";
  1095. };
  1096. 2F2E38D87E3051CD3A44AE4F16D81CBC /* Frameworks */ = {
  1097. isa = PBXGroup;
  1098. children = (
  1099. F03D0305CE64CD3DB6DCD570AF1207E7 /* LenzStitchSDK.framework */,
  1100. 4DFACD941452B5F6D38A3111786FF8E9 /* LenzTensorFlowSDK.framework */,
  1101. );
  1102. name = Frameworks;
  1103. sourceTree = "<group>";
  1104. };
  1105. 3679167748A29CDBABEC135B4B9F1955 /* PCSBaseViewController */ = {
  1106. isa = PBXGroup;
  1107. children = (
  1108. F5A8F4C2F7996B13D9771754778C1DB2 /* PCSBaseViewController.m */,
  1109. 204CA60EC1B7C772C3D36025B1B6DA86 /* PCSPreviewViewController.h */,
  1110. 39609D8DAFFC2D58966A39CF293C8487 /* PCSPreviewViewController.m */,
  1111. 71CD726BBEFCFADD0026ED0F25FB47F2 /* GestureHandler */,
  1112. );
  1113. name = PCSBaseViewController;
  1114. path = PCSBaseViewController;
  1115. sourceTree = "<group>";
  1116. };
  1117. 3AF00F7D6E0BD6803B1F97078E7AB6D7 /* PCSMotionManager */ = {
  1118. isa = PBXGroup;
  1119. children = (
  1120. DD203947A7FEADCBEE348B4005B59810 /* PCSMotionManager.h */,
  1121. 84E31A913AEC1971A2D3E14C6A8EB3EB /* PCSMotionManager.m */,
  1122. );
  1123. name = PCSMotionManager;
  1124. path = PCSMotionManager;
  1125. sourceTree = "<group>";
  1126. };
  1127. 3F22A0EF3EEE2ADAF07DC80DE7DF0202 /* TensorFlowLite */ = {
  1128. isa = PBXGroup;
  1129. children = (
  1130. 44A9282235ECDEC11AFCDD3E93DFE5F5 /* Frameworks */,
  1131. 70B87B2AB37D4C0CC901DF9F998263AF /* Support Files */,
  1132. );
  1133. name = TensorFlowLite;
  1134. path = TensorFlowLite;
  1135. sourceTree = "<group>";
  1136. };
  1137. 44A9282235ECDEC11AFCDD3E93DFE5F5 /* Frameworks */ = {
  1138. isa = PBXGroup;
  1139. children = (
  1140. 932D4FA8B670C4E757469E5E6EED4853 /* tensorflow_lite.framework */,
  1141. );
  1142. name = Frameworks;
  1143. sourceTree = "<group>";
  1144. };
  1145. 46A9422BA245E0184052E8DA93A234AF /* Transition */ = {
  1146. isa = PBXGroup;
  1147. children = (
  1148. 292EA97555A989158B70EAC40E9C4362 /* CustomModalViewTransition.h */,
  1149. A37C778A14DC752AE1507A0BDA2C786D /* CustomModalViewTransition.m */,
  1150. );
  1151. name = Transition;
  1152. path = Transition;
  1153. sourceTree = "<group>";
  1154. };
  1155. 538395D4833749835D4CC2BF925D17DC /* Masonry */ = {
  1156. isa = PBXGroup;
  1157. children = (
  1158. FF88A8B704E76F4EF7F072D4C452246B /* MASCompositeConstraint.h */,
  1159. 4283144422CF4681426BD8335ECAF04C /* MASCompositeConstraint.m */,
  1160. ED099C056CE6E43E73ED33FE210BBAA7 /* MASConstraint.h */,
  1161. E4112C76524A14FB3C8DCBE109D8674A /* MASConstraint.m */,
  1162. 9A7C8573ED5247BA0EAC63A655EA23F7 /* MASConstraint+Private.h */,
  1163. B53853BE0AAFF07C795F2FC53512BF1B /* MASConstraintMaker.h */,
  1164. DDEDFE98E81661EE1D0AF42A8B178AA7 /* MASConstraintMaker.m */,
  1165. C2C0B8C1B87787844152E6480B9698DC /* MASLayoutConstraint.h */,
  1166. 358CC6AC3C97C40150E9B61BF3B6E61D /* MASLayoutConstraint.m */,
  1167. 68EF38DD0E7842AC439E27EFBD897B87 /* Masonry.h */,
  1168. 62BEFD9597C71AD2C60C0B797E8A8F74 /* MASUtilities.h */,
  1169. 264B48E24894CA95EBA58150F9C31FDF /* MASViewAttribute.h */,
  1170. 0017EF6140620B590366C8792718F9B2 /* MASViewAttribute.m */,
  1171. 49FA81C35EB88895B9D2B9C585836D40 /* MASViewConstraint.h */,
  1172. 8B6D881545362B2B169BD3A2D2DB4A35 /* MASViewConstraint.m */,
  1173. 5956CE89E82E135BF5A60ADEE9324CA6 /* NSArray+MASAdditions.h */,
  1174. 297B311818D27768A6AFABABBFC0B616 /* NSArray+MASAdditions.m */,
  1175. D87DC04B6DBADD682E2C53B0072AF4EE /* NSArray+MASShorthandAdditions.h */,
  1176. CCA35841F40ADE1827CAF5395D1ACD1B /* NSLayoutConstraint+MASDebugAdditions.h */,
  1177. 40F5C4A17B510BEE0C544A73BAB06084 /* NSLayoutConstraint+MASDebugAdditions.m */,
  1178. 088F8F4B52A1B8D49AD2E6FA4D3BECD2 /* View+MASAdditions.h */,
  1179. 68D5BC0B07AFB77ACEA56C309EBAD713 /* View+MASAdditions.m */,
  1180. 1ED4F8C5E0FB36B0CD6CC7F9616D52B7 /* View+MASShorthandAdditions.h */,
  1181. 52C43B9C0804B3A71ED6D02D252084DF /* ViewController+MASAdditions.h */,
  1182. 386F092257100796D5764E5C48E9082D /* ViewController+MASAdditions.m */,
  1183. 8256A3AF36E41D087D0127C9E29A12B0 /* Support Files */,
  1184. );
  1185. name = Masonry;
  1186. path = Masonry;
  1187. sourceTree = "<group>";
  1188. };
  1189. 645AF505005A09B31887625D90061E65 /* PanoramaOrientaionView */ = {
  1190. isa = PBXGroup;
  1191. children = (
  1192. 426F02238B436054049A685A78BFA852 /* PanoramaOrientationView.h */,
  1193. E16F5AB657F5FCF7D7828ABFDEAC7B0C /* PanoramaOrientationView.m */,
  1194. );
  1195. name = PanoramaOrientaionView;
  1196. path = PanoramaOrientaionView;
  1197. sourceTree = "<group>";
  1198. };
  1199. 64ACFD320B9751DEEF27893DBE0D1E59 /* color */ = {
  1200. isa = PBXGroup;
  1201. children = (
  1202. 96DE0BB340AC968CFE385A33610ABD5B /* UIColor+JKAdd.h */,
  1203. 3AA918D87B1EAA4EF2EFB17B36B3745F /* UIColor+JKAdd.m */,
  1204. );
  1205. name = color;
  1206. path = color;
  1207. sourceTree = "<group>";
  1208. };
  1209. 6BE2A22FA1549C016FF55D0B295D7B36 /* OperationNode */ = {
  1210. isa = PBXGroup;
  1211. children = (
  1212. 6390DCF94F940BAB67F9567698A3AF93 /* OperationNodeAIPanorama.h */,
  1213. 322A116AEFCF1CADD66A2741D176C141 /* OperationNodeAIPanorama.m */,
  1214. 1EC5AD8503326BB582E654BE70FB4689 /* OperationNodeMovie.h */,
  1215. 9509BEA56C5BBC338E86AEE18AEB701B /* OperationNodeMovie.m */,
  1216. D91048A235AB83FB966D87A7128F5EBD /* OperationNodeMultiple.h */,
  1217. 373580D0F071057971D7BF1AE9E50A3E /* OperationNodeMultiple.m */,
  1218. 1042B4C2243940700B19228C32E8C43D /* OperationNodePanorama.h */,
  1219. 76AACD0328038A9E1220704F08A441B1 /* OperationNodePanorama.m */,
  1220. 8D934080A70BD4395BE8B64F373AA744 /* OperationNodeProtocol.h */,
  1221. 6708B27939062DFB54B63DBA2606B52E /* OperationNodeSingle.h */,
  1222. 9E19893056FAAE1527B538E64A61A6E4 /* OperationNodeSingle.m */,
  1223. 1A98C205CBCEB82AFBB50E5DA6CBCB23 /* OperationNodeVideoBase.h */,
  1224. 7904D868130F279A7E02E4728FA64A7B /* OperationNodeVideoBase.m */,
  1225. 3AF00F7D6E0BD6803B1F97078E7AB6D7 /* PCSMotionManager */,
  1226. );
  1227. name = OperationNode;
  1228. path = OperationNode;
  1229. sourceTree = "<group>";
  1230. };
  1231. 7085FB2F60E9C0C3098331C309501172 /* Pod */ = {
  1232. isa = PBXGroup;
  1233. children = (
  1234. 016187AEFAB9CF08EFF3E8D30B441AEA /* LenzSDK.podspec */,
  1235. );
  1236. name = Pod;
  1237. sourceTree = "<group>";
  1238. };
  1239. 70B87B2AB37D4C0CC901DF9F998263AF /* Support Files */ = {
  1240. isa = PBXGroup;
  1241. children = (
  1242. 0B4D0AC9112213C9CB37B361BBF0C542 /* TensorFlowLite.debug.xcconfig */,
  1243. D98BA064A5C2C6C3677AE67C485DB030 /* TensorFlowLite.release.xcconfig */,
  1244. );
  1245. name = "Support Files";
  1246. path = "../Target Support Files/TensorFlowLite";
  1247. sourceTree = "<group>";
  1248. };
  1249. 71CD726BBEFCFADD0026ED0F25FB47F2 /* GestureHandler */ = {
  1250. isa = PBXGroup;
  1251. children = (
  1252. 8E7274F3C5694CDF3AD35024BEAB1805 /* BaseViewTapGestureDelegate.h */,
  1253. 518F2C5E6D99497BDA039011A2086443 /* BaseViewTapGestureDelegate.m */,
  1254. );
  1255. name = GestureHandler;
  1256. path = GestureHandler;
  1257. sourceTree = "<group>";
  1258. };
  1259. 73365B1B2901E178D487B2D596DA4C96 /* LRU */ = {
  1260. isa = PBXGroup;
  1261. children = (
  1262. FFCB858332E34629F1B78C39D6EA58BD /* ImageCacheLRU.h */,
  1263. 7D284A04C37371DA021C67F89D5FD438 /* ImageCacheLRU.m */,
  1264. );
  1265. name = LRU;
  1266. path = LRU;
  1267. sourceTree = "<group>";
  1268. };
  1269. 7449C42CDEA40532259C3F9EB3E6CD1E /* CameraManager */ = {
  1270. isa = PBXGroup;
  1271. children = (
  1272. C3EF3F75B16917EC98D3720E4BA79BA5 /* CameraManager.h */,
  1273. C479ECD2DDDB0513BDA318CE2A357923 /* CameraManager.m */,
  1274. );
  1275. name = CameraManager;
  1276. path = CameraManager;
  1277. sourceTree = "<group>";
  1278. };
  1279. 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */ = {
  1280. isa = PBXGroup;
  1281. children = (
  1282. CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */,
  1283. CCC2A2D9BE13B566A864D567615045F6 /* LenzSDK-LenzCameraNativeModuleForRN */,
  1284. 1FFED36A657123030ABB700256D73F15 /* Masonry */,
  1285. 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */,
  1286. E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */,
  1287. 71762A728913EB440C97D3616D291AF3 /* YYText */,
  1288. );
  1289. name = Products;
  1290. sourceTree = "<group>";
  1291. };
  1292. 8256A3AF36E41D087D0127C9E29A12B0 /* Support Files */ = {
  1293. isa = PBXGroup;
  1294. children = (
  1295. 1497F64FAC1FCB87025D4886FE91CDCC /* Masonry-dummy.m */,
  1296. 42180682FCA23F12B801A9A450D42999 /* Masonry-prefix.pch */,
  1297. 704CF1A33EF7E8F7393DA419E09FE129 /* Masonry.debug.xcconfig */,
  1298. 51153524381D256A3577632592B5F471 /* Masonry.release.xcconfig */,
  1299. );
  1300. name = "Support Files";
  1301. path = "../Target Support Files/Masonry";
  1302. sourceTree = "<group>";
  1303. };
  1304. 851C4D0F34F970073F7891F5C85251D7 /* LenzSDK */ = {
  1305. isa = PBXGroup;
  1306. children = (
  1307. 82A5A9A9C51967A4C186A1EA30E692D5 /* PCSSDF-prefix-header.h */,
  1308. 0B0C8531F8E699861CE5A6692B771430 /* Assets */,
  1309. 2F2E38D87E3051CD3A44AE4F16D81CBC /* Frameworks */,
  1310. C7666AC466ADBC5712D16052447D01E8 /* headers */,
  1311. 2CD675A72F60B6AE8EEB34568F7000C1 /* inner */,
  1312. 7085FB2F60E9C0C3098331C309501172 /* Pod */,
  1313. E67500B160355D7A09A3550A18807332 /* Support Files */,
  1314. );
  1315. name = LenzSDK;
  1316. path = ../..;
  1317. sourceTree = "<group>";
  1318. };
  1319. 8888234D7C7CD764752CFCEC254E9BAF /* Exts */ = {
  1320. isa = PBXGroup;
  1321. children = (
  1322. 7F6343CFB04CBD91288A7EB28E48538D /* AVCapturePhotoOutput+VersionAdaptor.h */,
  1323. 4E37343EE82B8F347F3E29157085A7A6 /* AVCapturePhotoOutput+VersionAdaptor.m */,
  1324. A7E756E6FE39D38C7A59E600B325EDFB /* NSString+Localization.h */,
  1325. 5F155F6FABDB40EA4B9D30E5B485C3DD /* NSString+Localization.m */,
  1326. A10AAE6503FA41A5365262ACDA714B3D /* UIButton+Layout.h */,
  1327. 8E8D50672304655930FBEE3ABFF3D45B /* UIButton+Layout.m */,
  1328. BD66DEFEA3C448B76F66EE7883BA13D6 /* UIImage+ext.h */,
  1329. CF73DFC7AEA2987BC574FDB4206007C6 /* UIImage+ext.m */,
  1330. );
  1331. name = Exts;
  1332. path = Exts;
  1333. sourceTree = "<group>";
  1334. };
  1335. 896246F54ABCD7F7D9D3AF5E1EB4CD6F /* Label */ = {
  1336. isa = PBXGroup;
  1337. children = (
  1338. 9EEC06BA8089F52C602F0F28D8B32134 /* AlbumCounterLabel.h */,
  1339. 9F204DD8659EF00E3504B4219C1A6A37 /* AlbumCounterLabel.m */,
  1340. AA1A02AE75D01DA6707941035BF279C7 /* PaddingLabel.h */,
  1341. 796150F51510DD9BC3FD32301FCA571C /* PaddingLabel.m */,
  1342. 582A935B7FDA30B4ECA9AD504C063AE3 /* TimerLabel.h */,
  1343. FB589890B9B7F7766ABAC19DE54791B6 /* TimerLabel.m */,
  1344. );
  1345. name = Label;
  1346. path = Label;
  1347. sourceTree = "<group>";
  1348. };
  1349. 8D4C0D0BD32B4FF27EB67BBB07BAD55A /* Support Files */ = {
  1350. isa = PBXGroup;
  1351. children = (
  1352. 2606EA301C7ABE12319FE8E5FEA351CF /* YYText-dummy.m */,
  1353. D9A3715095BA2EA58FD904C931B47FDB /* YYText-prefix.pch */,
  1354. F885A804025DA9A8F6B8E65414B8A922 /* YYText.debug.xcconfig */,
  1355. 97FB5EB9966C3F8164DED68B5A9CA065 /* YYText.release.xcconfig */,
  1356. );
  1357. name = "Support Files";
  1358. path = "../Target Support Files/YYText";
  1359. sourceTree = "<group>";
  1360. };
  1361. 9119BB64A54B80C619291E9FF6738D0B /* OpenCV */ = {
  1362. isa = PBXGroup;
  1363. children = (
  1364. 54230A35E01113BE92FA52253D841B66 /* affine.hpp */,
  1365. 40CBAB4752C8DABE11583CFCAEBE9332 /* all_indices.h */,
  1366. 637E098F4B084BB7C1CB30143196008E /* all_layers.hpp */,
  1367. ED9363F019FD0A0019E82EEDF4EEF736 /* allocator.h */,
  1368. 02D12A79D294F74ED0846BD01AB54357 /* allocator_stats.hpp */,
  1369. D861C133048FADD354AB8997E265828E /* allocator_stats.impl.hpp */,
  1370. 80A83EA3AB806BE102DEF46EA6E95D41 /* any.h */,
  1371. 922C53B0F244091A24886EBB0D9131CD /* any.hpp */,
  1372. 70B2CD42B86668F92168C5DD4C4A2F2C /* assert.hpp */,
  1373. 0B99A6EEF576689F4DF9F99F61DCD698 /* async.hpp */,
  1374. ACCEF111035126FF188C5368946AEED7 /* async_promise.hpp */,
  1375. 934F5AD64C308682F86E01D48A22E301 /* autocalib.hpp */,
  1376. EDA7E9EC771910BC1784B8D628BB71A1 /* autotuned_index.h */,
  1377. DEC3B41A8524F8B9A7C4EF205AEBA40D /* background_segm.hpp */,
  1378. B06FE8BCE3CB1D1F202D65A810052811 /* base.hpp */,
  1379. 0443C510EEAC03C251C852311BC00F02 /* bindings_utils.hpp */,
  1380. 96CB8FEDC86549D926CDC9F8A5864511 /* blenders.hpp */,
  1381. 667752E4B4C80DB04E212AD3984EAD80 /* block.hpp */,
  1382. A6979532DBA03286C5A599B01EA1E14D /* border_interpolate.hpp */,
  1383. 7FDABDED068ADB03E6452804C3E1AF28 /* bufferpool.hpp */,
  1384. 22BBF84535F5D31DAA5B3583F4DA3E25 /* calib3d.hpp */,
  1385. 96C485EEC3D690E328CCD2E801E22372 /* calib3d.hpp */,
  1386. C29782FD113418A07A34A569DF470AC4 /* calib3d_c.h */,
  1387. 88AEECB8A0D08228229135658D4C9A7D /* camera.hpp */,
  1388. A5C4AC19EA61A10D3CAC1CED3F9C36E6 /* cap.hpp */,
  1389. A11F0FD481C26C7B40E35F4894C13754 /* cap_ios.h */,
  1390. 707AD619718E2ECB9DA7F101C6671BE5 /* check.hpp */,
  1391. F428F070A4B8B45FA7C2F44562C40DBD /* color.hpp */,
  1392. B508CC04900963B641BA2069D3701BD0 /* color_detail.hpp */,
  1393. 7A229DB674E6D6732E45B7AFF63B5DD4 /* common.hpp */,
  1394. F8749FBB21DEDF16A2FE4C4B79C72EBA /* compiler_hints.hpp */,
  1395. B1D2E6AB420401D0E497EF0F778AEF0C /* composite_index.h */,
  1396. 27D146FA107BA976FB7401B8FF2A762C /* config.h */,
  1397. E77E2DC6261DD7A1550A872959BFD822 /* constants_c.h */,
  1398. AFC2DA5D82B1ED75556F6DAD43FEEFCA /* constants_c.h */,
  1399. 42D61DECC46B064B0FD6BA2EDEE3400F /* constants_c.h */,
  1400. B9B3C773E369816AC03FE61E1E4F9EF2 /* constants_c.h */,
  1401. 70CCED9F559A55CCF10F0A088BB188F4 /* convert.hpp */,
  1402. 64EB09235E4F89C667108CB55C503F8F /* core.hpp */,
  1403. 949044E87D38CC5E8DF3BF99FF37E03E /* core.hpp */,
  1404. 70E0A8020D30FA6082AE590D202DFAA5 /* core.hpp */,
  1405. 71F80A14DC599A1F1A6DBB750FD0C2C6 /* core.hpp */,
  1406. 61D2A690F49C2363A2D590B1A461CE6D /* core.hpp */,
  1407. 0D3C75735AC0E619032BE385E8344977 /* core.hpp */,
  1408. 4FC0C5F4E50752C8DCE412D7A8232FE5 /* core.hpp */,
  1409. C1BF9418E375222D7D9DDD8438BCDC58 /* core.hpp */,
  1410. EF44505618A80A9AAB9DDF8C2C74D858 /* core_c.h */,
  1411. 7F6333B018A96EC115EE4C9D745123E6 /* cuda.hpp */,
  1412. 4C268BF678A2ADF07A7B34CE24A3B5DB /* cuda.hpp */,
  1413. 2D70EF77F0D7500CCB5E2EBFAA2D8A9E /* cuda.inl.hpp */,
  1414. A132D70983AE6A7905D34F1675FFEB40 /* cuda_stream_accessor.hpp */,
  1415. D954C7FBF4E1BA970FB0230E2CCC1519 /* cuda_types.hpp */,
  1416. 9F8B52AF1A7DBB5B74C642779A2799D5 /* cv_cpu_dispatch.h */,
  1417. 72A7B9D18DB41BDB544B17EB9833FE39 /* cv_cpu_helper.h */,
  1418. D3CA38146DC28688F664620C88569AC2 /* cvconfig.h */,
  1419. 25A791700887556451D0F73A4BD70EDE /* cvdef.h */,
  1420. 65216076890A820998163B358A2BCE3F /* cvdefs.hpp */,
  1421. 5AD23CF5F7D55F69CA736096EB907F06 /* cvstd.hpp */,
  1422. AC29044ECE0EE1956DC5649E631C8DFA /* cvstd.inl.hpp */,
  1423. 9A484CCB8389B2E9A0852E0BEF3B71E6 /* cvstd_wrapper.hpp */,
  1424. 7FA7797E3C8A3F02B9397ADD2F4B3B34 /* datamov_utils.hpp */,
  1425. 5FCEB5EBC04B1C20C98F9CF690D14404 /* defines.h */,
  1426. BAE779A45DA41C1D3957ED61EE3F6B9B /* detection_based_tracker.hpp */,
  1427. EE6711E39E90B948C247B4D3BBBD50D8 /* dict.hpp */,
  1428. 04E880C103BD684699FFE79B53EE73F7 /* directx.hpp */,
  1429. 4442DD4A5A756E57C510FB7991F5376E /* dist.h */,
  1430. 66976340D235F792F6CFB7B22E82D369 /* dnn.hpp */,
  1431. 9164C10187C036A2DB371FCAD3B2FE82 /* dnn.hpp */,
  1432. F9BE606E04380240DA40FE970FC51736 /* dnn.inl.hpp */,
  1433. B8D9DC178ABDBFABBF25EBD18CE3AC5E /* dummy.h */,
  1434. C788E9DF8878E7474D3EDF9144BF7C56 /* dynamic_bitset.h */,
  1435. 04789F97ADA9FF3CF7A0AE6F05164F38 /* dynamic_smem.hpp */,
  1436. A92ED11553D30ED154569AE88DD09E15 /* eigen.hpp */,
  1437. 461D76E69F330F8EAEEF296800836DEA /* emulation.hpp */,
  1438. A1B0C644D3FF7A7B418FCB4DB455F76C /* exception_ptr.hpp */,
  1439. 40F15FFD8D016079FBD6519865F9E5F3 /* exports.hpp */,
  1440. 59A3DA815D3041D00193157475E4B8EE /* exposure_compensate.hpp */,
  1441. C352F848C4DF5E6E23772054C80C1A46 /* fast_math.hpp */,
  1442. 9073A8BD86BD67FBEEC7F0374E7B75F3 /* features2d.hpp */,
  1443. 12CDA4EDCB8ACEB1DB9BE52C93DBE4F3 /* features2d.hpp */,
  1444. 98F193E58B976283DB7FC97CD3450CD1 /* filesystem.hpp */,
  1445. AEE75E6677DAE06ED201B6DDD94BA774 /* filters.hpp */,
  1446. 3A2B05FDF48D87D2EC209F6DEE0F9C9F /* flann.hpp */,
  1447. CDDDFA3212B8FF26A1A44D8864383D0F /* flann.hpp */,
  1448. 82619293D70C6E546706BAA5C2ABB1D2 /* flann_base.hpp */,
  1449. B27BC8A2E351364B501D65A389F62FB5 /* funcattrib.hpp */,
  1450. 2CAE1004151CD867853AB2850D35198D /* functional.hpp */,
  1451. BC576F70BF6690812A8D8A2F0A262D37 /* gapi.hpp */,
  1452. 85D8BE1F453CD63677CB734B15E0D68E /* garg.hpp */,
  1453. 9DB2B7B75F250B2C6B80588C56C646C9 /* garray.hpp */,
  1454. 4126864734F84125EB8A14E858BBBFBC /* gasync_context.hpp */,
  1455. 5167DF740E02B1B8E592669BA64DC9D0 /* gcall.hpp */,
  1456. 4AB8D729CA52E69338A85A5232B555D8 /* gcgraph.hpp */,
  1457. 4A8C01A8C618CE6B1A6B4E5420CA16CF /* gcommon.hpp */,
  1458. DB602CDE7B2F80B09ED7160DA540AD55 /* gcompiled.hpp */,
  1459. D2CBE31AED27837CD6D91DA8F38C0548 /* gcompiled_async.hpp */,
  1460. BE4B0E143C15D8A8F524904129856126 /* gcompoundkernel.hpp */,
  1461. 256C9647F64A4E2F171D1E0F2F38312E /* gcomputation.hpp */,
  1462. 8927E5F4D6A4A6CC74194C99768C5DE7 /* gcomputation_async.hpp */,
  1463. A9BCA4F54D2626DC60DBB618DF6D69D4 /* gcpukernel.hpp */,
  1464. 2A18EA8F5A9FA239A1A792380BC0979C /* general.h */,
  1465. E2AD0EF11FF3F8C8DF43F8D0B957B80F /* gfluidbuffer.hpp */,
  1466. 54C9641AB5F79A84BFCC697F8C71DD0A /* gfluidkernel.hpp */,
  1467. CFC96DBA5B23FDBB9A64056CA1860EDE /* ggpukernel.hpp */,
  1468. E62AA343DB92485BEE0C1BDE47C3E59F /* gkernel.hpp */,
  1469. 3ECAB81B70F4D1B36DBA7DAABD7E3B57 /* gmat.hpp */,
  1470. D101CE8373A03C3AB3EF967C4B0E2718 /* gmetaarg.hpp */,
  1471. 17EC83619E75B91623C8F27B02D74632 /* goclkernel.hpp */,
  1472. 7B73746DD598F5203C0B2A58E3D3C657 /* gopaque.hpp */,
  1473. 15193027933E5E122AAF1147667E6201 /* gplaidmlkernel.hpp */,
  1474. F67E66BB22F82DF4D9D016EF42323496 /* gproto.hpp */,
  1475. 5DBB806CE0BB1CD3836B263ED575CBE7 /* ground_truth.h */,
  1476. 7149F31DAF3F46371946232F67003A5B /* gscalar.hpp */,
  1477. 621F0404B650D5CF8AE0878D27614789 /* gstreaming.hpp */,
  1478. 1E3E63BC0F706108DE559035A2AE6A2C /* gtransform.hpp */,
  1479. C224780DCA48668A7B71BFA072ED6EBB /* gtype_traits.hpp */,
  1480. 38FB2396B0BB57E95A9DB03E1FA8207A /* gtyped.hpp */,
  1481. D0B6CE3FFBDDD194B93879C36270531E /* hal.hpp */,
  1482. CE6C32E91C73BFECAACC24B416CC2207 /* hal.hpp */,
  1483. A67F09CECCB537AD208D3303A493022F /* hdf5.h */,
  1484. F5E7E4D92F3D9699109164910267D81D /* heap.h */,
  1485. DD08CF98AB9044CFEB3E3C2A672E4F9E /* hierarchical_clustering_index.h */,
  1486. 9704054B4E94220A386B1459E1445266 /* highgui.hpp */,
  1487. F6AD81B40F65F016CC61F998140D0761 /* highgui.hpp */,
  1488. 01A5EBF91C0CFE531626E63171C3BF69 /* highgui_c.h */,
  1489. 75330B5B562170BA22A806F7383BF731 /* ie.hpp */,
  1490. 71FFAC0A10D2F498F247362440B92564 /* imgcodecs.hpp */,
  1491. 1458D921665F0145800CFE3AB63CBD3C /* imgcodecs.hpp */,
  1492. 257801B200B6BEDA62071D94166669B4 /* imgcodecs_c.h */,
  1493. 4C4BB9AEB8B5CA178061B5C545CD5982 /* imgproc.hpp */,
  1494. 5961871F4F9E6A992EF437E4B42503D4 /* imgproc.hpp */,
  1495. FCF8994938D89F6AF82D0A82A6CFA7AC /* imgproc.hpp */,
  1496. 8669A8D3011401A562CF901DE395E17F /* imgproc.hpp */,
  1497. 6F1280890474C120437F608827CFE2EB /* imgproc.hpp */,
  1498. 2AB7967609B050E7B275F21C30209136 /* imgproc.hpp */,
  1499. BFC9F66B90DDC5A4FCF7651C08F272A4 /* imgproc.hpp */,
  1500. 9838351179BBAB7FD7B4175E0779DE69 /* imgproc_c.h */,
  1501. 31459B8AA522606F70B9D95CDF03D7A9 /* index_testing.h */,
  1502. 516241D7C95160359FFF3E0772D962A7 /* infer.hpp */,
  1503. 94C3EE475A15FB558C65764C7FDC547C /* inference_engine.hpp */,
  1504. 06A9BD11DA599412CB353522D7DB207D /* instrumentation.hpp */,
  1505. 11D18AB6F91AB3E64362EE9DB21C3B9F /* interface.h */,
  1506. DE8CA3662FE18BD0C56FB4BC05B8F6DA /* interface.h */,
  1507. FA9E01B4ED0744F55D6EB61DD6D120DB /* interface.h */,
  1508. 5352B141022AB59C700B82BA0C5D91F8 /* intrin.hpp */,
  1509. D3BF067894938EA3A93951E050928958 /* intrin_avx.hpp */,
  1510. 559ED2E851E747AF4600F34F5C8F4141 /* intrin_avx512.hpp */,
  1511. 41CC04C3F662058E063D5AEE38A5D8E0 /* intrin_cpp.hpp */,
  1512. AA8AD54A83213A78B6DF49BD7683E1EA /* intrin_forward.hpp */,
  1513. CD5B67A87E48AAC89364DD4F00A24EED /* intrin_msa.hpp */,
  1514. 780011AC74D0F72724A95DC9B8390BCF /* intrin_neon.hpp */,
  1515. B66DA868C86497DDE371DDD1F9317B1C /* intrin_sse.hpp */,
  1516. C954DB54C73854D0C8206ED3D40252A3 /* intrin_sse_em.hpp */,
  1517. 83EEA87638055D793BD1E067976BC57F /* intrin_vsx.hpp */,
  1518. 05EF1CC31303063939240CBF1DB6F8B0 /* intrin_wasm.hpp */,
  1519. 523D8B2BF5E48E5F21241F5AA6E5AF27 /* ios.h */,
  1520. 7A62C47DB52390A272E89D7DCDDB439A /* kdtree_index.h */,
  1521. 85C20DAD9BA0A6E175E55F76CADB7B17 /* kdtree_single_index.h */,
  1522. 5398558732C40B5D4697349B53521F93 /* kmeans_index.h */,
  1523. 48CF17FE5B362A7DA2C03A5E615DEA03 /* layer.hpp */,
  1524. DC9B5F2A4703AEA2373AB84C5B84A6D3 /* layer.details.hpp */,
  1525. 5E7FCDE9965E0FBE811136E6C6DAEC33 /* limits.hpp */,
  1526. 7AA74C246DD54F5F9D674E0DACC0B99E /* linear_index.h */,
  1527. 268C8933BFA17FE6F0EDF0583EA5E667 /* logger.h */,
  1528. CF5B34DF5D836B9AB2EC710BE6AA7693 /* logger.hpp */,
  1529. 3D0620F82D550558A65B4D68278DDB0C /* logger.defines.hpp */,
  1530. 563258983D3A98020065EEFABA382E34 /* logtag.hpp */,
  1531. D598567E605065ABF519DA931A591A58 /* lsh_index.h */,
  1532. 6D3511C07E4B0D907D56D4DF1A687724 /* lsh_table.h */,
  1533. CA00BC803C2BEC3ECDE1EBBF474A0E01 /* mat.hpp */,
  1534. 5C1B3735A6E2B7A6DE340F92FEF6659C /* mat.hpp */,
  1535. 546664FEB1F495F7D27D499550102098 /* mat.inl.hpp */,
  1536. 04C6F5D183A5BC34CD64DAF0EA9A78F5 /* matchers.hpp */,
  1537. 2D45803C87A36FCFE07E0CEED1B11A74 /* matrix.h */,
  1538. AF80401BBC3E26AB25EAFF02D7F84189 /* matx.hpp */,
  1539. C0C118AA9F2B253DC0BE9E7B0F04EF16 /* miniflann.hpp */,
  1540. 324686F9B57ED632355D6E81F939B578 /* ml.hpp */,
  1541. 18C6632C68DCF27D2E2D9211B1368093 /* ml.hpp */,
  1542. 282D203C5F930CD895B6606A4D54C066 /* ml.inl.hpp */,
  1543. 99F3669A1C384D556A01978AC155565D /* motion_estimators.hpp */,
  1544. A5E4C57F3122EBA57FAC1D0695A32335 /* msa_macros.h */,
  1545. 8F0EB15AF7F2248DF8846C74451DC14F /* neon_utils.hpp */,
  1546. 2DF2F686CA86753AD3D3AC4376728019 /* nn_index.h */,
  1547. 2B4332ABF30ACC240296D0BF0104AE37 /* objdetect.hpp */,
  1548. 95DDDD9F3B57A33063664168A330A5FC /* objdetect.hpp */,
  1549. 0692D9E98A7704F255A5BEEA24C3A160 /* object_factory.h */,
  1550. F55A4A7B43F05A026936A8466866E2C8 /* ocl.hpp */,
  1551. 7CE45EF5E562FC6153BC0634391A8926 /* ocl_defs.hpp */,
  1552. D09A38C8C9D6B54BEF9DCDDE6615FA35 /* ocl_genbase.hpp */,
  1553. BA171DA934719E8B098C8900B57B7F27 /* opencl_clamdblas.hpp */,
  1554. 31FD0756D1C9A566E3D55CB8C43E6103 /* opencl_clamdblas.hpp */,
  1555. 1456AE6CBF155ED744EEB2128C82D143 /* opencl_clamdfft.hpp */,
  1556. 6EC418C3C31400F9A13397A9D1B3667E /* opencl_clamdfft.hpp */,
  1557. 0BE3C0C1F4A19DACC63FA0C1D05F7E18 /* opencl_core.hpp */,
  1558. 8D9D0358E488CF45973A735B3A66659E /* opencl_core.hpp */,
  1559. 3A7D6EF0055B16A5572E3BB587495756 /* opencl_core_wrappers.hpp */,
  1560. A4EF3406C9C97670B00156D289B80BCE /* opencl_core_wrappers.hpp */,
  1561. 8A524E8F02225EFAA4C059F46C98746C /* opencl_gl.hpp */,
  1562. 5210118A285A3C9FD21DCC49277C3FCF /* opencl_gl.hpp */,
  1563. 6DEECD7FFBA1E2EC03D00FE64D06A5E7 /* opencl_gl_wrappers.hpp */,
  1564. 532022B4B170DC9D26C2D6B6CBB44910 /* opencl_gl_wrappers.hpp */,
  1565. 357C6C1D11DD630C8E711735C6B60FEC /* opencl_info.hpp */,
  1566. F3E49E2A040BD35DC54E69ED7677A619 /* opencl_svm.hpp */,
  1567. 04A1618897EEA55507E5BC93D0630287 /* opencl_svm_20.hpp */,
  1568. F50A1ADE40F38ADEDA56443E5F2F6B41 /* opencl_svm_definitions.hpp */,
  1569. C9F41A58397BBF951F34CF4EA9F23539 /* opencl_svm_hsa_extension.hpp */,
  1570. 86BAAAA5ECFF64E114AC31898C7C0B87 /* opencv.hpp */,
  1571. 9299E2277766EA517C11DF7C90A6A9FA /* opencv_includes.hpp */,
  1572. 52B547A795CC2A71EA3A969713CA0AF8 /* opencv_modules.hpp */,
  1573. C0FB0E4BADF95084A1F22A453FA85555 /* opengl.hpp */,
  1574. 6524423E30505FFB4297734F88091102 /* operations.hpp */,
  1575. CCA96C67929975FFE93BF734428EA217 /* operators.hpp */,
  1576. EF6DAAE482182EB0A860505B49985D11 /* optim.hpp */,
  1577. B754455A6BDDCEC782C270F501B55548 /* optional.hpp */,
  1578. 7F95C3928486C20D9FD66E6F805FA75F /* ovx.hpp */,
  1579. 250798A4A3A5D1A0789B238CC7891A63 /* params.h */,
  1580. 812AC5B0E586E857AE9289BEB8A90274 /* persistence.hpp */,
  1581. 86E896E3A09483FB1663D78DE377A33F /* photo.hpp */,
  1582. F0A11610E70582484D43CFB7CF31A530 /* photo.hpp */,
  1583. 07FC54ED78DFD874D9FAF7F2F49C5174 /* plaidml.hpp */,
  1584. AFFB2E8B5A08DC6138324BFD39DB4B81 /* random.h */,
  1585. 8C3D92E24F51292B7B6EC80B84F67EAE /* reduce.hpp */,
  1586. 8EA379E51B5AC81C52133A6EEE91BD45 /* reduce.hpp */,
  1587. F1F6333AC5E32DC32CA860E22EE95249 /* reduce_key_val.hpp */,
  1588. D62F99E99E5B134511919F8F47EFA9AF /* registry.hpp */,
  1589. 3C982811ED69D9C90D5FF2BCE99FC93B /* render.hpp */,
  1590. 0572B639FBD82CC8B687DEE03FBCEBF6 /* render.hpp */,
  1591. 3AB71C280592DDFA4BF2A1797A9F0299 /* result_set.h */,
  1592. 60B230A61027C3BC6BF806CE29F64D15 /* sampling.h */,
  1593. 80D1F3315D4705029E06C370F880E8D2 /* saturate.hpp */,
  1594. FB4CBD02D32F0B1645188D9D19E5A458 /* saturate.hpp */,
  1595. EC533D97A0341CBCCAF35659548EC67A /* saturate_cast.hpp */,
  1596. 368CD2C73EE528119355CD269C081C87 /* saving.h */,
  1597. 24B17D0FEF2AF09ACFF0F49A34E56C3B /* scalar.hpp */,
  1598. 88AE63DACCA4C5A6915F44FB40C52C4B /* scan.hpp */,
  1599. 70C6DA160E126AF5F5F996DA3D30BCFF /* seam_finders.hpp */,
  1600. DD4DF793E279140A7949B94BE5B99D88 /* shape_utils.hpp */,
  1601. 21CF54AEE3AB121779CFFEB6ED96BECF /* simd_functions.hpp */,
  1602. 703864A355E2E1FECF07BCAE82745B38 /* simd_intrinsics.hpp */,
  1603. 0FFD5E5AE5C060A19DDF60E813E51A99 /* simd_utils.impl.hpp */,
  1604. 029CFA5331C62E9C2D3035751E63E0FA /* simplex_downhill.h */,
  1605. 5CE3D1B6068A85FF49EA25EA95969150 /* softfloat.hpp */,
  1606. D6B022860824F7D5B52C9C9D0555F33B /* source.hpp */,
  1607. B30A76B4BF61032783394E85D4AAE83A /* sse_utils.hpp */,
  1608. 926E1B0C94386B86789668D058F15368 /* stitching.hpp */,
  1609. 0B158CEF44E06879B52A0295CD6B97A0 /* throw.hpp */,
  1610. D2798626ED853F01DA475E0546EC56F5 /* timelapsers.hpp */,
  1611. FE093AB3705D69EFE7D97BC8C0A56A79 /* timer.h */,
  1612. 9D4C9BB225C78BE30BE5E594F44ED324 /* tls.hpp */,
  1613. 4A3A4E47D5AFE3DF832D39EE36EB25BA /* trace.hpp */,
  1614. D8C23AB5511905C9505806BF96AA2F56 /* tracking.hpp */,
  1615. 99792F325497BBBC695BDB9E850AFEE0 /* traits.hpp */,
  1616. 566BD1B1FEB847926DC7E9C700858ACA /* transform.hpp */,
  1617. 87380B1B88C76A01D54629ABEF276292 /* transform_detail.hpp */,
  1618. C5351341EA29C8D3677247DC222CAD03 /* type_traits.hpp */,
  1619. 4878EC2709AE6D7440F5A4432DB2A401 /* type_traits_detail.hpp */,
  1620. 83FAB47AC8F4AC807B583B3606A8BFC0 /* types.hpp */,
  1621. BC6CFEAD3909C6545504B7E021521286 /* types.hpp */,
  1622. 95781CF58040ECE14933D6D6F42F81D3 /* types_c.h */,
  1623. FC52B5918084550BE142B3ADB88CF980 /* types_c.h */,
  1624. 7E541B33A354B0DA58D9359F91D7EA0B /* util.hpp */,
  1625. 3A2FE24EFF89780FE198DF247B7A5975 /* util.hpp */,
  1626. FE26723F2128212797F90808CE9DD35E /* util_inl.hpp */,
  1627. 1BF7062623367DC6C8E75F6BA4F1459B /* utility.hpp */,
  1628. 69B78C4E8E2BE5124AAA0C7B2A7B9662 /* utility.hpp */,
  1629. 43616C22A8FDEDA79E9EE794DB741A7B /* va_intel.hpp */,
  1630. 35286C3C27CAC6F29D32095EFFC04A1F /* variant.hpp */,
  1631. 93F847ED41F7347D72336243B43652F9 /* vec_distance.hpp */,
  1632. 8AA1FAF06233FCA0ABADE139A4C48448 /* vec_distance_detail.hpp */,
  1633. 128986F147B16C35E35AF90F3381388A /* vec_math.hpp */,
  1634. 6C4DD6F641652AEB456462B987C2106D /* vec_traits.hpp */,
  1635. 5D478B23071F4696BB6FA6646E602CC6 /* version.hpp */,
  1636. 321B6F3EB9C783B8E699A1508C18F060 /* version.hpp */,
  1637. E6CE2336BC686176A207A700CEB169D5 /* video.hpp */,
  1638. 484BA919A20A4432C10B567A5DEA5950 /* video.hpp */,
  1639. 7BD8AE403D3F8DAD575890560B74BCFD /* videoio.hpp */,
  1640. 2289CF181D8D5BA8FEE98F8045203103 /* videoio.hpp */,
  1641. 86B773A796DE992BFEF397D7C0F138B9 /* videoio_c.h */,
  1642. FAD77BA60287DD99A0268A3FB4A94B6C /* vsx_utils.hpp */,
  1643. 0D7E4A852235AAC6B4B9F4F7E6F48225 /* warp.hpp */,
  1644. A7EB027D90914D53A2A0D5BB23DF2B22 /* warp_reduce.hpp */,
  1645. 7B23B7954609FA67195A123F4FC7FB5A /* warp_shuffle.hpp */,
  1646. D7CADCCF6D6765012A74999D3749528F /* warpers.hpp */,
  1647. E2E252AFAF6DE744C01A80471DE4C46D /* warpers.hpp */,
  1648. 63E4A349CE3C11F90F34BAD695F51FD5 /* warpers_inl.hpp */,
  1649. 74CE4D70ED32E11EA5D693630EE30A0E /* world.hpp */,
  1650. 177E9A26FB4B2CD951B7BFBDC074AA9F /* Frameworks */,
  1651. 096B779F8F3DE64C1F895F92928BEC42 /* Support Files */,
  1652. );
  1653. name = OpenCV;
  1654. path = OpenCV;
  1655. sourceTree = "<group>";
  1656. };
  1657. 91EBC6832C2A7B7FC8F355FD60F0714C /* MoviePlayerViewController */ = {
  1658. isa = PBXGroup;
  1659. children = (
  1660. DC0682B158FE4E1919AE5333259BC6FE /* MoviePlayerViewController.h */,
  1661. 3D4EDA7026930640A17C22929D7DA3C1 /* MoviePlayerViewController.m */,
  1662. );
  1663. name = MoviePlayerViewController;
  1664. path = MoviePlayerViewController;
  1665. sourceTree = "<group>";
  1666. };
  1667. 9671B8517CF13855860E11188948E887 /* Pods */ = {
  1668. isa = PBXGroup;
  1669. children = (
  1670. 538395D4833749835D4CC2BF925D17DC /* Masonry */,
  1671. 9119BB64A54B80C619291E9FF6738D0B /* OpenCV */,
  1672. C53D0E192513E4C3E0F0BBEF2C9A30A3 /* SVProgressHUD */,
  1673. 3F22A0EF3EEE2ADAF07DC80DE7DF0202 /* TensorFlowLite */,
  1674. 24F16F0AE58E5D34094D9C68D41B38AA /* YYText */,
  1675. );
  1676. name = Pods;
  1677. sourceTree = "<group>";
  1678. };
  1679. A1F150EA919FD40488EE59D94B75AA7A /* Renderer */ = {
  1680. isa = PBXGroup;
  1681. children = (
  1682. 341FC0DE5FE7BD2C51EE0EDD73000775 /* CameraTextureRenderPass.h */,
  1683. F8899028D046196EA57FCE66B9E701AB /* CameraTextureRenderPass.m */,
  1684. 7DFC753EF1FD24F5D2F62E307238636E /* Renderer.h */,
  1685. 9C3541A1227FF278E9C155178272BD9E /* Renderer.m */,
  1686. );
  1687. name = Renderer;
  1688. path = Renderer;
  1689. sourceTree = "<group>";
  1690. };
  1691. B943D8F850A5BC6CE6901CD35ADCAC3D /* Resources */ = {
  1692. isa = PBXGroup;
  1693. children = (
  1694. E9D18BB95C1ED0D62B09938B8D23EEBD /* SVProgressHUD.bundle */,
  1695. );
  1696. name = Resources;
  1697. sourceTree = "<group>";
  1698. };
  1699. BA76522EFE2EB67FE605D7A20058D7B9 /* CollectionViewCell */ = {
  1700. isa = PBXGroup;
  1701. children = (
  1702. 5160D0986B919E44AEA2F4FA73D547A4 /* PhotoAlbumModel.h */,
  1703. 7F847A3507D00C18A7A05775D2BF5CD0 /* PhotoAlbumModel.m */,
  1704. E3097F9E53FF4FA4EE93F31ABF162D4C /* PhotoCell.h */,
  1705. 0381D6264AACCED00039B43DF5BF249F /* PhotoCell.m */,
  1706. E66591112B11D3B2807F8285E4CD78F4 /* PhotoCell.xib */,
  1707. );
  1708. name = CollectionViewCell;
  1709. path = CollectionViewCell;
  1710. sourceTree = "<group>";
  1711. };
  1712. BFCC05CB73024127E592CD714151230C /* PhotoListController */ = {
  1713. isa = PBXGroup;
  1714. children = (
  1715. CB09853CF33B11210A1FCCB633FE90A6 /* MovieListViewController.h */,
  1716. C98CAE0D431D5F8DD8D0248FEF6BC33F /* MovieListViewController.m */,
  1717. 0F492E22DCE8C4BEC347DA3EFB78F04E /* PhotoAlbumListViewController.h */,
  1718. 3AC34EC02002CFD78CF46CAD9BB12CB8 /* PhotoAlbumListViewController.m */,
  1719. 93C348787CE6C4452BE0F4241F8266F2 /* PhotoListViewController.h */,
  1720. 2F2E77569AC7EFB74006B0F9A1EC17FD /* PhotoListViewController.m */,
  1721. 5BA027EBDB869859191FF46767A35F03 /* PreviewSingleViewController.h */,
  1722. DB6663A010226558D707C281C209AB38 /* PreviewSingleViewController.m */,
  1723. CFC29BC0BD4B1FC67E4DD8D13966A4AB /* Cell */,
  1724. BA76522EFE2EB67FE605D7A20058D7B9 /* CollectionViewCell */,
  1725. );
  1726. name = PhotoListController;
  1727. path = PhotoListController;
  1728. sourceTree = "<group>";
  1729. };
  1730. C2DE670151F0485DC9D9FCA4F0315363 /* Button */ = {
  1731. isa = PBXGroup;
  1732. children = (
  1733. 5512C77A7058B2A1EF103A96EE41EEDC /* PCSButton.h */,
  1734. 7887DF47B96E488E922644F19112D2C5 /* PCSButton.m */,
  1735. E77F4EEBAA7BB12BBE11579CF455226D /* PCSRoundButton.h */,
  1736. A6FDB503D60999CA1431880C50F2CDCD /* PCSRoundButton.m */,
  1737. B4482A26613F72A8595BD0828CAEAEF9 /* VerticalButton.h */,
  1738. 32A89D63C0E73AA6B01075374F418EF4 /* VerticalButton.m */,
  1739. );
  1740. name = Button;
  1741. path = Button;
  1742. sourceTree = "<group>";
  1743. };
  1744. C53D0E192513E4C3E0F0BBEF2C9A30A3 /* SVProgressHUD */ = {
  1745. isa = PBXGroup;
  1746. children = (
  1747. 4AEAACB804415F01404840EED6C405A9 /* SVIndefiniteAnimatedView.h */,
  1748. 72180575EBE88D6DDC2D08102FA7B574 /* SVIndefiniteAnimatedView.m */,
  1749. EBF2DB684F61E3656F002DD6E44431CF /* SVProgressAnimatedView.h */,
  1750. DE0563071104BB4DEDCDDB98CEE27892 /* SVProgressAnimatedView.m */,
  1751. E30558A1851D5C05C621CD77EB2BBCCB /* SVProgressHUD.h */,
  1752. B63A65BC6D803D6DDFD0EC61F3CC380F /* SVProgressHUD.m */,
  1753. 16A1A0B05DF8A617161C4C7F1FBAB11D /* SVRadialGradientLayer.h */,
  1754. 0897EF131BDAA96CDA0319F6299CF976 /* SVRadialGradientLayer.m */,
  1755. B943D8F850A5BC6CE6901CD35ADCAC3D /* Resources */,
  1756. 2A0CE3A145C2F5AAD1A4A4D10B13E97C /* Support Files */,
  1757. );
  1758. name = SVProgressHUD;
  1759. path = SVProgressHUD;
  1760. sourceTree = "<group>";
  1761. };
  1762. C7666AC466ADBC5712D16052447D01E8 /* headers */ = {
  1763. isa = PBXGroup;
  1764. children = (
  1765. CC45D2676F91737ED2D80C8EB6305050 /* LenzCameraNativeModuleForRN.h */,
  1766. E5530F1AD0952B55A563430E0D97A55D /* LenzCameraSDK.h */,
  1767. D27FBB6D00805C17D1FDFFF4D7BD217A /* LenzCameraSDK.m */,
  1768. F5049C5F877CBD72B509EC4B1DEC8658 /* LenzSDKConstant.h */,
  1769. FE420F971CB469AF63C2C847B6E2B6CD /* PCSBaseViewController.h */,
  1770. 1E781E33614C6762F221B2C5CE929F9A /* SDKParameters.h */,
  1771. );
  1772. name = headers;
  1773. path = LenzCameraNativeModuleForRN/Classes/headers;
  1774. sourceTree = "<group>";
  1775. };
  1776. CF1408CF629C7361332E53B88F7BD30C = {
  1777. isa = PBXGroup;
  1778. children = (
  1779. 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
  1780. DC9ACD8048F536C0F69FB51EBDCE5884 /* Development Pods */,
  1781. D89477F20FB1DE18A04690586D7808C4 /* Frameworks */,
  1782. 9671B8517CF13855860E11188948E887 /* Pods */,
  1783. 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */,
  1784. E3490A6C63045E74D3E12B26073DA3D7 /* Targets Support Files */,
  1785. );
  1786. sourceTree = "<group>";
  1787. };
  1788. CFC29BC0BD4B1FC67E4DD8D13966A4AB /* Cell */ = {
  1789. isa = PBXGroup;
  1790. children = (
  1791. E14454206C777C6B6BC5DF980B76E9E1 /* CollectionViewPlayerCell.h */,
  1792. C9994E77EA181E93E0F487D242B57964 /* CollectionViewPlayerCell.m */,
  1793. 4AE8EA71628F139BB7FA168254EEB6E1 /* MovieListCellModel.h */,
  1794. D8C530710AD71EDF8A4968381A254177 /* MovieListCellModel.m */,
  1795. F747D9D8E74982D2956B795190B6FDA8 /* PhotoCollectionViewCell.h */,
  1796. F8088C64914375597AD32A789E60C7AF /* PhotoCollectionViewCell.m */,
  1797. 7F9123FC2C70C4889B7A4C15B8E927AB /* PhotoCollectionViewCell.xib */,
  1798. E846495FF769A13567980F3F2949225D /* PhotoListCellModel.h */,
  1799. 1733FD41571475966EBCDD51D8F41D15 /* PhotoListCellModel.m */,
  1800. );
  1801. name = Cell;
  1802. path = Cell;
  1803. sourceTree = "<group>";
  1804. };
  1805. D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = {
  1806. isa = PBXGroup;
  1807. children = (
  1808. );
  1809. name = Frameworks;
  1810. sourceTree = "<group>";
  1811. };
  1812. DC9ACD8048F536C0F69FB51EBDCE5884 /* Development Pods */ = {
  1813. isa = PBXGroup;
  1814. children = (
  1815. 851C4D0F34F970073F7891F5C85251D7 /* LenzSDK */,
  1816. );
  1817. name = "Development Pods";
  1818. sourceTree = "<group>";
  1819. };
  1820. E3490A6C63045E74D3E12B26073DA3D7 /* Targets Support Files */ = {
  1821. isa = PBXGroup;
  1822. children = (
  1823. FEEB9A876329C1C8B00204A34D3109C6 /* Pods-LenzCameraNativeModuleForRN_Example */,
  1824. );
  1825. name = "Targets Support Files";
  1826. sourceTree = "<group>";
  1827. };
  1828. E3B90133C7D7986D400CAC303EEB26CB /* PanoramaGuideView */ = {
  1829. isa = PBXGroup;
  1830. children = (
  1831. FCCE1744A31A960C8E4A1D70EE716378 /* PanoramaGuideView.h */,
  1832. CC27C862E41AF7D57E07C4D1F62E7909 /* PanoramaGuideView.m */,
  1833. );
  1834. name = PanoramaGuideView;
  1835. path = PanoramaGuideView;
  1836. sourceTree = "<group>";
  1837. };
  1838. E67500B160355D7A09A3550A18807332 /* Support Files */ = {
  1839. isa = PBXGroup;
  1840. children = (
  1841. C89F2864593F6D24B8FD4530A3779204 /* LenzSDK-dummy.m */,
  1842. 979187E4058B89FA246DF6A5382792C3 /* LenzSDK-prefix.pch */,
  1843. C674920BC297402FB94A131843889435 /* LenzSDK.debug.xcconfig */,
  1844. 4FDF35AE121AB302D770ED666755F2C9 /* LenzSDK.release.xcconfig */,
  1845. 53070B027011796EEBE685C8A4B70B6D /* ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist */,
  1846. );
  1847. name = "Support Files";
  1848. path = "Example/Pods/Target Support Files/LenzSDK";
  1849. sourceTree = "<group>";
  1850. };
  1851. EB8703BFEC8E7ED71E5FBE705E248E6F /* Alert */ = {
  1852. isa = PBXGroup;
  1853. children = (
  1854. 8D7264D3682C8CB43303E8B4CB23F870 /* AlertView.h */,
  1855. 280F56DA10B7D2B5F66DDE67E21CE4BA /* AlertView.m */,
  1856. 3B3C3646B9DC7C39710307FBFB7FD9A9 /* QuitMultipleModeAlertViewController.h */,
  1857. 52CD6803000C6863E9439FB85F5FC47C /* QuitMultipleModeAlertViewController.m */,
  1858. AF25D6A947DC0F618AACAA20CB6E3A9F /* QuitMultipleModeAlertViewController.xib */,
  1859. );
  1860. name = Alert;
  1861. path = Alert;
  1862. sourceTree = "<group>";
  1863. };
  1864. F38B8104E15F9648C4B90EC723800846 /* ModeListView */ = {
  1865. isa = PBXGroup;
  1866. children = (
  1867. 113F1B46619B94BD736DCD65CDF12338 /* PCSModeList.h */,
  1868. 505D9E5C40C6F172AD8AC02C0DE522BF /* PCSModeList.m */,
  1869. );
  1870. name = ModeListView;
  1871. path = ModeListView;
  1872. sourceTree = "<group>";
  1873. };
  1874. FEEB9A876329C1C8B00204A34D3109C6 /* Pods-LenzCameraNativeModuleForRN_Example */ = {
  1875. isa = PBXGroup;
  1876. children = (
  1877. AE44E80EF6245FE2ED31EEB49A819226 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown */,
  1878. 8B4DC4759B1098548FAA7403C6442854 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist */,
  1879. 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */,
  1880. 1F19139A77CA316ACCEF6D7B18F9414C /* Pods-LenzCameraNativeModuleForRN_Example-resources.sh */,
  1881. CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */,
  1882. F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */,
  1883. );
  1884. name = "Pods-LenzCameraNativeModuleForRN_Example";
  1885. path = "Target Support Files/Pods-LenzCameraNativeModuleForRN_Example";
  1886. sourceTree = "<group>";
  1887. };
  1888. /* End PBXGroup section */
  1889. /* Begin PBXHeadersBuildPhase section */
  1890. 3CEC2D9E60D543BA1F8C47CA830C6750 /* Headers */ = {
  1891. isa = PBXHeadersBuildPhase;
  1892. buildActionMask = 2147483647;
  1893. files = (
  1894. 6BC549DF3C1FF4DFCD848DC296BE3989 /* NSAttributedString+YYText.h in Headers */,
  1895. 7038AA2CBA2B4D2CCE07EED2A25D757B /* NSParagraphStyle+YYText.h in Headers */,
  1896. 64107DD75FF590C7823422415538177E /* UIPasteboard+YYText.h in Headers */,
  1897. 494B60CAEE7393305EC6C738B483C4C5 /* UIView+YYText.h in Headers */,
  1898. AE8BF1C6A6335AF43955A8173FC143EE /* YYLabel.h in Headers */,
  1899. 4C036777D71900ECF0D5C0AEE7A9B92A /* YYText.h in Headers */,
  1900. AD4EE5B316C9F14812CDBD9F77804AE9 /* YYTextArchiver.h in Headers */,
  1901. 94158F0CB9D16C22DB4C1B34F26209DF /* YYTextAsyncLayer.h in Headers */,
  1902. AF425D61CE26D3E8A5231E35D04713A3 /* YYTextAttribute.h in Headers */,
  1903. D7F2EA61B6E1A5A5F6B01AE03E8DC74A /* YYTextContainerView.h in Headers */,
  1904. 76835997FEA6894B89B39F8B081B4C71 /* YYTextDebugOption.h in Headers */,
  1905. A137EB47358EEF8B2446FCBDCED0BAC8 /* YYTextEffectWindow.h in Headers */,
  1906. 2A8D88F05B5F2A763FB2B4F08877A18A /* YYTextInput.h in Headers */,
  1907. B6D8587F8CF676D9E638486194F4AA7D /* YYTextKeyboardManager.h in Headers */,
  1908. 3178EE126551DED26479650C3FE16405 /* YYTextLayout.h in Headers */,
  1909. 4EE24068FEDAA65164CFB914EE02D6E8 /* YYTextLine.h in Headers */,
  1910. 1BDA000F27087AA4B491C26CB777A35C /* YYTextMagnifier.h in Headers */,
  1911. 217BD3FFD7A208B1287291EC25B5EBC2 /* YYTextParser.h in Headers */,
  1912. 144200426C6A9C84CA0730B5C8525054 /* YYTextRubyAnnotation.h in Headers */,
  1913. 0B12D684B663DE752981635E5E7E1D5F /* YYTextRunDelegate.h in Headers */,
  1914. 4F8A50D434C3E5B9D9C46F70B07445E1 /* YYTextSelectionView.h in Headers */,
  1915. 5BBF4E94E453F96EA59EEF37F7052604 /* YYTextTransaction.h in Headers */,
  1916. B3DD262C75D14B1ABCD3B95A7BA0BD8C /* YYTextUtilities.h in Headers */,
  1917. 7555474D9817AE487772855D7C0FCCEB /* YYTextView.h in Headers */,
  1918. 2B839C696685267D6EA51D26964F2C3C /* YYTextWeakProxy.h in Headers */,
  1919. );
  1920. runOnlyForDeploymentPostprocessing = 0;
  1921. };
  1922. 46920F1F19D09634D7165F53280AFF29 /* Headers */ = {
  1923. isa = PBXHeadersBuildPhase;
  1924. buildActionMask = 2147483647;
  1925. files = (
  1926. F9166739899D2C4A792624DADEBB434F /* SVIndefiniteAnimatedView.h in Headers */,
  1927. 2E5322D2B11C2303A7D12D6997770E57 /* SVProgressAnimatedView.h in Headers */,
  1928. 3F623F980D90C08F81D04012E8F2C8AB /* SVProgressHUD.h in Headers */,
  1929. B1434928F6893485E3A661165E75670F /* SVRadialGradientLayer.h in Headers */,
  1930. );
  1931. runOnlyForDeploymentPostprocessing = 0;
  1932. };
  1933. 8F529FB1241AB666FC5424E64196C58B /* Headers */ = {
  1934. isa = PBXHeadersBuildPhase;
  1935. buildActionMask = 2147483647;
  1936. files = (
  1937. 2E608980FA03626B340029AE003036AE /* MASCompositeConstraint.h in Headers */,
  1938. B665104FD74CE9AB7E1D9CD1FE54CA1F /* MASConstraint.h in Headers */,
  1939. CB24803A47A442BA2755F53720F30B1B /* MASConstraint+Private.h in Headers */,
  1940. 82A073E4E51BD919CE2C2FD4C161A4A8 /* MASConstraintMaker.h in Headers */,
  1941. C6829B8844A7D355C02CCBAADC4056BD /* MASLayoutConstraint.h in Headers */,
  1942. BA55907F6DB9B34C2B122D7C391D4885 /* Masonry.h in Headers */,
  1943. B63A45F08B7ACB1DD19A870D6C2F9447 /* MASUtilities.h in Headers */,
  1944. DC5AFE7BCC971B79501B66863C0D9BB6 /* MASViewAttribute.h in Headers */,
  1945. 834B6EF569343F13A8B196B0B296D9DB /* MASViewConstraint.h in Headers */,
  1946. CEC01392D81CA74C4B533808BA121CD4 /* NSArray+MASAdditions.h in Headers */,
  1947. 281EB070A810441DC7972C933624FAFD /* NSArray+MASShorthandAdditions.h in Headers */,
  1948. 2D44504350D265E26CA6528DD31CEA73 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */,
  1949. F00C685C6A4CBB947D55788F25BC1146 /* View+MASAdditions.h in Headers */,
  1950. 005B231AA85A6BFC8647CD640A1A1FB4 /* View+MASShorthandAdditions.h in Headers */,
  1951. 45063A67EAE9CC4E926098B7F48BCC1B /* ViewController+MASAdditions.h in Headers */,
  1952. );
  1953. runOnlyForDeploymentPostprocessing = 0;
  1954. };
  1955. B758A8EB450257D69FA1450B0C6D2BF5 /* Headers */ = {
  1956. isa = PBXHeadersBuildPhase;
  1957. buildActionMask = 2147483647;
  1958. files = (
  1959. );
  1960. runOnlyForDeploymentPostprocessing = 0;
  1961. };
  1962. E342E53DEEC763CDF899B41C57D08359 /* Headers */ = {
  1963. isa = PBXHeadersBuildPhase;
  1964. buildActionMask = 2147483647;
  1965. files = (
  1966. 5E2C89E20E1D62BB7B2EA07429D5310A /* AlbumCounterLabel.h in Headers */,
  1967. AF921B5C5224A49AE26C43CA7B705BFB /* AlertView.h in Headers */,
  1968. F186FD984ED15AA08FEAAE86D6189CD8 /* AVCapturePhotoOutput+VersionAdaptor.h in Headers */,
  1969. 2877B928CAA87597E727C21533111115 /* BaseViewTapGestureDelegate.h in Headers */,
  1970. 3F35958B5E1A4968B833E214C0E46015 /* CameraManager.h in Headers */,
  1971. CDA215CA76CE8E425B5724651E9CDC9F /* CameraTextureRenderPass.h in Headers */,
  1972. 7D12A8EC5A153A93DEBE96F1737A0EEA /* CollectionViewPlayerCell.h in Headers */,
  1973. 4D8B01F5A721B0963A4E57EC8A95A100 /* cpp-headers.h in Headers */,
  1974. 40155ADB90EFD86361E91323160CE22D /* CustomModalViewTransition.h in Headers */,
  1975. 5CB5196D4F3D5681FE36BE49BEC703A6 /* DBManager.h in Headers */,
  1976. ADECBEDCEB9E3849741468CC930F546E /* ImageCacheLRU.h in Headers */,
  1977. 2C9ACA7B8A711F9EF02E6384C53FF9C3 /* LenzCachedResourceModel.h in Headers */,
  1978. D0CDB214A246D4DAA2C0B08479ED4EDC /* LenzCameraNativeModuleForRN.h in Headers */,
  1979. 5AF21B67419C78AFD57799DB19234419 /* LenzCameraSDK.h in Headers */,
  1980. DEAA634B215B0837AA739034C05A5A5E /* LenzDataManager.h in Headers */,
  1981. 8F0FFD3754AA76F40F9C09A09BFBFE2E /* LenzHeader.h in Headers */,
  1982. 02D5EF905F6F4A9F4900E3F0A2BD82F5 /* LenzSDKConstant.h in Headers */,
  1983. 331ED0DB97FF4EA5F6C09DB0CE9619AC /* MovieListCellModel.h in Headers */,
  1984. B1B09C7517CF40B4C80F63F115AA8177 /* MovieListViewController.h in Headers */,
  1985. EA0B18EEF5722B858030AB4347D658BA /* MoviePlayerViewController.h in Headers */,
  1986. 8B5EDED745AF45DB0C80CFD0AFADC0C0 /* NSString+Localization.h in Headers */,
  1987. 44D9042A7DD01895685BF874A36390A5 /* OperationNodeAIPanorama.h in Headers */,
  1988. 2961A2633D62DCE293C9E2048887CC43 /* OperationNodeMovie.h in Headers */,
  1989. 176E744831F2561F70E6637C53E337CD /* OperationNodeMultiple.h in Headers */,
  1990. 3EA42F7AC77535D0077BECBF3B380CE4 /* OperationNodePanorama.h in Headers */,
  1991. 12A83A59D24975A4E3FF42BC9CC48B1E /* OperationNodeProtocol.h in Headers */,
  1992. AB4FA00F3F58E06F6BD55FD947B6EE03 /* OperationNodeSingle.h in Headers */,
  1993. 285601774A3C951246F06826455BBE75 /* OperationNodeVideoBase.h in Headers */,
  1994. 41D1744A0B74DF8896AD695A94615A3A /* PaddingLabel.h in Headers */,
  1995. F5CE93F4D61F6CAAB4BBF2D11368DE27 /* PanoramaGuideView.h in Headers */,
  1996. C9CFB1D44AB055C06C260DB4F32CAFFA /* PanoramaOrientationView.h in Headers */,
  1997. 53826533BEE4DEAE4B94E07DA489057E /* PCSBaseViewController.h in Headers */,
  1998. AD4BD1F5182729EF82D208F3CAE82C95 /* PCSButton.h in Headers */,
  1999. C3A51F3522A4ACC4EA1505A15F75472A /* PCSModeList.h in Headers */,
  2000. 110DF4590D2C678B870D325E7ED656C3 /* PCSMotionManager.h in Headers */,
  2001. 018F4FA75C96E3E1E353513BD1125909 /* PCSPreviewViewController.h in Headers */,
  2002. B94C6FA698F187D24C716253FD366523 /* PCSRoundButton.h in Headers */,
  2003. 78E0334DA026BE305CE1C4A418E40E95 /* PCSSDF-prefix-header.h in Headers */,
  2004. 505020BD890028870D34E723EE252B88 /* PCSSessionWrapper.h in Headers */,
  2005. D2D6F6E45256F4CF84872166D60C6770 /* PCSThemeColorManager.h in Headers */,
  2006. 5EA5788FEC35AA1B6E9BBE70FFE133FF /* PCSTools.h in Headers */,
  2007. 092E48F4355F5E1E1269D312C6E1527D /* PhotoAlbumListViewController.h in Headers */,
  2008. 6F15F88CC3BEBDE852AC7B016AD98DF7 /* PhotoAlbumModel.h in Headers */,
  2009. 0667B110459F4806AF8640AB8906A52B /* PhotoCell.h in Headers */,
  2010. F89A4DEC37811CC24806C1C2B68DC368 /* PhotoCollectionViewCell.h in Headers */,
  2011. 27CEA8163C19A8259DB35A54608725A0 /* PhotoListCellModel.h in Headers */,
  2012. E873E2AF3F831AEF50D3F2C412FC9584 /* PhotoListViewController.h in Headers */,
  2013. 415FF2E68630397AAEEAD286850AF175 /* PreviewSingleViewController.h in Headers */,
  2014. 5F42C3D9561ADE2F067717753FBD58C4 /* QuitMultipleModeAlertViewController.h in Headers */,
  2015. 5115B0C4DFBC7A76C2A2C110EC9BD69C /* Renderer.h in Headers */,
  2016. 7B7A5F30A7E2EEC8F42C57AE326459C5 /* SDKParameters.h in Headers */,
  2017. 1B522B62CEFBF4180C711975502ED9E2 /* TensorFlowWrapper.h in Headers */,
  2018. 6D283BCA3BECBC19840DCA6447782CF4 /* TimerLabel.h in Headers */,
  2019. 3B057C7A4F411FA517E06A0C26DA3756 /* UIButton+Layout.h in Headers */,
  2020. 9386B5CA4C63D3B898D292AC239E33DE /* UIColor+JKAdd.h in Headers */,
  2021. 6056C7755357C821E9CF1737CB698849 /* UIImage+ext.h in Headers */,
  2022. 1F7C784242D8531EBD4640CEFFEB5AC7 /* UIImage+name.h in Headers */,
  2023. D71D1EC77A72DD52A3675AF8BD80CE48 /* UIView+JKAdd.h in Headers */,
  2024. 96D136D68037B522F200E08057615206 /* VerticalButton.h in Headers */,
  2025. );
  2026. runOnlyForDeploymentPostprocessing = 0;
  2027. };
  2028. /* End PBXHeadersBuildPhase section */
  2029. /* Begin PBXNativeTarget section */
  2030. 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */ = {
  2031. isa = PBXNativeTarget;
  2032. buildConfigurationList = 44C513C34758BD960670A2121C82A0FE /* Build configuration list for PBXNativeTarget "SVProgressHUD" */;
  2033. buildPhases = (
  2034. 46920F1F19D09634D7165F53280AFF29 /* Headers */,
  2035. 52F9791D02386D0831171B132718A7B4 /* Sources */,
  2036. C2198D747800F0F4A77AEF33F73FEFBF /* Frameworks */,
  2037. );
  2038. buildRules = (
  2039. );
  2040. dependencies = (
  2041. );
  2042. name = SVProgressHUD;
  2043. productName = SVProgressHUD;
  2044. productReference = E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */;
  2045. productType = "com.apple.product-type.library.static";
  2046. };
  2047. 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */ = {
  2048. isa = PBXNativeTarget;
  2049. buildConfigurationList = E079B49EA1D4655682128A43CDBC97F9 /* Build configuration list for PBXNativeTarget "LenzSDK" */;
  2050. buildPhases = (
  2051. E342E53DEEC763CDF899B41C57D08359 /* Headers */,
  2052. BF76CAE3FECFC85C8C971B8F2501387D /* Sources */,
  2053. 0A75E87060FECC162E30AFB1C8B6E30E /* Frameworks */,
  2054. );
  2055. buildRules = (
  2056. );
  2057. dependencies = (
  2058. F043C4AB8BE4478540CFAB258A627DD9 /* PBXTargetDependency */,
  2059. A13CED90126E466C0295B1BF7EEF94A3 /* PBXTargetDependency */,
  2060. 4AD60FED7987647C5A17C09248697099 /* PBXTargetDependency */,
  2061. 6854C34B9FC32658D83D8E3CB523CD18 /* PBXTargetDependency */,
  2062. 4FCE5EE26B23AAC6E2D57AD2EB165A8E /* PBXTargetDependency */,
  2063. CCE40698C8188831545C2CFDA961269C /* PBXTargetDependency */,
  2064. );
  2065. name = LenzSDK;
  2066. productName = LenzSDK;
  2067. productReference = CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */;
  2068. productType = "com.apple.product-type.library.static";
  2069. };
  2070. 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */ = {
  2071. isa = PBXNativeTarget;
  2072. buildConfigurationList = 63EDFA2D207779071E9926E99326127C /* Build configuration list for PBXNativeTarget "Masonry" */;
  2073. buildPhases = (
  2074. 8F529FB1241AB666FC5424E64196C58B /* Headers */,
  2075. B533EF27DF1CDCA2BCD6501AB17588E2 /* Sources */,
  2076. EED544A4A5DBB46D3827EFDE3227622F /* Frameworks */,
  2077. );
  2078. buildRules = (
  2079. );
  2080. dependencies = (
  2081. );
  2082. name = Masonry;
  2083. productName = Masonry;
  2084. productReference = 1FFED36A657123030ABB700256D73F15 /* Masonry */;
  2085. productType = "com.apple.product-type.library.static";
  2086. };
  2087. 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */ = {
  2088. isa = PBXNativeTarget;
  2089. buildConfigurationList = 7F82D5E1C4FB1714CD63659704427DF9 /* Build configuration list for PBXNativeTarget "YYText" */;
  2090. buildPhases = (
  2091. 3CEC2D9E60D543BA1F8C47CA830C6750 /* Headers */,
  2092. EDF8489D2F3ACC3D1C9C9E9EFCDB2A3B /* Sources */,
  2093. A98376CDFC541ED7B9AB8CA18732CF6A /* Frameworks */,
  2094. );
  2095. buildRules = (
  2096. );
  2097. dependencies = (
  2098. );
  2099. name = YYText;
  2100. productName = YYText;
  2101. productReference = 71762A728913EB440C97D3616D291AF3 /* YYText */;
  2102. productType = "com.apple.product-type.library.static";
  2103. };
  2104. 8222597EFCE86FAF8329DCA378CDF036 /* Pods-LenzCameraNativeModuleForRN_Example */ = {
  2105. isa = PBXNativeTarget;
  2106. buildConfigurationList = 890C710F64D2EA507AB0E295F6D744F4 /* Build configuration list for PBXNativeTarget "Pods-LenzCameraNativeModuleForRN_Example" */;
  2107. buildPhases = (
  2108. B758A8EB450257D69FA1450B0C6D2BF5 /* Headers */,
  2109. 4B5E629D894F197D9DA710DF8145F515 /* Sources */,
  2110. 51CFEEFD7454041CBD131636E5A32582 /* Frameworks */,
  2111. );
  2112. buildRules = (
  2113. );
  2114. dependencies = (
  2115. EAA9B42819C1F911EA8C9A8BD1B9BD4E /* PBXTargetDependency */,
  2116. 96E8E50225C5A06FDAE395A06415C471 /* PBXTargetDependency */,
  2117. 6D6FDEEA2A4CE9A36B2E54AC08B2A606 /* PBXTargetDependency */,
  2118. 693771FFBFBFB6617E37EE22A81179A9 /* PBXTargetDependency */,
  2119. 3A8D8108A7E35D00F01403BCA34EB9A2 /* PBXTargetDependency */,
  2120. ECA7AD6D8A6F435CCCB5B45F5BB5AB60 /* PBXTargetDependency */,
  2121. );
  2122. name = "Pods-LenzCameraNativeModuleForRN_Example";
  2123. productName = "Pods-LenzCameraNativeModuleForRN_Example";
  2124. productReference = 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */;
  2125. productType = "com.apple.product-type.library.static";
  2126. };
  2127. E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */ = {
  2128. isa = PBXNativeTarget;
  2129. buildConfigurationList = 9D5CAD619BBBC0A6E36D9717EDE2CD88 /* Build configuration list for PBXNativeTarget "LenzSDK-LenzCameraNativeModuleForRN" */;
  2130. buildPhases = (
  2131. 97BB1EF51617D2C78A14F9AC5EA61D33 /* Sources */,
  2132. 7D584E96DF98C44C96C94E4D4152233E /* Frameworks */,
  2133. FB9E80E6BF3046075EFEF255EF60EEA9 /* Resources */,
  2134. );
  2135. buildRules = (
  2136. );
  2137. dependencies = (
  2138. );
  2139. name = "LenzSDK-LenzCameraNativeModuleForRN";
  2140. productName = LenzCameraNativeModuleForRN;
  2141. productReference = CCC2A2D9BE13B566A864D567615045F6 /* LenzSDK-LenzCameraNativeModuleForRN */;
  2142. productType = "com.apple.product-type.bundle";
  2143. };
  2144. /* End PBXNativeTarget section */
  2145. /* Begin PBXProject section */
  2146. BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
  2147. isa = PBXProject;
  2148. attributes = {
  2149. LastSwiftUpdateCheck = 1300;
  2150. LastUpgradeCheck = 1300;
  2151. };
  2152. buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
  2153. compatibilityVersion = "Xcode 3.2";
  2154. developmentRegion = en;
  2155. hasScannedForEncodings = 0;
  2156. knownRegions = (
  2157. Base,
  2158. en,
  2159. "zh-Hans",
  2160. );
  2161. mainGroup = CF1408CF629C7361332E53B88F7BD30C;
  2162. productRefGroup = 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */;
  2163. projectDirPath = "";
  2164. projectRoot = "";
  2165. targets = (
  2166. 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */,
  2167. E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */,
  2168. 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */,
  2169. 2C80449F84CF910DF6AD6AFDDE039F2A /* OpenCV */,
  2170. 8222597EFCE86FAF8329DCA378CDF036 /* Pods-LenzCameraNativeModuleForRN_Example */,
  2171. 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */,
  2172. A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */,
  2173. 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */,
  2174. );
  2175. };
  2176. /* End PBXProject section */
  2177. /* Begin PBXResourcesBuildPhase section */
  2178. FB9E80E6BF3046075EFEF255EF60EEA9 /* Resources */ = {
  2179. isa = PBXResourcesBuildPhase;
  2180. buildActionMask = 2147483647;
  2181. files = (
  2182. CF409B639D0A72E06947795B16F3275A /* assets.xcassets in Resources */,
  2183. 8BF492DAC4219AF16FC5C98502A58D39 /* Localizable.strings in Resources */,
  2184. 3BDDFCA9E632BDBE6934CB18BE9893F5 /* moire_mobilenetv2_79.tflite in Resources */,
  2185. 0723595B90F6E6429F513AE4FD44DC86 /* PhotoCell.xib in Resources */,
  2186. 52CDFA2F20A3EA332065C7280D28FA89 /* PhotoCollectionViewCell.xib in Resources */,
  2187. 7A85C81BD15042D878553840A722D1AE /* QuitMultipleModeAlertViewController.xib in Resources */,
  2188. CA2F760BEFEAD47812B819D56B8A255F /* VC.storyboard in Resources */,
  2189. );
  2190. runOnlyForDeploymentPostprocessing = 0;
  2191. };
  2192. /* End PBXResourcesBuildPhase section */
  2193. /* Begin PBXSourcesBuildPhase section */
  2194. 4B5E629D894F197D9DA710DF8145F515 /* Sources */ = {
  2195. isa = PBXSourcesBuildPhase;
  2196. buildActionMask = 2147483647;
  2197. files = (
  2198. 6B1844F0D7B40329857C4648FDD80150 /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m in Sources */,
  2199. );
  2200. runOnlyForDeploymentPostprocessing = 0;
  2201. };
  2202. 52F9791D02386D0831171B132718A7B4 /* Sources */ = {
  2203. isa = PBXSourcesBuildPhase;
  2204. buildActionMask = 2147483647;
  2205. files = (
  2206. 9058061AB6346BC6C63803A128F98DC4 /* SVIndefiniteAnimatedView.m in Sources */,
  2207. D2BC89F69ED12D7DF5A0222F97F1A700 /* SVProgressAnimatedView.m in Sources */,
  2208. 22490466CF2D2DA82430F0080A746C76 /* SVProgressHUD.m in Sources */,
  2209. DC4D9BE57B94E35F9F41B9776A4E6254 /* SVProgressHUD-dummy.m in Sources */,
  2210. A54B6FFC6C986E2C508E1E36FA06B37F /* SVRadialGradientLayer.m in Sources */,
  2211. );
  2212. runOnlyForDeploymentPostprocessing = 0;
  2213. };
  2214. 97BB1EF51617D2C78A14F9AC5EA61D33 /* Sources */ = {
  2215. isa = PBXSourcesBuildPhase;
  2216. buildActionMask = 2147483647;
  2217. files = (
  2218. );
  2219. runOnlyForDeploymentPostprocessing = 0;
  2220. };
  2221. B533EF27DF1CDCA2BCD6501AB17588E2 /* Sources */ = {
  2222. isa = PBXSourcesBuildPhase;
  2223. buildActionMask = 2147483647;
  2224. files = (
  2225. 32022A696444C1E9127A5B86BCEB1A6A /* MASCompositeConstraint.m in Sources */,
  2226. 3A47B30821E6BFFCA4F902B82160C750 /* MASConstraint.m in Sources */,
  2227. 62F44093DC66FAA697B5FE21FB8C1531 /* MASConstraintMaker.m in Sources */,
  2228. 12EE5222B056A0B40984081BF3AEC1F6 /* MASLayoutConstraint.m in Sources */,
  2229. 99628C5F423B2628B60DAB3CBC88BCF9 /* Masonry-dummy.m in Sources */,
  2230. F56892199C5B6CB2195A00F7A26DB078 /* MASViewAttribute.m in Sources */,
  2231. 117776BBF42988106BF561FDAFEE0697 /* MASViewConstraint.m in Sources */,
  2232. 1E7629895A0652F6FD0EB648BA6ADD90 /* NSArray+MASAdditions.m in Sources */,
  2233. 7F9F9EA35B9CB4969350390F67B9C9B2 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
  2234. FCFB905AB934B056259CAAF2E579B1C5 /* View+MASAdditions.m in Sources */,
  2235. B273A07B3D201B217EC96622D4DAC1ED /* ViewController+MASAdditions.m in Sources */,
  2236. );
  2237. runOnlyForDeploymentPostprocessing = 0;
  2238. };
  2239. BF76CAE3FECFC85C8C971B8F2501387D /* Sources */ = {
  2240. isa = PBXSourcesBuildPhase;
  2241. buildActionMask = 2147483647;
  2242. files = (
  2243. 1EF2F7110C47A2DFC8CEC6C6E0EAB214 /* AlbumCounterLabel.m in Sources */,
  2244. 6292CA8F6263B40B7E25B55F3B2C6B59 /* AlertView.m in Sources */,
  2245. D8BDD774554F422961F952ECCEAE887D /* AVCapturePhotoOutput+VersionAdaptor.m in Sources */,
  2246. F234CB65CC08D706C0036E87B1E83F26 /* BaseViewTapGestureDelegate.m in Sources */,
  2247. ABD049C2A90A499F751E89B71D04DAA2 /* CameraManager.m in Sources */,
  2248. 0B2C13F6CD7295BCD5EEE2944857E495 /* CameraTextureRenderPass.m in Sources */,
  2249. 530F6F356176E259D5841F647E96DC83 /* CollectionViewPlayerCell.m in Sources */,
  2250. 641F4A3E68BA7E358E4BE621F7ADC247 /* cpp-headers.mm in Sources */,
  2251. 04C566EDDB0AB17AC2A3260531654EDE /* CustomModalViewTransition.m in Sources */,
  2252. 937BE2837E1599EE54F713A4CFDD34E1 /* DBManager.m in Sources */,
  2253. 64DF8B9736E05A1D1D02F55B27EF32C2 /* ImageCacheLRU.m in Sources */,
  2254. 97A7849A1FC23AA58F18FC075123A7F4 /* LenzCachedResourceModel.m in Sources */,
  2255. 8F0C29D8A0FDB7892DEDD24E8F4E1D93 /* LenzCameraSDK.m in Sources */,
  2256. 19618D24C110524772EBFFA9EDBDC6A7 /* LenzDataManager.m in Sources */,
  2257. 62E6F63C77FF3EE8B8888B9D20BB510B /* LenzSDK-dummy.m in Sources */,
  2258. CC367A9A190EEF9D800419ED15F09507 /* Localizable.strings in Sources */,
  2259. 13CF02D246163A750E2961DD009AB924 /* Localizable.strings in Sources */,
  2260. 4C9CC1CED288BBA6629D30E2B133EF64 /* MovieListCellModel.m in Sources */,
  2261. DD937F41E3DAF2C415570511058414F8 /* MovieListViewController.m in Sources */,
  2262. F6227A0CC17D010A77F20E8459E38021 /* MoviePlayerViewController.m in Sources */,
  2263. C35FDB379B1F73B161CD4E2F934A35B0 /* NSString+Localization.m in Sources */,
  2264. DC7F45BA88574276B7EA848EB19CCB79 /* OperationNodeAIPanorama.m in Sources */,
  2265. ABF0705406C3EB205152DC6B268EB2F2 /* OperationNodeMovie.m in Sources */,
  2266. 0DCD461D5C85883E70A2DD64D0727E1F /* OperationNodeMultiple.m in Sources */,
  2267. 01B35A0F9D57306DF777EE47481D4B82 /* OperationNodePanorama.m in Sources */,
  2268. A44E03D82A17947F2227B7CC29E94955 /* OperationNodeSingle.m in Sources */,
  2269. 975CC1AEFE4B937819CEBAAC449EEC3C /* OperationNodeVideoBase.m in Sources */,
  2270. BB4313A3658D69193257E1E708722589 /* PaddingLabel.m in Sources */,
  2271. 26C0089ACE4BF68787A691FE5E4F3238 /* PanoramaGuideView.m in Sources */,
  2272. 4F91FFF1232D07DC8D6B7020D02B26C6 /* PanoramaOrientationView.m in Sources */,
  2273. 73C90633C203AB01C6A3CF400DDA0BBF /* PCSBaseViewController.m in Sources */,
  2274. BFB7A2AD383977421719D6D782DEE0BD /* PCSButton.m in Sources */,
  2275. 70402D30D3C7E6F874860A9758A974A0 /* PCSModeList.m in Sources */,
  2276. 50BF819A7B469BD8359969A7F178993D /* PCSMotionManager.m in Sources */,
  2277. F784CCB8E00CEC7831A8044A4C91B8C6 /* PCSPreviewViewController.m in Sources */,
  2278. 25615B76BA83195B7EE3855F7D764944 /* PCSRoundButton.m in Sources */,
  2279. EEEED0CE5DA21F36EDA1BA4E5CEC1CD6 /* PCSSessionWrapper.m in Sources */,
  2280. 3C389BF8E477673BA6B0823291FA2DBD /* PCSThemeColorManager.m in Sources */,
  2281. 855E011B34397A3E1AF85599D1D67886 /* PCSTools.m in Sources */,
  2282. 661FA0589225A32FD92563BD0982E079 /* PhotoAlbumListViewController.m in Sources */,
  2283. 5CDB27ADC653B910E5B8DF3E111291F0 /* PhotoAlbumModel.m in Sources */,
  2284. 08D755DC12FE748D7255803153721531 /* PhotoCell.m in Sources */,
  2285. 35264269BB319058AA5B49E27A6A2D21 /* PhotoCell.xib in Sources */,
  2286. 409B0030DB2A3E2AAFA11A2E05A68871 /* PhotoCollectionViewCell.m in Sources */,
  2287. 1C4BE900C7A425F8B0A52EB7C4A3B84B /* PhotoCollectionViewCell.xib in Sources */,
  2288. 7C53E655AD8688236C679079EE53A7E5 /* PhotoListCellModel.m in Sources */,
  2289. 84D2D5BDEFF698134BB33153B5437F23 /* PhotoListViewController.m in Sources */,
  2290. 03D1213FA21588FD345696AD8D39E3D5 /* PreviewSingleViewController.m in Sources */,
  2291. 71A119E487407DF525BA6F4C2307B8CF /* QuitMultipleModeAlertViewController.m in Sources */,
  2292. 780181830CFC82E8313AF047E5BBF611 /* QuitMultipleModeAlertViewController.xib in Sources */,
  2293. 7C5B82C8A8BEF8D00909DB65407BE271 /* Renderer.m in Sources */,
  2294. 5DD11041F5F16ACC6F7BF6913458E267 /* SDKParameters.m in Sources */,
  2295. C0BBB5B0D44AD3CD105980009B73E48F /* TensorFlowWrapper.m in Sources */,
  2296. 7009C65D69EA835CED4D78BBA2A98282 /* TimerLabel.m in Sources */,
  2297. 2263DAFFB8E79EBB090200008F44BA8D /* UIButton+Layout.m in Sources */,
  2298. 868C7807A6489D093B5974A526D27483 /* UIColor+JKAdd.m in Sources */,
  2299. 2D8982D47510D699127053B7649A8394 /* UIImage+ext.m in Sources */,
  2300. B1C5960EC177C3F731DF697D9BD86F21 /* UIImage+name.m in Sources */,
  2301. 8E0025A6E85B974768DE4DCC711182BD /* UIView+JKAdd.m in Sources */,
  2302. 42FCCF35D2EEE0886FE2F1ACB041E62E /* VC.storyboard in Sources */,
  2303. A2F31344BA00D3C2510B9775B52A60CF /* VerticalButton.m in Sources */,
  2304. );
  2305. runOnlyForDeploymentPostprocessing = 0;
  2306. };
  2307. EDF8489D2F3ACC3D1C9C9E9EFCDB2A3B /* Sources */ = {
  2308. isa = PBXSourcesBuildPhase;
  2309. buildActionMask = 2147483647;
  2310. files = (
  2311. EFDBAD2DA341E349C88D1A773AFDDDD9 /* NSAttributedString+YYText.m in Sources */,
  2312. 661062E4C8E017D227B1DC62F92BF7DD /* NSParagraphStyle+YYText.m in Sources */,
  2313. F726FB2A46DA670634F265956CC36044 /* UIPasteboard+YYText.m in Sources */,
  2314. 8874119B9D92905719CE25EF5BEF6F41 /* UIView+YYText.m in Sources */,
  2315. 44145CAEC491F2FE4D098232F6A9CA73 /* YYLabel.m in Sources */,
  2316. 05DFCD690BFEE2E630599310DE67C7EF /* YYText-dummy.m in Sources */,
  2317. 0ECDD6415A550A7A133FEEBEA429AD85 /* YYTextArchiver.m in Sources */,
  2318. 125AF6B177294E3A6B91CB2DCCABE6AE /* YYTextAsyncLayer.m in Sources */,
  2319. DECC2F46C0C32C42B9B29F698CA5B07D /* YYTextAttribute.m in Sources */,
  2320. B8E646C5B9B2A09DCE7D35CCA153E4DF /* YYTextContainerView.m in Sources */,
  2321. 024BCB935C4E36CED14B0928D313EB87 /* YYTextDebugOption.m in Sources */,
  2322. 1DF67F590F45D43954EE03C2B080F4B3 /* YYTextEffectWindow.m in Sources */,
  2323. CD04E27AB34EB723277B8CD5AA8029CE /* YYTextInput.m in Sources */,
  2324. 718D2EC99AE386CB3726124AFF4A0B73 /* YYTextKeyboardManager.m in Sources */,
  2325. 8A0D3CAABDF57E5BAC41BA90A5030C5E /* YYTextLayout.m in Sources */,
  2326. 8B3F9BA694AA35D5D1F3263F401C8736 /* YYTextLine.m in Sources */,
  2327. FAD78750E4338BAFD47BBEF38502C143 /* YYTextMagnifier.m in Sources */,
  2328. A0A307D423D48C0575D9B7CEF992221D /* YYTextParser.m in Sources */,
  2329. DB71D2C0888F7042E9F601F3B3FA078F /* YYTextRubyAnnotation.m in Sources */,
  2330. C004C8E75278E3EAD9B23C31864CDD3E /* YYTextRunDelegate.m in Sources */,
  2331. CC2DBAD0594E8122FB8E259D3AC3390A /* YYTextSelectionView.m in Sources */,
  2332. 5E322EEEEC1D81E294523B0620D005FA /* YYTextTransaction.m in Sources */,
  2333. 9552BE3DE85670B7BC1D5A1ACAA47938 /* YYTextUtilities.m in Sources */,
  2334. 022C51C27CC7FABE56E5F7CE72D8BB74 /* YYTextView.m in Sources */,
  2335. 56695B8AF8260EE126810CE40F9D4ADD /* YYTextWeakProxy.m in Sources */,
  2336. );
  2337. runOnlyForDeploymentPostprocessing = 0;
  2338. };
  2339. /* End PBXSourcesBuildPhase section */
  2340. /* Begin PBXTargetDependency section */
  2341. 3A8D8108A7E35D00F01403BCA34EB9A2 /* PBXTargetDependency */ = {
  2342. isa = PBXTargetDependency;
  2343. name = TensorFlowLite;
  2344. target = A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */;
  2345. targetProxy = FFF2C62F836788FF3ADDC65DC01AB29D /* PBXContainerItemProxy */;
  2346. };
  2347. 4AD60FED7987647C5A17C09248697099 /* PBXTargetDependency */ = {
  2348. isa = PBXTargetDependency;
  2349. name = OpenCV;
  2350. target = 2C80449F84CF910DF6AD6AFDDE039F2A /* OpenCV */;
  2351. targetProxy = 4B460C0E497FC29488E1DD33AF1DDBBF /* PBXContainerItemProxy */;
  2352. };
  2353. 4FCE5EE26B23AAC6E2D57AD2EB165A8E /* PBXTargetDependency */ = {
  2354. isa = PBXTargetDependency;
  2355. name = TensorFlowLite;
  2356. target = A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */;
  2357. targetProxy = 1442A6ED08EAA002ACD46414B7F57973 /* PBXContainerItemProxy */;
  2358. };
  2359. 6854C34B9FC32658D83D8E3CB523CD18 /* PBXTargetDependency */ = {
  2360. isa = PBXTargetDependency;
  2361. name = SVProgressHUD;
  2362. target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */;
  2363. targetProxy = 57DEBAAEA305A6E7A8D94F9A424244CF /* PBXContainerItemProxy */;
  2364. };
  2365. 693771FFBFBFB6617E37EE22A81179A9 /* PBXTargetDependency */ = {
  2366. isa = PBXTargetDependency;
  2367. name = SVProgressHUD;
  2368. target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */;
  2369. targetProxy = DBCDE4EFC3C5C6CF8923640BE5B79760 /* PBXContainerItemProxy */;
  2370. };
  2371. 6D6FDEEA2A4CE9A36B2E54AC08B2A606 /* PBXTargetDependency */ = {
  2372. isa = PBXTargetDependency;
  2373. name = OpenCV;
  2374. target = 2C80449F84CF910DF6AD6AFDDE039F2A /* OpenCV */;
  2375. targetProxy = 1E9609E7B08E6A4CA04FA9D79432E2B2 /* PBXContainerItemProxy */;
  2376. };
  2377. 96E8E50225C5A06FDAE395A06415C471 /* PBXTargetDependency */ = {
  2378. isa = PBXTargetDependency;
  2379. name = Masonry;
  2380. target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;
  2381. targetProxy = 5AD0E845CEB20500670B1A4304A0399F /* PBXContainerItemProxy */;
  2382. };
  2383. A13CED90126E466C0295B1BF7EEF94A3 /* PBXTargetDependency */ = {
  2384. isa = PBXTargetDependency;
  2385. name = Masonry;
  2386. target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;
  2387. targetProxy = 877E5EC526DF4ABA0669D82E27CF9A4D /* PBXContainerItemProxy */;
  2388. };
  2389. CCE40698C8188831545C2CFDA961269C /* PBXTargetDependency */ = {
  2390. isa = PBXTargetDependency;
  2391. name = YYText;
  2392. target = 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */;
  2393. targetProxy = 4A5DF6AFAAC5661BBE122EB45EF1B1CD /* PBXContainerItemProxy */;
  2394. };
  2395. EAA9B42819C1F911EA8C9A8BD1B9BD4E /* PBXTargetDependency */ = {
  2396. isa = PBXTargetDependency;
  2397. name = LenzSDK;
  2398. target = 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */;
  2399. targetProxy = 6882CF2AF4A1A5A5258994850DA7E1C0 /* PBXContainerItemProxy */;
  2400. };
  2401. ECA7AD6D8A6F435CCCB5B45F5BB5AB60 /* PBXTargetDependency */ = {
  2402. isa = PBXTargetDependency;
  2403. name = YYText;
  2404. target = 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */;
  2405. targetProxy = 2C22A8CE8B9C2C6B0C3EF8D4DD7FC3C7 /* PBXContainerItemProxy */;
  2406. };
  2407. F043C4AB8BE4478540CFAB258A627DD9 /* PBXTargetDependency */ = {
  2408. isa = PBXTargetDependency;
  2409. name = "LenzSDK-LenzCameraNativeModuleForRN";
  2410. target = E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */;
  2411. targetProxy = 37F1D43E846E12EE868197E15F734976 /* PBXContainerItemProxy */;
  2412. };
  2413. /* End PBXTargetDependency section */
  2414. /* Begin PBXVariantGroup section */
  2415. AB3C79243ED15BFAE4821D460368EAF4 /* Localizable.strings */ = {
  2416. isa = PBXVariantGroup;
  2417. children = (
  2418. E49822E69C1F1F94D5B9FD9BA2B3B965 /* Localizable.strings */,
  2419. B64616E4AD17F736F1BADBA2EF127E6F /* Localizable.strings */,
  2420. );
  2421. name = Localizable.strings;
  2422. path = .;
  2423. sourceTree = "<group>";
  2424. };
  2425. /* End PBXVariantGroup section */
  2426. /* Begin XCBuildConfiguration section */
  2427. 09243E16005574C7DAD2FA8DEF9C562A /* Release */ = {
  2428. isa = XCBuildConfiguration;
  2429. baseConfigurationReference = 4FDF35AE121AB302D770ED666755F2C9 /* LenzSDK.release.xcconfig */;
  2430. buildSettings = {
  2431. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2432. CLANG_ENABLE_OBJC_WEAK = NO;
  2433. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2434. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2435. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2436. GCC_PREFIX_HEADER = "Target Support Files/LenzSDK/LenzSDK-prefix.pch";
  2437. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2438. OTHER_LDFLAGS = "";
  2439. OTHER_LIBTOOLFLAGS = "";
  2440. PRIVATE_HEADERS_FOLDER_PATH = "";
  2441. PRODUCT_MODULE_NAME = LenzSDK;
  2442. PRODUCT_NAME = LenzSDK;
  2443. PUBLIC_HEADERS_FOLDER_PATH = "";
  2444. SDKROOT = iphoneos;
  2445. SKIP_INSTALL = YES;
  2446. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2447. SWIFT_VERSION = 4.0;
  2448. TARGETED_DEVICE_FAMILY = "1,2";
  2449. VALIDATE_PRODUCT = YES;
  2450. };
  2451. name = Release;
  2452. };
  2453. 1E118EE762482042A7BE262F61F02C49 /* Release */ = {
  2454. isa = XCBuildConfiguration;
  2455. baseConfigurationReference = D9C8AB20FFF2E77748DB75C3A02C669B /* OpenCV.release.xcconfig */;
  2456. buildSettings = {
  2457. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2458. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2459. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2460. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2461. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2462. SDKROOT = iphoneos;
  2463. TARGETED_DEVICE_FAMILY = "1,2";
  2464. VALIDATE_PRODUCT = YES;
  2465. };
  2466. name = Release;
  2467. };
  2468. 2B9E26EAE2CD392AD762421F663075A1 /* Debug */ = {
  2469. isa = XCBuildConfiguration;
  2470. buildSettings = {
  2471. ALWAYS_SEARCH_USER_PATHS = NO;
  2472. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2473. CLANG_ANALYZER_NONNULL = YES;
  2474. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2475. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2476. CLANG_CXX_LIBRARY = "libc++";
  2477. CLANG_ENABLE_MODULES = YES;
  2478. CLANG_ENABLE_OBJC_ARC = YES;
  2479. CLANG_ENABLE_OBJC_WEAK = YES;
  2480. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2481. CLANG_WARN_BOOL_CONVERSION = YES;
  2482. CLANG_WARN_COMMA = YES;
  2483. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2484. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2485. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2486. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2487. CLANG_WARN_EMPTY_BODY = YES;
  2488. CLANG_WARN_ENUM_CONVERSION = YES;
  2489. CLANG_WARN_INFINITE_RECURSION = YES;
  2490. CLANG_WARN_INT_CONVERSION = YES;
  2491. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2492. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2493. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2494. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2495. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2496. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2497. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2498. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2499. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2500. CLANG_WARN_UNREACHABLE_CODE = YES;
  2501. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2502. COPY_PHASE_STRIP = NO;
  2503. DEBUG_INFORMATION_FORMAT = dwarf;
  2504. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2505. ENABLE_TESTABILITY = YES;
  2506. GCC_C_LANGUAGE_STANDARD = gnu11;
  2507. GCC_DYNAMIC_NO_PIC = NO;
  2508. GCC_NO_COMMON_BLOCKS = YES;
  2509. GCC_OPTIMIZATION_LEVEL = 0;
  2510. GCC_PREPROCESSOR_DEFINITIONS = (
  2511. "POD_CONFIGURATION_DEBUG=1",
  2512. "DEBUG=1",
  2513. "$(inherited)",
  2514. );
  2515. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2516. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2517. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2518. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2519. GCC_WARN_UNUSED_FUNCTION = YES;
  2520. GCC_WARN_UNUSED_VARIABLE = YES;
  2521. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2522. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2523. MTL_FAST_MATH = YES;
  2524. ONLY_ACTIVE_ARCH = YES;
  2525. PRODUCT_NAME = "$(TARGET_NAME)";
  2526. STRIP_INSTALLED_PRODUCT = NO;
  2527. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  2528. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2529. SWIFT_VERSION = 5.0;
  2530. SYMROOT = "${SRCROOT}/../build";
  2531. };
  2532. name = Debug;
  2533. };
  2534. 49C2AF6B69BB8FCB95759128C1D98BB4 /* Debug */ = {
  2535. isa = XCBuildConfiguration;
  2536. baseConfigurationReference = C674920BC297402FB94A131843889435 /* LenzSDK.debug.xcconfig */;
  2537. buildSettings = {
  2538. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2539. CLANG_ENABLE_OBJC_WEAK = NO;
  2540. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2541. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2542. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2543. GCC_PREFIX_HEADER = "Target Support Files/LenzSDK/LenzSDK-prefix.pch";
  2544. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2545. OTHER_LDFLAGS = "";
  2546. OTHER_LIBTOOLFLAGS = "";
  2547. PRIVATE_HEADERS_FOLDER_PATH = "";
  2548. PRODUCT_MODULE_NAME = LenzSDK;
  2549. PRODUCT_NAME = LenzSDK;
  2550. PUBLIC_HEADERS_FOLDER_PATH = "";
  2551. SDKROOT = iphoneos;
  2552. SKIP_INSTALL = YES;
  2553. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2554. SWIFT_VERSION = 4.0;
  2555. TARGETED_DEVICE_FAMILY = "1,2";
  2556. };
  2557. name = Debug;
  2558. };
  2559. 49CD56C3164458B7AFE1DBCD8D737912 /* Release */ = {
  2560. isa = XCBuildConfiguration;
  2561. baseConfigurationReference = D98BA064A5C2C6C3677AE67C485DB030 /* TensorFlowLite.release.xcconfig */;
  2562. buildSettings = {
  2563. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2564. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2565. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2566. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2567. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2568. SDKROOT = iphoneos;
  2569. TARGETED_DEVICE_FAMILY = "1,2";
  2570. VALIDATE_PRODUCT = YES;
  2571. };
  2572. name = Release;
  2573. };
  2574. 55D11B1B4663CABA9932152F749AF8D9 /* Debug */ = {
  2575. isa = XCBuildConfiguration;
  2576. baseConfigurationReference = DB314BF6E089B8A3E53CA76B57F67741 /* SVProgressHUD.debug.xcconfig */;
  2577. buildSettings = {
  2578. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2579. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2580. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2581. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2582. GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch";
  2583. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2584. OTHER_LDFLAGS = "";
  2585. OTHER_LIBTOOLFLAGS = "";
  2586. PRIVATE_HEADERS_FOLDER_PATH = "";
  2587. PRODUCT_MODULE_NAME = SVProgressHUD;
  2588. PRODUCT_NAME = SVProgressHUD;
  2589. PUBLIC_HEADERS_FOLDER_PATH = "";
  2590. SDKROOT = iphoneos;
  2591. SKIP_INSTALL = YES;
  2592. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2593. SWIFT_VERSION = 4.0;
  2594. TARGETED_DEVICE_FAMILY = "1,2";
  2595. };
  2596. name = Debug;
  2597. };
  2598. 5EDEE8EDEC70F9FD2C1ABDDEF063EFA7 /* Release */ = {
  2599. isa = XCBuildConfiguration;
  2600. baseConfigurationReference = F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */;
  2601. buildSettings = {
  2602. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2603. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2604. CLANG_ENABLE_OBJC_WEAK = NO;
  2605. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2606. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2607. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2608. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2609. MACH_O_TYPE = staticlib;
  2610. OTHER_LDFLAGS = "";
  2611. OTHER_LIBTOOLFLAGS = "";
  2612. PODS_ROOT = "$(SRCROOT)";
  2613. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2614. SDKROOT = iphoneos;
  2615. SKIP_INSTALL = YES;
  2616. TARGETED_DEVICE_FAMILY = "1,2";
  2617. VALIDATE_PRODUCT = YES;
  2618. };
  2619. name = Release;
  2620. };
  2621. 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */ = {
  2622. isa = XCBuildConfiguration;
  2623. buildSettings = {
  2624. ALWAYS_SEARCH_USER_PATHS = NO;
  2625. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2626. CLANG_ANALYZER_NONNULL = YES;
  2627. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2628. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2629. CLANG_CXX_LIBRARY = "libc++";
  2630. CLANG_ENABLE_MODULES = YES;
  2631. CLANG_ENABLE_OBJC_ARC = YES;
  2632. CLANG_ENABLE_OBJC_WEAK = YES;
  2633. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2634. CLANG_WARN_BOOL_CONVERSION = YES;
  2635. CLANG_WARN_COMMA = YES;
  2636. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2637. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2638. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2639. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2640. CLANG_WARN_EMPTY_BODY = YES;
  2641. CLANG_WARN_ENUM_CONVERSION = YES;
  2642. CLANG_WARN_INFINITE_RECURSION = YES;
  2643. CLANG_WARN_INT_CONVERSION = YES;
  2644. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2645. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2646. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2647. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2648. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2649. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2650. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2651. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2652. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2653. CLANG_WARN_UNREACHABLE_CODE = YES;
  2654. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2655. COPY_PHASE_STRIP = NO;
  2656. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2657. ENABLE_NS_ASSERTIONS = NO;
  2658. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2659. GCC_C_LANGUAGE_STANDARD = gnu11;
  2660. GCC_NO_COMMON_BLOCKS = YES;
  2661. GCC_PREPROCESSOR_DEFINITIONS = (
  2662. "POD_CONFIGURATION_RELEASE=1",
  2663. "$(inherited)",
  2664. );
  2665. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2666. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2667. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2668. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2669. GCC_WARN_UNUSED_FUNCTION = YES;
  2670. GCC_WARN_UNUSED_VARIABLE = YES;
  2671. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2672. MTL_ENABLE_DEBUG_INFO = NO;
  2673. MTL_FAST_MATH = YES;
  2674. PRODUCT_NAME = "$(TARGET_NAME)";
  2675. STRIP_INSTALLED_PRODUCT = NO;
  2676. SWIFT_COMPILATION_MODE = wholemodule;
  2677. SWIFT_OPTIMIZATION_LEVEL = "-O";
  2678. SWIFT_VERSION = 5.0;
  2679. SYMROOT = "${SRCROOT}/../build";
  2680. };
  2681. name = Release;
  2682. };
  2683. 700749DBF4EF2EE4614EB3443BFAE7AA /* Release */ = {
  2684. isa = XCBuildConfiguration;
  2685. baseConfigurationReference = 4FDF35AE121AB302D770ED666755F2C9 /* LenzSDK.release.xcconfig */;
  2686. buildSettings = {
  2687. CODE_SIGNING_ALLOWED = NO;
  2688. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/LenzSDK";
  2689. IBSC_MODULE = LenzSDK;
  2690. INFOPLIST_FILE = "Target Support Files/LenzSDK/ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist";
  2691. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2692. PRODUCT_NAME = LenzCameraNativeModuleForRN;
  2693. SDKROOT = iphoneos;
  2694. SKIP_INSTALL = YES;
  2695. TARGETED_DEVICE_FAMILY = "1,2";
  2696. WRAPPER_EXTENSION = bundle;
  2697. };
  2698. name = Release;
  2699. };
  2700. 7DB880B718272A760324D25B94C02F92 /* Release */ = {
  2701. isa = XCBuildConfiguration;
  2702. baseConfigurationReference = 51153524381D256A3577632592B5F471 /* Masonry.release.xcconfig */;
  2703. buildSettings = {
  2704. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2705. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2706. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2707. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2708. GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
  2709. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2710. OTHER_LDFLAGS = "";
  2711. OTHER_LIBTOOLFLAGS = "";
  2712. PRIVATE_HEADERS_FOLDER_PATH = "";
  2713. PRODUCT_MODULE_NAME = Masonry;
  2714. PRODUCT_NAME = Masonry;
  2715. PUBLIC_HEADERS_FOLDER_PATH = "";
  2716. SDKROOT = iphoneos;
  2717. SKIP_INSTALL = YES;
  2718. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2719. SWIFT_VERSION = 4.0;
  2720. TARGETED_DEVICE_FAMILY = "1,2";
  2721. VALIDATE_PRODUCT = YES;
  2722. };
  2723. name = Release;
  2724. };
  2725. 80EA2E14B0FF280C1FBE8D9E2B3C5BC6 /* Release */ = {
  2726. isa = XCBuildConfiguration;
  2727. baseConfigurationReference = 97FB5EB9966C3F8164DED68B5A9CA065 /* YYText.release.xcconfig */;
  2728. buildSettings = {
  2729. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2730. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2731. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2732. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2733. GCC_PREFIX_HEADER = "Target Support Files/YYText/YYText-prefix.pch";
  2734. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2735. OTHER_LDFLAGS = "";
  2736. OTHER_LIBTOOLFLAGS = "";
  2737. PRIVATE_HEADERS_FOLDER_PATH = "";
  2738. PRODUCT_MODULE_NAME = YYText;
  2739. PRODUCT_NAME = YYText;
  2740. PUBLIC_HEADERS_FOLDER_PATH = "";
  2741. SDKROOT = iphoneos;
  2742. SKIP_INSTALL = YES;
  2743. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2744. SWIFT_VERSION = 4.0;
  2745. TARGETED_DEVICE_FAMILY = "1,2";
  2746. VALIDATE_PRODUCT = YES;
  2747. };
  2748. name = Release;
  2749. };
  2750. 8D358A660D64ADACBEF64FCAAE578A3D /* Debug */ = {
  2751. isa = XCBuildConfiguration;
  2752. baseConfigurationReference = CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */;
  2753. buildSettings = {
  2754. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2755. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2756. CLANG_ENABLE_OBJC_WEAK = NO;
  2757. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2758. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2759. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2760. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2761. MACH_O_TYPE = staticlib;
  2762. OTHER_LDFLAGS = "";
  2763. OTHER_LIBTOOLFLAGS = "";
  2764. PODS_ROOT = "$(SRCROOT)";
  2765. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2766. SDKROOT = iphoneos;
  2767. SKIP_INSTALL = YES;
  2768. TARGETED_DEVICE_FAMILY = "1,2";
  2769. };
  2770. name = Debug;
  2771. };
  2772. 98E7DDDEED08A55F216C619E9A560724 /* Release */ = {
  2773. isa = XCBuildConfiguration;
  2774. baseConfigurationReference = F35C88AA85FD0F5C08755F2D030BB414 /* SVProgressHUD.release.xcconfig */;
  2775. buildSettings = {
  2776. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2777. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2778. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2779. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2780. GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch";
  2781. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2782. OTHER_LDFLAGS = "";
  2783. OTHER_LIBTOOLFLAGS = "";
  2784. PRIVATE_HEADERS_FOLDER_PATH = "";
  2785. PRODUCT_MODULE_NAME = SVProgressHUD;
  2786. PRODUCT_NAME = SVProgressHUD;
  2787. PUBLIC_HEADERS_FOLDER_PATH = "";
  2788. SDKROOT = iphoneos;
  2789. SKIP_INSTALL = YES;
  2790. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2791. SWIFT_VERSION = 4.0;
  2792. TARGETED_DEVICE_FAMILY = "1,2";
  2793. VALIDATE_PRODUCT = YES;
  2794. };
  2795. name = Release;
  2796. };
  2797. AC5ACEB1A116F0347796AC09FEC66CED /* Debug */ = {
  2798. isa = XCBuildConfiguration;
  2799. baseConfigurationReference = 704CF1A33EF7E8F7393DA419E09FE129 /* Masonry.debug.xcconfig */;
  2800. buildSettings = {
  2801. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2802. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2803. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2804. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2805. GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
  2806. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2807. OTHER_LDFLAGS = "";
  2808. OTHER_LIBTOOLFLAGS = "";
  2809. PRIVATE_HEADERS_FOLDER_PATH = "";
  2810. PRODUCT_MODULE_NAME = Masonry;
  2811. PRODUCT_NAME = Masonry;
  2812. PUBLIC_HEADERS_FOLDER_PATH = "";
  2813. SDKROOT = iphoneos;
  2814. SKIP_INSTALL = YES;
  2815. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2816. SWIFT_VERSION = 4.0;
  2817. TARGETED_DEVICE_FAMILY = "1,2";
  2818. };
  2819. name = Debug;
  2820. };
  2821. B1C0C1DDF1328F4CAF283EEFF04D412F /* Debug */ = {
  2822. isa = XCBuildConfiguration;
  2823. baseConfigurationReference = 84259456F20DB620A4BA1E3A5307C556 /* OpenCV.debug.xcconfig */;
  2824. buildSettings = {
  2825. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2826. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2827. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2828. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2829. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2830. SDKROOT = iphoneos;
  2831. TARGETED_DEVICE_FAMILY = "1,2";
  2832. };
  2833. name = Debug;
  2834. };
  2835. BBC50680161BE0DB481BA8043137B6E3 /* Debug */ = {
  2836. isa = XCBuildConfiguration;
  2837. baseConfigurationReference = 0B4D0AC9112213C9CB37B361BBF0C542 /* TensorFlowLite.debug.xcconfig */;
  2838. buildSettings = {
  2839. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2840. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2841. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2842. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2843. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2844. SDKROOT = iphoneos;
  2845. TARGETED_DEVICE_FAMILY = "1,2";
  2846. };
  2847. name = Debug;
  2848. };
  2849. E3533D3E5211A1784BC4AAD9F4EC55F9 /* Debug */ = {
  2850. isa = XCBuildConfiguration;
  2851. baseConfigurationReference = C674920BC297402FB94A131843889435 /* LenzSDK.debug.xcconfig */;
  2852. buildSettings = {
  2853. CODE_SIGNING_ALLOWED = NO;
  2854. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/LenzSDK";
  2855. IBSC_MODULE = LenzSDK;
  2856. INFOPLIST_FILE = "Target Support Files/LenzSDK/ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist";
  2857. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2858. PRODUCT_NAME = LenzCameraNativeModuleForRN;
  2859. SDKROOT = iphoneos;
  2860. SKIP_INSTALL = YES;
  2861. TARGETED_DEVICE_FAMILY = "1,2";
  2862. WRAPPER_EXTENSION = bundle;
  2863. };
  2864. name = Debug;
  2865. };
  2866. FBEAA14A660BF24A06B177F5C1143D9B /* Debug */ = {
  2867. isa = XCBuildConfiguration;
  2868. baseConfigurationReference = F885A804025DA9A8F6B8E65414B8A922 /* YYText.debug.xcconfig */;
  2869. buildSettings = {
  2870. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2871. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2872. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2873. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2874. GCC_PREFIX_HEADER = "Target Support Files/YYText/YYText-prefix.pch";
  2875. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2876. OTHER_LDFLAGS = "";
  2877. OTHER_LIBTOOLFLAGS = "";
  2878. PRIVATE_HEADERS_FOLDER_PATH = "";
  2879. PRODUCT_MODULE_NAME = YYText;
  2880. PRODUCT_NAME = YYText;
  2881. PUBLIC_HEADERS_FOLDER_PATH = "";
  2882. SDKROOT = iphoneos;
  2883. SKIP_INSTALL = YES;
  2884. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2885. SWIFT_VERSION = 4.0;
  2886. TARGETED_DEVICE_FAMILY = "1,2";
  2887. };
  2888. name = Debug;
  2889. };
  2890. /* End XCBuildConfiguration section */
  2891. /* Begin XCConfigurationList section */
  2892. 251859CCDBE46B920FE9CC5E6DDB1DD5 /* Build configuration list for PBXAggregateTarget "OpenCV" */ = {
  2893. isa = XCConfigurationList;
  2894. buildConfigurations = (
  2895. B1C0C1DDF1328F4CAF283EEFF04D412F /* Debug */,
  2896. 1E118EE762482042A7BE262F61F02C49 /* Release */,
  2897. );
  2898. defaultConfigurationIsVisible = 0;
  2899. defaultConfigurationName = Release;
  2900. };
  2901. 3397B830BC8BA069FBDEC81C57521AF2 /* Build configuration list for PBXAggregateTarget "TensorFlowLite" */ = {
  2902. isa = XCConfigurationList;
  2903. buildConfigurations = (
  2904. BBC50680161BE0DB481BA8043137B6E3 /* Debug */,
  2905. 49CD56C3164458B7AFE1DBCD8D737912 /* Release */,
  2906. );
  2907. defaultConfigurationIsVisible = 0;
  2908. defaultConfigurationName = Release;
  2909. };
  2910. 44C513C34758BD960670A2121C82A0FE /* Build configuration list for PBXNativeTarget "SVProgressHUD" */ = {
  2911. isa = XCConfigurationList;
  2912. buildConfigurations = (
  2913. 55D11B1B4663CABA9932152F749AF8D9 /* Debug */,
  2914. 98E7DDDEED08A55F216C619E9A560724 /* Release */,
  2915. );
  2916. defaultConfigurationIsVisible = 0;
  2917. defaultConfigurationName = Release;
  2918. };
  2919. 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
  2920. isa = XCConfigurationList;
  2921. buildConfigurations = (
  2922. 2B9E26EAE2CD392AD762421F663075A1 /* Debug */,
  2923. 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */,
  2924. );
  2925. defaultConfigurationIsVisible = 0;
  2926. defaultConfigurationName = Release;
  2927. };
  2928. 63EDFA2D207779071E9926E99326127C /* Build configuration list for PBXNativeTarget "Masonry" */ = {
  2929. isa = XCConfigurationList;
  2930. buildConfigurations = (
  2931. AC5ACEB1A116F0347796AC09FEC66CED /* Debug */,
  2932. 7DB880B718272A760324D25B94C02F92 /* Release */,
  2933. );
  2934. defaultConfigurationIsVisible = 0;
  2935. defaultConfigurationName = Release;
  2936. };
  2937. 7F82D5E1C4FB1714CD63659704427DF9 /* Build configuration list for PBXNativeTarget "YYText" */ = {
  2938. isa = XCConfigurationList;
  2939. buildConfigurations = (
  2940. FBEAA14A660BF24A06B177F5C1143D9B /* Debug */,
  2941. 80EA2E14B0FF280C1FBE8D9E2B3C5BC6 /* Release */,
  2942. );
  2943. defaultConfigurationIsVisible = 0;
  2944. defaultConfigurationName = Release;
  2945. };
  2946. 890C710F64D2EA507AB0E295F6D744F4 /* Build configuration list for PBXNativeTarget "Pods-LenzCameraNativeModuleForRN_Example" */ = {
  2947. isa = XCConfigurationList;
  2948. buildConfigurations = (
  2949. 8D358A660D64ADACBEF64FCAAE578A3D /* Debug */,
  2950. 5EDEE8EDEC70F9FD2C1ABDDEF063EFA7 /* Release */,
  2951. );
  2952. defaultConfigurationIsVisible = 0;
  2953. defaultConfigurationName = Release;
  2954. };
  2955. 9D5CAD619BBBC0A6E36D9717EDE2CD88 /* Build configuration list for PBXNativeTarget "LenzSDK-LenzCameraNativeModuleForRN" */ = {
  2956. isa = XCConfigurationList;
  2957. buildConfigurations = (
  2958. E3533D3E5211A1784BC4AAD9F4EC55F9 /* Debug */,
  2959. 700749DBF4EF2EE4614EB3443BFAE7AA /* Release */,
  2960. );
  2961. defaultConfigurationIsVisible = 0;
  2962. defaultConfigurationName = Release;
  2963. };
  2964. E079B49EA1D4655682128A43CDBC97F9 /* Build configuration list for PBXNativeTarget "LenzSDK" */ = {
  2965. isa = XCConfigurationList;
  2966. buildConfigurations = (
  2967. 49C2AF6B69BB8FCB95759128C1D98BB4 /* Debug */,
  2968. 09243E16005574C7DAD2FA8DEF9C562A /* Release */,
  2969. );
  2970. defaultConfigurationIsVisible = 0;
  2971. defaultConfigurationName = Release;
  2972. };
  2973. /* End XCConfigurationList section */
  2974. };
  2975. rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  2976. }