project.pbxproj 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 56;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 1236B6852D81465800A97809 /* pb_call_in_long.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 1236B6842D81465800A97809 /* pb_call_in_long.mp3 */; };
  10. 1241AEBC2D017E8C0088175A /* MasterKeyUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1241AEBB2D017E8C0088175A /* MasterKeyUtil.swift */; };
  11. 1241AEBD2D017E8C0088175A /* FileEncryption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1241AEBA2D017E8C0088175A /* FileEncryption.swift */; };
  12. 125363982D8031C30006C3D2 /* pb_call_busy.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 125363972D8031C30006C3D2 /* pb_call_busy.mp3 */; };
  13. 1258BCB62D82D71200EFF5BD /* ChatWallpaperViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1258BCB52D82D71200EFF5BD /* ChatWallpaperViewController.swift */; };
  14. 12B1D84E2D8806C400313CCA /* pb_call_in_ios.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 12B1D84A2D8806C400313CCA /* pb_call_in_ios.mp3 */; };
  15. 12B1D84F2D8806C400313CCA /* pb_call_out_ios.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 12B1D84B2D8806C400313CCA /* pb_call_out_ios.mp3 */; };
  16. 12C36CEB2D0299630095BEC1 /* SecureFolderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12C36CEA2D02995F0095BEC1 /* SecureFolderView.swift */; };
  17. 12CB2E472D82F5660071E594 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0172A0CE2DE009E4C87 /* Assets.xcassets */; };
  18. 6E1C44ABFD345CCE1F612AAC /* Pods_NexilisLite_NexilisLiteTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92C32B27C013B8842F336D7A /* Pods_NexilisLite_NexilisLiteTests.framework */; };
  19. 89065265FF48521F6BC9DA48 /* Pods_NexilisLite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9372060C226B25B34A207951 /* Pods_NexilisLite.framework */; };
  20. CD1E6E6D2A0B7C3600BF871F /* NexilisLite.docc in Sources */ = {isa = PBXBuildFile; fileRef = CD1E6E6C2A0B7C3600BF871F /* NexilisLite.docc */; };
  21. CD1E6E732A0B7C3600BF871F /* NexilisLite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CD1E6E682A0B7C3600BF871F /* NexilisLite.framework */; };
  22. CD1E6E782A0B7C3600BF871F /* NexilisLiteTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E6E772A0B7C3600BF871F /* NexilisLiteTests.swift */; };
  23. CD1E6E792A0B7C3600BF871F /* NexilisLite.h in Headers */ = {isa = PBXBuildFile; fileRef = CD1E6E6B2A0B7C3600BF871F /* NexilisLite.h */; settings = {ATTRIBUTES = (Public, ); }; };
  24. CD1E72062A0BA86100BF871F /* OutgoingThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E714F2A0BA86100BF871F /* OutgoingThread.swift */; };
  25. CD1E72072A0BA86100BF871F /* WhiteboardCanvas.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71502A0BA86100BF871F /* WhiteboardCanvas.swift */; };
  26. CD1E72082A0BA86100BF871F /* Units.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71512A0BA86100BF871F /* Units.swift */; };
  27. CD1E720A2A0BA86100BF871F /* APIS.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71532A0BA86100BF871F /* APIS.swift */; };
  28. CD1E720B2A0BA86100BF871F /* FloatingButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71552A0BA86100BF871F /* FloatingButton.swift */; };
  29. CD1E720C2A0BA86100BF871F /* Whiteboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71562A0BA86100BF871F /* Whiteboard.swift */; };
  30. CD1E720D2A0BA86100BF871F /* InquiryThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71572A0BA86100BF871F /* InquiryThread.swift */; };
  31. CD1E720E2A0BA86100BF871F /* Network.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71582A0BA86100BF871F /* Network.swift */; };
  32. CD1E720F2A0BA86100BF871F /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71592A0BA86100BF871F /* Download.swift */; };
  33. CD1E72102A0BA86100BF871F /* Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715A2A0BA86100BF871F /* Extension.swift */; };
  34. CD1E72112A0BA86100BF871F /* WhiteboardReceiver.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715B2A0BA86100BF871F /* WhiteboardReceiver.swift */; };
  35. CD1E72122A0BA86100BF871F /* CoreMessage_TMessageKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715C2A0BA86100BF871F /* CoreMessage_TMessageKey.swift */; };
  36. CD1E72132A0BA86100BF871F /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715D2A0BA86100BF871F /* Database.swift */; };
  37. CD1E72142A0BA86100BF871F /* Model.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715F2A0BA86100BF871F /* Model.swift */; };
  38. CD1E72152A0BA86100BF871F /* Chat.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71602A0BA86100BF871F /* Chat.swift */; };
  39. CD1E72162A0BA86100BF871F /* User.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71612A0BA86100BF871F /* User.swift */; };
  40. CD1E72172A0BA86100BF871F /* CategoryCC.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71622A0BA86100BF871F /* CategoryCC.swift */; };
  41. CD1E72182A0BA86100BF871F /* WorkingArea.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71632A0BA86100BF871F /* WorkingArea.swift */; };
  42. CD1E72192A0BA86100BF871F /* Group.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71642A0BA86100BF871F /* Group.swift */; };
  43. CD1E721A2A0BA86100BF871F /* NotifSound.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71652A0BA86100BF871F /* NotifSound.swift */; };
  44. CD1E721B2A0BA86100BF871F /* Nexilis.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71662A0BA86100BF871F /* Nexilis.swift */; };
  45. CD1E721C2A0BA86100BF871F /* ContactCallViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71692A0BA86100BF871F /* ContactCallViewController.swift */; };
  46. CD1E721D2A0BA86100BF871F /* WorkingAreaPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E716B2A0BA86100BF871F /* WorkingAreaPicker.swift */; };
  47. CD1E721E2A0BA86100BF871F /* BNIBookingWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E716C2A0BA86100BF871F /* BNIBookingWebView.swift */; };
  48. CD1E721F2A0BA86100BF871F /* EditorStarMessages.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E716E2A0BA86100BF871F /* EditorStarMessages.swift */; };
  49. CD1E72212A0BA86100BF871F /* EditorPersonal.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71702A0BA86100BF871F /* EditorPersonal.swift */; };
  50. CD1E72222A0BA86100BF871F /* FormEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71712A0BA86100BF871F /* FormEditor.swift */; };
  51. CD1E72232A0BA86100BF871F /* EditorGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71722A0BA86100BF871F /* EditorGroup.swift */; };
  52. CD1E72242A0BA86100BF871F /* PreviewAttachmentImageVideo.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71732A0BA86100BF871F /* PreviewAttachmentImageVideo.swift */; };
  53. CD1E72252A0BA86100BF871F /* CustomTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71742A0BA86100BF871F /* CustomTextView.swift */; };
  54. CD1E72262A0BA86100BF871F /* QmeraGroupChooserViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71762A0BA86100BF871F /* QmeraGroupChooserViewController.swift */; };
  55. CD1E72272A0BA86100BF871F /* QmeraStreamingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71772A0BA86100BF871F /* QmeraStreamingViewController.swift */; };
  56. CD1E72282A0BA86100BF871F /* CreateViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71782A0BA86100BF871F /* CreateViewController.swift */; };
  57. CD1E72292A0BA86100BF871F /* QmeraUserChooserViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71792A0BA86100BF871F /* QmeraUserChooserViewController.swift */; };
  58. CD1E722A2A0BA86100BF871F /* StreamingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717A2A0BA86100BF871F /* StreamingViewController.swift */; };
  59. CD1E722B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift */; };
  60. CD1E722C2A0BA86100BF871F /* CallManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717D2A0BA86100BF871F /* CallManager.swift */; };
  61. CD1E722D2A0BA86100BF871F /* QmeraAudioConference.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717E2A0BA86100BF871F /* QmeraAudioConference.swift */; };
  62. CD1E722E2A0BA86100BF871F /* AudioViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717F2A0BA86100BF871F /* AudioViewController.swift */; };
  63. CD1E722F2A0BA86100BF871F /* ProfileView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71802A0BA86100BF871F /* ProfileView.swift */; };
  64. CD1E72312A0BA86100BF871F /* QmeraAudioViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71822A0BA86100BF871F /* QmeraAudioViewController.swift */; };
  65. CD1E72322A0BA86100BF871F /* QmeraCallContactViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71832A0BA86100BF871F /* QmeraCallContactViewController.swift */; };
  66. CD1E72332A0BA86100BF871F /* WhiteboardViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71842A0BA86100BF871F /* WhiteboardViewController.swift */; };
  67. CD1E72342A0BA86100BF871F /* QmeraVideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71852A0BA86100BF871F /* QmeraVideoViewController.swift */; };
  68. CD1E72352A0BA86100BF871F /* VideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71862A0BA86100BF871F /* VideoViewController.swift */; };
  69. CD1E72372A0BA86100BF871F /* GroupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71882A0BA86100BF871F /* GroupView.swift */; };
  70. CD1E72382A0BA86100BF871F /* GroupCreateViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718A2A0BA86100BF871F /* GroupCreateViewController.swift */; };
  71. CD1E72392A0BA86100BF871F /* BroadcastMembersTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718B2A0BA86100BF871F /* BroadcastMembersTableViewCell.swift */; };
  72. CD1E723A2A0BA86100BF871F /* QRScannerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718C2A0BA86100BF871F /* QRScannerView.swift */; };
  73. CD1E723B2A0BA86100BF871F /* GroupDescViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718D2A0BA86100BF871F /* GroupDescViewController.swift */; };
  74. CD1E723C2A0BA86100BF871F /* HistoryBroadcastViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718E2A0BA86100BF871F /* HistoryBroadcastViewController.swift */; };
  75. CD1E723D2A0BA86100BF871F /* CheckConnection.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718F2A0BA86100BF871F /* CheckConnection.swift */; };
  76. CD1E723E2A0BA86100BF871F /* SignUpSignIn.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71902A0BA86100BF871F /* SignUpSignIn.swift */; };
  77. CD1E723F2A0BA86100BF871F /* GroupDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71912A0BA86100BF871F /* GroupDetailViewController.swift */; };
  78. CD1E72402A0BA86100BF871F /* ChangeNamePassswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71922A0BA86100BF871F /* ChangeNamePassswordViewController.swift */; };
  79. CD1E72412A0BA86100BF871F /* ContactChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71932A0BA86100BF871F /* ContactChatViewController.swift */; };
  80. CD1E72422A0BA86100BF871F /* ChangeDeviceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71942A0BA86100BF871F /* ChangeDeviceViewController.swift */; };
  81. CD1E72432A0BA86100BF871F /* DocumentPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71952A0BA86100BF871F /* DocumentPicker.swift */; };
  82. CD1E72442A0BA86100BF871F /* ChangePasswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71962A0BA86100BF871F /* ChangePasswordViewController.swift */; };
  83. CD1E72452A0BA86100BF871F /* GroupNameViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71972A0BA86100BF871F /* GroupNameViewController.swift */; };
  84. CD1E72462A0BA86100BF871F /* GroupTopicViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71982A0BA86100BF871F /* GroupTopicViewController.swift */; };
  85. CD1E72472A0BA86100BF871F /* SettingTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71992A0BA86100BF871F /* SettingTableViewController.swift */; };
  86. CD1E72482A0BA86100BF871F /* BroadcastModeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719A2A0BA86100BF871F /* BroadcastModeViewController.swift */; };
  87. CD1E72492A0BA86100BF871F /* BackupRestoreOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719B2A0BA86100BF871F /* BackupRestoreOption.swift */; };
  88. CD1E724A2A0BA86100BF871F /* HistoryCCViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719C2A0BA86100BF871F /* HistoryCCViewController.swift */; };
  89. CD1E724B2A0BA86100BF871F /* ChangeNameTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719D2A0BA86100BF871F /* ChangeNameTableViewController.swift */; };
  90. CD1E724C2A0BA86100BF871F /* NotificationSound.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719E2A0BA86100BF871F /* NotificationSound.swift */; };
  91. CD1E724D2A0BA86100BF871F /* TypeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719F2A0BA86100BF871F /* TypeViewController.swift */; };
  92. CD1E724E2A0BA86100BF871F /* VerifyEmail.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A02A0BA86100BF871F /* VerifyEmail.swift */; };
  93. CD1E724F2A0BA86100BF871F /* SetInternalCSAccount.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A12A0BA86100BF871F /* SetInternalCSAccount.swift */; };
  94. CD1E72502A0BA86100BF871F /* BroadcastVariantViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A22A0BA86100BF871F /* BroadcastVariantViewController.swift */; };
  95. CD1E72522A0BA86100BF871F /* ImageVideoPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A42A0BA86100BF871F /* ImageVideoPicker.swift */; };
  96. CD1E72532A0BA86100BF871F /* BackupRestoreView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A52A0BA86100BF871F /* BackupRestoreView.swift */; };
  97. CD1E72542A0BA86100BF871F /* ProfileViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A62A0BA86100BF871F /* ProfileViewController.swift */; };
  98. CD1E72552A0BA86100BF871F /* BroadcastMembersTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A72A0BA86100BF871F /* BroadcastMembersTableViewController.swift */; };
  99. CD1E72562A0BA86100BF871F /* BroadcastViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A82A0BA86100BF871F /* BroadcastViewController.swift */; };
  100. CD1E72572A0BA86100BF871F /* GroupMemberViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A92A0BA86100BF871F /* GroupMemberViewController.swift */; };
  101. CD1E72582A0BA86100BF871F /* SetOfficerBNI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AA2A0BA86100BF871F /* SetOfficerBNI.swift */; };
  102. CD1E72592A0BA86100BF871F /* AddFriendTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AB2A0BA86100BF871F /* AddFriendTableViewController.swift */; };
  103. CD1E725A2A0BA86100BF871F /* ScannerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AC2A0BA86100BF871F /* ScannerViewController.swift */; };
  104. CD1E725B2A0BA86100BF871F /* AudienceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AD2A0BA86100BF871F /* AudienceViewController.swift */; };
  105. CD1E725C2A0BA86100BF871F /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AE2A0BA86100BF871F /* Utils.swift */; };
  106. CD1E725D2A0BA86100BF871F /* WhiteboardDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AF2A0BA86100BF871F /* WhiteboardDelegate.swift */; };
  107. CD1E725E2A0BA86100BF871F /* TMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B02A0BA86100BF871F /* TMessage.swift */; };
  108. CD1E725F2A0BA86100BF871F /* CoreMessage_TMessageBank.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B12A0BA86100BF871F /* CoreMessage_TMessageBank.swift */; };
  109. CD1E72602A0BA86100BF871F /* Callback.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B22A0BA86100BF871F /* Callback.swift */; };
  110. CD1E72612A0BA86100BF871F /* CoreMessage_TMessageCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B32A0BA86100BF871F /* CoreMessage_TMessageCode.swift */; };
  111. CD1E72622A0BA86100BF871F /* IncomingThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B42A0BA86100BF871F /* IncomingThread.swift */; };
  112. CD1E72632A0BA86100BF871F /* CoreMessage_TMessageUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B52A0BA86100BF871F /* CoreMessage_TMessageUtil.swift */; };
  113. CD21CA552E0AA07700DA6B77 /* CommunityNew.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD21CA542E0AA07700DA6B77 /* CommunityNew.swift */; };
  114. CD21CA562E0AA07700DA6B77 /* ArchivedChatView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD21CA522E0AA07700DA6B77 /* ArchivedChatView.swift */; };
  115. CD21CA572E0AA07700DA6B77 /* CommunityList.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD21CA532E0AA07700DA6B77 /* CommunityList.swift */; };
  116. CD21CA592E0AA0A200DA6B77 /* SignInOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD21CA582E0AA0A200DA6B77 /* SignInOption.swift */; };
  117. CD21CA5B2E0AA0C600DA6B77 /* CommunityModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD21CA5A2E0AA0C600DA6B77 /* CommunityModel.swift */; };
  118. CD2585C42D59DA60002AB416 /* Dutifully.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585B72D59DA60002AB416 /* Dutifully.mp3 */; };
  119. CD2585C52D59DA60002AB416 /* Juntos.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BB2D59DA60002AB416 /* Juntos.mp3 */; };
  120. CD2585C62D59DA60002AB416 /* Light_Hearted.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BC2D59DA60002AB416 /* Light_Hearted.mp3 */; };
  121. CD2585C72D59DA60002AB416 /* Nexilis_Message.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BE2D59DA60002AB416 /* Nexilis_Message.mp3 */; };
  122. CD2585C82D59DA60002AB416 /* Out_of_Nowhere.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BF2D59DA60002AB416 /* Out_of_Nowhere.mp3 */; };
  123. CD2585C92D59DA60002AB416 /* Swift_gesture.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585C22D59DA60002AB416 /* Swift_gesture.mp3 */; };
  124. CD2585CA2D59DA60002AB416 /* Relax.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585C02D59DA60002AB416 /* Relax.mp3 */; };
  125. CD2585CB2D59DA60002AB416 /* Eventually.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585B92D59DA60002AB416 /* Eventually.mp3 */; };
  126. CD2585CC2D59DA60002AB416 /* Upset.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585C32D59DA60002AB416 /* Upset.mp3 */; };
  127. CD2585CD2D59DA60002AB416 /* Elegant.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585B82D59DA60002AB416 /* Elegant.mp3 */; };
  128. CD2585CE2D59DA60002AB416 /* Strong_Minded.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585C12D59DA60002AB416 /* Strong_Minded.mp3 */; };
  129. CD2585CF2D59DA60002AB416 /* Magic.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BD2D59DA60002AB416 /* Magic.mp3 */; };
  130. CD2585D02D59DA60002AB416 /* Hangover.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BA2D59DA60002AB416 /* Hangover.mp3 */; };
  131. CD2585D12D59DA73002AB416 /* pb_call_in.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CDE3BED62C86E3A000B0BF36 /* pb_call_in.mp3 */; };
  132. CD2585D22D59DA79002AB416 /* pb_call_out.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CDE3BED72C86E3A000B0BF36 /* pb_call_out.mp3 */; };
  133. CD2B01212D43945500C11B20 /* pb_gpt_bot.gif in Resources */ = {isa = PBXBuildFile; fileRef = CD2B01202D43945500C11B20 /* pb_gpt_bot.gif */; };
  134. CD2B01242D43961E00C11B20 /* QRProfileController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD2B01222D43961E00C11B20 /* QRProfileController.swift */; };
  135. CD2B01252D43961E00C11B20 /* QRScannerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD2B01232D43961E00C11B20 /* QRScannerController.swift */; };
  136. CD43C80C2D687DBF00297C6E /* CreateConferenceCallController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD43C80A2D687DBF00297C6E /* CreateConferenceCallController.swift */; };
  137. CD43C80D2D687DBF00297C6E /* VideoConferenceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD43C80B2D687DBF00297C6E /* VideoConferenceViewController.swift */; };
  138. CD46A06B2A0CE307009E4C87 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = CD469FC82A0CE2DE009E4C87 /* Localizable.strings */; };
  139. CD46A06C2A0CE307009E4C87 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0172A0CE2DE009E4C87 /* Assets.xcassets */; };
  140. CD46A06D2A0CE307009E4C87 /* PreviewAttachmentImageVideo.xib in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0182A0CE2DE009E4C87 /* PreviewAttachmentImageVideo.xib */; };
  141. CD46A06E2A0CE307009E4C87 /* Palio.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CD46A01A2A0CE2DE009E4C87 /* Palio.storyboard */; };
  142. CD46A06F2A0CE310009E4C87 /* NexilisLiteResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = CD469F502A0CC862009E4C87 /* NexilisLiteResources.bundle */; };
  143. CD46A0702A0CE320009E4C87 /* sticker_10000000_5.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCB2A0CE2DE009E4C87 /* sticker_10000000_5.png */; };
  144. CD46A0712A0CE320009E4C87 /* sticker_20000000_22.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCC2A0CE2DE009E4C87 /* sticker_20000000_22.png */; };
  145. CD46A0722A0CE320009E4C87 /* sticker_30000000_38.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCD2A0CE2DE009E4C87 /* sticker_30000000_38.png */; };
  146. CD46A0732A0CE320009E4C87 /* sticker_30000000_10.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCE2A0CE2DE009E4C87 /* sticker_30000000_10.png */; };
  147. CD46A0742A0CE320009E4C87 /* sticker_30000000_11.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCF2A0CE2DE009E4C87 /* sticker_30000000_11.png */; };
  148. CD46A0752A0CE320009E4C87 /* sticker_30000000_39.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD02A0CE2DE009E4C87 /* sticker_30000000_39.png */; };
  149. CD46A0762A0CE320009E4C87 /* sticker_20000000_23.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD12A0CE2DE009E4C87 /* sticker_20000000_23.png */; };
  150. CD46A0772A0CE320009E4C87 /* sticker_10000000_4.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD22A0CE2DE009E4C87 /* sticker_10000000_4.png */; };
  151. CD46A0782A0CE320009E4C87 /* sticker_10000000_6.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD32A0CE2DE009E4C87 /* sticker_10000000_6.png */; };
  152. CD46A0792A0CE320009E4C87 /* sticker_20000000_21.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD42A0CE2DE009E4C87 /* sticker_20000000_21.png */; };
  153. CD46A07A2A0CE320009E4C87 /* sticker_30000000_13.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD52A0CE2DE009E4C87 /* sticker_30000000_13.png */; };
  154. CD46A07B2A0CE320009E4C87 /* sticker_30000000_9.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD62A0CE2DE009E4C87 /* sticker_30000000_9.png */; };
  155. CD46A07C2A0CE320009E4C87 /* sticker_30000000_8.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD72A0CE2DE009E4C87 /* sticker_30000000_8.png */; };
  156. CD46A07D2A0CE320009E4C87 /* sticker_30000000_12.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD82A0CE2DE009E4C87 /* sticker_30000000_12.png */; };
  157. CD46A07E2A0CE320009E4C87 /* sticker_20000000_20.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD92A0CE2DE009E4C87 /* sticker_20000000_20.png */; };
  158. CD46A07F2A0CE320009E4C87 /* sticker_10000000_7.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDA2A0CE2DE009E4C87 /* sticker_10000000_7.png */; };
  159. CD46A0802A0CE320009E4C87 /* sticker_10000000_3.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDB2A0CE2DE009E4C87 /* sticker_10000000_3.png */; };
  160. CD46A0812A0CE320009E4C87 /* sticker_20000000_18.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDC2A0CE2DE009E4C87 /* sticker_20000000_18.png */; };
  161. CD46A0822A0CE320009E4C87 /* sticker_30000000_16.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDD2A0CE2DE009E4C87 /* sticker_30000000_16.png */; };
  162. CD46A0832A0CE320009E4C87 /* sticker_30000000_17.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDE2A0CE2DE009E4C87 /* sticker_30000000_17.png */; };
  163. CD46A0842A0CE320009E4C87 /* sticker_20000000_19.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDF2A0CE2DE009E4C87 /* sticker_20000000_19.png */; };
  164. CD46A0852A0CE320009E4C87 /* sticker_10000000_2.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE02A0CE2DE009E4C87 /* sticker_10000000_2.png */; };
  165. CD46A0862A0CE320009E4C87 /* sticker_10000000_0.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE12A0CE2DE009E4C87 /* sticker_10000000_0.png */; };
  166. CD46A0872A0CE320009E4C87 /* sticker_20000000_8.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE22A0CE2DE009E4C87 /* sticker_20000000_8.png */; };
  167. CD46A0882A0CE320009E4C87 /* sticker_30000000_15.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE32A0CE2DE009E4C87 /* sticker_30000000_15.png */; };
  168. CD46A0892A0CE320009E4C87 /* sticker_30000000_29.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE42A0CE2DE009E4C87 /* sticker_30000000_29.png */; };
  169. CD46A08A2A0CE320009E4C87 /* sticker_30000000_28.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE52A0CE2DE009E4C87 /* sticker_30000000_28.png */; };
  170. CD46A08B2A0CE320009E4C87 /* sticker_30000000_14.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE62A0CE2DE009E4C87 /* sticker_30000000_14.png */; };
  171. CD46A08C2A0CE320009E4C87 /* sticker_20000000_9.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE72A0CE2DE009E4C87 /* sticker_20000000_9.png */; };
  172. CD46A08D2A0CE320009E4C87 /* sticker_10000000_1.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE82A0CE2DE009E4C87 /* sticker_10000000_1.png */; };
  173. CD46A08E2A0CE320009E4C87 /* sticker_20000000_17.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE92A0CE2DE009E4C87 /* sticker_20000000_17.png */; };
  174. CD46A08F2A0CE320009E4C87 /* sticker_20000000_4.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEA2A0CE2DE009E4C87 /* sticker_20000000_4.png */; };
  175. CD46A0902A0CE320009E4C87 /* sticker_30000000_19.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEB2A0CE2DE009E4C87 /* sticker_30000000_19.png */; };
  176. CD46A0912A0CE320009E4C87 /* sticker_30000000_25.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEC2A0CE2DE009E4C87 /* sticker_30000000_25.png */; };
  177. CD46A0922A0CE320009E4C87 /* sticker_30000000_31.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FED2A0CE2DE009E4C87 /* sticker_30000000_31.png */; };
  178. CD46A0932A0CE320009E4C87 /* sticker_30000000_3.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEE2A0CE2DE009E4C87 /* sticker_30000000_3.png */; };
  179. CD46A0942A0CE320009E4C87 /* sticker_30000000_2.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEF2A0CE2DE009E4C87 /* sticker_30000000_2.png */; };
  180. CD46A0952A0CE320009E4C87 /* sticker_30000000_30.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF02A0CE2DE009E4C87 /* sticker_30000000_30.png */; };
  181. CD46A0962A0CE320009E4C87 /* sticker_30000000_24.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF12A0CE2DE009E4C87 /* sticker_30000000_24.png */; };
  182. CD46A0972A0CE320009E4C87 /* sticker_30000000_18.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF22A0CE2DE009E4C87 /* sticker_30000000_18.png */; };
  183. CD46A0982A0CE320009E4C87 /* sticker_20000000_5.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF32A0CE2DE009E4C87 /* sticker_20000000_5.png */; };
  184. CD46A0992A0CE320009E4C87 /* sticker_20000000_16.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF42A0CE2DE009E4C87 /* sticker_20000000_16.png */; };
  185. CD46A09A2A0CE320009E4C87 /* sticker_10000000_11.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF52A0CE2DE009E4C87 /* sticker_10000000_11.png */; };
  186. CD46A09B2A0CE320009E4C87 /* sticker_20000000_14.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF62A0CE2DE009E4C87 /* sticker_20000000_14.png */; };
  187. CD46A09C2A0CE320009E4C87 /* sticker_20000000_7.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF72A0CE2DE009E4C87 /* sticker_20000000_7.png */; };
  188. CD46A09D2A0CE320009E4C87 /* sticker_30000000_32.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF82A0CE2DE009E4C87 /* sticker_30000000_32.png */; };
  189. CD46A09E2A0CE320009E4C87 /* sticker_30000000_26.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF92A0CE2DE009E4C87 /* sticker_30000000_26.png */; };
  190. CD46A09F2A0CE320009E4C87 /* sticker_30000000_0.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFA2A0CE2DE009E4C87 /* sticker_30000000_0.png */; };
  191. CD46A0A02A0CE320009E4C87 /* sticker_30000000_1.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFB2A0CE2DE009E4C87 /* sticker_30000000_1.png */; };
  192. CD46A0A12A0CE320009E4C87 /* sticker_30000000_27.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFC2A0CE2DE009E4C87 /* sticker_30000000_27.png */; };
  193. CD46A0A22A0CE320009E4C87 /* sticker_30000000_33.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFD2A0CE2DE009E4C87 /* sticker_30000000_33.png */; };
  194. CD46A0A32A0CE320009E4C87 /* sticker_20000000_6.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFE2A0CE2DE009E4C87 /* sticker_20000000_6.png */; };
  195. CD46A0A42A0CE320009E4C87 /* sticker_20000000_15.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFF2A0CE2DE009E4C87 /* sticker_20000000_15.png */; };
  196. CD46A0A52A0CE320009E4C87 /* sticker_10000000_10.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0002A0CE2DE009E4C87 /* sticker_10000000_10.png */; };
  197. CD46A0A62A0CE320009E4C87 /* sticker_20000000_2.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0012A0CE2DE009E4C87 /* sticker_20000000_2.png */; };
  198. CD46A0A72A0CE320009E4C87 /* sticker_20000000_11.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0022A0CE2DE009E4C87 /* sticker_20000000_11.png */; };
  199. CD46A0A82A0CE320009E4C87 /* sticker_30000000_37.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0032A0CE2DE009E4C87 /* sticker_30000000_37.png */; };
  200. CD46A0A92A0CE320009E4C87 /* sticker_30000000_23.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0042A0CE2DE009E4C87 /* sticker_30000000_23.png */; };
  201. CD46A0AA2A0CE320009E4C87 /* sticker_30000000_5.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0052A0CE2DE009E4C87 /* sticker_30000000_5.png */; };
  202. CD46A0AB2A0CE320009E4C87 /* sticker_30000000_4.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0062A0CE2DE009E4C87 /* sticker_30000000_4.png */; };
  203. CD46A0AC2A0CE320009E4C87 /* sticker_30000000_22.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0072A0CE2DE009E4C87 /* sticker_30000000_22.png */; };
  204. CD46A0AD2A0CE320009E4C87 /* sticker_30000000_36.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0082A0CE2DE009E4C87 /* sticker_30000000_36.png */; };
  205. CD46A0AE2A0CE320009E4C87 /* sticker_20000000_10.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0092A0CE2DE009E4C87 /* sticker_20000000_10.png */; };
  206. CD46A0AF2A0CE320009E4C87 /* sticker_20000000_3.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00A2A0CE2DE009E4C87 /* sticker_20000000_3.png */; };
  207. CD46A0B02A0CE320009E4C87 /* sticker_10000000_9.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00B2A0CE2DE009E4C87 /* sticker_10000000_9.png */; };
  208. CD46A0B12A0CE320009E4C87 /* sticker_20000000_1.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00C2A0CE2DE009E4C87 /* sticker_20000000_1.png */; };
  209. CD46A0B22A0CE320009E4C87 /* sticker_20000000_12.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00D2A0CE2DE009E4C87 /* sticker_20000000_12.png */; };
  210. CD46A0B32A0CE320009E4C87 /* sticker_30000000_20.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00E2A0CE2DE009E4C87 /* sticker_30000000_20.png */; };
  211. CD46A0B42A0CE320009E4C87 /* sticker_30000000_34.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00F2A0CE2DE009E4C87 /* sticker_30000000_34.png */; };
  212. CD46A0B52A0CE320009E4C87 /* sticker_30000000_6.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0102A0CE2DE009E4C87 /* sticker_30000000_6.png */; };
  213. CD46A0B62A0CE320009E4C87 /* sticker_30000000_7.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0112A0CE2DE009E4C87 /* sticker_30000000_7.png */; };
  214. CD46A0B72A0CE320009E4C87 /* sticker_30000000_35.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0122A0CE2DE009E4C87 /* sticker_30000000_35.png */; };
  215. CD46A0B82A0CE320009E4C87 /* sticker_30000000_21.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0132A0CE2DE009E4C87 /* sticker_30000000_21.png */; };
  216. CD46A0B92A0CE320009E4C87 /* sticker_20000000_13.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0142A0CE2DE009E4C87 /* sticker_20000000_13.png */; };
  217. CD46A0BA2A0CE320009E4C87 /* sticker_20000000_0.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0152A0CE2DE009E4C87 /* sticker_20000000_0.png */; };
  218. CD46A0BB2A0CE320009E4C87 /* sticker_10000000_8.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0162A0CE2DE009E4C87 /* sticker_10000000_8.png */; };
  219. CD46A0C52A0D0D5D009E4C87 /* MyArchive.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD46A0C42A0D0D5D009E4C87 /* MyArchive.swift */; };
  220. CD5A73AE2A77642D000541A5 /* MessageInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD5A73AC2A77642D000541A5 /* MessageInfo.swift */; };
  221. CD5A73AF2A77642D000541A5 /* ListGroupImages.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD5A73AD2A77642D000541A5 /* ListGroupImages.swift */; };
  222. CD6312592DA925260088964E /* CallLogVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD6312582DA925260088964E /* CallLogVC.swift */; };
  223. CD63125B2DA925320088964E /* ChatWALikeVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD63125A2DA925320088964E /* ChatWALikeVC.swift */; };
  224. CD63125E2DA925960088964E /* Group_NM.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD63125D2DA925960088964E /* Group_NM.swift */; };
  225. CD63125F2DA925960088964E /* CallModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD63125C2DA925960088964E /* CallModel.swift */; };
  226. CD637E3D2D9534ED004780FB /* NexilisLite.podspec in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0BE2A0CE4FD009E4C87 /* NexilisLite.podspec */; };
  227. CD7054EA2AD39DE2003741BF /* ChatGPTBotView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD7054E92AD39DE2003741BF /* ChatGPTBotView.swift */; };
  228. CD9551592A664BDA00AF6476 /* Poppins-LightItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551402A664BD400AF6476 /* Poppins-LightItalic.otf */; };
  229. CD95515A2A664BDA00AF6476 /* Poppins-MediumItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513F2A664BD400AF6476 /* Poppins-MediumItalic.otf */; };
  230. CD95515B2A664BDA00AF6476 /* Poppins-Bold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551412A664BD400AF6476 /* Poppins-Bold.otf */; };
  231. CD95515C2A664BDA00AF6476 /* Poppins-BlackItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551432A664BD400AF6476 /* Poppins-BlackItalic.otf */; };
  232. CD95515D2A664BDA00AF6476 /* Poppins-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551442A664BD400AF6476 /* Poppins-Regular.otf */; };
  233. CD95515E2A664BDA00AF6476 /* SIL Open Font License.txt in Resources */ = {isa = PBXBuildFile; fileRef = CD9551352A664BD400AF6476 /* SIL Open Font License.txt */; };
  234. CD95515F2A664BDB00AF6476 /* Poppins-SemiBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513C2A664BD400AF6476 /* Poppins-SemiBold.otf */; };
  235. CD9551602A664BDB00AF6476 /* Poppins-ExtraBoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551342A664BD400AF6476 /* Poppins-ExtraBoldItalic.otf */; };
  236. CD9551612A664BDB00AF6476 /* Poppins-Black.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551422A664BD400AF6476 /* Poppins-Black.otf */; };
  237. CD9551622A664BDB00AF6476 /* Poppins-ExtraLight.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551362A664BD400AF6476 /* Poppins-ExtraLight.otf */; };
  238. CD9551632A664BDB00AF6476 /* Poppins-Light.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551392A664BD400AF6476 /* Poppins-Light.otf */; };
  239. CD9551642A664BDB00AF6476 /* Poppins-Italic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513D2A664BD400AF6476 /* Poppins-Italic.otf */; };
  240. CD9551652A664BDB00AF6476 /* Poppins-Thin.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513E2A664BD400AF6476 /* Poppins-Thin.otf */; };
  241. CD9551662A664BDB00AF6476 /* Poppins-Medium.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513B2A664BD400AF6476 /* Poppins-Medium.otf */; };
  242. CD9551672A664BDB00AF6476 /* Poppins-ExtraBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551452A664BD400AF6476 /* Poppins-ExtraBold.otf */; };
  243. CD9551682A664BDB00AF6476 /* Poppins-ThinItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551372A664BD400AF6476 /* Poppins-ThinItalic.otf */; };
  244. CD9551692A664BDB00AF6476 /* Poppins-SemiBoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551332A664BD400AF6476 /* Poppins-SemiBoldItalic.otf */; };
  245. CD95516A2A664BDB00AF6476 /* Poppins-BoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513A2A664BD400AF6476 /* Poppins-BoldItalic.otf */; };
  246. CD95516B2A664BDB00AF6476 /* Poppins-ExtraLightItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551382A664BD400AF6476 /* Poppins-ExtraLightItalic.otf */; };
  247. CD9829B72A3C07CB009F6743 /* SeminarListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD9829B62A3C07CB009F6743 /* SeminarListViewController.swift */; };
  248. CDA461222AB99E09001CD010 /* ConfigureFloatingButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDA461212AB99E09001CD010 /* ConfigureFloatingButton.swift */; };
  249. CDB21B2E2BA9998400EC5280 /* pb_def_icon_mode2.gif in Resources */ = {isa = PBXBuildFile; fileRef = CDB21B2B2BA9998400EC5280 /* pb_def_icon_mode2.gif */; };
  250. CDB21B2F2BA9998400EC5280 /* pb_def_icon_mode4.gif in Resources */ = {isa = PBXBuildFile; fileRef = CDB21B2C2BA9998400EC5280 /* pb_def_icon_mode4.gif */; };
  251. CDDF46752A2DD81300049A19 /* CreateSeminarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDDF46732A2DD81300049A19 /* CreateSeminarViewController.swift */; };
  252. CDDF46762A2DD81300049A19 /* SeminarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDDF46742A2DD81300049A19 /* SeminarViewController.swift */; };
  253. CDDF467A2A2EF0A700049A19 /* ScreenSharingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDDF46792A2EF0A700049A19 /* ScreenSharingViewController.swift */; };
  254. CDE50D8F2D630C720094C30D /* pb_typing_chat.gif in Resources */ = {isa = PBXBuildFile; fileRef = CDE50D8E2D630C720094C30D /* pb_typing_chat.gif */; };
  255. /* End PBXBuildFile section */
  256. /* Begin PBXContainerItemProxy section */
  257. CD1E6E742A0B7C3600BF871F /* PBXContainerItemProxy */ = {
  258. isa = PBXContainerItemProxy;
  259. containerPortal = CD1E6E5F2A0B7C3600BF871F /* Project object */;
  260. proxyType = 1;
  261. remoteGlobalIDString = CD1E6E672A0B7C3600BF871F;
  262. remoteInfo = NexilisLite;
  263. };
  264. CD469FA42A0CC8D4009E4C87 /* PBXContainerItemProxy */ = {
  265. isa = PBXContainerItemProxy;
  266. containerPortal = CD1E6E5F2A0B7C3600BF871F /* Project object */;
  267. proxyType = 1;
  268. remoteGlobalIDString = CD469F4F2A0CC862009E4C87;
  269. remoteInfo = NexilisLiteResources;
  270. };
  271. /* End PBXContainerItemProxy section */
  272. /* Begin PBXCopyFilesBuildPhase section */
  273. CD469E162A0CA6C9009E4C87 /* Embed Frameworks */ = {
  274. isa = PBXCopyFilesBuildPhase;
  275. buildActionMask = 2147483647;
  276. dstPath = "";
  277. dstSubfolderSpec = 10;
  278. files = (
  279. );
  280. name = "Embed Frameworks";
  281. runOnlyForDeploymentPostprocessing = 0;
  282. };
  283. /* End PBXCopyFilesBuildPhase section */
  284. /* Begin PBXFileReference section */
  285. 1236B6842D81465800A97809 /* pb_call_in_long.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_in_long.mp3; sourceTree = "<group>"; };
  286. 1241AEBA2D017E8C0088175A /* FileEncryption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileEncryption.swift; sourceTree = "<group>"; };
  287. 1241AEBB2D017E8C0088175A /* MasterKeyUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MasterKeyUtil.swift; sourceTree = "<group>"; };
  288. 125363972D8031C30006C3D2 /* pb_call_busy.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_busy.mp3; sourceTree = "<group>"; };
  289. 1258BCB52D82D71200EFF5BD /* ChatWallpaperViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatWallpaperViewController.swift; sourceTree = "<group>"; };
  290. 12B1D84A2D8806C400313CCA /* pb_call_in_ios.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_in_ios.mp3; sourceTree = "<group>"; };
  291. 12B1D84B2D8806C400313CCA /* pb_call_out_ios.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_out_ios.mp3; sourceTree = "<group>"; };
  292. 12C36CEA2D02995F0095BEC1 /* SecureFolderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecureFolderView.swift; sourceTree = "<group>"; };
  293. 5E1F6A2F460CE08324778A10 /* Pods-NexilisLite.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NexilisLite.release.xcconfig"; path = "Target Support Files/Pods-NexilisLite/Pods-NexilisLite.release.xcconfig"; sourceTree = "<group>"; };
  294. 92C32B27C013B8842F336D7A /* Pods_NexilisLite_NexilisLiteTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NexilisLite_NexilisLiteTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  295. 9372060C226B25B34A207951 /* Pods_NexilisLite.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NexilisLite.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  296. 9D8E4449FB2643BB0D5A47F7 /* Pods-NexilisLite-NexilisLiteTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NexilisLite-NexilisLiteTests.release.xcconfig"; path = "Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests.release.xcconfig"; sourceTree = "<group>"; };
  297. A5C9F493B799D97510AECB02 /* Pods-NexilisLite.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NexilisLite.debug.xcconfig"; path = "Target Support Files/Pods-NexilisLite/Pods-NexilisLite.debug.xcconfig"; sourceTree = "<group>"; };
  298. A6B33FB3B7DDB4BA5A1064B1 /* Pods-NexilisLite-NexilisLiteTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NexilisLite-NexilisLiteTests.debug.xcconfig"; path = "Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests.debug.xcconfig"; sourceTree = "<group>"; };
  299. CD1E6E682A0B7C3600BF871F /* NexilisLite.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = NexilisLite.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  300. CD1E6E6B2A0B7C3600BF871F /* NexilisLite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NexilisLite.h; sourceTree = "<group>"; };
  301. CD1E6E6C2A0B7C3600BF871F /* NexilisLite.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = NexilisLite.docc; sourceTree = "<group>"; };
  302. CD1E6E722A0B7C3600BF871F /* NexilisLiteTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NexilisLiteTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  303. CD1E6E772A0B7C3600BF871F /* NexilisLiteTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NexilisLiteTests.swift; sourceTree = "<group>"; };
  304. CD1E70CC2A0B815400BF871F /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  305. CD1E714F2A0BA86100BF871F /* OutgoingThread.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OutgoingThread.swift; sourceTree = "<group>"; };
  306. CD1E71502A0BA86100BF871F /* WhiteboardCanvas.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WhiteboardCanvas.swift; sourceTree = "<group>"; };
  307. CD1E71512A0BA86100BF871F /* Units.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Units.swift; sourceTree = "<group>"; };
  308. CD1E71532A0BA86100BF871F /* APIS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = APIS.swift; sourceTree = "<group>"; };
  309. CD1E71552A0BA86100BF871F /* FloatingButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FloatingButton.swift; sourceTree = "<group>"; };
  310. CD1E71562A0BA86100BF871F /* Whiteboard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Whiteboard.swift; sourceTree = "<group>"; };
  311. CD1E71572A0BA86100BF871F /* InquiryThread.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InquiryThread.swift; sourceTree = "<group>"; };
  312. CD1E71582A0BA86100BF871F /* Network.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Network.swift; sourceTree = "<group>"; };
  313. CD1E71592A0BA86100BF871F /* Download.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Download.swift; sourceTree = "<group>"; };
  314. CD1E715A2A0BA86100BF871F /* Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Extension.swift; sourceTree = "<group>"; };
  315. CD1E715B2A0BA86100BF871F /* WhiteboardReceiver.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WhiteboardReceiver.swift; sourceTree = "<group>"; };
  316. CD1E715C2A0BA86100BF871F /* CoreMessage_TMessageKey.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreMessage_TMessageKey.swift; sourceTree = "<group>"; };
  317. CD1E715D2A0BA86100BF871F /* Database.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Database.swift; sourceTree = "<group>"; };
  318. CD1E715F2A0BA86100BF871F /* Model.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Model.swift; sourceTree = "<group>"; };
  319. CD1E71602A0BA86100BF871F /* Chat.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Chat.swift; sourceTree = "<group>"; };
  320. CD1E71612A0BA86100BF871F /* User.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = User.swift; sourceTree = "<group>"; };
  321. CD1E71622A0BA86100BF871F /* CategoryCC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CategoryCC.swift; sourceTree = "<group>"; };
  322. CD1E71632A0BA86100BF871F /* WorkingArea.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WorkingArea.swift; sourceTree = "<group>"; };
  323. CD1E71642A0BA86100BF871F /* Group.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Group.swift; sourceTree = "<group>"; };
  324. CD1E71652A0BA86100BF871F /* NotifSound.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotifSound.swift; sourceTree = "<group>"; };
  325. CD1E71662A0BA86100BF871F /* Nexilis.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Nexilis.swift; sourceTree = "<group>"; };
  326. CD1E71692A0BA86100BF871F /* ContactCallViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContactCallViewController.swift; sourceTree = "<group>"; };
  327. CD1E716B2A0BA86100BF871F /* WorkingAreaPicker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WorkingAreaPicker.swift; sourceTree = "<group>"; };
  328. CD1E716C2A0BA86100BF871F /* BNIBookingWebView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BNIBookingWebView.swift; sourceTree = "<group>"; };
  329. CD1E716E2A0BA86100BF871F /* EditorStarMessages.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EditorStarMessages.swift; sourceTree = "<group>"; };
  330. CD1E71702A0BA86100BF871F /* EditorPersonal.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EditorPersonal.swift; sourceTree = "<group>"; };
  331. CD1E71712A0BA86100BF871F /* FormEditor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FormEditor.swift; sourceTree = "<group>"; };
  332. CD1E71722A0BA86100BF871F /* EditorGroup.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EditorGroup.swift; sourceTree = "<group>"; };
  333. CD1E71732A0BA86100BF871F /* PreviewAttachmentImageVideo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PreviewAttachmentImageVideo.swift; sourceTree = "<group>"; };
  334. CD1E71742A0BA86100BF871F /* CustomTextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomTextView.swift; sourceTree = "<group>"; };
  335. CD1E71762A0BA86100BF871F /* QmeraGroupChooserViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraGroupChooserViewController.swift; sourceTree = "<group>"; };
  336. CD1E71772A0BA86100BF871F /* QmeraStreamingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraStreamingViewController.swift; sourceTree = "<group>"; };
  337. CD1E71782A0BA86100BF871F /* CreateViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CreateViewController.swift; sourceTree = "<group>"; };
  338. CD1E71792A0BA86100BF871F /* QmeraUserChooserViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraUserChooserViewController.swift; sourceTree = "<group>"; };
  339. CD1E717A2A0BA86100BF871F /* StreamingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamingViewController.swift; sourceTree = "<group>"; };
  340. CD1E717B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraCreateStreamingViewController.swift; sourceTree = "<group>"; };
  341. CD1E717D2A0BA86100BF871F /* CallManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallManager.swift; sourceTree = "<group>"; };
  342. CD1E717E2A0BA86100BF871F /* QmeraAudioConference.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraAudioConference.swift; sourceTree = "<group>"; };
  343. CD1E717F2A0BA86100BF871F /* AudioViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AudioViewController.swift; sourceTree = "<group>"; };
  344. CD1E71802A0BA86100BF871F /* ProfileView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProfileView.swift; sourceTree = "<group>"; };
  345. CD1E71822A0BA86100BF871F /* QmeraAudioViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraAudioViewController.swift; sourceTree = "<group>"; };
  346. CD1E71832A0BA86100BF871F /* QmeraCallContactViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraCallContactViewController.swift; sourceTree = "<group>"; };
  347. CD1E71842A0BA86100BF871F /* WhiteboardViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WhiteboardViewController.swift; sourceTree = "<group>"; };
  348. CD1E71852A0BA86100BF871F /* QmeraVideoViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraVideoViewController.swift; sourceTree = "<group>"; };
  349. CD1E71862A0BA86100BF871F /* VideoViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoViewController.swift; sourceTree = "<group>"; };
  350. CD1E71882A0BA86100BF871F /* GroupView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupView.swift; sourceTree = "<group>"; };
  351. CD1E718A2A0BA86100BF871F /* GroupCreateViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupCreateViewController.swift; sourceTree = "<group>"; };
  352. CD1E718B2A0BA86100BF871F /* BroadcastMembersTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastMembersTableViewCell.swift; sourceTree = "<group>"; };
  353. CD1E718C2A0BA86100BF871F /* QRScannerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QRScannerView.swift; sourceTree = "<group>"; };
  354. CD1E718D2A0BA86100BF871F /* GroupDescViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupDescViewController.swift; sourceTree = "<group>"; };
  355. CD1E718E2A0BA86100BF871F /* HistoryBroadcastViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HistoryBroadcastViewController.swift; sourceTree = "<group>"; };
  356. CD1E718F2A0BA86100BF871F /* CheckConnection.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CheckConnection.swift; sourceTree = "<group>"; };
  357. CD1E71902A0BA86100BF871F /* SignUpSignIn.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SignUpSignIn.swift; sourceTree = "<group>"; };
  358. CD1E71912A0BA86100BF871F /* GroupDetailViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupDetailViewController.swift; sourceTree = "<group>"; };
  359. CD1E71922A0BA86100BF871F /* ChangeNamePassswordViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeNamePassswordViewController.swift; sourceTree = "<group>"; };
  360. CD1E71932A0BA86100BF871F /* ContactChatViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContactChatViewController.swift; sourceTree = "<group>"; };
  361. CD1E71942A0BA86100BF871F /* ChangeDeviceViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeDeviceViewController.swift; sourceTree = "<group>"; };
  362. CD1E71952A0BA86100BF871F /* DocumentPicker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DocumentPicker.swift; sourceTree = "<group>"; };
  363. CD1E71962A0BA86100BF871F /* ChangePasswordViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangePasswordViewController.swift; sourceTree = "<group>"; };
  364. CD1E71972A0BA86100BF871F /* GroupNameViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupNameViewController.swift; sourceTree = "<group>"; };
  365. CD1E71982A0BA86100BF871F /* GroupTopicViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupTopicViewController.swift; sourceTree = "<group>"; };
  366. CD1E71992A0BA86100BF871F /* SettingTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingTableViewController.swift; sourceTree = "<group>"; };
  367. CD1E719A2A0BA86100BF871F /* BroadcastModeViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastModeViewController.swift; sourceTree = "<group>"; };
  368. CD1E719B2A0BA86100BF871F /* BackupRestoreOption.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BackupRestoreOption.swift; sourceTree = "<group>"; };
  369. CD1E719C2A0BA86100BF871F /* HistoryCCViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HistoryCCViewController.swift; sourceTree = "<group>"; };
  370. CD1E719D2A0BA86100BF871F /* ChangeNameTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeNameTableViewController.swift; sourceTree = "<group>"; };
  371. CD1E719E2A0BA86100BF871F /* NotificationSound.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationSound.swift; sourceTree = "<group>"; };
  372. CD1E719F2A0BA86100BF871F /* TypeViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TypeViewController.swift; sourceTree = "<group>"; };
  373. CD1E71A02A0BA86100BF871F /* VerifyEmail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VerifyEmail.swift; sourceTree = "<group>"; };
  374. CD1E71A12A0BA86100BF871F /* SetInternalCSAccount.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SetInternalCSAccount.swift; sourceTree = "<group>"; };
  375. CD1E71A22A0BA86100BF871F /* BroadcastVariantViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastVariantViewController.swift; sourceTree = "<group>"; };
  376. CD1E71A42A0BA86100BF871F /* ImageVideoPicker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageVideoPicker.swift; sourceTree = "<group>"; };
  377. CD1E71A52A0BA86100BF871F /* BackupRestoreView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BackupRestoreView.swift; sourceTree = "<group>"; };
  378. CD1E71A62A0BA86100BF871F /* ProfileViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProfileViewController.swift; sourceTree = "<group>"; };
  379. CD1E71A72A0BA86100BF871F /* BroadcastMembersTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastMembersTableViewController.swift; sourceTree = "<group>"; };
  380. CD1E71A82A0BA86100BF871F /* BroadcastViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastViewController.swift; sourceTree = "<group>"; };
  381. CD1E71A92A0BA86100BF871F /* GroupMemberViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupMemberViewController.swift; sourceTree = "<group>"; };
  382. CD1E71AA2A0BA86100BF871F /* SetOfficerBNI.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SetOfficerBNI.swift; sourceTree = "<group>"; };
  383. CD1E71AB2A0BA86100BF871F /* AddFriendTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddFriendTableViewController.swift; sourceTree = "<group>"; };
  384. CD1E71AC2A0BA86100BF871F /* ScannerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScannerViewController.swift; sourceTree = "<group>"; };
  385. CD1E71AD2A0BA86100BF871F /* AudienceViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AudienceViewController.swift; sourceTree = "<group>"; };
  386. CD1E71AE2A0BA86100BF871F /* Utils.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Utils.swift; sourceTree = "<group>"; };
  387. CD1E71AF2A0BA86100BF871F /* WhiteboardDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WhiteboardDelegate.swift; sourceTree = "<group>"; };
  388. CD1E71B02A0BA86100BF871F /* TMessage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TMessage.swift; sourceTree = "<group>"; };
  389. CD1E71B12A0BA86100BF871F /* CoreMessage_TMessageBank.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreMessage_TMessageBank.swift; sourceTree = "<group>"; };
  390. CD1E71B22A0BA86100BF871F /* Callback.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Callback.swift; sourceTree = "<group>"; };
  391. CD1E71B32A0BA86100BF871F /* CoreMessage_TMessageCode.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreMessage_TMessageCode.swift; sourceTree = "<group>"; };
  392. CD1E71B42A0BA86100BF871F /* IncomingThread.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IncomingThread.swift; sourceTree = "<group>"; };
  393. CD1E71B52A0BA86100BF871F /* CoreMessage_TMessageUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreMessage_TMessageUtil.swift; sourceTree = "<group>"; };
  394. CD1E790E2A0CA43600BF871F /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  395. CD1E790F2A0CA43600BF871F /* FMDB.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = FMDB.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  396. CD1E79102A0CA43600BF871F /* MarqueeLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MarqueeLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  397. CD1E79112A0CA43600BF871F /* NotificationBannerSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = NotificationBannerSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  398. CD1E79142A0CA43600BF871F /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  399. CD1E79152A0CA43600BF871F /* SnapKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  400. CD1E79162A0CA43600BF871F /* Toast_Swift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Toast_Swift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  401. CD21CA522E0AA07700DA6B77 /* ArchivedChatView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ArchivedChatView.swift; sourceTree = "<group>"; };
  402. CD21CA532E0AA07700DA6B77 /* CommunityList.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityList.swift; sourceTree = "<group>"; };
  403. CD21CA542E0AA07700DA6B77 /* CommunityNew.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityNew.swift; sourceTree = "<group>"; };
  404. CD21CA582E0AA0A200DA6B77 /* SignInOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SignInOption.swift; sourceTree = "<group>"; };
  405. CD21CA5A2E0AA0C600DA6B77 /* CommunityModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityModel.swift; sourceTree = "<group>"; };
  406. CD2585B72D59DA60002AB416 /* Dutifully.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Dutifully.mp3; sourceTree = "<group>"; };
  407. CD2585B82D59DA60002AB416 /* Elegant.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Elegant.mp3; sourceTree = "<group>"; };
  408. CD2585B92D59DA60002AB416 /* Eventually.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Eventually.mp3; sourceTree = "<group>"; };
  409. CD2585BA2D59DA60002AB416 /* Hangover.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Hangover.mp3; sourceTree = "<group>"; };
  410. CD2585BB2D59DA60002AB416 /* Juntos.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Juntos.mp3; sourceTree = "<group>"; };
  411. CD2585BC2D59DA60002AB416 /* Light_Hearted.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Light_Hearted.mp3; sourceTree = "<group>"; };
  412. CD2585BD2D59DA60002AB416 /* Magic.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Magic.mp3; sourceTree = "<group>"; };
  413. CD2585BE2D59DA60002AB416 /* Nexilis_Message.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Nexilis_Message.mp3; sourceTree = "<group>"; };
  414. CD2585BF2D59DA60002AB416 /* Out_of_Nowhere.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Out_of_Nowhere.mp3; sourceTree = "<group>"; };
  415. CD2585C02D59DA60002AB416 /* Relax.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Relax.mp3; sourceTree = "<group>"; };
  416. CD2585C12D59DA60002AB416 /* Strong_Minded.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Strong_Minded.mp3; sourceTree = "<group>"; };
  417. CD2585C22D59DA60002AB416 /* Swift_gesture.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Swift_gesture.mp3; sourceTree = "<group>"; };
  418. CD2585C32D59DA60002AB416 /* Upset.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Upset.mp3; sourceTree = "<group>"; };
  419. CD2B01202D43945500C11B20 /* pb_gpt_bot.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pb_gpt_bot.gif; sourceTree = "<group>"; };
  420. CD2B01222D43961E00C11B20 /* QRProfileController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRProfileController.swift; sourceTree = "<group>"; };
  421. CD2B01232D43961E00C11B20 /* QRScannerController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRScannerController.swift; sourceTree = "<group>"; };
  422. CD43C80A2D687DBF00297C6E /* CreateConferenceCallController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CreateConferenceCallController.swift; sourceTree = "<group>"; };
  423. CD43C80B2D687DBF00297C6E /* VideoConferenceViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoConferenceViewController.swift; sourceTree = "<group>"; };
  424. CD469F502A0CC862009E4C87 /* NexilisLiteResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NexilisLiteResources.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
  425. CD469FC92A0CE2DE009E4C87 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  426. CD469FCB2A0CE2DE009E4C87 /* sticker_10000000_5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_5.png; sourceTree = "<group>"; };
  427. CD469FCC2A0CE2DE009E4C87 /* sticker_20000000_22.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_22.png; sourceTree = "<group>"; };
  428. CD469FCD2A0CE2DE009E4C87 /* sticker_30000000_38.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_38.png; sourceTree = "<group>"; };
  429. CD469FCE2A0CE2DE009E4C87 /* sticker_30000000_10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_10.png; sourceTree = "<group>"; };
  430. CD469FCF2A0CE2DE009E4C87 /* sticker_30000000_11.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_11.png; sourceTree = "<group>"; };
  431. CD469FD02A0CE2DE009E4C87 /* sticker_30000000_39.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_39.png; sourceTree = "<group>"; };
  432. CD469FD12A0CE2DE009E4C87 /* sticker_20000000_23.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_23.png; sourceTree = "<group>"; };
  433. CD469FD22A0CE2DE009E4C87 /* sticker_10000000_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_4.png; sourceTree = "<group>"; };
  434. CD469FD32A0CE2DE009E4C87 /* sticker_10000000_6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_6.png; sourceTree = "<group>"; };
  435. CD469FD42A0CE2DE009E4C87 /* sticker_20000000_21.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_21.png; sourceTree = "<group>"; };
  436. CD469FD52A0CE2DE009E4C87 /* sticker_30000000_13.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_13.png; sourceTree = "<group>"; };
  437. CD469FD62A0CE2DE009E4C87 /* sticker_30000000_9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_9.png; sourceTree = "<group>"; };
  438. CD469FD72A0CE2DE009E4C87 /* sticker_30000000_8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_8.png; sourceTree = "<group>"; };
  439. CD469FD82A0CE2DE009E4C87 /* sticker_30000000_12.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_12.png; sourceTree = "<group>"; };
  440. CD469FD92A0CE2DE009E4C87 /* sticker_20000000_20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_20.png; sourceTree = "<group>"; };
  441. CD469FDA2A0CE2DE009E4C87 /* sticker_10000000_7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_7.png; sourceTree = "<group>"; };
  442. CD469FDB2A0CE2DE009E4C87 /* sticker_10000000_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_3.png; sourceTree = "<group>"; };
  443. CD469FDC2A0CE2DE009E4C87 /* sticker_20000000_18.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_18.png; sourceTree = "<group>"; };
  444. CD469FDD2A0CE2DE009E4C87 /* sticker_30000000_16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_16.png; sourceTree = "<group>"; };
  445. CD469FDE2A0CE2DE009E4C87 /* sticker_30000000_17.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_17.png; sourceTree = "<group>"; };
  446. CD469FDF2A0CE2DE009E4C87 /* sticker_20000000_19.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_19.png; sourceTree = "<group>"; };
  447. CD469FE02A0CE2DE009E4C87 /* sticker_10000000_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_2.png; sourceTree = "<group>"; };
  448. CD469FE12A0CE2DE009E4C87 /* sticker_10000000_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_0.png; sourceTree = "<group>"; };
  449. CD469FE22A0CE2DE009E4C87 /* sticker_20000000_8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_8.png; sourceTree = "<group>"; };
  450. CD469FE32A0CE2DE009E4C87 /* sticker_30000000_15.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_15.png; sourceTree = "<group>"; };
  451. CD469FE42A0CE2DE009E4C87 /* sticker_30000000_29.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_29.png; sourceTree = "<group>"; };
  452. CD469FE52A0CE2DE009E4C87 /* sticker_30000000_28.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_28.png; sourceTree = "<group>"; };
  453. CD469FE62A0CE2DE009E4C87 /* sticker_30000000_14.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_14.png; sourceTree = "<group>"; };
  454. CD469FE72A0CE2DE009E4C87 /* sticker_20000000_9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_9.png; sourceTree = "<group>"; };
  455. CD469FE82A0CE2DE009E4C87 /* sticker_10000000_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_1.png; sourceTree = "<group>"; };
  456. CD469FE92A0CE2DE009E4C87 /* sticker_20000000_17.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_17.png; sourceTree = "<group>"; };
  457. CD469FEA2A0CE2DE009E4C87 /* sticker_20000000_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_4.png; sourceTree = "<group>"; };
  458. CD469FEB2A0CE2DE009E4C87 /* sticker_30000000_19.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_19.png; sourceTree = "<group>"; };
  459. CD469FEC2A0CE2DE009E4C87 /* sticker_30000000_25.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_25.png; sourceTree = "<group>"; };
  460. CD469FED2A0CE2DE009E4C87 /* sticker_30000000_31.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_31.png; sourceTree = "<group>"; };
  461. CD469FEE2A0CE2DE009E4C87 /* sticker_30000000_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_3.png; sourceTree = "<group>"; };
  462. CD469FEF2A0CE2DE009E4C87 /* sticker_30000000_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_2.png; sourceTree = "<group>"; };
  463. CD469FF02A0CE2DE009E4C87 /* sticker_30000000_30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_30.png; sourceTree = "<group>"; };
  464. CD469FF12A0CE2DE009E4C87 /* sticker_30000000_24.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_24.png; sourceTree = "<group>"; };
  465. CD469FF22A0CE2DE009E4C87 /* sticker_30000000_18.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_18.png; sourceTree = "<group>"; };
  466. CD469FF32A0CE2DE009E4C87 /* sticker_20000000_5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_5.png; sourceTree = "<group>"; };
  467. CD469FF42A0CE2DE009E4C87 /* sticker_20000000_16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_16.png; sourceTree = "<group>"; };
  468. CD469FF52A0CE2DE009E4C87 /* sticker_10000000_11.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_11.png; sourceTree = "<group>"; };
  469. CD469FF62A0CE2DE009E4C87 /* sticker_20000000_14.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_14.png; sourceTree = "<group>"; };
  470. CD469FF72A0CE2DE009E4C87 /* sticker_20000000_7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_7.png; sourceTree = "<group>"; };
  471. CD469FF82A0CE2DE009E4C87 /* sticker_30000000_32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_32.png; sourceTree = "<group>"; };
  472. CD469FF92A0CE2DE009E4C87 /* sticker_30000000_26.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_26.png; sourceTree = "<group>"; };
  473. CD469FFA2A0CE2DE009E4C87 /* sticker_30000000_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_0.png; sourceTree = "<group>"; };
  474. CD469FFB2A0CE2DE009E4C87 /* sticker_30000000_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_1.png; sourceTree = "<group>"; };
  475. CD469FFC2A0CE2DE009E4C87 /* sticker_30000000_27.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_27.png; sourceTree = "<group>"; };
  476. CD469FFD2A0CE2DE009E4C87 /* sticker_30000000_33.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_33.png; sourceTree = "<group>"; };
  477. CD469FFE2A0CE2DE009E4C87 /* sticker_20000000_6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_6.png; sourceTree = "<group>"; };
  478. CD469FFF2A0CE2DE009E4C87 /* sticker_20000000_15.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_15.png; sourceTree = "<group>"; };
  479. CD46A0002A0CE2DE009E4C87 /* sticker_10000000_10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_10.png; sourceTree = "<group>"; };
  480. CD46A0012A0CE2DE009E4C87 /* sticker_20000000_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_2.png; sourceTree = "<group>"; };
  481. CD46A0022A0CE2DE009E4C87 /* sticker_20000000_11.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_11.png; sourceTree = "<group>"; };
  482. CD46A0032A0CE2DE009E4C87 /* sticker_30000000_37.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_37.png; sourceTree = "<group>"; };
  483. CD46A0042A0CE2DE009E4C87 /* sticker_30000000_23.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_23.png; sourceTree = "<group>"; };
  484. CD46A0052A0CE2DE009E4C87 /* sticker_30000000_5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_5.png; sourceTree = "<group>"; };
  485. CD46A0062A0CE2DE009E4C87 /* sticker_30000000_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_4.png; sourceTree = "<group>"; };
  486. CD46A0072A0CE2DE009E4C87 /* sticker_30000000_22.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_22.png; sourceTree = "<group>"; };
  487. CD46A0082A0CE2DE009E4C87 /* sticker_30000000_36.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_36.png; sourceTree = "<group>"; };
  488. CD46A0092A0CE2DE009E4C87 /* sticker_20000000_10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_10.png; sourceTree = "<group>"; };
  489. CD46A00A2A0CE2DE009E4C87 /* sticker_20000000_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_3.png; sourceTree = "<group>"; };
  490. CD46A00B2A0CE2DE009E4C87 /* sticker_10000000_9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_9.png; sourceTree = "<group>"; };
  491. CD46A00C2A0CE2DE009E4C87 /* sticker_20000000_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_1.png; sourceTree = "<group>"; };
  492. CD46A00D2A0CE2DE009E4C87 /* sticker_20000000_12.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_12.png; sourceTree = "<group>"; };
  493. CD46A00E2A0CE2DE009E4C87 /* sticker_30000000_20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_20.png; sourceTree = "<group>"; };
  494. CD46A00F2A0CE2DE009E4C87 /* sticker_30000000_34.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_34.png; sourceTree = "<group>"; };
  495. CD46A0102A0CE2DE009E4C87 /* sticker_30000000_6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_6.png; sourceTree = "<group>"; };
  496. CD46A0112A0CE2DE009E4C87 /* sticker_30000000_7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_7.png; sourceTree = "<group>"; };
  497. CD46A0122A0CE2DE009E4C87 /* sticker_30000000_35.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_35.png; sourceTree = "<group>"; };
  498. CD46A0132A0CE2DE009E4C87 /* sticker_30000000_21.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_21.png; sourceTree = "<group>"; };
  499. CD46A0142A0CE2DE009E4C87 /* sticker_20000000_13.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_13.png; sourceTree = "<group>"; };
  500. CD46A0152A0CE2DE009E4C87 /* sticker_20000000_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_0.png; sourceTree = "<group>"; };
  501. CD46A0162A0CE2DE009E4C87 /* sticker_10000000_8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_8.png; sourceTree = "<group>"; };
  502. CD46A0172A0CE2DE009E4C87 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  503. CD46A0182A0CE2DE009E4C87 /* PreviewAttachmentImageVideo.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PreviewAttachmentImageVideo.xib; sourceTree = "<group>"; };
  504. CD46A0192A0CE2DE009E4C87 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = "<group>"; };
  505. CD46A01A2A0CE2DE009E4C87 /* Palio.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Palio.storyboard; sourceTree = "<group>"; };
  506. CD46A0BE2A0CE4FD009E4C87 /* NexilisLite.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = NexilisLite.podspec; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  507. CD46A0C42A0D0D5D009E4C87 /* MyArchive.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MyArchive.swift; sourceTree = "<group>"; };
  508. CD5A73AC2A77642D000541A5 /* MessageInfo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MessageInfo.swift; sourceTree = "<group>"; };
  509. CD5A73AD2A77642D000541A5 /* ListGroupImages.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListGroupImages.swift; sourceTree = "<group>"; };
  510. CD6312582DA925260088964E /* CallLogVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallLogVC.swift; sourceTree = "<group>"; };
  511. CD63125A2DA925320088964E /* ChatWALikeVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatWALikeVC.swift; sourceTree = "<group>"; };
  512. CD63125C2DA925960088964E /* CallModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallModel.swift; sourceTree = "<group>"; };
  513. CD63125D2DA925960088964E /* Group_NM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Group_NM.swift; sourceTree = "<group>"; };
  514. CD7054E92AD39DE2003741BF /* ChatGPTBotView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChatGPTBotView.swift; sourceTree = "<group>"; };
  515. CD9551332A664BD400AF6476 /* Poppins-SemiBoldItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-SemiBoldItalic.otf"; sourceTree = "<group>"; };
  516. CD9551342A664BD400AF6476 /* Poppins-ExtraBoldItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ExtraBoldItalic.otf"; sourceTree = "<group>"; };
  517. CD9551352A664BD400AF6476 /* SIL Open Font License.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "SIL Open Font License.txt"; sourceTree = "<group>"; };
  518. CD9551362A664BD400AF6476 /* Poppins-ExtraLight.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ExtraLight.otf"; sourceTree = "<group>"; };
  519. CD9551372A664BD400AF6476 /* Poppins-ThinItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ThinItalic.otf"; sourceTree = "<group>"; };
  520. CD9551382A664BD400AF6476 /* Poppins-ExtraLightItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ExtraLightItalic.otf"; sourceTree = "<group>"; };
  521. CD9551392A664BD400AF6476 /* Poppins-Light.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Light.otf"; sourceTree = "<group>"; };
  522. CD95513A2A664BD400AF6476 /* Poppins-BoldItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-BoldItalic.otf"; sourceTree = "<group>"; };
  523. CD95513B2A664BD400AF6476 /* Poppins-Medium.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Medium.otf"; sourceTree = "<group>"; };
  524. CD95513C2A664BD400AF6476 /* Poppins-SemiBold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-SemiBold.otf"; sourceTree = "<group>"; };
  525. CD95513D2A664BD400AF6476 /* Poppins-Italic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Italic.otf"; sourceTree = "<group>"; };
  526. CD95513E2A664BD400AF6476 /* Poppins-Thin.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Thin.otf"; sourceTree = "<group>"; };
  527. CD95513F2A664BD400AF6476 /* Poppins-MediumItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-MediumItalic.otf"; sourceTree = "<group>"; };
  528. CD9551402A664BD400AF6476 /* Poppins-LightItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-LightItalic.otf"; sourceTree = "<group>"; };
  529. CD9551412A664BD400AF6476 /* Poppins-Bold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Bold.otf"; sourceTree = "<group>"; };
  530. CD9551422A664BD400AF6476 /* Poppins-Black.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Black.otf"; sourceTree = "<group>"; };
  531. CD9551432A664BD400AF6476 /* Poppins-BlackItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-BlackItalic.otf"; sourceTree = "<group>"; };
  532. CD9551442A664BD400AF6476 /* Poppins-Regular.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Regular.otf"; sourceTree = "<group>"; };
  533. CD9551452A664BD400AF6476 /* Poppins-ExtraBold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ExtraBold.otf"; sourceTree = "<group>"; };
  534. CD9829B62A3C07CB009F6743 /* SeminarListViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SeminarListViewController.swift; sourceTree = "<group>"; };
  535. CDA461212AB99E09001CD010 /* ConfigureFloatingButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConfigureFloatingButton.swift; sourceTree = "<group>"; };
  536. CDB21B2B2BA9998400EC5280 /* pb_def_icon_mode2.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pb_def_icon_mode2.gif; sourceTree = "<group>"; };
  537. CDB21B2C2BA9998400EC5280 /* pb_def_icon_mode4.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pb_def_icon_mode4.gif; sourceTree = "<group>"; };
  538. CDDF46732A2DD81300049A19 /* CreateSeminarViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CreateSeminarViewController.swift; sourceTree = "<group>"; };
  539. CDDF46742A2DD81300049A19 /* SeminarViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SeminarViewController.swift; sourceTree = "<group>"; };
  540. CDDF46792A2EF0A700049A19 /* ScreenSharingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScreenSharingViewController.swift; sourceTree = "<group>"; };
  541. CDE3BED62C86E3A000B0BF36 /* pb_call_in.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_in.mp3; sourceTree = "<group>"; };
  542. CDE3BED72C86E3A000B0BF36 /* pb_call_out.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_out.mp3; sourceTree = "<group>"; };
  543. CDE50D8E2D630C720094C30D /* pb_typing_chat.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pb_typing_chat.gif; sourceTree = "<group>"; };
  544. /* End PBXFileReference section */
  545. /* Begin PBXFrameworksBuildPhase section */
  546. CD1E6E652A0B7C3600BF871F /* Frameworks */ = {
  547. isa = PBXFrameworksBuildPhase;
  548. buildActionMask = 2147483647;
  549. files = (
  550. 89065265FF48521F6BC9DA48 /* Pods_NexilisLite.framework in Frameworks */,
  551. );
  552. runOnlyForDeploymentPostprocessing = 0;
  553. };
  554. CD1E6E6F2A0B7C3600BF871F /* Frameworks */ = {
  555. isa = PBXFrameworksBuildPhase;
  556. buildActionMask = 2147483647;
  557. files = (
  558. CD1E6E732A0B7C3600BF871F /* NexilisLite.framework in Frameworks */,
  559. 6E1C44ABFD345CCE1F612AAC /* Pods_NexilisLite_NexilisLiteTests.framework in Frameworks */,
  560. );
  561. runOnlyForDeploymentPostprocessing = 0;
  562. };
  563. CD469F4D2A0CC862009E4C87 /* Frameworks */ = {
  564. isa = PBXFrameworksBuildPhase;
  565. buildActionMask = 2147483647;
  566. files = (
  567. );
  568. runOnlyForDeploymentPostprocessing = 0;
  569. };
  570. /* End PBXFrameworksBuildPhase section */
  571. /* Begin PBXGroup section */
  572. 5213F364DDF7BFF3DF845EA0 /* Frameworks */ = {
  573. isa = PBXGroup;
  574. children = (
  575. CD1E790E2A0CA43600BF871F /* Alamofire.framework */,
  576. CD1E790F2A0CA43600BF871F /* FMDB.framework */,
  577. CD1E79102A0CA43600BF871F /* MarqueeLabel.framework */,
  578. CD1E79112A0CA43600BF871F /* NotificationBannerSwift.framework */,
  579. CD1E79142A0CA43600BF871F /* SDWebImage.framework */,
  580. CD1E79152A0CA43600BF871F /* SnapKit.framework */,
  581. CD1E79162A0CA43600BF871F /* Toast_Swift.framework */,
  582. 9372060C226B25B34A207951 /* Pods_NexilisLite.framework */,
  583. 92C32B27C013B8842F336D7A /* Pods_NexilisLite_NexilisLiteTests.framework */,
  584. );
  585. name = Frameworks;
  586. sourceTree = "<group>";
  587. };
  588. 859CE12B7A54BE1FA9470B46 /* Pods */ = {
  589. isa = PBXGroup;
  590. children = (
  591. CD46A0BE2A0CE4FD009E4C87 /* NexilisLite.podspec */,
  592. A5C9F493B799D97510AECB02 /* Pods-NexilisLite.debug.xcconfig */,
  593. 5E1F6A2F460CE08324778A10 /* Pods-NexilisLite.release.xcconfig */,
  594. A6B33FB3B7DDB4BA5A1064B1 /* Pods-NexilisLite-NexilisLiteTests.debug.xcconfig */,
  595. 9D8E4449FB2643BB0D5A47F7 /* Pods-NexilisLite-NexilisLiteTests.release.xcconfig */,
  596. );
  597. path = Pods;
  598. sourceTree = "<group>";
  599. };
  600. CD1E6E5E2A0B7C3600BF871F = {
  601. isa = PBXGroup;
  602. children = (
  603. CD1E6E6A2A0B7C3600BF871F /* NexilisLite */,
  604. CD1E6E762A0B7C3600BF871F /* NexilisLiteTests */,
  605. CD1E6E692A0B7C3600BF871F /* Products */,
  606. 859CE12B7A54BE1FA9470B46 /* Pods */,
  607. 5213F364DDF7BFF3DF845EA0 /* Frameworks */,
  608. );
  609. sourceTree = "<group>";
  610. };
  611. CD1E6E692A0B7C3600BF871F /* Products */ = {
  612. isa = PBXGroup;
  613. children = (
  614. CD1E6E682A0B7C3600BF871F /* NexilisLite.framework */,
  615. CD1E6E722A0B7C3600BF871F /* NexilisLiteTests.xctest */,
  616. CD469F502A0CC862009E4C87 /* NexilisLiteResources.bundle */,
  617. );
  618. name = Products;
  619. sourceTree = "<group>";
  620. };
  621. CD1E6E6A2A0B7C3600BF871F /* NexilisLite */ = {
  622. isa = PBXGroup;
  623. children = (
  624. CD469FC72A0CE2DE009E4C87 /* Resource */,
  625. CD1E714E2A0BA86100BF871F /* Source */,
  626. CD1E70CC2A0B815400BF871F /* Info.plist */,
  627. CD1E6E6B2A0B7C3600BF871F /* NexilisLite.h */,
  628. CD1E6E6C2A0B7C3600BF871F /* NexilisLite.docc */,
  629. );
  630. path = NexilisLite;
  631. sourceTree = "<group>";
  632. };
  633. CD1E6E762A0B7C3600BF871F /* NexilisLiteTests */ = {
  634. isa = PBXGroup;
  635. children = (
  636. CD1E6E772A0B7C3600BF871F /* NexilisLiteTests.swift */,
  637. );
  638. path = NexilisLiteTests;
  639. sourceTree = "<group>";
  640. };
  641. CD1E714E2A0BA86100BF871F /* Source */ = {
  642. isa = PBXGroup;
  643. children = (
  644. 1241AEBA2D017E8C0088175A /* FileEncryption.swift */,
  645. 1241AEBB2D017E8C0088175A /* MasterKeyUtil.swift */,
  646. CD1E71532A0BA86100BF871F /* APIS.swift */,
  647. CD1E71B22A0BA86100BF871F /* Callback.swift */,
  648. CD1E71B12A0BA86100BF871F /* CoreMessage_TMessageBank.swift */,
  649. CD1E71B32A0BA86100BF871F /* CoreMessage_TMessageCode.swift */,
  650. CD1E715C2A0BA86100BF871F /* CoreMessage_TMessageKey.swift */,
  651. CD1E71B52A0BA86100BF871F /* CoreMessage_TMessageUtil.swift */,
  652. CD1E715D2A0BA86100BF871F /* Database.swift */,
  653. CD1E71592A0BA86100BF871F /* Download.swift */,
  654. CD1E715A2A0BA86100BF871F /* Extension.swift */,
  655. CD1E71542A0BA86100BF871F /* FloatingButton */,
  656. CD1E71B42A0BA86100BF871F /* IncomingThread.swift */,
  657. CD1E71572A0BA86100BF871F /* InquiryThread.swift */,
  658. CD1E715E2A0BA86100BF871F /* Model */,
  659. CD46A0C42A0D0D5D009E4C87 /* MyArchive.swift */,
  660. CD1E71582A0BA86100BF871F /* Network.swift */,
  661. CD1E71662A0BA86100BF871F /* Nexilis.swift */,
  662. CD1E714F2A0BA86100BF871F /* OutgoingThread.swift */,
  663. CD1E71B02A0BA86100BF871F /* TMessage.swift */,
  664. CD1E71512A0BA86100BF871F /* Units.swift */,
  665. CD1E71AE2A0BA86100BF871F /* Utils.swift */,
  666. CD1E71672A0BA86100BF871F /* View */,
  667. CD1E71562A0BA86100BF871F /* Whiteboard.swift */,
  668. CD1E71502A0BA86100BF871F /* WhiteboardCanvas.swift */,
  669. CD1E71AF2A0BA86100BF871F /* WhiteboardDelegate.swift */,
  670. CD1E715B2A0BA86100BF871F /* WhiteboardReceiver.swift */,
  671. );
  672. path = Source;
  673. sourceTree = "<group>";
  674. };
  675. CD1E71542A0BA86100BF871F /* FloatingButton */ = {
  676. isa = PBXGroup;
  677. children = (
  678. CD1E71552A0BA86100BF871F /* FloatingButton.swift */,
  679. );
  680. path = FloatingButton;
  681. sourceTree = "<group>";
  682. };
  683. CD1E715E2A0BA86100BF871F /* Model */ = {
  684. isa = PBXGroup;
  685. children = (
  686. CD21CA5A2E0AA0C600DA6B77 /* CommunityModel.swift */,
  687. CD63125C2DA925960088964E /* CallModel.swift */,
  688. CD1E71622A0BA86100BF871F /* CategoryCC.swift */,
  689. CD1E71602A0BA86100BF871F /* Chat.swift */,
  690. CD1E71642A0BA86100BF871F /* Group.swift */,
  691. CD63125D2DA925960088964E /* Group_NM.swift */,
  692. CD1E715F2A0BA86100BF871F /* Model.swift */,
  693. CD1E71652A0BA86100BF871F /* NotifSound.swift */,
  694. CD1E71612A0BA86100BF871F /* User.swift */,
  695. CD1E71632A0BA86100BF871F /* WorkingArea.swift */,
  696. );
  697. path = Model;
  698. sourceTree = "<group>";
  699. };
  700. CD1E71672A0BA86100BF871F /* View */ = {
  701. isa = PBXGroup;
  702. children = (
  703. CD1E71682A0BA86100BF871F /* Contact */,
  704. CD1E716A2A0BA86100BF871F /* BNIView */,
  705. CD1E716D2A0BA86100BF871F /* Chat */,
  706. CD1E71752A0BA86100BF871F /* Streaming */,
  707. CD1E717C2A0BA86100BF871F /* Call */,
  708. CD1E71892A0BA86100BF871F /* Control */,
  709. );
  710. path = View;
  711. sourceTree = "<group>";
  712. };
  713. CD1E71682A0BA86100BF871F /* Contact */ = {
  714. isa = PBXGroup;
  715. children = (
  716. CD1E71692A0BA86100BF871F /* ContactCallViewController.swift */,
  717. );
  718. path = Contact;
  719. sourceTree = "<group>";
  720. };
  721. CD1E716A2A0BA86100BF871F /* BNIView */ = {
  722. isa = PBXGroup;
  723. children = (
  724. CD1E716B2A0BA86100BF871F /* WorkingAreaPicker.swift */,
  725. CD1E716C2A0BA86100BF871F /* BNIBookingWebView.swift */,
  726. );
  727. path = BNIView;
  728. sourceTree = "<group>";
  729. };
  730. CD1E716D2A0BA86100BF871F /* Chat */ = {
  731. isa = PBXGroup;
  732. children = (
  733. CD21CA522E0AA07700DA6B77 /* ArchivedChatView.swift */,
  734. CD21CA532E0AA07700DA6B77 /* CommunityList.swift */,
  735. CD21CA542E0AA07700DA6B77 /* CommunityNew.swift */,
  736. CD7054E92AD39DE2003741BF /* ChatGPTBotView.swift */,
  737. CD63125A2DA925320088964E /* ChatWALikeVC.swift */,
  738. CD1E71742A0BA86100BF871F /* CustomTextView.swift */,
  739. CD1E71722A0BA86100BF871F /* EditorGroup.swift */,
  740. CD1E71702A0BA86100BF871F /* EditorPersonal.swift */,
  741. CD1E716E2A0BA86100BF871F /* EditorStarMessages.swift */,
  742. CD1E71712A0BA86100BF871F /* FormEditor.swift */,
  743. CD5A73AD2A77642D000541A5 /* ListGroupImages.swift */,
  744. CD5A73AC2A77642D000541A5 /* MessageInfo.swift */,
  745. CD1E71732A0BA86100BF871F /* PreviewAttachmentImageVideo.swift */,
  746. 12C36CEA2D02995F0095BEC1 /* SecureFolderView.swift */,
  747. );
  748. path = Chat;
  749. sourceTree = "<group>";
  750. };
  751. CD1E71752A0BA86100BF871F /* Streaming */ = {
  752. isa = PBXGroup;
  753. children = (
  754. CD9829B62A3C07CB009F6743 /* SeminarListViewController.swift */,
  755. CDDF46732A2DD81300049A19 /* CreateSeminarViewController.swift */,
  756. CDDF46742A2DD81300049A19 /* SeminarViewController.swift */,
  757. CD1E71762A0BA86100BF871F /* QmeraGroupChooserViewController.swift */,
  758. CD1E71772A0BA86100BF871F /* QmeraStreamingViewController.swift */,
  759. CD1E71782A0BA86100BF871F /* CreateViewController.swift */,
  760. CD1E71792A0BA86100BF871F /* QmeraUserChooserViewController.swift */,
  761. CD1E717A2A0BA86100BF871F /* StreamingViewController.swift */,
  762. CD1E717B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift */,
  763. );
  764. path = Streaming;
  765. sourceTree = "<group>";
  766. };
  767. CD1E717C2A0BA86100BF871F /* Call */ = {
  768. isa = PBXGroup;
  769. children = (
  770. CD1E717F2A0BA86100BF871F /* AudioViewController.swift */,
  771. CD6312582DA925260088964E /* CallLogVC.swift */,
  772. CD1E717D2A0BA86100BF871F /* CallManager.swift */,
  773. CD43C80A2D687DBF00297C6E /* CreateConferenceCallController.swift */,
  774. CD1E71882A0BA86100BF871F /* GroupView.swift */,
  775. CD1E71802A0BA86100BF871F /* ProfileView.swift */,
  776. CD1E717E2A0BA86100BF871F /* QmeraAudioConference.swift */,
  777. CD1E71822A0BA86100BF871F /* QmeraAudioViewController.swift */,
  778. CD1E71832A0BA86100BF871F /* QmeraCallContactViewController.swift */,
  779. CD1E71852A0BA86100BF871F /* QmeraVideoViewController.swift */,
  780. CDDF46792A2EF0A700049A19 /* ScreenSharingViewController.swift */,
  781. CD43C80B2D687DBF00297C6E /* VideoConferenceViewController.swift */,
  782. CD1E71862A0BA86100BF871F /* VideoViewController.swift */,
  783. CD1E71842A0BA86100BF871F /* WhiteboardViewController.swift */,
  784. );
  785. path = Call;
  786. sourceTree = "<group>";
  787. };
  788. CD1E71892A0BA86100BF871F /* Control */ = {
  789. isa = PBXGroup;
  790. children = (
  791. CD21CA582E0AA0A200DA6B77 /* SignInOption.swift */,
  792. 1258BCB52D82D71200EFF5BD /* ChatWallpaperViewController.swift */,
  793. CD1E71AB2A0BA86100BF871F /* AddFriendTableViewController.swift */,
  794. CD1E71AD2A0BA86100BF871F /* AudienceViewController.swift */,
  795. CD1E719B2A0BA86100BF871F /* BackupRestoreOption.swift */,
  796. CD1E71A52A0BA86100BF871F /* BackupRestoreView.swift */,
  797. CD1E718B2A0BA86100BF871F /* BroadcastMembersTableViewCell.swift */,
  798. CD1E71A72A0BA86100BF871F /* BroadcastMembersTableViewController.swift */,
  799. CD1E719A2A0BA86100BF871F /* BroadcastModeViewController.swift */,
  800. CD1E71A22A0BA86100BF871F /* BroadcastVariantViewController.swift */,
  801. CD1E71A82A0BA86100BF871F /* BroadcastViewController.swift */,
  802. CD1E71942A0BA86100BF871F /* ChangeDeviceViewController.swift */,
  803. CD1E71922A0BA86100BF871F /* ChangeNamePassswordViewController.swift */,
  804. CD1E719D2A0BA86100BF871F /* ChangeNameTableViewController.swift */,
  805. CD1E71962A0BA86100BF871F /* ChangePasswordViewController.swift */,
  806. CD1E718F2A0BA86100BF871F /* CheckConnection.swift */,
  807. CDA461212AB99E09001CD010 /* ConfigureFloatingButton.swift */,
  808. CD1E71932A0BA86100BF871F /* ContactChatViewController.swift */,
  809. CD1E71952A0BA86100BF871F /* DocumentPicker.swift */,
  810. CD1E718A2A0BA86100BF871F /* GroupCreateViewController.swift */,
  811. CD1E718D2A0BA86100BF871F /* GroupDescViewController.swift */,
  812. CD1E71912A0BA86100BF871F /* GroupDetailViewController.swift */,
  813. CD1E71A92A0BA86100BF871F /* GroupMemberViewController.swift */,
  814. CD1E71972A0BA86100BF871F /* GroupNameViewController.swift */,
  815. CD1E71982A0BA86100BF871F /* GroupTopicViewController.swift */,
  816. CD1E718E2A0BA86100BF871F /* HistoryBroadcastViewController.swift */,
  817. CD1E719C2A0BA86100BF871F /* HistoryCCViewController.swift */,
  818. CD1E71A42A0BA86100BF871F /* ImageVideoPicker.swift */,
  819. CD1E719E2A0BA86100BF871F /* NotificationSound.swift */,
  820. CD1E71A62A0BA86100BF871F /* ProfileViewController.swift */,
  821. CD2B01222D43961E00C11B20 /* QRProfileController.swift */,
  822. CD2B01232D43961E00C11B20 /* QRScannerController.swift */,
  823. CD1E718C2A0BA86100BF871F /* QRScannerView.swift */,
  824. CD1E71AC2A0BA86100BF871F /* ScannerViewController.swift */,
  825. CD1E71A12A0BA86100BF871F /* SetInternalCSAccount.swift */,
  826. CD1E71AA2A0BA86100BF871F /* SetOfficerBNI.swift */,
  827. CD1E71992A0BA86100BF871F /* SettingTableViewController.swift */,
  828. CD1E71902A0BA86100BF871F /* SignUpSignIn.swift */,
  829. CD1E719F2A0BA86100BF871F /* TypeViewController.swift */,
  830. CD1E71A02A0BA86100BF871F /* VerifyEmail.swift */,
  831. );
  832. path = Control;
  833. sourceTree = "<group>";
  834. };
  835. CD469FC72A0CE2DE009E4C87 /* Resource */ = {
  836. isa = PBXGroup;
  837. children = (
  838. CD46A0172A0CE2DE009E4C87 /* Assets.xcassets */,
  839. CD9551322A664BD400AF6476 /* fonts */,
  840. CDB21B2D2BA9998400EC5280 /* Gifs */,
  841. CD469FC82A0CE2DE009E4C87 /* Localizable.strings */,
  842. CD46A01A2A0CE2DE009E4C87 /* Palio.storyboard */,
  843. CD46A0182A0CE2DE009E4C87 /* PreviewAttachmentImageVideo.xib */,
  844. CDE3BED82C86E3A000B0BF36 /* Sound */,
  845. CD469FCA2A0CE2DE009E4C87 /* Stickers */,
  846. );
  847. path = Resource;
  848. sourceTree = "<group>";
  849. };
  850. CD469FCA2A0CE2DE009E4C87 /* Stickers */ = {
  851. isa = PBXGroup;
  852. children = (
  853. CD469FCB2A0CE2DE009E4C87 /* sticker_10000000_5.png */,
  854. CD469FCC2A0CE2DE009E4C87 /* sticker_20000000_22.png */,
  855. CD469FCD2A0CE2DE009E4C87 /* sticker_30000000_38.png */,
  856. CD469FCE2A0CE2DE009E4C87 /* sticker_30000000_10.png */,
  857. CD469FCF2A0CE2DE009E4C87 /* sticker_30000000_11.png */,
  858. CD469FD02A0CE2DE009E4C87 /* sticker_30000000_39.png */,
  859. CD469FD12A0CE2DE009E4C87 /* sticker_20000000_23.png */,
  860. CD469FD22A0CE2DE009E4C87 /* sticker_10000000_4.png */,
  861. CD469FD32A0CE2DE009E4C87 /* sticker_10000000_6.png */,
  862. CD469FD42A0CE2DE009E4C87 /* sticker_20000000_21.png */,
  863. CD469FD52A0CE2DE009E4C87 /* sticker_30000000_13.png */,
  864. CD469FD62A0CE2DE009E4C87 /* sticker_30000000_9.png */,
  865. CD469FD72A0CE2DE009E4C87 /* sticker_30000000_8.png */,
  866. CD469FD82A0CE2DE009E4C87 /* sticker_30000000_12.png */,
  867. CD469FD92A0CE2DE009E4C87 /* sticker_20000000_20.png */,
  868. CD469FDA2A0CE2DE009E4C87 /* sticker_10000000_7.png */,
  869. CD469FDB2A0CE2DE009E4C87 /* sticker_10000000_3.png */,
  870. CD469FDC2A0CE2DE009E4C87 /* sticker_20000000_18.png */,
  871. CD469FDD2A0CE2DE009E4C87 /* sticker_30000000_16.png */,
  872. CD469FDE2A0CE2DE009E4C87 /* sticker_30000000_17.png */,
  873. CD469FDF2A0CE2DE009E4C87 /* sticker_20000000_19.png */,
  874. CD469FE02A0CE2DE009E4C87 /* sticker_10000000_2.png */,
  875. CD469FE12A0CE2DE009E4C87 /* sticker_10000000_0.png */,
  876. CD469FE22A0CE2DE009E4C87 /* sticker_20000000_8.png */,
  877. CD469FE32A0CE2DE009E4C87 /* sticker_30000000_15.png */,
  878. CD469FE42A0CE2DE009E4C87 /* sticker_30000000_29.png */,
  879. CD469FE52A0CE2DE009E4C87 /* sticker_30000000_28.png */,
  880. CD469FE62A0CE2DE009E4C87 /* sticker_30000000_14.png */,
  881. CD469FE72A0CE2DE009E4C87 /* sticker_20000000_9.png */,
  882. CD469FE82A0CE2DE009E4C87 /* sticker_10000000_1.png */,
  883. CD469FE92A0CE2DE009E4C87 /* sticker_20000000_17.png */,
  884. CD469FEA2A0CE2DE009E4C87 /* sticker_20000000_4.png */,
  885. CD469FEB2A0CE2DE009E4C87 /* sticker_30000000_19.png */,
  886. CD469FEC2A0CE2DE009E4C87 /* sticker_30000000_25.png */,
  887. CD469FED2A0CE2DE009E4C87 /* sticker_30000000_31.png */,
  888. CD469FEE2A0CE2DE009E4C87 /* sticker_30000000_3.png */,
  889. CD469FEF2A0CE2DE009E4C87 /* sticker_30000000_2.png */,
  890. CD469FF02A0CE2DE009E4C87 /* sticker_30000000_30.png */,
  891. CD469FF12A0CE2DE009E4C87 /* sticker_30000000_24.png */,
  892. CD469FF22A0CE2DE009E4C87 /* sticker_30000000_18.png */,
  893. CD469FF32A0CE2DE009E4C87 /* sticker_20000000_5.png */,
  894. CD469FF42A0CE2DE009E4C87 /* sticker_20000000_16.png */,
  895. CD469FF52A0CE2DE009E4C87 /* sticker_10000000_11.png */,
  896. CD469FF62A0CE2DE009E4C87 /* sticker_20000000_14.png */,
  897. CD469FF72A0CE2DE009E4C87 /* sticker_20000000_7.png */,
  898. CD469FF82A0CE2DE009E4C87 /* sticker_30000000_32.png */,
  899. CD469FF92A0CE2DE009E4C87 /* sticker_30000000_26.png */,
  900. CD469FFA2A0CE2DE009E4C87 /* sticker_30000000_0.png */,
  901. CD469FFB2A0CE2DE009E4C87 /* sticker_30000000_1.png */,
  902. CD469FFC2A0CE2DE009E4C87 /* sticker_30000000_27.png */,
  903. CD469FFD2A0CE2DE009E4C87 /* sticker_30000000_33.png */,
  904. CD469FFE2A0CE2DE009E4C87 /* sticker_20000000_6.png */,
  905. CD469FFF2A0CE2DE009E4C87 /* sticker_20000000_15.png */,
  906. CD46A0002A0CE2DE009E4C87 /* sticker_10000000_10.png */,
  907. CD46A0012A0CE2DE009E4C87 /* sticker_20000000_2.png */,
  908. CD46A0022A0CE2DE009E4C87 /* sticker_20000000_11.png */,
  909. CD46A0032A0CE2DE009E4C87 /* sticker_30000000_37.png */,
  910. CD46A0042A0CE2DE009E4C87 /* sticker_30000000_23.png */,
  911. CD46A0052A0CE2DE009E4C87 /* sticker_30000000_5.png */,
  912. CD46A0062A0CE2DE009E4C87 /* sticker_30000000_4.png */,
  913. CD46A0072A0CE2DE009E4C87 /* sticker_30000000_22.png */,
  914. CD46A0082A0CE2DE009E4C87 /* sticker_30000000_36.png */,
  915. CD46A0092A0CE2DE009E4C87 /* sticker_20000000_10.png */,
  916. CD46A00A2A0CE2DE009E4C87 /* sticker_20000000_3.png */,
  917. CD46A00B2A0CE2DE009E4C87 /* sticker_10000000_9.png */,
  918. CD46A00C2A0CE2DE009E4C87 /* sticker_20000000_1.png */,
  919. CD46A00D2A0CE2DE009E4C87 /* sticker_20000000_12.png */,
  920. CD46A00E2A0CE2DE009E4C87 /* sticker_30000000_20.png */,
  921. CD46A00F2A0CE2DE009E4C87 /* sticker_30000000_34.png */,
  922. CD46A0102A0CE2DE009E4C87 /* sticker_30000000_6.png */,
  923. CD46A0112A0CE2DE009E4C87 /* sticker_30000000_7.png */,
  924. CD46A0122A0CE2DE009E4C87 /* sticker_30000000_35.png */,
  925. CD46A0132A0CE2DE009E4C87 /* sticker_30000000_21.png */,
  926. CD46A0142A0CE2DE009E4C87 /* sticker_20000000_13.png */,
  927. CD46A0152A0CE2DE009E4C87 /* sticker_20000000_0.png */,
  928. CD46A0162A0CE2DE009E4C87 /* sticker_10000000_8.png */,
  929. );
  930. path = Stickers;
  931. sourceTree = "<group>";
  932. };
  933. CD9551322A664BD400AF6476 /* fonts */ = {
  934. isa = PBXGroup;
  935. children = (
  936. CD9551332A664BD400AF6476 /* Poppins-SemiBoldItalic.otf */,
  937. CD9551342A664BD400AF6476 /* Poppins-ExtraBoldItalic.otf */,
  938. CD9551352A664BD400AF6476 /* SIL Open Font License.txt */,
  939. CD9551362A664BD400AF6476 /* Poppins-ExtraLight.otf */,
  940. CD9551372A664BD400AF6476 /* Poppins-ThinItalic.otf */,
  941. CD9551382A664BD400AF6476 /* Poppins-ExtraLightItalic.otf */,
  942. CD9551392A664BD400AF6476 /* Poppins-Light.otf */,
  943. CD95513A2A664BD400AF6476 /* Poppins-BoldItalic.otf */,
  944. CD95513B2A664BD400AF6476 /* Poppins-Medium.otf */,
  945. CD95513C2A664BD400AF6476 /* Poppins-SemiBold.otf */,
  946. CD95513D2A664BD400AF6476 /* Poppins-Italic.otf */,
  947. CD95513E2A664BD400AF6476 /* Poppins-Thin.otf */,
  948. CD95513F2A664BD400AF6476 /* Poppins-MediumItalic.otf */,
  949. CD9551402A664BD400AF6476 /* Poppins-LightItalic.otf */,
  950. CD9551412A664BD400AF6476 /* Poppins-Bold.otf */,
  951. CD9551422A664BD400AF6476 /* Poppins-Black.otf */,
  952. CD9551432A664BD400AF6476 /* Poppins-BlackItalic.otf */,
  953. CD9551442A664BD400AF6476 /* Poppins-Regular.otf */,
  954. CD9551452A664BD400AF6476 /* Poppins-ExtraBold.otf */,
  955. );
  956. path = fonts;
  957. sourceTree = "<group>";
  958. };
  959. CDB21B2D2BA9998400EC5280 /* Gifs */ = {
  960. isa = PBXGroup;
  961. children = (
  962. CDE50D8E2D630C720094C30D /* pb_typing_chat.gif */,
  963. CD2B01202D43945500C11B20 /* pb_gpt_bot.gif */,
  964. CDB21B2B2BA9998400EC5280 /* pb_def_icon_mode2.gif */,
  965. CDB21B2C2BA9998400EC5280 /* pb_def_icon_mode4.gif */,
  966. );
  967. path = Gifs;
  968. sourceTree = "<group>";
  969. };
  970. CDE3BED82C86E3A000B0BF36 /* Sound */ = {
  971. isa = PBXGroup;
  972. children = (
  973. 12B1D84A2D8806C400313CCA /* pb_call_in_ios.mp3 */,
  974. 12B1D84B2D8806C400313CCA /* pb_call_out_ios.mp3 */,
  975. 1236B6842D81465800A97809 /* pb_call_in_long.mp3 */,
  976. 125363972D8031C30006C3D2 /* pb_call_busy.mp3 */,
  977. CD2585B72D59DA60002AB416 /* Dutifully.mp3 */,
  978. CD2585B82D59DA60002AB416 /* Elegant.mp3 */,
  979. CD2585B92D59DA60002AB416 /* Eventually.mp3 */,
  980. CD2585BA2D59DA60002AB416 /* Hangover.mp3 */,
  981. CD2585BB2D59DA60002AB416 /* Juntos.mp3 */,
  982. CD2585BC2D59DA60002AB416 /* Light_Hearted.mp3 */,
  983. CD2585BD2D59DA60002AB416 /* Magic.mp3 */,
  984. CD2585BE2D59DA60002AB416 /* Nexilis_Message.mp3 */,
  985. CD2585BF2D59DA60002AB416 /* Out_of_Nowhere.mp3 */,
  986. CD2585C02D59DA60002AB416 /* Relax.mp3 */,
  987. CD2585C12D59DA60002AB416 /* Strong_Minded.mp3 */,
  988. CD2585C22D59DA60002AB416 /* Swift_gesture.mp3 */,
  989. CD2585C32D59DA60002AB416 /* Upset.mp3 */,
  990. CDE3BED62C86E3A000B0BF36 /* pb_call_in.mp3 */,
  991. CDE3BED72C86E3A000B0BF36 /* pb_call_out.mp3 */,
  992. );
  993. path = Sound;
  994. sourceTree = "<group>";
  995. };
  996. /* End PBXGroup section */
  997. /* Begin PBXHeadersBuildPhase section */
  998. CD1E6E632A0B7C3600BF871F /* Headers */ = {
  999. isa = PBXHeadersBuildPhase;
  1000. buildActionMask = 2147483647;
  1001. files = (
  1002. CD1E6E792A0B7C3600BF871F /* NexilisLite.h in Headers */,
  1003. );
  1004. runOnlyForDeploymentPostprocessing = 0;
  1005. };
  1006. /* End PBXHeadersBuildPhase section */
  1007. /* Begin PBXNativeTarget section */
  1008. CD1E6E672A0B7C3600BF871F /* NexilisLite */ = {
  1009. isa = PBXNativeTarget;
  1010. buildConfigurationList = CD1E6E7C2A0B7C3600BF871F /* Build configuration list for PBXNativeTarget "NexilisLite" */;
  1011. buildPhases = (
  1012. 850186F3E91AA69B1B6DFCDD /* [CP] Check Pods Manifest.lock */,
  1013. CD1E6E632A0B7C3600BF871F /* Headers */,
  1014. CD1E6E642A0B7C3600BF871F /* Sources */,
  1015. CD1E6E652A0B7C3600BF871F /* Frameworks */,
  1016. CD1E6E662A0B7C3600BF871F /* Resources */,
  1017. CD469E162A0CA6C9009E4C87 /* Embed Frameworks */,
  1018. 5294094EBD3754D063762A08 /* [CP] Copy Pods Resources */,
  1019. );
  1020. buildRules = (
  1021. );
  1022. dependencies = (
  1023. CD469FA52A0CC8D4009E4C87 /* PBXTargetDependency */,
  1024. );
  1025. name = NexilisLite;
  1026. productName = NexilisLite;
  1027. productReference = CD1E6E682A0B7C3600BF871F /* NexilisLite.framework */;
  1028. productType = "com.apple.product-type.framework";
  1029. };
  1030. CD1E6E712A0B7C3600BF871F /* NexilisLiteTests */ = {
  1031. isa = PBXNativeTarget;
  1032. buildConfigurationList = CD1E6E7F2A0B7C3600BF871F /* Build configuration list for PBXNativeTarget "NexilisLiteTests" */;
  1033. buildPhases = (
  1034. 6EB67D7C316C4D8D13B0D8B8 /* [CP] Check Pods Manifest.lock */,
  1035. CD1E6E6E2A0B7C3600BF871F /* Sources */,
  1036. CD1E6E6F2A0B7C3600BF871F /* Frameworks */,
  1037. CD1E6E702A0B7C3600BF871F /* Resources */,
  1038. 624DA386B509DACD62803C0A /* [CP] Embed Pods Frameworks */,
  1039. 6DC0927190C9AC540C38874B /* [CP] Copy Pods Resources */,
  1040. );
  1041. buildRules = (
  1042. );
  1043. dependencies = (
  1044. CD1E6E752A0B7C3600BF871F /* PBXTargetDependency */,
  1045. );
  1046. name = NexilisLiteTests;
  1047. productName = NexilisLiteTests;
  1048. productReference = CD1E6E722A0B7C3600BF871F /* NexilisLiteTests.xctest */;
  1049. productType = "com.apple.product-type.bundle.unit-test";
  1050. };
  1051. CD469F4F2A0CC862009E4C87 /* NexilisLiteResources */ = {
  1052. isa = PBXNativeTarget;
  1053. buildConfigurationList = CD469F512A0CC862009E4C87 /* Build configuration list for PBXNativeTarget "NexilisLiteResources" */;
  1054. buildPhases = (
  1055. CD469F4C2A0CC862009E4C87 /* Sources */,
  1056. CD469F4D2A0CC862009E4C87 /* Frameworks */,
  1057. CD469F4E2A0CC862009E4C87 /* Resources */,
  1058. );
  1059. buildRules = (
  1060. );
  1061. dependencies = (
  1062. );
  1063. name = NexilisLiteResources;
  1064. productName = NexilisLiteResources;
  1065. productReference = CD469F502A0CC862009E4C87 /* NexilisLiteResources.bundle */;
  1066. productType = "com.apple.product-type.bundle";
  1067. };
  1068. /* End PBXNativeTarget section */
  1069. /* Begin PBXProject section */
  1070. CD1E6E5F2A0B7C3600BF871F /* Project object */ = {
  1071. isa = PBXProject;
  1072. attributes = {
  1073. BuildIndependentTargetsInParallel = 1;
  1074. LastSwiftUpdateCheck = 1430;
  1075. LastUpgradeCheck = 1430;
  1076. TargetAttributes = {
  1077. CD1E6E672A0B7C3600BF871F = {
  1078. CreatedOnToolsVersion = 14.3;
  1079. };
  1080. CD1E6E712A0B7C3600BF871F = {
  1081. CreatedOnToolsVersion = 14.3;
  1082. };
  1083. CD469F4F2A0CC862009E4C87 = {
  1084. CreatedOnToolsVersion = 14.3;
  1085. };
  1086. };
  1087. };
  1088. buildConfigurationList = CD1E6E622A0B7C3600BF871F /* Build configuration list for PBXProject "NexilisLite" */;
  1089. compatibilityVersion = "Xcode 14.0";
  1090. developmentRegion = en;
  1091. hasScannedForEncodings = 0;
  1092. knownRegions = (
  1093. en,
  1094. Base,
  1095. id,
  1096. );
  1097. mainGroup = CD1E6E5E2A0B7C3600BF871F;
  1098. productRefGroup = CD1E6E692A0B7C3600BF871F /* Products */;
  1099. projectDirPath = "";
  1100. projectRoot = "";
  1101. targets = (
  1102. CD1E6E672A0B7C3600BF871F /* NexilisLite */,
  1103. CD1E6E712A0B7C3600BF871F /* NexilisLiteTests */,
  1104. CD469F4F2A0CC862009E4C87 /* NexilisLiteResources */,
  1105. );
  1106. };
  1107. /* End PBXProject section */
  1108. /* Begin PBXResourcesBuildPhase section */
  1109. CD1E6E662A0B7C3600BF871F /* Resources */ = {
  1110. isa = PBXResourcesBuildPhase;
  1111. buildActionMask = 2147483647;
  1112. files = (
  1113. CD46A06F2A0CE310009E4C87 /* NexilisLiteResources.bundle in Resources */,
  1114. CD46A06B2A0CE307009E4C87 /* Localizable.strings in Resources */,
  1115. CD46A06C2A0CE307009E4C87 /* Assets.xcassets in Resources */,
  1116. CD46A06D2A0CE307009E4C87 /* PreviewAttachmentImageVideo.xib in Resources */,
  1117. CD46A06E2A0CE307009E4C87 /* Palio.storyboard in Resources */,
  1118. CD637E3D2D9534ED004780FB /* NexilisLite.podspec in Resources */,
  1119. );
  1120. runOnlyForDeploymentPostprocessing = 0;
  1121. };
  1122. CD1E6E702A0B7C3600BF871F /* Resources */ = {
  1123. isa = PBXResourcesBuildPhase;
  1124. buildActionMask = 2147483647;
  1125. files = (
  1126. );
  1127. runOnlyForDeploymentPostprocessing = 0;
  1128. };
  1129. CD469F4E2A0CC862009E4C87 /* Resources */ = {
  1130. isa = PBXResourcesBuildPhase;
  1131. buildActionMask = 2147483647;
  1132. files = (
  1133. CD2585D22D59DA79002AB416 /* pb_call_out.mp3 in Resources */,
  1134. CD46A0702A0CE320009E4C87 /* sticker_10000000_5.png in Resources */,
  1135. CD46A0712A0CE320009E4C87 /* sticker_20000000_22.png in Resources */,
  1136. CD2585C42D59DA60002AB416 /* Dutifully.mp3 in Resources */,
  1137. CD2585C52D59DA60002AB416 /* Juntos.mp3 in Resources */,
  1138. CD2585C62D59DA60002AB416 /* Light_Hearted.mp3 in Resources */,
  1139. CD2585C72D59DA60002AB416 /* Nexilis_Message.mp3 in Resources */,
  1140. CD2585C82D59DA60002AB416 /* Out_of_Nowhere.mp3 in Resources */,
  1141. CD2585C92D59DA60002AB416 /* Swift_gesture.mp3 in Resources */,
  1142. CD2585CA2D59DA60002AB416 /* Relax.mp3 in Resources */,
  1143. CD2585CB2D59DA60002AB416 /* Eventually.mp3 in Resources */,
  1144. CD2585CC2D59DA60002AB416 /* Upset.mp3 in Resources */,
  1145. 12B1D84E2D8806C400313CCA /* pb_call_in_ios.mp3 in Resources */,
  1146. 12B1D84F2D8806C400313CCA /* pb_call_out_ios.mp3 in Resources */,
  1147. 125363982D8031C30006C3D2 /* pb_call_busy.mp3 in Resources */,
  1148. CD2585CD2D59DA60002AB416 /* Elegant.mp3 in Resources */,
  1149. CD2585CE2D59DA60002AB416 /* Strong_Minded.mp3 in Resources */,
  1150. CD2585CF2D59DA60002AB416 /* Magic.mp3 in Resources */,
  1151. CD2585D02D59DA60002AB416 /* Hangover.mp3 in Resources */,
  1152. CD46A0722A0CE320009E4C87 /* sticker_30000000_38.png in Resources */,
  1153. CD46A0732A0CE320009E4C87 /* sticker_30000000_10.png in Resources */,
  1154. CD46A0742A0CE320009E4C87 /* sticker_30000000_11.png in Resources */,
  1155. CD46A0752A0CE320009E4C87 /* sticker_30000000_39.png in Resources */,
  1156. CD46A0762A0CE320009E4C87 /* sticker_20000000_23.png in Resources */,
  1157. CD95515C2A664BDA00AF6476 /* Poppins-BlackItalic.otf in Resources */,
  1158. CD46A0772A0CE320009E4C87 /* sticker_10000000_4.png in Resources */,
  1159. CD9551612A664BDB00AF6476 /* Poppins-Black.otf in Resources */,
  1160. CD46A0782A0CE320009E4C87 /* sticker_10000000_6.png in Resources */,
  1161. CD46A0792A0CE320009E4C87 /* sticker_20000000_21.png in Resources */,
  1162. CD46A07A2A0CE320009E4C87 /* sticker_30000000_13.png in Resources */,
  1163. CD46A07B2A0CE320009E4C87 /* sticker_30000000_9.png in Resources */,
  1164. CD46A07C2A0CE320009E4C87 /* sticker_30000000_8.png in Resources */,
  1165. CD46A07D2A0CE320009E4C87 /* sticker_30000000_12.png in Resources */,
  1166. CD46A07E2A0CE320009E4C87 /* sticker_20000000_20.png in Resources */,
  1167. CD95515B2A664BDA00AF6476 /* Poppins-Bold.otf in Resources */,
  1168. CD46A07F2A0CE320009E4C87 /* sticker_10000000_7.png in Resources */,
  1169. CD46A0802A0CE320009E4C87 /* sticker_10000000_3.png in Resources */,
  1170. CD95515E2A664BDA00AF6476 /* SIL Open Font License.txt in Resources */,
  1171. CD46A0812A0CE320009E4C87 /* sticker_20000000_18.png in Resources */,
  1172. CD46A0822A0CE320009E4C87 /* sticker_30000000_16.png in Resources */,
  1173. CD46A0832A0CE320009E4C87 /* sticker_30000000_17.png in Resources */,
  1174. CD46A0842A0CE320009E4C87 /* sticker_20000000_19.png in Resources */,
  1175. CD46A0852A0CE320009E4C87 /* sticker_10000000_2.png in Resources */,
  1176. CD46A0862A0CE320009E4C87 /* sticker_10000000_0.png in Resources */,
  1177. CD95516B2A664BDB00AF6476 /* Poppins-ExtraLightItalic.otf in Resources */,
  1178. CD46A0872A0CE320009E4C87 /* sticker_20000000_8.png in Resources */,
  1179. CD46A0882A0CE320009E4C87 /* sticker_30000000_15.png in Resources */,
  1180. CD46A0892A0CE320009E4C87 /* sticker_30000000_29.png in Resources */,
  1181. CD46A08A2A0CE320009E4C87 /* sticker_30000000_28.png in Resources */,
  1182. CD46A08B2A0CE320009E4C87 /* sticker_30000000_14.png in Resources */,
  1183. CD46A08C2A0CE320009E4C87 /* sticker_20000000_9.png in Resources */,
  1184. CD2B01212D43945500C11B20 /* pb_gpt_bot.gif in Resources */,
  1185. CD46A08D2A0CE320009E4C87 /* sticker_10000000_1.png in Resources */,
  1186. CD46A08E2A0CE320009E4C87 /* sticker_20000000_17.png in Resources */,
  1187. CD46A08F2A0CE320009E4C87 /* sticker_20000000_4.png in Resources */,
  1188. CD46A0902A0CE320009E4C87 /* sticker_30000000_19.png in Resources */,
  1189. CD46A0912A0CE320009E4C87 /* sticker_30000000_25.png in Resources */,
  1190. CD46A0922A0CE320009E4C87 /* sticker_30000000_31.png in Resources */,
  1191. CD46A0932A0CE320009E4C87 /* sticker_30000000_3.png in Resources */,
  1192. CD46A0942A0CE320009E4C87 /* sticker_30000000_2.png in Resources */,
  1193. CD9551622A664BDB00AF6476 /* Poppins-ExtraLight.otf in Resources */,
  1194. CD95516A2A664BDB00AF6476 /* Poppins-BoldItalic.otf in Resources */,
  1195. CD95515F2A664BDB00AF6476 /* Poppins-SemiBold.otf in Resources */,
  1196. CD46A0952A0CE320009E4C87 /* sticker_30000000_30.png in Resources */,
  1197. CD9551682A664BDB00AF6476 /* Poppins-ThinItalic.otf in Resources */,
  1198. CD9551662A664BDB00AF6476 /* Poppins-Medium.otf in Resources */,
  1199. CD46A0962A0CE320009E4C87 /* sticker_30000000_24.png in Resources */,
  1200. CD46A0972A0CE320009E4C87 /* sticker_30000000_18.png in Resources */,
  1201. CD46A0982A0CE320009E4C87 /* sticker_20000000_5.png in Resources */,
  1202. CD46A0992A0CE320009E4C87 /* sticker_20000000_16.png in Resources */,
  1203. CDE50D8F2D630C720094C30D /* pb_typing_chat.gif in Resources */,
  1204. CD95515A2A664BDA00AF6476 /* Poppins-MediumItalic.otf in Resources */,
  1205. CD46A09A2A0CE320009E4C87 /* sticker_10000000_11.png in Resources */,
  1206. CD46A09B2A0CE320009E4C87 /* sticker_20000000_14.png in Resources */,
  1207. CD46A09C2A0CE320009E4C87 /* sticker_20000000_7.png in Resources */,
  1208. CD46A09D2A0CE320009E4C87 /* sticker_30000000_32.png in Resources */,
  1209. CD9551672A664BDB00AF6476 /* Poppins-ExtraBold.otf in Resources */,
  1210. CD46A09E2A0CE320009E4C87 /* sticker_30000000_26.png in Resources */,
  1211. CD46A09F2A0CE320009E4C87 /* sticker_30000000_0.png in Resources */,
  1212. CD46A0A02A0CE320009E4C87 /* sticker_30000000_1.png in Resources */,
  1213. CD9551592A664BDA00AF6476 /* Poppins-LightItalic.otf in Resources */,
  1214. CD46A0A12A0CE320009E4C87 /* sticker_30000000_27.png in Resources */,
  1215. CD46A0A22A0CE320009E4C87 /* sticker_30000000_33.png in Resources */,
  1216. CD46A0A32A0CE320009E4C87 /* sticker_20000000_6.png in Resources */,
  1217. CD9551652A664BDB00AF6476 /* Poppins-Thin.otf in Resources */,
  1218. CD46A0A42A0CE320009E4C87 /* sticker_20000000_15.png in Resources */,
  1219. CD9551642A664BDB00AF6476 /* Poppins-Italic.otf in Resources */,
  1220. CD46A0A52A0CE320009E4C87 /* sticker_10000000_10.png in Resources */,
  1221. CD46A0A62A0CE320009E4C87 /* sticker_20000000_2.png in Resources */,
  1222. CD46A0A72A0CE320009E4C87 /* sticker_20000000_11.png in Resources */,
  1223. CD9551632A664BDB00AF6476 /* Poppins-Light.otf in Resources */,
  1224. CD95515D2A664BDA00AF6476 /* Poppins-Regular.otf in Resources */,
  1225. CD46A0A82A0CE320009E4C87 /* sticker_30000000_37.png in Resources */,
  1226. CD46A0A92A0CE320009E4C87 /* sticker_30000000_23.png in Resources */,
  1227. CD46A0AA2A0CE320009E4C87 /* sticker_30000000_5.png in Resources */,
  1228. CD46A0AB2A0CE320009E4C87 /* sticker_30000000_4.png in Resources */,
  1229. CDB21B2F2BA9998400EC5280 /* pb_def_icon_mode4.gif in Resources */,
  1230. CD46A0AC2A0CE320009E4C87 /* sticker_30000000_22.png in Resources */,
  1231. CD46A0AD2A0CE320009E4C87 /* sticker_30000000_36.png in Resources */,
  1232. 12CB2E472D82F5660071E594 /* Assets.xcassets in Resources */,
  1233. CD46A0AE2A0CE320009E4C87 /* sticker_20000000_10.png in Resources */,
  1234. CD46A0AF2A0CE320009E4C87 /* sticker_20000000_3.png in Resources */,
  1235. CD46A0B02A0CE320009E4C87 /* sticker_10000000_9.png in Resources */,
  1236. CD46A0B12A0CE320009E4C87 /* sticker_20000000_1.png in Resources */,
  1237. CD46A0B22A0CE320009E4C87 /* sticker_20000000_12.png in Resources */,
  1238. CD46A0B32A0CE320009E4C87 /* sticker_30000000_20.png in Resources */,
  1239. 1236B6852D81465800A97809 /* pb_call_in_long.mp3 in Resources */,
  1240. CD9551602A664BDB00AF6476 /* Poppins-ExtraBoldItalic.otf in Resources */,
  1241. CD46A0B42A0CE320009E4C87 /* sticker_30000000_34.png in Resources */,
  1242. CDB21B2E2BA9998400EC5280 /* pb_def_icon_mode2.gif in Resources */,
  1243. CD46A0B52A0CE320009E4C87 /* sticker_30000000_6.png in Resources */,
  1244. CD46A0B62A0CE320009E4C87 /* sticker_30000000_7.png in Resources */,
  1245. CD46A0B72A0CE320009E4C87 /* sticker_30000000_35.png in Resources */,
  1246. CD9551692A664BDB00AF6476 /* Poppins-SemiBoldItalic.otf in Resources */,
  1247. CD46A0B82A0CE320009E4C87 /* sticker_30000000_21.png in Resources */,
  1248. CD46A0B92A0CE320009E4C87 /* sticker_20000000_13.png in Resources */,
  1249. CD46A0BA2A0CE320009E4C87 /* sticker_20000000_0.png in Resources */,
  1250. CD46A0BB2A0CE320009E4C87 /* sticker_10000000_8.png in Resources */,
  1251. CD2585D12D59DA73002AB416 /* pb_call_in.mp3 in Resources */,
  1252. );
  1253. runOnlyForDeploymentPostprocessing = 0;
  1254. };
  1255. /* End PBXResourcesBuildPhase section */
  1256. /* Begin PBXShellScriptBuildPhase section */
  1257. 5294094EBD3754D063762A08 /* [CP] Copy Pods Resources */ = {
  1258. isa = PBXShellScriptBuildPhase;
  1259. buildActionMask = 2147483647;
  1260. files = (
  1261. );
  1262. inputFileListPaths = (
  1263. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite/Pods-NexilisLite-resources-${CONFIGURATION}-input-files.xcfilelist",
  1264. );
  1265. inputPaths = (
  1266. );
  1267. name = "[CP] Copy Pods Resources";
  1268. outputFileListPaths = (
  1269. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite/Pods-NexilisLite-resources-${CONFIGURATION}-output-files.xcfilelist",
  1270. );
  1271. outputPaths = (
  1272. );
  1273. runOnlyForDeploymentPostprocessing = 0;
  1274. shellPath = /bin/sh;
  1275. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NexilisLite/Pods-NexilisLite-resources.sh\"\n";
  1276. showEnvVarsInLog = 0;
  1277. };
  1278. 624DA386B509DACD62803C0A /* [CP] Embed Pods Frameworks */ = {
  1279. isa = PBXShellScriptBuildPhase;
  1280. buildActionMask = 2147483647;
  1281. files = (
  1282. );
  1283. inputFileListPaths = (
  1284. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  1285. );
  1286. inputPaths = (
  1287. );
  1288. name = "[CP] Embed Pods Frameworks";
  1289. outputFileListPaths = (
  1290. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  1291. );
  1292. outputPaths = (
  1293. );
  1294. runOnlyForDeploymentPostprocessing = 0;
  1295. shellPath = /bin/sh;
  1296. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-frameworks.sh\"\n";
  1297. showEnvVarsInLog = 0;
  1298. };
  1299. 6DC0927190C9AC540C38874B /* [CP] Copy Pods Resources */ = {
  1300. isa = PBXShellScriptBuildPhase;
  1301. buildActionMask = 2147483647;
  1302. files = (
  1303. );
  1304. inputFileListPaths = (
  1305. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-resources-${CONFIGURATION}-input-files.xcfilelist",
  1306. );
  1307. inputPaths = (
  1308. );
  1309. name = "[CP] Copy Pods Resources";
  1310. outputFileListPaths = (
  1311. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-resources-${CONFIGURATION}-output-files.xcfilelist",
  1312. );
  1313. outputPaths = (
  1314. );
  1315. runOnlyForDeploymentPostprocessing = 0;
  1316. shellPath = /bin/sh;
  1317. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-resources.sh\"\n";
  1318. showEnvVarsInLog = 0;
  1319. };
  1320. 6EB67D7C316C4D8D13B0D8B8 /* [CP] Check Pods Manifest.lock */ = {
  1321. isa = PBXShellScriptBuildPhase;
  1322. buildActionMask = 2147483647;
  1323. files = (
  1324. );
  1325. inputFileListPaths = (
  1326. );
  1327. inputPaths = (
  1328. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1329. "${PODS_ROOT}/Manifest.lock",
  1330. );
  1331. name = "[CP] Check Pods Manifest.lock";
  1332. outputFileListPaths = (
  1333. );
  1334. outputPaths = (
  1335. "$(DERIVED_FILE_DIR)/Pods-NexilisLite-NexilisLiteTests-checkManifestLockResult.txt",
  1336. );
  1337. runOnlyForDeploymentPostprocessing = 0;
  1338. shellPath = /bin/sh;
  1339. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  1340. showEnvVarsInLog = 0;
  1341. };
  1342. 850186F3E91AA69B1B6DFCDD /* [CP] Check Pods Manifest.lock */ = {
  1343. isa = PBXShellScriptBuildPhase;
  1344. buildActionMask = 2147483647;
  1345. files = (
  1346. );
  1347. inputFileListPaths = (
  1348. );
  1349. inputPaths = (
  1350. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1351. "${PODS_ROOT}/Manifest.lock",
  1352. );
  1353. name = "[CP] Check Pods Manifest.lock";
  1354. outputFileListPaths = (
  1355. );
  1356. outputPaths = (
  1357. "$(DERIVED_FILE_DIR)/Pods-NexilisLite-checkManifestLockResult.txt",
  1358. );
  1359. runOnlyForDeploymentPostprocessing = 0;
  1360. shellPath = /bin/sh;
  1361. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  1362. showEnvVarsInLog = 0;
  1363. };
  1364. /* End PBXShellScriptBuildPhase section */
  1365. /* Begin PBXSourcesBuildPhase section */
  1366. CD1E6E642A0B7C3600BF871F /* Sources */ = {
  1367. isa = PBXSourcesBuildPhase;
  1368. buildActionMask = 2147483647;
  1369. files = (
  1370. CD1E72272A0BA86100BF871F /* QmeraStreamingViewController.swift in Sources */,
  1371. CD1E72522A0BA86100BF871F /* ImageVideoPicker.swift in Sources */,
  1372. CD1E724E2A0BA86100BF871F /* VerifyEmail.swift in Sources */,
  1373. CDDF46762A2DD81300049A19 /* SeminarViewController.swift in Sources */,
  1374. CD1E721A2A0BA86100BF871F /* NotifSound.swift in Sources */,
  1375. CD1E724F2A0BA86100BF871F /* SetInternalCSAccount.swift in Sources */,
  1376. CDA461222AB99E09001CD010 /* ConfigureFloatingButton.swift in Sources */,
  1377. 12C36CEB2D0299630095BEC1 /* SecureFolderView.swift in Sources */,
  1378. CD1E721C2A0BA86100BF871F /* ContactCallViewController.swift in Sources */,
  1379. CD5A73AE2A77642D000541A5 /* MessageInfo.swift in Sources */,
  1380. CD1E723B2A0BA86100BF871F /* GroupDescViewController.swift in Sources */,
  1381. CD1E725C2A0BA86100BF871F /* Utils.swift in Sources */,
  1382. CD1E72232A0BA86100BF871F /* EditorGroup.swift in Sources */,
  1383. CD1E72452A0BA86100BF871F /* GroupNameViewController.swift in Sources */,
  1384. CD9829B72A3C07CB009F6743 /* SeminarListViewController.swift in Sources */,
  1385. 1258BCB62D82D71200EFF5BD /* ChatWallpaperViewController.swift in Sources */,
  1386. CD1E72572A0BA86100BF871F /* GroupMemberViewController.swift in Sources */,
  1387. CD1E72582A0BA86100BF871F /* SetOfficerBNI.swift in Sources */,
  1388. CD1E72212A0BA86100BF871F /* EditorPersonal.swift in Sources */,
  1389. CD46A0C52A0D0D5D009E4C87 /* MyArchive.swift in Sources */,
  1390. CD1E72192A0BA86100BF871F /* Group.swift in Sources */,
  1391. CD1E722C2A0BA86100BF871F /* CallManager.swift in Sources */,
  1392. CD1E72322A0BA86100BF871F /* QmeraCallContactViewController.swift in Sources */,
  1393. CD1E72382A0BA86100BF871F /* GroupCreateViewController.swift in Sources */,
  1394. CD1E723E2A0BA86100BF871F /* SignUpSignIn.swift in Sources */,
  1395. CD1E724D2A0BA86100BF871F /* TypeViewController.swift in Sources */,
  1396. CD1E720E2A0BA86100BF871F /* Network.swift in Sources */,
  1397. CD1E723C2A0BA86100BF871F /* HistoryBroadcastViewController.swift in Sources */,
  1398. CD1E72112A0BA86100BF871F /* WhiteboardReceiver.swift in Sources */,
  1399. CD1E725F2A0BA86100BF871F /* CoreMessage_TMessageBank.swift in Sources */,
  1400. CD1E72222A0BA86100BF871F /* FormEditor.swift in Sources */,
  1401. 1241AEBC2D017E8C0088175A /* MasterKeyUtil.swift in Sources */,
  1402. 1241AEBD2D017E8C0088175A /* FileEncryption.swift in Sources */,
  1403. CD1E725A2A0BA86100BF871F /* ScannerViewController.swift in Sources */,
  1404. CD1E72462A0BA86100BF871F /* GroupTopicViewController.swift in Sources */,
  1405. CD1E72472A0BA86100BF871F /* SettingTableViewController.swift in Sources */,
  1406. CD1E72172A0BA86100BF871F /* CategoryCC.swift in Sources */,
  1407. CD21CA5B2E0AA0C600DA6B77 /* CommunityModel.swift in Sources */,
  1408. CD1E72552A0BA86100BF871F /* BroadcastMembersTableViewController.swift in Sources */,
  1409. CD1E72152A0BA86100BF871F /* Chat.swift in Sources */,
  1410. CD1E72502A0BA86100BF871F /* BroadcastVariantViewController.swift in Sources */,
  1411. CD1E72562A0BA86100BF871F /* BroadcastViewController.swift in Sources */,
  1412. CD2B01242D43961E00C11B20 /* QRProfileController.swift in Sources */,
  1413. CD2B01252D43961E00C11B20 /* QRScannerController.swift in Sources */,
  1414. CD1E72252A0BA86100BF871F /* CustomTextView.swift in Sources */,
  1415. CD21CA592E0AA0A200DA6B77 /* SignInOption.swift in Sources */,
  1416. CD1E72602A0BA86100BF871F /* Callback.swift in Sources */,
  1417. CD1E724A2A0BA86100BF871F /* HistoryCCViewController.swift in Sources */,
  1418. CD1E722A2A0BA86100BF871F /* StreamingViewController.swift in Sources */,
  1419. CD1E72132A0BA86100BF871F /* Database.swift in Sources */,
  1420. CD5A73AF2A77642D000541A5 /* ListGroupImages.swift in Sources */,
  1421. CD1E720F2A0BA86100BF871F /* Download.swift in Sources */,
  1422. CD1E725D2A0BA86100BF871F /* WhiteboardDelegate.swift in Sources */,
  1423. CD1E721B2A0BA86100BF871F /* Nexilis.swift in Sources */,
  1424. CD1E72102A0BA86100BF871F /* Extension.swift in Sources */,
  1425. CD1E724C2A0BA86100BF871F /* NotificationSound.swift in Sources */,
  1426. CD63125E2DA925960088964E /* Group_NM.swift in Sources */,
  1427. CD63125F2DA925960088964E /* CallModel.swift in Sources */,
  1428. CD6312592DA925260088964E /* CallLogVC.swift in Sources */,
  1429. CD63125B2DA925320088964E /* ChatWALikeVC.swift in Sources */,
  1430. CDDF467A2A2EF0A700049A19 /* ScreenSharingViewController.swift in Sources */,
  1431. CD1E72402A0BA86100BF871F /* ChangeNamePassswordViewController.swift in Sources */,
  1432. CD1E722E2A0BA86100BF871F /* AudioViewController.swift in Sources */,
  1433. CD21CA552E0AA07700DA6B77 /* CommunityNew.swift in Sources */,
  1434. CD21CA562E0AA07700DA6B77 /* ArchivedChatView.swift in Sources */,
  1435. CD21CA572E0AA07700DA6B77 /* CommunityList.swift in Sources */,
  1436. CD1E725E2A0BA86100BF871F /* TMessage.swift in Sources */,
  1437. CD1E72422A0BA86100BF871F /* ChangeDeviceViewController.swift in Sources */,
  1438. CD1E725B2A0BA86100BF871F /* AudienceViewController.swift in Sources */,
  1439. CD1E72532A0BA86100BF871F /* BackupRestoreView.swift in Sources */,
  1440. CD1E72342A0BA86100BF871F /* QmeraVideoViewController.swift in Sources */,
  1441. CD1E721D2A0BA86100BF871F /* WorkingAreaPicker.swift in Sources */,
  1442. CD1E72122A0BA86100BF871F /* CoreMessage_TMessageKey.swift in Sources */,
  1443. CDDF46752A2DD81300049A19 /* CreateSeminarViewController.swift in Sources */,
  1444. CD1E722D2A0BA86100BF871F /* QmeraAudioConference.swift in Sources */,
  1445. CD1E72432A0BA86100BF871F /* DocumentPicker.swift in Sources */,
  1446. CD1E72352A0BA86100BF871F /* VideoViewController.swift in Sources */,
  1447. CD1E722B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift in Sources */,
  1448. CD1E72612A0BA86100BF871F /* CoreMessage_TMessageCode.swift in Sources */,
  1449. CD1E72242A0BA86100BF871F /* PreviewAttachmentImageVideo.swift in Sources */,
  1450. CD1E72142A0BA86100BF871F /* Model.swift in Sources */,
  1451. CD1E723A2A0BA86100BF871F /* QRScannerView.swift in Sources */,
  1452. CD1E72392A0BA86100BF871F /* BroadcastMembersTableViewCell.swift in Sources */,
  1453. CD1E72182A0BA86100BF871F /* WorkingArea.swift in Sources */,
  1454. CD1E724B2A0BA86100BF871F /* ChangeNameTableViewController.swift in Sources */,
  1455. CD1E72592A0BA86100BF871F /* AddFriendTableViewController.swift in Sources */,
  1456. CD1E72332A0BA86100BF871F /* WhiteboardViewController.swift in Sources */,
  1457. CD1E72632A0BA86100BF871F /* CoreMessage_TMessageUtil.swift in Sources */,
  1458. CD1E6E6D2A0B7C3600BF871F /* NexilisLite.docc in Sources */,
  1459. CD1E72542A0BA86100BF871F /* ProfileViewController.swift in Sources */,
  1460. CD1E720B2A0BA86100BF871F /* FloatingButton.swift in Sources */,
  1461. CD43C80C2D687DBF00297C6E /* CreateConferenceCallController.swift in Sources */,
  1462. CD43C80D2D687DBF00297C6E /* VideoConferenceViewController.swift in Sources */,
  1463. CD1E72412A0BA86100BF871F /* ContactChatViewController.swift in Sources */,
  1464. CD1E72082A0BA86100BF871F /* Units.swift in Sources */,
  1465. CD1E720C2A0BA86100BF871F /* Whiteboard.swift in Sources */,
  1466. CD1E72312A0BA86100BF871F /* QmeraAudioViewController.swift in Sources */,
  1467. CD1E721F2A0BA86100BF871F /* EditorStarMessages.swift in Sources */,
  1468. CD1E72442A0BA86100BF871F /* ChangePasswordViewController.swift in Sources */,
  1469. CD1E72072A0BA86100BF871F /* WhiteboardCanvas.swift in Sources */,
  1470. CD1E721E2A0BA86100BF871F /* BNIBookingWebView.swift in Sources */,
  1471. CD1E72482A0BA86100BF871F /* BroadcastModeViewController.swift in Sources */,
  1472. CD1E72492A0BA86100BF871F /* BackupRestoreOption.swift in Sources */,
  1473. CD1E723D2A0BA86100BF871F /* CheckConnection.swift in Sources */,
  1474. CD1E72262A0BA86100BF871F /* QmeraGroupChooserViewController.swift in Sources */,
  1475. CD1E72372A0BA86100BF871F /* GroupView.swift in Sources */,
  1476. CD7054EA2AD39DE2003741BF /* ChatGPTBotView.swift in Sources */,
  1477. CD1E72622A0BA86100BF871F /* IncomingThread.swift in Sources */,
  1478. CD1E72292A0BA86100BF871F /* QmeraUserChooserViewController.swift in Sources */,
  1479. CD1E723F2A0BA86100BF871F /* GroupDetailViewController.swift in Sources */,
  1480. CD1E72282A0BA86100BF871F /* CreateViewController.swift in Sources */,
  1481. CD1E72162A0BA86100BF871F /* User.swift in Sources */,
  1482. CD1E720A2A0BA86100BF871F /* APIS.swift in Sources */,
  1483. CD1E72062A0BA86100BF871F /* OutgoingThread.swift in Sources */,
  1484. CD1E722F2A0BA86100BF871F /* ProfileView.swift in Sources */,
  1485. CD1E720D2A0BA86100BF871F /* InquiryThread.swift in Sources */,
  1486. );
  1487. runOnlyForDeploymentPostprocessing = 0;
  1488. };
  1489. CD1E6E6E2A0B7C3600BF871F /* Sources */ = {
  1490. isa = PBXSourcesBuildPhase;
  1491. buildActionMask = 2147483647;
  1492. files = (
  1493. CD1E6E782A0B7C3600BF871F /* NexilisLiteTests.swift in Sources */,
  1494. );
  1495. runOnlyForDeploymentPostprocessing = 0;
  1496. };
  1497. CD469F4C2A0CC862009E4C87 /* Sources */ = {
  1498. isa = PBXSourcesBuildPhase;
  1499. buildActionMask = 2147483647;
  1500. files = (
  1501. );
  1502. runOnlyForDeploymentPostprocessing = 0;
  1503. };
  1504. /* End PBXSourcesBuildPhase section */
  1505. /* Begin PBXTargetDependency section */
  1506. CD1E6E752A0B7C3600BF871F /* PBXTargetDependency */ = {
  1507. isa = PBXTargetDependency;
  1508. target = CD1E6E672A0B7C3600BF871F /* NexilisLite */;
  1509. targetProxy = CD1E6E742A0B7C3600BF871F /* PBXContainerItemProxy */;
  1510. };
  1511. CD469FA52A0CC8D4009E4C87 /* PBXTargetDependency */ = {
  1512. isa = PBXTargetDependency;
  1513. target = CD469F4F2A0CC862009E4C87 /* NexilisLiteResources */;
  1514. targetProxy = CD469FA42A0CC8D4009E4C87 /* PBXContainerItemProxy */;
  1515. };
  1516. /* End PBXTargetDependency section */
  1517. /* Begin PBXVariantGroup section */
  1518. CD469FC82A0CE2DE009E4C87 /* Localizable.strings */ = {
  1519. isa = PBXVariantGroup;
  1520. children = (
  1521. CD469FC92A0CE2DE009E4C87 /* en */,
  1522. CD46A0192A0CE2DE009E4C87 /* id */,
  1523. );
  1524. name = Localizable.strings;
  1525. sourceTree = "<group>";
  1526. };
  1527. /* End PBXVariantGroup section */
  1528. /* Begin XCBuildConfiguration section */
  1529. CD1E6E7A2A0B7C3600BF871F /* Debug */ = {
  1530. isa = XCBuildConfiguration;
  1531. buildSettings = {
  1532. ALWAYS_SEARCH_USER_PATHS = NO;
  1533. BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
  1534. CLANG_ANALYZER_NONNULL = YES;
  1535. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1536. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  1537. CLANG_ENABLE_MODULES = YES;
  1538. CLANG_ENABLE_OBJC_ARC = YES;
  1539. CLANG_ENABLE_OBJC_WEAK = YES;
  1540. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1541. CLANG_WARN_BOOL_CONVERSION = YES;
  1542. CLANG_WARN_COMMA = YES;
  1543. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1544. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1545. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1546. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1547. CLANG_WARN_EMPTY_BODY = YES;
  1548. CLANG_WARN_ENUM_CONVERSION = YES;
  1549. CLANG_WARN_INFINITE_RECURSION = YES;
  1550. CLANG_WARN_INT_CONVERSION = YES;
  1551. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1552. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1553. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1554. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1555. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1556. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1557. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1558. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1559. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1560. CLANG_WARN_UNREACHABLE_CODE = YES;
  1561. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1562. COPY_PHASE_STRIP = NO;
  1563. CURRENT_PROJECT_VERSION = 1;
  1564. DEBUG_INFORMATION_FORMAT = dwarf;
  1565. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1566. ENABLE_TESTABILITY = YES;
  1567. GCC_C_LANGUAGE_STANDARD = gnu11;
  1568. GCC_DYNAMIC_NO_PIC = NO;
  1569. GCC_NO_COMMON_BLOCKS = YES;
  1570. GCC_OPTIMIZATION_LEVEL = 0;
  1571. GCC_PREPROCESSOR_DEFINITIONS = (
  1572. "DEBUG=1",
  1573. "$(inherited)",
  1574. );
  1575. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1576. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1577. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1578. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1579. GCC_WARN_UNUSED_FUNCTION = YES;
  1580. GCC_WARN_UNUSED_VARIABLE = YES;
  1581. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1582. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  1583. MTL_FAST_MATH = YES;
  1584. ONLY_ACTIVE_ARCH = YES;
  1585. SDKROOT = iphoneos;
  1586. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  1587. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  1588. VERSIONING_SYSTEM = "apple-generic";
  1589. VERSION_INFO_PREFIX = "";
  1590. };
  1591. name = Debug;
  1592. };
  1593. CD1E6E7B2A0B7C3600BF871F /* Release */ = {
  1594. isa = XCBuildConfiguration;
  1595. buildSettings = {
  1596. ALWAYS_SEARCH_USER_PATHS = NO;
  1597. BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
  1598. CLANG_ANALYZER_NONNULL = YES;
  1599. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1600. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  1601. CLANG_ENABLE_MODULES = YES;
  1602. CLANG_ENABLE_OBJC_ARC = YES;
  1603. CLANG_ENABLE_OBJC_WEAK = YES;
  1604. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1605. CLANG_WARN_BOOL_CONVERSION = YES;
  1606. CLANG_WARN_COMMA = YES;
  1607. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1608. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1609. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1610. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1611. CLANG_WARN_EMPTY_BODY = YES;
  1612. CLANG_WARN_ENUM_CONVERSION = YES;
  1613. CLANG_WARN_INFINITE_RECURSION = YES;
  1614. CLANG_WARN_INT_CONVERSION = YES;
  1615. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1616. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1617. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1618. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1619. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1620. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1621. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1622. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1623. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1624. CLANG_WARN_UNREACHABLE_CODE = YES;
  1625. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1626. COPY_PHASE_STRIP = NO;
  1627. CURRENT_PROJECT_VERSION = 1;
  1628. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1629. ENABLE_NS_ASSERTIONS = NO;
  1630. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1631. GCC_C_LANGUAGE_STANDARD = gnu11;
  1632. GCC_NO_COMMON_BLOCKS = YES;
  1633. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1634. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1635. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1636. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1637. GCC_WARN_UNUSED_FUNCTION = YES;
  1638. GCC_WARN_UNUSED_VARIABLE = YES;
  1639. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1640. MTL_ENABLE_DEBUG_INFO = NO;
  1641. MTL_FAST_MATH = YES;
  1642. SDKROOT = iphoneos;
  1643. SWIFT_COMPILATION_MODE = wholemodule;
  1644. SWIFT_OPTIMIZATION_LEVEL = "-O";
  1645. VALIDATE_PRODUCT = YES;
  1646. VERSIONING_SYSTEM = "apple-generic";
  1647. VERSION_INFO_PREFIX = "";
  1648. };
  1649. name = Release;
  1650. };
  1651. CD1E6E7D2A0B7C3600BF871F /* Debug */ = {
  1652. isa = XCBuildConfiguration;
  1653. baseConfigurationReference = A5C9F493B799D97510AECB02 /* Pods-NexilisLite.debug.xcconfig */;
  1654. buildSettings = {
  1655. BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
  1656. CODE_SIGN_STYLE = Automatic;
  1657. CURRENT_PROJECT_VERSION = 1;
  1658. DEFINES_MODULE = YES;
  1659. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1660. DYLIB_COMPATIBILITY_VERSION = 1;
  1661. DYLIB_CURRENT_VERSION = 1;
  1662. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1663. ENABLE_MODULE_VERIFIER = YES;
  1664. FRAMEWORK_SEARCH_PATHS = (
  1665. "$(inherited)",
  1666. "$(PROJECT_DIR)",
  1667. );
  1668. GENERATE_INFOPLIST_FILE = YES;
  1669. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1670. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1671. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1672. LD_RUNPATH_SEARCH_PATHS = (
  1673. "$(inherited)",
  1674. "@executable_path/Frameworks",
  1675. "@loader_path/Frameworks",
  1676. );
  1677. MARKETING_VERSION = 1.0;
  1678. MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
  1679. MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20";
  1680. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLite;
  1681. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  1682. SKIP_INSTALL = NO;
  1683. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  1684. SUPPORTS_MACCATALYST = NO;
  1685. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  1686. SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
  1687. SWIFT_EMIT_LOC_STRINGS = YES;
  1688. SWIFT_VERSION = 5.0;
  1689. TARGETED_DEVICE_FAMILY = 1;
  1690. };
  1691. name = Debug;
  1692. };
  1693. CD1E6E7E2A0B7C3600BF871F /* Release */ = {
  1694. isa = XCBuildConfiguration;
  1695. baseConfigurationReference = 5E1F6A2F460CE08324778A10 /* Pods-NexilisLite.release.xcconfig */;
  1696. buildSettings = {
  1697. BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
  1698. CODE_SIGN_STYLE = Automatic;
  1699. CURRENT_PROJECT_VERSION = 1;
  1700. DEFINES_MODULE = YES;
  1701. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1702. DYLIB_COMPATIBILITY_VERSION = 1;
  1703. DYLIB_CURRENT_VERSION = 1;
  1704. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1705. ENABLE_MODULE_VERIFIER = YES;
  1706. FRAMEWORK_SEARCH_PATHS = (
  1707. "$(inherited)",
  1708. "$(PROJECT_DIR)",
  1709. );
  1710. GENERATE_INFOPLIST_FILE = YES;
  1711. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1712. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1713. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1714. LD_RUNPATH_SEARCH_PATHS = (
  1715. "$(inherited)",
  1716. "@executable_path/Frameworks",
  1717. "@loader_path/Frameworks",
  1718. );
  1719. MARKETING_VERSION = 1.0;
  1720. MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
  1721. MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20";
  1722. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLite;
  1723. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  1724. SKIP_INSTALL = NO;
  1725. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  1726. SUPPORTS_MACCATALYST = NO;
  1727. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  1728. SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
  1729. SWIFT_EMIT_LOC_STRINGS = YES;
  1730. SWIFT_VERSION = 5.0;
  1731. TARGETED_DEVICE_FAMILY = 1;
  1732. };
  1733. name = Release;
  1734. };
  1735. CD1E6E802A0B7C3600BF871F /* Debug */ = {
  1736. isa = XCBuildConfiguration;
  1737. baseConfigurationReference = A6B33FB3B7DDB4BA5A1064B1 /* Pods-NexilisLite-NexilisLiteTests.debug.xcconfig */;
  1738. buildSettings = {
  1739. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
  1740. CODE_SIGN_STYLE = Automatic;
  1741. CURRENT_PROJECT_VERSION = 1;
  1742. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1743. GENERATE_INFOPLIST_FILE = YES;
  1744. MARKETING_VERSION = 1.0;
  1745. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLiteTests;
  1746. PRODUCT_NAME = "$(TARGET_NAME)";
  1747. SWIFT_EMIT_LOC_STRINGS = NO;
  1748. SWIFT_VERSION = 5.0;
  1749. TARGETED_DEVICE_FAMILY = "1,2";
  1750. };
  1751. name = Debug;
  1752. };
  1753. CD1E6E812A0B7C3600BF871F /* Release */ = {
  1754. isa = XCBuildConfiguration;
  1755. baseConfigurationReference = 9D8E4449FB2643BB0D5A47F7 /* Pods-NexilisLite-NexilisLiteTests.release.xcconfig */;
  1756. buildSettings = {
  1757. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
  1758. CODE_SIGN_STYLE = Automatic;
  1759. CURRENT_PROJECT_VERSION = 1;
  1760. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1761. GENERATE_INFOPLIST_FILE = YES;
  1762. MARKETING_VERSION = 1.0;
  1763. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLiteTests;
  1764. PRODUCT_NAME = "$(TARGET_NAME)";
  1765. SWIFT_EMIT_LOC_STRINGS = NO;
  1766. SWIFT_VERSION = 5.0;
  1767. TARGETED_DEVICE_FAMILY = "1,2";
  1768. };
  1769. name = Release;
  1770. };
  1771. CD469F522A0CC862009E4C87 /* Debug */ = {
  1772. isa = XCBuildConfiguration;
  1773. buildSettings = {
  1774. CODE_SIGN_STYLE = Automatic;
  1775. COMBINE_HIDPI_IMAGES = YES;
  1776. CURRENT_PROJECT_VERSION = 1;
  1777. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1778. GENERATE_INFOPLIST_FILE = YES;
  1779. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1780. INFOPLIST_KEY_NSPrincipalClass = "";
  1781. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
  1782. MACOSX_DEPLOYMENT_TARGET = 13.3;
  1783. MARKETING_VERSION = 1.0;
  1784. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLiteResources;
  1785. PRODUCT_NAME = "$(TARGET_NAME)";
  1786. SDKROOT = macosx;
  1787. SKIP_INSTALL = YES;
  1788. SWIFT_EMIT_LOC_STRINGS = YES;
  1789. WRAPPER_EXTENSION = bundle;
  1790. };
  1791. name = Debug;
  1792. };
  1793. CD469F532A0CC862009E4C87 /* Release */ = {
  1794. isa = XCBuildConfiguration;
  1795. buildSettings = {
  1796. CODE_SIGN_STYLE = Automatic;
  1797. COMBINE_HIDPI_IMAGES = YES;
  1798. CURRENT_PROJECT_VERSION = 1;
  1799. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1800. GENERATE_INFOPLIST_FILE = YES;
  1801. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1802. INFOPLIST_KEY_NSPrincipalClass = "";
  1803. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
  1804. MACOSX_DEPLOYMENT_TARGET = 13.3;
  1805. MARKETING_VERSION = 1.0;
  1806. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLiteResources;
  1807. PRODUCT_NAME = "$(TARGET_NAME)";
  1808. SDKROOT = macosx;
  1809. SKIP_INSTALL = YES;
  1810. SWIFT_EMIT_LOC_STRINGS = YES;
  1811. WRAPPER_EXTENSION = bundle;
  1812. };
  1813. name = Release;
  1814. };
  1815. /* End XCBuildConfiguration section */
  1816. /* Begin XCConfigurationList section */
  1817. CD1E6E622A0B7C3600BF871F /* Build configuration list for PBXProject "NexilisLite" */ = {
  1818. isa = XCConfigurationList;
  1819. buildConfigurations = (
  1820. CD1E6E7A2A0B7C3600BF871F /* Debug */,
  1821. CD1E6E7B2A0B7C3600BF871F /* Release */,
  1822. );
  1823. defaultConfigurationIsVisible = 0;
  1824. defaultConfigurationName = Release;
  1825. };
  1826. CD1E6E7C2A0B7C3600BF871F /* Build configuration list for PBXNativeTarget "NexilisLite" */ = {
  1827. isa = XCConfigurationList;
  1828. buildConfigurations = (
  1829. CD1E6E7D2A0B7C3600BF871F /* Debug */,
  1830. CD1E6E7E2A0B7C3600BF871F /* Release */,
  1831. );
  1832. defaultConfigurationIsVisible = 0;
  1833. defaultConfigurationName = Release;
  1834. };
  1835. CD1E6E7F2A0B7C3600BF871F /* Build configuration list for PBXNativeTarget "NexilisLiteTests" */ = {
  1836. isa = XCConfigurationList;
  1837. buildConfigurations = (
  1838. CD1E6E802A0B7C3600BF871F /* Debug */,
  1839. CD1E6E812A0B7C3600BF871F /* Release */,
  1840. );
  1841. defaultConfigurationIsVisible = 0;
  1842. defaultConfigurationName = Release;
  1843. };
  1844. CD469F512A0CC862009E4C87 /* Build configuration list for PBXNativeTarget "NexilisLiteResources" */ = {
  1845. isa = XCConfigurationList;
  1846. buildConfigurations = (
  1847. CD469F522A0CC862009E4C87 /* Debug */,
  1848. CD469F532A0CC862009E4C87 /* Release */,
  1849. );
  1850. defaultConfigurationIsVisible = 0;
  1851. defaultConfigurationName = Release;
  1852. };
  1853. /* End XCConfigurationList section */
  1854. };
  1855. rootObject = CD1E6E5F2A0B7C3600BF871F /* Project object */;
  1856. }