project.pbxproj 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 4207D2841D8247CB001B4A67 /* NotificationNameCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4207D2831D8247CB001B4A67 /* NotificationNameCenter.m */; };
  10. 4219B7EA1DADC48D0092B4DE /* Singleton.m in Sources */ = {isa = PBXBuildFile; fileRef = 4219B7E91DADC48D0092B4DE /* Singleton.m */; };
  11. 421C55021D81586D00CFA3B1 /* JKTimerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 421C55011D81586D00CFA3B1 /* JKTimerManager.m */; };
  12. 423A4ADC1D503A53005ECE4A /* createContact.json in Resources */ = {isa = PBXBuildFile; fileRef = 423A4ADB1D503A53005ECE4A /* createContact.json */; };
  13. 423B49EF1DAC8071004181C2 /* CUL.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 423B49EE1DAC8071004181C2 /* CUL.storyboard */; };
  14. 423B49F31DAC8D2C004181C2 /* PriceSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 423B49F21DAC8D2C004181C2 /* PriceSettingViewController.m */; };
  15. 426D40121DACB0990058B96B /* CategoryPriceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 426D40111DACB0990058B96B /* CategoryPriceViewController.m */; };
  16. 426D40151DACB51F0058B96B /* CategoryPriceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 426D40141DACB51F0058B96B /* CategoryPriceCell.m */; };
  17. 426D40181DACC2250058B96B /* SetCategoryPriceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 426D40171DACC2250058B96B /* SetCategoryPriceController.m */; };
  18. 42969C021D52F31C00FF190A /* editContact.json in Resources */ = {isa = PBXBuildFile; fileRef = 42969C011D52F31C00FF190A /* editContact.json */; };
  19. 42A225331D6E7D1D00235B62 /* placeOrderTemplate.json in Resources */ = {isa = PBXBuildFile; fileRef = 42A225321D6E7D1D00235B62 /* placeOrderTemplate.json */; };
  20. 42A51BF41D62F60300F13667 /* more_info.html in Resources */ = {isa = PBXBuildFile; fileRef = 42A51BF31D62F60300F13667 /* more_info.html */; };
  21. 42A51BF61D62F9AB00F13667 /* orderDetail.json in Resources */ = {isa = PBXBuildFile; fileRef = 42A51BF51D62F9AB00F13667 /* orderDetail.json */; };
  22. 42B3C9BB1D642C880053985C /* order_info.html in Resources */ = {isa = PBXBuildFile; fileRef = 42B3C9BA1D642C880053985C /* order_info.html */; };
  23. 42B99E131D7D032300E773CD /* SortItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42B99E121D7D032300E773CD /* SortItemViewController.m */; };
  24. 42B99E161D7D052A00E773CD /* SortItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42B99E151D7D052A00E773CD /* SortItemCell.m */; };
  25. 42BED01B1DAF74DF004576E0 /* JKDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BED0161DAF74DF004576E0 /* JKDotView.m */; };
  26. 42BED01C1DAF74DF004576E0 /* JKLockButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BED0181DAF74DF004576E0 /* JKLockButton.m */; };
  27. 42BED01D1DAF74DF004576E0 /* JKLockController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BED01A1DAF74DF004576E0 /* JKLockController.m */; };
  28. 42C2E8BC1DB49D02006C0495 /* TearSheet.json in Resources */ = {isa = PBXBuildFile; fileRef = 42C2E8BB1DB49D02006C0495 /* TearSheet.json */; };
  29. 42C9FB151D5B28FA001DCA8B /* contactAdvanceSearch.json in Resources */ = {isa = PBXBuildFile; fileRef = 42C9FB141D5B28FA001DCA8B /* contactAdvanceSearch.json */; };
  30. 42DC31131D546FBE00BCD1C6 /* category.json in Resources */ = {isa = PBXBuildFile; fileRef = 42DC31121D546FBE00BCD1C6 /* category.json */; };
  31. 42E58BFB1D7E5EF50092810A /* SortButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 42E58BFA1D7E5EF50092810A /* SortButton.m */; };
  32. 42E58C021D7E735A0092810A /* UIColor+JK_HEX.m in Sources */ = {isa = PBXBuildFile; fileRef = 42E58C011D7E735A0092810A /* UIColor+JK_HEX.m */; };
  33. 42F637521DB2178E00605C4B /* JKMessageBoxController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42F637511DB2178E00605C4B /* JKMessageBoxController.m */; };
  34. 710274251CC606C4009FD219 /* UserListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 710274241CC606C4009FD219 /* UserListViewController.m */; };
  35. 7111E5721C76C557004763B3 /* customer_info_template_edit.json in Resources */ = {isa = PBXBuildFile; fileRef = 7111E5711C76C557004763B3 /* customer_info_template_edit.json */; };
  36. 71131F921CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71131F911CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m */; };
  37. 712AFED71DBA050200254965 /* BasicDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFEC61DBA050200254965 /* BasicDrawable.m */; };
  38. 712AFED81DBA050200254965 /* GridDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFEC81DBA050200254965 /* GridDrawable.m */; };
  39. 712AFED91DBA050200254965 /* GroupDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFECA1DBA050200254965 /* GroupDrawable.m */; };
  40. 712AFEDA1DBA050200254965 /* ImageDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFECC1DBA050200254965 /* ImageDrawable.m */; };
  41. 712AFEDB1DBA050200254965 /* LineDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFECE1DBA050200254965 /* LineDrawable.m */; };
  42. 712AFEDC1DBA050200254965 /* PDFDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED01DBA050200254965 /* PDFDrawable.m */; };
  43. 712AFEDD1DBA050200254965 /* PDFPage.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED21DBA050200254965 /* PDFPage.m */; };
  44. 712AFEDE1DBA050200254965 /* TableDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED41DBA050200254965 /* TableDrawable.m */; };
  45. 712AFEDF1DBA050200254965 /* TextDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED61DBA050200254965 /* TextDrawable.m */; };
  46. 712AFEE21DBA077F00254965 /* pdfCreator.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFEE11DBA077F00254965 /* pdfCreator.m */; };
  47. 712AFEE51DBDAF0300254965 /* pdfcreator.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 712AFEE41DBDAF0300254965 /* pdfcreator.xcassets */; };
  48. 712AFEE71DBDB48000254965 /* portfolio_3x2.json in Resources */ = {isa = PBXBuildFile; fileRef = 712AFEE61DBDB48000254965 /* portfolio_3x2.json */; };
  49. 712BABF31C897E3A0007466B /* CategorySearchFilterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712BABF21C897E3A0007466B /* CategorySearchFilterViewController.m */; };
  50. 712C40B61C7310F4000E6831 /* CartGeneralNotesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */; };
  51. 712C40B91C731126000E6831 /* ItemNotesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712C40B81C731126000E6831 /* ItemNotesViewController.m */; };
  52. 713F76AA1929F4A7006A7305 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713F76A91929F4A7006A7305 /* Foundation.framework */; };
  53. 713F76AC1929F4A7006A7305 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713F76AB1929F4A7006A7305 /* CoreGraphics.framework */; };
  54. 713F76AE1929F4A7006A7305 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713F76AD1929F4A7006A7305 /* UIKit.framework */; };
  55. 713F76B41929F4A7006A7305 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 713F76B21929F4A7006A7305 /* InfoPlist.strings */; };
  56. 713F76B61929F4A7006A7305 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 713F76B51929F4A7006A7305 /* main.m */; };
  57. 713F76BA1929F4A7006A7305 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 713F76B91929F4A7006A7305 /* AppDelegate.m */; };
  58. 713F76BD1929F4A7006A7305 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 713F76BB1929F4A7006A7305 /* Main.storyboard */; };
  59. 713F76C21929F4A7006A7305 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 713F76C11929F4A7006A7305 /* Images.xcassets */; };
  60. 7141DD341C57269B00F7DF59 /* include in Resources */ = {isa = PBXBuildFile; fileRef = 7141DD331C57269B00F7DF59 /* include */; };
  61. 7141DD3B1C5726B700F7DF59 /* DeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD361C5726B700F7DF59 /* DeviceInfo.m */; };
  62. 7141DD3C1C5726B700F7DF59 /* ScanApiHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD381C5726B700F7DF59 /* ScanApiHelper.mm */; };
  63. 7141DD3D1C5726B700F7DF59 /* softScanBeep.wav in Resources */ = {isa = PBXBuildFile; fileRef = 7141DD3A1C5726B700F7DF59 /* softScanBeep.wav */; };
  64. 7141DD4E1C57459B00F7DF59 /* bitstream.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD3E1C57459B00F7DF59 /* bitstream.c */; };
  65. 7141DD4F1C57459B00F7DF59 /* mask.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD401C57459B00F7DF59 /* mask.c */; };
  66. 7141DD501C57459B00F7DF59 /* QRCodeGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD431C57459B00F7DF59 /* QRCodeGenerator.m */; };
  67. 7141DD511C57459B00F7DF59 /* qrencode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD441C57459B00F7DF59 /* qrencode.c */; };
  68. 7141DD521C57459B00F7DF59 /* qrinput.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD461C57459B00F7DF59 /* qrinput.c */; };
  69. 7141DD531C57459B00F7DF59 /* qrspec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD481C57459B00F7DF59 /* qrspec.c */; };
  70. 7141DD541C57459B00F7DF59 /* rscode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD4A1C57459B00F7DF59 /* rscode.c */; };
  71. 7141DD551C57459B00F7DF59 /* split.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD4C1C57459B00F7DF59 /* split.c */; };
  72. 7141DD5F1C5747CE00F7DF59 /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD571C5747CE00F7DF59 /* AESCrypt.m */; };
  73. 7141DD601C5747CE00F7DF59 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 7141DD581C5747CE00F7DF59 /* LICENSE */; };
  74. 7141DD611C5747CE00F7DF59 /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD5A1C5747CE00F7DF59 /* NSData+Base64.m */; };
  75. 7141DD621C5747CE00F7DF59 /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD5C1C5747CE00F7DF59 /* NSData+CommonCrypto.m */; };
  76. 7141DD631C5747CE00F7DF59 /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD5E1C5747CE00F7DF59 /* NSString+Base64.m */; };
  77. 7142E87A1DBF577A0077EFA2 /* KALINGA.TTF in Resources */ = {isa = PBXBuildFile; fileRef = 7142E8781DBF57510077EFA2 /* KALINGA.TTF */; };
  78. 7142E87B1DBF577A0077EFA2 /* KALINGAB.TTF in Resources */ = {isa = PBXBuildFile; fileRef = 7142E8791DBF57510077EFA2 /* KALINGAB.TTF */; };
  79. 7142E87E1DC300690077EFA2 /* DejaVuSans-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7142E87C1DC300010077EFA2 /* DejaVuSans-Bold.ttf */; };
  80. 7142E87F1DC300690077EFA2 /* DejaVuSans.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7142E87D1DC300010077EFA2 /* DejaVuSans.ttf */; };
  81. 714B1F401C7BF74100539193 /* OrderDetailSignatureCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 714B1F3F1C7BF74100539193 /* OrderDetailSignatureCell.m */; };
  82. 715001FF1D114D9100F5927F /* BundleDetailButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 715001FE1D114D9100F5927F /* BundleDetailButton.m */; };
  83. 715850461CF6F0E500856B20 /* DefaultAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 715850451CF6F0E500856B20 /* DefaultAppearance.m */; };
  84. 715F30BD1DAB37EB00490EED /* OfflineUnlockViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715F30BC1DAB37EB00490EED /* OfflineUnlockViewController.m */; };
  85. 7161FEB51D61B24900157EE1 /* creditcardpayment.html in Resources */ = {isa = PBXBuildFile; fileRef = 7161FEB21D61B24900157EE1 /* creditcardpayment.html */; };
  86. 7161FEB61D61B24900157EE1 /* normalpayment.html in Resources */ = {isa = PBXBuildFile; fileRef = 7161FEB31D61B24900157EE1 /* normalpayment.html */; };
  87. 7161FEB71D61B24900157EE1 /* orderinfo.html in Resources */ = {isa = PBXBuildFile; fileRef = 7161FEB41D61B24900157EE1 /* orderinfo.html */; };
  88. 7162A4FE1C585FFB00AB630E /* PDFViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A4FB1C585FFB00AB630E /* PDFViewController.m */; };
  89. 7162A4FF1C585FFB00AB630E /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A4FD1C585FFB00AB630E /* WebViewController.m */; };
  90. 7162A5021C586F5B00AB630E /* AddressEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5011C586F5B00AB630E /* AddressEditorViewController.m */; };
  91. 7162A5091C586FC100AB630E /* CycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5041C586FC100AB630E /* CycleScrollView.m */; };
  92. 7162A50A1C586FC100AB630E /* NSTimer+Addition.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5061C586FC100AB630E /* NSTimer+Addition.m */; };
  93. 7162A50B1C586FC100AB630E /* SliderPage.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5081C586FC100AB630E /* SliderPage.m */; };
  94. 7162A5161C58704600AB630E /* BundleModelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A50D1C58704600AB630E /* BundleModelCell.m */; };
  95. 7162A5171C58704600AB630E /* BundleModelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A50F1C58704600AB630E /* BundleModelViewController.m */; };
  96. 7162A5181C58704600AB630E /* CartViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5111C58704600AB630E /* CartViewController.m */; };
  97. 7162A5191C58704600AB630E /* EditModelPriceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5131C58704600AB630E /* EditModelPriceViewController.m */; };
  98. 7162A51A1C58704600AB630E /* ModelItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5151C58704600AB630E /* ModelItemCell.m */; };
  99. 7162A5251C58706C00AB630E /* CategoryCellSmall.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5201C58706C00AB630E /* CategoryCellSmall.m */; };
  100. 7162A5261C58706C00AB630E /* CategoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5221C58706C00AB630E /* CategoryViewController.m */; };
  101. 7162A52A1C58713200AB630E /* CategoryCellNPD.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5291C58713200AB630E /* CategoryCellNPD.m */; };
  102. 7162A5411C58719D00AB630E /* RATreeNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A52C1C58719D00AB630E /* RATreeNode.m */; };
  103. 7162A5421C58719D00AB630E /* RATreeNodeCollectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A52E1C58719D00AB630E /* RATreeNodeCollectionController.m */; };
  104. 7162A5431C58719D00AB630E /* RATreeNodeInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5301C58719D00AB630E /* RATreeNodeInfo.m */; };
  105. 7162A5441C58719D00AB630E /* RATreeNodeInfo+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5321C58719D00AB630E /* RATreeNodeInfo+Private.m */; };
  106. 7162A5451C58719D00AB630E /* RATreeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5341C58719D00AB630E /* RATreeView.m */; };
  107. 7162A5461C58719D00AB630E /* RATreeView+Enums.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5361C58719D00AB630E /* RATreeView+Enums.m */; };
  108. 7162A5471C58719D00AB630E /* RATreeView+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5381C58719D00AB630E /* RATreeView+Private.m */; };
  109. 7162A5481C58719D00AB630E /* RATreeView+TableViewDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A53A1C58719D00AB630E /* RATreeView+TableViewDataSource.m */; };
  110. 7162A5491C58719D00AB630E /* RATreeView+TableViewDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A53C1C58719D00AB630E /* RATreeView+TableViewDelegate.m */; };
  111. 7162A54A1C58719D00AB630E /* RATreeView+UIScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A53E1C58719D00AB630E /* RATreeView+UIScrollView.m */; };
  112. 7162A54B1C58719D00AB630E /* RAViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5401C58719D00AB630E /* RAViewController.m */; };
  113. 7162A54E1C58722200AB630E /* CreditCardEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A54D1C58722200AB630E /* CreditCardEditorViewController.m */; };
  114. 7162A55B1C58724700AB630E /* ContactAdvanceSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5501C58724700AB630E /* ContactAdvanceSearchViewController.m */; };
  115. 7162A55C1C58724700AB630E /* ContactListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5521C58724700AB630E /* ContactListTableViewCell.m */; };
  116. 7162A55D1C58724700AB630E /* ContactListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5541C58724700AB630E /* ContactListViewController.m */; };
  117. 7162A55E1C58724700AB630E /* customer_advanced_search.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5551C58724700AB630E /* customer_advanced_search.json */; };
  118. 7162A55F1C58724700AB630E /* customer_info_template.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5561C58724700AB630E /* customer_info_template.json */; };
  119. 7162A5601C58724700AB630E /* CustomerEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5581C58724700AB630E /* CustomerEditViewController.m */; };
  120. 7162A5611C58724700AB630E /* CustomerInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A55A1C58724700AB630E /* CustomerInfoViewController.m */; };
  121. 7162A5701C58728D00AB630E /* DetailHeaderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5631C58728D00AB630E /* DetailHeaderCell.m */; };
  122. 7162A5711C58728D00AB630E /* DetailImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5651C58728D00AB630E /* DetailImageCell.m */; };
  123. 7162A5721C58728D00AB630E /* DetailKVCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5671C58728D00AB630E /* DetailKVCell.m */; };
  124. 7162A5731C58728D00AB630E /* DetailTopicCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5691C58728D00AB630E /* DetailTopicCell.m */; };
  125. 7162A5741C58728D00AB630E /* DetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A56B1C58728D00AB630E /* DetailViewController.m */; };
  126. 7162A5751C58728D00AB630E /* LineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A56D1C58728D00AB630E /* LineView.m */; };
  127. 7162A5811C5872EF00AB630E /* HomeTableViewCellBanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5781C5872EF00AB630E /* HomeTableViewCellBanner.m */; };
  128. 7162A5821C5872EF00AB630E /* HomeTableViewCellButtonBanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A57A1C5872EF00AB630E /* HomeTableViewCellButtonBanner.m */; };
  129. 7162A5831C5872EF00AB630E /* HomeTableViewCellSlide.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A57C1C5872EF00AB630E /* HomeTableViewCellSlide.m */; };
  130. 7162A5841C5872EF00AB630E /* HomeTableViewCellTopic.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A57E1C5872EF00AB630E /* HomeTableViewCellTopic.m */; };
  131. 7162A5851C5872EF00AB630E /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5801C5872EF00AB630E /* HomeViewController.m */; };
  132. 7162A5981C58733400AB630E /* CreateOrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5871C58733400AB630E /* CreateOrderViewController.m */; };
  133. 7162A5991C58733400AB630E /* OrderDetailHtmlCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5891C58733400AB630E /* OrderDetailHtmlCell.m */; };
  134. 7162A59A1C58733400AB630E /* OrderDetailInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A58B1C58733400AB630E /* OrderDetailInfoCell.m */; };
  135. 7162A59B1C58733400AB630E /* OrderDetailModelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A58D1C58733400AB630E /* OrderDetailModelCell.m */; };
  136. 7162A59C1C58733400AB630E /* OrderDetailPriceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A58F1C58733400AB630E /* OrderDetailPriceCell.m */; };
  137. 7162A59D1C58733400AB630E /* OrderDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5911C58733400AB630E /* OrderDetailViewController.m */; };
  138. 7162A59E1C58733400AB630E /* OrderListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5931C58733400AB630E /* OrderListTableViewCell.m */; };
  139. 7162A59F1C58733400AB630E /* OrderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5951C58733400AB630E /* OrderListViewController.m */; };
  140. 7162A5A01C58733400AB630E /* status_filter_cadedate_open.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5961C58733400AB630E /* status_filter_cadedate_open.json */; };
  141. 7162A5A11C58733400AB630E /* offline_status_filter_cadedate.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5971C58733400AB630E /* offline_status_filter_cadedate.json */; };
  142. 7162A5AA1C58735900AB630E /* PDFListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5A31C58735900AB630E /* PDFListTableViewCell.m */; };
  143. 7162A5AB1C58735900AB630E /* PDFListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5A51C58735900AB630E /* PDFListViewController.m */; };
  144. 7162A5AC1C58735900AB630E /* PortfolioViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5A71C58735900AB630E /* PortfolioViewController.m */; };
  145. 7162A5AD1C58735900AB630E /* TearSheetParamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5A91C58735900AB630E /* TearSheetParamViewController.m */; };
  146. 7162A5B41C58738600AB630E /* ScannerControllerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5AF1C58738600AB630E /* ScannerControllerView.m */; };
  147. 7162A5B51C58738600AB630E /* ScannerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5B11C58738600AB630E /* ScannerViewController.m */; };
  148. 7162A5B61C58738600AB630E /* SCShapeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5B31C58738600AB630E /* SCShapeView.m */; };
  149. 7162A5C11C5873BB00AB630E /* FilterCellCadedate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5B81C5873BB00AB630E /* FilterCellCadedate.m */; };
  150. 7162A5C21C5873BB00AB630E /* FilterCellValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5BA1C5873BB00AB630E /* FilterCellValue.m */; };
  151. 7162A5C31C5873BB00AB630E /* ItemSearchFilterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5BC1C5873BB00AB630E /* ItemSearchFilterViewController.m */; };
  152. 7162A5C41C5873BB00AB630E /* ItemSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5BE1C5873BB00AB630E /* ItemSearchViewController.m */; };
  153. 7162A5C51C5873BB00AB630E /* SearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5C01C5873BB00AB630E /* SearchViewController.m */; };
  154. 7162A5CA1C58761500AB630E /* SignatureView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5C71C58761500AB630E /* SignatureView.m */; };
  155. 7162A5CB1C58761500AB630E /* SignatureViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5C91C58761500AB630E /* SignatureViewController.m */; };
  156. 7162A5DA1C5876E300AB630E /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5CD1C5876E300AB630E /* AboutViewController.m */; };
  157. 7162A5DB1C5876E300AB630E /* CacheViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5CF1C5876E300AB630E /* CacheViewController.m */; };
  158. 7162A5DC1C5876E300AB630E /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D11C5876E300AB630E /* LoginViewController.m */; };
  159. 7162A5DD1C5876E300AB630E /* PopupNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D31C5876E300AB630E /* PopupNavigationController.m */; };
  160. 7162A5DE1C5876E300AB630E /* RetrievePassViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D51C5876E300AB630E /* RetrievePassViewController.m */; };
  161. 7162A5DF1C5876E300AB630E /* ScannerSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D71C5876E300AB630E /* ScannerSettingViewController.m */; };
  162. 7162A5E01C5876E300AB630E /* SettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D91C5876E300AB630E /* SettingViewController.m */; };
  163. 7162A5E31C5877CE00AB630E /* WatchListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5E21C5877CE00AB630E /* WatchListViewController.m */; };
  164. 7162A5E61C58781000AB630E /* iSalesNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5E51C58781000AB630E /* iSalesNavigationController.m */; };
  165. 7162A5E91C5899F700AB630E /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5E81C5899F700AB630E /* MainViewController.m */; };
  166. 716961B519594E1000B19FB4 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 716961B419594E1000B19FB4 /* libsqlite3.dylib */; };
  167. 716AF8E11D7AA0E0001188E0 /* SelectUploadOrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 716AF8E01D7AA0E0001188E0 /* SelectUploadOrderViewController.m */; };
  168. 716AF8E71D7AA398001188E0 /* SelectOrderTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 716AF8E51D7AA398001188E0 /* SelectOrderTableViewCell.m */; };
  169. 71777FC61C8AC97300DA2511 /* debug_category_filter.json in Resources */ = {isa = PBXBuildFile; fileRef = 71777FC51C8AC97300DA2511 /* debug_category_filter.json */; };
  170. 7186C25D1C97A6EE00CB43F4 /* FunctionTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7186C25C1C97A6EE00CB43F4 /* FunctionTestViewController.m */; };
  171. 718716251C433D8B00F25860 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716241C433D8B00F25860 /* ExternalAccessory.framework */; };
  172. 718716271C433D9700F25860 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716261C433D9700F25860 /* AudioToolbox.framework */; };
  173. 718716291C433DA400F25860 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716281C433DA400F25860 /* AVFoundation.framework */; };
  174. 7187162C1C43428100F25860 /* libScanApiCore.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716221C433D5000F25860 /* libScanApiCore.a */; };
  175. 718B91831C75638100265FFF /* TouchImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 718B91821C75638100265FFF /* TouchImageView.m */; };
  176. 7195623C1CF57D1800C74A49 /* CategoryHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7195623B1CF57D1800C74A49 /* CategoryHeaderView.m */; };
  177. 719562421CF5828200C74A49 /* DefaultTableHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 719562411CF5828200C74A49 /* DefaultTableHeaderView.m */; };
  178. 71BBA2271CEAC16000C91DED /* ZipArchive.mm in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA2221CEAC16000C91DED /* ZipArchive.mm */; };
  179. 71BBA2291CEAC17E00C91DED /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 71BBA2281CEAC17E00C91DED /* libz.tbd */; };
  180. 71BBA2401CEAEF0700C91DED /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA2381CEAEF0700C91DED /* ioapi.c */; };
  181. 71BBA2411CEAEF0700C91DED /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA23A1CEAEF0700C91DED /* mztools.c */; };
  182. 71BBA2421CEAEF0700C91DED /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA23C1CEAEF0700C91DED /* unzip.c */; };
  183. 71BBA2431CEAEF0700C91DED /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA23E1CEAEF0700C91DED /* zip.c */; };
  184. 71BF06FB1D2F3CAC00981938 /* OLDataProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF06FA1D2F3CAC00981938 /* OLDataProvider.m */; };
  185. 71BF06FE1D2F3CBA00981938 /* OfflineSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF06FD1D2F3CBA00981938 /* OfflineSettingViewController.m */; };
  186. 71BF07081D2F3D2800981938 /* SyncControlPanelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF07071D2F3D2800981938 /* SyncControlPanelViewController.m */; };
  187. 71D0344F1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D0344E1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m */; };
  188. 71D30A211CFBEDC6006F9477 /* default_appearance.json in Resources */ = {isa = PBXBuildFile; fileRef = 71D30A201CFBEDC6006F9477 /* default_appearance.json */; };
  189. 71D30A2D1CFC0EF8006F9477 /* DefaultImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D30A2C1CFC0EF8006F9477 /* DefaultImageButton.m */; };
  190. 71D46D111CE1D9EF00A081AC /* OLM.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71D46D0F1CE1D9EF00A081AC /* OLM.storyboard */; };
  191. 71D5016C1DC32C3300971FBB /* portfolio_2x3.json in Resources */ = {isa = PBXBuildFile; fileRef = 71D5016B1DC32C3300971FBB /* portfolio_2x3.json */; };
  192. 71D99D301CEF02E700CA32DE /* CustomIOSAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D99D2F1CEF02E700CA32DE /* CustomIOSAlertView.m */; };
  193. 71DEE874192DE003003F645F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71DEE873192DE003003F645F /* QuartzCore.framework */; };
  194. 71DEE876192DE00E003F645F /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71DEE875192DE00E003F645F /* Accelerate.framework */; };
  195. 71DF742B1C57560600F2789C /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF742A1C57560600F2789C /* Reachability.m */; };
  196. 71DF74301C57572600F2789C /* RAUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF742F1C57572600F2789C /* RAUtils.m */; };
  197. 71DF74341C5757DA00F2789C /* ActiveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74331C5757DA00F2789C /* ActiveViewController.m */; };
  198. 71DF74371C575D6600F2789C /* CommonGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74361C575D6600F2789C /* CommonGridViewController.m */; };
  199. 71DF745B1C575E7900F2789C /* CommonEditorCellAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF743C1C575E7900F2789C /* CommonEditorCellAction.m */; };
  200. 71DF745C1C575E7900F2789C /* CommonEditorCellEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF743E1C575E7900F2789C /* CommonEditorCellEdit.m */; };
  201. 71DF745D1C575E7900F2789C /* CommonEditorCellEnum.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74401C575E7900F2789C /* CommonEditorCellEnum.m */; };
  202. 71DF745E1C575E7900F2789C /* CommonEditorCellImg.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74421C575E7900F2789C /* CommonEditorCellImg.m */; };
  203. 71DF745F1C575E7900F2789C /* CommonEditorCellLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74441C575E7900F2789C /* CommonEditorCellLabel.m */; };
  204. 71DF74601C575E7900F2789C /* CommonEditorCellMAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74461C575E7900F2789C /* CommonEditorCellMAction.m */; };
  205. 71DF74611C575E7900F2789C /* CommonEditorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74481C575E7900F2789C /* CommonEditorCellModel.m */; };
  206. 71DF74621C575E7900F2789C /* CommonEditorCellSignature.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF744A1C575E7900F2789C /* CommonEditorCellSignature.m */; };
  207. 71DF74631C575E7900F2789C /* CommonEditorCellSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF744C1C575E7900F2789C /* CommonEditorCellSwitch.m */; };
  208. 71DF74641C575E7900F2789C /* CommonEditorCellTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF744E1C575E7900F2789C /* CommonEditorCellTextView.m */; };
  209. 71DF74651C575E7900F2789C /* CommonEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74501C575E7900F2789C /* CommonEditorViewController.m */; };
  210. 71DF74661C575E7900F2789C /* DatePickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74521C575E7900F2789C /* DatePickerViewController.m */; };
  211. 71DF74671C575E7900F2789C /* EnumSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74541C575E7900F2789C /* EnumSelectorCell.m */; };
  212. 71DF74681C575E7900F2789C /* EnumSelectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74561C575E7900F2789C /* EnumSelectViewController.m */; };
  213. 71DF74691C575E7900F2789C /* MonthPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74581C575E7900F2789C /* MonthPickerViewController.m */; };
  214. 71DF746A1C575E7900F2789C /* SRMonthPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF745A1C575E7900F2789C /* SRMonthPicker.m */; };
  215. 71DF74831C57608F00F2789C /* ImageScrollerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF746C1C57608F00F2789C /* ImageScrollerView.m */; };
  216. 71DF74841C57608F00F2789C /* ImageScrollerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF746E1C57608F00F2789C /* ImageScrollerViewController.m */; };
  217. 71DF74851C57608F00F2789C /* ImageUploadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74701C57608F00F2789C /* ImageUploadViewController.m */; };
  218. 71DF74861C57608F00F2789C /* ImageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74721C57608F00F2789C /* ImageViewController.m */; };
  219. 71DF74871C57608F00F2789C /* NIDropDown.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74741C57608F00F2789C /* NIDropDown.m */; };
  220. 71DF74881C57608F00F2789C /* PulldownMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74761C57608F00F2789C /* PulldownMenu.m */; };
  221. 71DF74891C57608F00F2789C /* RadioButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74781C57608F00F2789C /* RadioButton.m */; };
  222. 71DF748A1C57608F00F2789C /* RTLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF747A1C57608F00F2789C /* RTLabel.m */; };
  223. 71DF748B1C57608F00F2789C /* SimpleGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF747C1C57608F00F2789C /* SimpleGrid.m */; };
  224. 71DF748C1C57608F00F2789C /* StrikethroughLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF747E1C57608F00F2789C /* StrikethroughLabel.m */; };
  225. 71DF748D1C57608F00F2789C /* TouchLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74801C57608F00F2789C /* TouchLabel.m */; };
  226. 71DF748E1C57608F00F2789C /* UILabel+FontAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74821C57608F00F2789C /* UILabel+FontAppearance.m */; };
  227. 71DF74951C57614C00F2789C /* PhotoBorder.png in Resources */ = {isa = PBXBuildFile; fileRef = 71DF748F1C57614C00F2789C /* PhotoBorder.png */; };
  228. 71DF74961C57614C00F2789C /* PhotoBorder@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 71DF74901C57614C00F2789C /* PhotoBorder@2x.png */; };
  229. 71DF74971C57614C00F2789C /* PhotoStackView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74921C57614C00F2789C /* PhotoStackView.m */; };
  230. 71DF74981C57614C00F2789C /* PhotoStackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74941C57614C00F2789C /* PhotoStackViewController.m */; };
  231. 71E5A0101DC99370005BF655 /* config.plist in Resources */ = {isa = PBXBuildFile; fileRef = 71E5A00F1DC99370005BF655 /* config.plist */; };
  232. 71FFBBE91C60894900D91DC2 /* iSalesDB.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FFBBE61C60894900D91DC2 /* iSalesDB.m */; };
  233. 71FFBBEA1C60894900D91DC2 /* iSalesNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FFBBE81C60894900D91DC2 /* iSalesNetwork.m */; };
  234. A31E80CF7BEA220BD1CC4B97 /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C694180C757B34E24180D628 /* libPods.a */; };
  235. /* End PBXBuildFile section */
  236. /* Begin PBXFileReference section */
  237. 4207D2821D8247CB001B4A67 /* NotificationNameCenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotificationNameCenter.h; sourceTree = "<group>"; };
  238. 4207D2831D8247CB001B4A67 /* NotificationNameCenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NotificationNameCenter.m; sourceTree = "<group>"; };
  239. 4219B7E81DADC48D0092B4DE /* Singleton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Singleton.h; sourceTree = "<group>"; };
  240. 4219B7E91DADC48D0092B4DE /* Singleton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Singleton.m; sourceTree = "<group>"; };
  241. 421C55001D81586D00CFA3B1 /* JKTimerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKTimerManager.h; sourceTree = "<group>"; };
  242. 421C55011D81586D00CFA3B1 /* JKTimerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKTimerManager.m; sourceTree = "<group>"; };
  243. 423A4ADB1D503A53005ECE4A /* createContact.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = createContact.json; sourceTree = "<group>"; };
  244. 423B49EE1DAC8071004181C2 /* CUL.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CUL.storyboard; sourceTree = "<group>"; };
  245. 423B49F11DAC8D2C004181C2 /* PriceSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PriceSettingViewController.h; sourceTree = "<group>"; };
  246. 423B49F21DAC8D2C004181C2 /* PriceSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PriceSettingViewController.m; sourceTree = "<group>"; };
  247. 426D40101DACB0990058B96B /* CategoryPriceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryPriceViewController.h; sourceTree = "<group>"; };
  248. 426D40111DACB0990058B96B /* CategoryPriceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryPriceViewController.m; sourceTree = "<group>"; };
  249. 426D40131DACB51F0058B96B /* CategoryPriceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryPriceCell.h; sourceTree = "<group>"; };
  250. 426D40141DACB51F0058B96B /* CategoryPriceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryPriceCell.m; sourceTree = "<group>"; };
  251. 426D40161DACC2250058B96B /* SetCategoryPriceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SetCategoryPriceController.h; sourceTree = "<group>"; };
  252. 426D40171DACC2250058B96B /* SetCategoryPriceController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SetCategoryPriceController.m; sourceTree = "<group>"; };
  253. 42969C011D52F31C00FF190A /* editContact.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = editContact.json; sourceTree = "<group>"; };
  254. 42A225321D6E7D1D00235B62 /* placeOrderTemplate.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = placeOrderTemplate.json; sourceTree = "<group>"; };
  255. 42A51BF31D62F60300F13667 /* more_info.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = more_info.html; sourceTree = "<group>"; };
  256. 42A51BF51D62F9AB00F13667 /* orderDetail.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = orderDetail.json; sourceTree = "<group>"; };
  257. 42B3C9BA1D642C880053985C /* order_info.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = order_info.html; sourceTree = "<group>"; };
  258. 42B99E111D7D032300E773CD /* SortItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortItemViewController.h; sourceTree = "<group>"; };
  259. 42B99E121D7D032300E773CD /* SortItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortItemViewController.m; sourceTree = "<group>"; };
  260. 42B99E141D7D052A00E773CD /* SortItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortItemCell.h; sourceTree = "<group>"; };
  261. 42B99E151D7D052A00E773CD /* SortItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortItemCell.m; sourceTree = "<group>"; };
  262. 42BED0151DAF74DF004576E0 /* JKDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKDotView.h; sourceTree = "<group>"; };
  263. 42BED0161DAF74DF004576E0 /* JKDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKDotView.m; sourceTree = "<group>"; };
  264. 42BED0171DAF74DF004576E0 /* JKLockButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKLockButton.h; sourceTree = "<group>"; };
  265. 42BED0181DAF74DF004576E0 /* JKLockButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKLockButton.m; sourceTree = "<group>"; };
  266. 42BED0191DAF74DF004576E0 /* JKLockController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKLockController.h; sourceTree = "<group>"; };
  267. 42BED01A1DAF74DF004576E0 /* JKLockController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKLockController.m; sourceTree = "<group>"; };
  268. 42C2E8BB1DB49D02006C0495 /* TearSheet.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = TearSheet.json; sourceTree = "<group>"; };
  269. 42C9FB141D5B28FA001DCA8B /* contactAdvanceSearch.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = contactAdvanceSearch.json; sourceTree = "<group>"; };
  270. 42DC31121D546FBE00BCD1C6 /* category.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = category.json; sourceTree = "<group>"; };
  271. 42E58BF91D7E5EF50092810A /* SortButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortButton.h; sourceTree = "<group>"; };
  272. 42E58BFA1D7E5EF50092810A /* SortButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortButton.m; sourceTree = "<group>"; };
  273. 42E58C001D7E735A0092810A /* UIColor+JK_HEX.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+JK_HEX.h"; sourceTree = "<group>"; };
  274. 42E58C011D7E735A0092810A /* UIColor+JK_HEX.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JK_HEX.m"; sourceTree = "<group>"; };
  275. 42F637501DB2178E00605C4B /* JKMessageBoxController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKMessageBoxController.h; sourceTree = "<group>"; };
  276. 42F637511DB2178E00605C4B /* JKMessageBoxController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKMessageBoxController.m; sourceTree = "<group>"; };
  277. 56528CA8B8A71F67C2EE5366 /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = "<group>"; };
  278. 6C826876B24EFB83AC94A464 /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = "<group>"; };
  279. 710274231CC606C4009FD219 /* UserListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UserListViewController.h; path = common/Functions/sidemenu/UserListViewController.h; sourceTree = SOURCE_ROOT; };
  280. 710274241CC606C4009FD219 /* UserListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = UserListViewController.m; path = common/Functions/sidemenu/UserListViewController.m; sourceTree = SOURCE_ROOT; };
  281. 7111E5711C76C557004763B3 /* customer_info_template_edit.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = customer_info_template_edit.json; path = common/Functions/contact/customer_info_template_edit.json; sourceTree = SOURCE_ROOT; };
  282. 71131F901CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimplifiedBuyingProgramViewController.h; path = common/Functions/sidemenu/SimplifiedBuyingProgramViewController.h; sourceTree = SOURCE_ROOT; };
  283. 71131F911CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimplifiedBuyingProgramViewController.m; path = common/Functions/sidemenu/SimplifiedBuyingProgramViewController.m; sourceTree = SOURCE_ROOT; };
  284. 712AFEC51DBA050200254965 /* BasicDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BasicDrawable.h; path = common/pdfCreator/BasicDrawable.h; sourceTree = SOURCE_ROOT; };
  285. 712AFEC61DBA050200254965 /* BasicDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BasicDrawable.m; path = common/pdfCreator/BasicDrawable.m; sourceTree = SOURCE_ROOT; };
  286. 712AFEC71DBA050200254965 /* GridDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GridDrawable.h; path = common/pdfCreator/GridDrawable.h; sourceTree = SOURCE_ROOT; };
  287. 712AFEC81DBA050200254965 /* GridDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GridDrawable.m; path = common/pdfCreator/GridDrawable.m; sourceTree = SOURCE_ROOT; };
  288. 712AFEC91DBA050200254965 /* GroupDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupDrawable.h; path = common/pdfCreator/GroupDrawable.h; sourceTree = SOURCE_ROOT; };
  289. 712AFECA1DBA050200254965 /* GroupDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GroupDrawable.m; path = common/pdfCreator/GroupDrawable.m; sourceTree = SOURCE_ROOT; };
  290. 712AFECB1DBA050200254965 /* ImageDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageDrawable.h; path = common/pdfCreator/ImageDrawable.h; sourceTree = SOURCE_ROOT; };
  291. 712AFECC1DBA050200254965 /* ImageDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageDrawable.m; path = common/pdfCreator/ImageDrawable.m; sourceTree = SOURCE_ROOT; };
  292. 712AFECD1DBA050200254965 /* LineDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LineDrawable.h; path = common/pdfCreator/LineDrawable.h; sourceTree = SOURCE_ROOT; };
  293. 712AFECE1DBA050200254965 /* LineDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LineDrawable.m; path = common/pdfCreator/LineDrawable.m; sourceTree = SOURCE_ROOT; };
  294. 712AFECF1DBA050200254965 /* PDFDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFDrawable.h; path = common/pdfCreator/PDFDrawable.h; sourceTree = SOURCE_ROOT; };
  295. 712AFED01DBA050200254965 /* PDFDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFDrawable.m; path = common/pdfCreator/PDFDrawable.m; sourceTree = SOURCE_ROOT; };
  296. 712AFED11DBA050200254965 /* PDFPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFPage.h; path = common/pdfCreator/PDFPage.h; sourceTree = SOURCE_ROOT; };
  297. 712AFED21DBA050200254965 /* PDFPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFPage.m; path = common/pdfCreator/PDFPage.m; sourceTree = SOURCE_ROOT; };
  298. 712AFED31DBA050200254965 /* TableDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TableDrawable.h; path = common/pdfCreator/TableDrawable.h; sourceTree = SOURCE_ROOT; };
  299. 712AFED41DBA050200254965 /* TableDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TableDrawable.m; path = common/pdfCreator/TableDrawable.m; sourceTree = SOURCE_ROOT; };
  300. 712AFED51DBA050200254965 /* TextDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextDrawable.h; path = common/pdfCreator/TextDrawable.h; sourceTree = SOURCE_ROOT; };
  301. 712AFED61DBA050200254965 /* TextDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TextDrawable.m; path = common/pdfCreator/TextDrawable.m; sourceTree = SOURCE_ROOT; };
  302. 712AFEE01DBA077F00254965 /* pdfCreator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pdfCreator.h; path = common/pdfCreator/pdfCreator.h; sourceTree = SOURCE_ROOT; };
  303. 712AFEE11DBA077F00254965 /* pdfCreator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = pdfCreator.m; path = common/pdfCreator/pdfCreator.m; sourceTree = SOURCE_ROOT; };
  304. 712AFEE41DBDAF0300254965 /* pdfcreator.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = pdfcreator.xcassets; sourceTree = "<group>"; };
  305. 712AFEE61DBDB48000254965 /* portfolio_3x2.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = portfolio_3x2.json; sourceTree = "<group>"; };
  306. 712BABF11C897E3A0007466B /* CategorySearchFilterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategorySearchFilterViewController.h; path = common/Functions/category/CategorySearchFilterViewController.h; sourceTree = SOURCE_ROOT; };
  307. 712BABF21C897E3A0007466B /* CategorySearchFilterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategorySearchFilterViewController.m; path = common/Functions/category/CategorySearchFilterViewController.m; sourceTree = SOURCE_ROOT; };
  308. 712C40B41C7310F4000E6831 /* CartGeneralNotesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartGeneralNotesViewController.h; path = common/Functions/cart/CartGeneralNotesViewController.h; sourceTree = SOURCE_ROOT; };
  309. 712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartGeneralNotesViewController.m; path = common/Functions/cart/CartGeneralNotesViewController.m; sourceTree = SOURCE_ROOT; };
  310. 712C40B71C731126000E6831 /* ItemNotesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemNotesViewController.h; path = common/Functions/cart/ItemNotesViewController.h; sourceTree = SOURCE_ROOT; };
  311. 712C40B81C731126000E6831 /* ItemNotesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemNotesViewController.m; path = common/Functions/cart/ItemNotesViewController.m; sourceTree = SOURCE_ROOT; };
  312. 713F76A61929F4A7006A7305 /* NPD Mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "NPD Mobile.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  313. 713F76A91929F4A7006A7305 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  314. 713F76AB1929F4A7006A7305 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  315. 713F76AD1929F4A7006A7305 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  316. 713F76B11929F4A7006A7305 /* iSales-NPD-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "iSales-NPD-Info.plist"; sourceTree = "<group>"; };
  317. 713F76B31929F4A7006A7305 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  318. 713F76B51929F4A7006A7305 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  319. 713F76B71929F4A7006A7305 /* iSales-NPD-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "iSales-NPD-Prefix.pch"; sourceTree = "<group>"; };
  320. 713F76B81929F4A7006A7305 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  321. 713F76B91929F4A7006A7305 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  322. 713F76BC1929F4A7006A7305 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  323. 713F76C11929F4A7006A7305 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  324. 713F76C81929F4A7006A7305 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
  325. 7141DD331C57269B00F7DF59 /* include */ = {isa = PBXFileReference; lastKnownFileType = folder; name = include; path = "ScanApiSDK-10.2.227-2/include"; sourceTree = SOURCE_ROOT; };
  326. 7141DD351C5726B700F7DF59 /* DeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DeviceInfo.h; path = "ScanApiSDK-10.2.227-2/DeviceInfo.h"; sourceTree = SOURCE_ROOT; };
  327. 7141DD361C5726B700F7DF59 /* DeviceInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DeviceInfo.m; path = "ScanApiSDK-10.2.227-2/DeviceInfo.m"; sourceTree = SOURCE_ROOT; };
  328. 7141DD371C5726B700F7DF59 /* ScanApiHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScanApiHelper.h; path = "ScanApiSDK-10.2.227-2/ScanApiHelper.h"; sourceTree = SOURCE_ROOT; };
  329. 7141DD381C5726B700F7DF59 /* ScanApiHelper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ScanApiHelper.mm; path = "ScanApiSDK-10.2.227-2/ScanApiHelper.mm"; sourceTree = SOURCE_ROOT; };
  330. 7141DD391C5726B700F7DF59 /* ScanApiIncludes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScanApiIncludes.h; path = "ScanApiSDK-10.2.227-2/ScanApiIncludes.h"; sourceTree = SOURCE_ROOT; };
  331. 7141DD3A1C5726B700F7DF59 /* softScanBeep.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; name = softScanBeep.wav; path = "ScanApiSDK-10.2.227-2/softScanBeep.wav"; sourceTree = SOURCE_ROOT; };
  332. 7141DD3E1C57459B00F7DF59 /* bitstream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = bitstream.c; path = common/qrcode/bitstream.c; sourceTree = SOURCE_ROOT; };
  333. 7141DD3F1C57459B00F7DF59 /* bitstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bitstream.h; path = common/qrcode/bitstream.h; sourceTree = SOURCE_ROOT; };
  334. 7141DD401C57459B00F7DF59 /* mask.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mask.c; path = common/qrcode/mask.c; sourceTree = SOURCE_ROOT; };
  335. 7141DD411C57459B00F7DF59 /* mask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mask.h; path = common/qrcode/mask.h; sourceTree = SOURCE_ROOT; };
  336. 7141DD421C57459B00F7DF59 /* QRCodeGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = QRCodeGenerator.h; path = common/qrcode/QRCodeGenerator.h; sourceTree = SOURCE_ROOT; };
  337. 7141DD431C57459B00F7DF59 /* QRCodeGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = QRCodeGenerator.m; path = common/qrcode/QRCodeGenerator.m; sourceTree = SOURCE_ROOT; };
  338. 7141DD441C57459B00F7DF59 /* qrencode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrencode.c; path = common/qrcode/qrencode.c; sourceTree = SOURCE_ROOT; };
  339. 7141DD451C57459B00F7DF59 /* qrencode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrencode.h; path = common/qrcode/qrencode.h; sourceTree = SOURCE_ROOT; };
  340. 7141DD461C57459B00F7DF59 /* qrinput.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrinput.c; path = common/qrcode/qrinput.c; sourceTree = SOURCE_ROOT; };
  341. 7141DD471C57459B00F7DF59 /* qrinput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrinput.h; path = common/qrcode/qrinput.h; sourceTree = SOURCE_ROOT; };
  342. 7141DD481C57459B00F7DF59 /* qrspec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrspec.c; path = common/qrcode/qrspec.c; sourceTree = SOURCE_ROOT; };
  343. 7141DD491C57459B00F7DF59 /* qrspec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrspec.h; path = common/qrcode/qrspec.h; sourceTree = SOURCE_ROOT; };
  344. 7141DD4A1C57459B00F7DF59 /* rscode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rscode.c; path = common/qrcode/rscode.c; sourceTree = SOURCE_ROOT; };
  345. 7141DD4B1C57459B00F7DF59 /* rscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rscode.h; path = common/qrcode/rscode.h; sourceTree = SOURCE_ROOT; };
  346. 7141DD4C1C57459B00F7DF59 /* split.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = split.c; path = common/qrcode/split.c; sourceTree = SOURCE_ROOT; };
  347. 7141DD4D1C57459B00F7DF59 /* split.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = split.h; path = common/qrcode/split.h; sourceTree = SOURCE_ROOT; };
  348. 7141DD561C5747CE00F7DF59 /* AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = common/AES/AESCrypt.h; sourceTree = SOURCE_ROOT; };
  349. 7141DD571C5747CE00F7DF59 /* AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AESCrypt.m; path = common/AES/AESCrypt.m; sourceTree = SOURCE_ROOT; };
  350. 7141DD581C5747CE00F7DF59 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE; path = common/AES/LICENSE; sourceTree = SOURCE_ROOT; };
  351. 7141DD591C5747CE00F7DF59 /* NSData+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+Base64.h"; path = "common/AES/NSData+Base64.h"; sourceTree = SOURCE_ROOT; };
  352. 7141DD5A1C5747CE00F7DF59 /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+Base64.m"; path = "common/AES/NSData+Base64.m"; sourceTree = SOURCE_ROOT; };
  353. 7141DD5B1C5747CE00F7DF59 /* NSData+CommonCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+CommonCrypto.h"; path = "common/AES/NSData+CommonCrypto.h"; sourceTree = SOURCE_ROOT; };
  354. 7141DD5C1C5747CE00F7DF59 /* NSData+CommonCrypto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+CommonCrypto.m"; path = "common/AES/NSData+CommonCrypto.m"; sourceTree = SOURCE_ROOT; };
  355. 7141DD5D1C5747CE00F7DF59 /* NSString+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+Base64.h"; path = "common/AES/NSString+Base64.h"; sourceTree = SOURCE_ROOT; };
  356. 7141DD5E1C5747CE00F7DF59 /* NSString+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+Base64.m"; path = "common/AES/NSString+Base64.m"; sourceTree = SOURCE_ROOT; };
  357. 7142E8781DBF57510077EFA2 /* KALINGA.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; path = KALINGA.TTF; sourceTree = "<group>"; };
  358. 7142E8791DBF57510077EFA2 /* KALINGAB.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; path = KALINGAB.TTF; sourceTree = "<group>"; };
  359. 7142E87C1DC300010077EFA2 /* DejaVuSans-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "DejaVuSans-Bold.ttf"; sourceTree = "<group>"; };
  360. 7142E87D1DC300010077EFA2 /* DejaVuSans.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = DejaVuSans.ttf; sourceTree = "<group>"; };
  361. 714B1F3E1C7BF74100539193 /* OrderDetailSignatureCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailSignatureCell.h; path = common/Functions/order/OrderDetailSignatureCell.h; sourceTree = SOURCE_ROOT; };
  362. 714B1F3F1C7BF74100539193 /* OrderDetailSignatureCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailSignatureCell.m; path = common/Functions/order/OrderDetailSignatureCell.m; sourceTree = SOURCE_ROOT; };
  363. 715001FD1D114D9100F5927F /* BundleDetailButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleDetailButton.h; path = common/Functions/BundleDetailButton.h; sourceTree = SOURCE_ROOT; };
  364. 715001FE1D114D9100F5927F /* BundleDetailButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleDetailButton.m; path = common/Functions/BundleDetailButton.m; sourceTree = SOURCE_ROOT; };
  365. 715850441CF6F0E500856B20 /* DefaultAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultAppearance.h; path = common/Functions/DefaultAppearance.h; sourceTree = SOURCE_ROOT; };
  366. 715850451CF6F0E500856B20 /* DefaultAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultAppearance.m; path = common/Functions/DefaultAppearance.m; sourceTree = SOURCE_ROOT; };
  367. 715F30BB1DAB37EB00490EED /* OfflineUnlockViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OfflineUnlockViewController.h; path = common/Functions/offline/OfflineUnlockViewController.h; sourceTree = SOURCE_ROOT; };
  368. 715F30BC1DAB37EB00490EED /* OfflineUnlockViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OfflineUnlockViewController.m; path = common/Functions/offline/OfflineUnlockViewController.m; sourceTree = SOURCE_ROOT; };
  369. 7161FEB21D61B24900157EE1 /* creditcardpayment.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = creditcardpayment.html; path = common/Functions/offline/creditcardpayment.html; sourceTree = SOURCE_ROOT; };
  370. 7161FEB31D61B24900157EE1 /* normalpayment.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = normalpayment.html; path = common/Functions/offline/normalpayment.html; sourceTree = SOURCE_ROOT; };
  371. 7161FEB41D61B24900157EE1 /* orderinfo.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = orderinfo.html; path = common/Functions/offline/orderinfo.html; sourceTree = SOURCE_ROOT; };
  372. 7162A4FA1C585FFB00AB630E /* PDFViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFViewController.h; path = "common/Functions/PDF+Web/PDFViewController.h"; sourceTree = SOURCE_ROOT; };
  373. 7162A4FB1C585FFB00AB630E /* PDFViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFViewController.m; path = "common/Functions/PDF+Web/PDFViewController.m"; sourceTree = SOURCE_ROOT; };
  374. 7162A4FC1C585FFB00AB630E /* WebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebViewController.h; path = "common/Functions/PDF+Web/WebViewController.h"; sourceTree = SOURCE_ROOT; };
  375. 7162A4FD1C585FFB00AB630E /* WebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebViewController.m; path = "common/Functions/PDF+Web/WebViewController.m"; sourceTree = SOURCE_ROOT; };
  376. 7162A5001C586F5B00AB630E /* AddressEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AddressEditorViewController.h; path = common/Functions/address/AddressEditorViewController.h; sourceTree = SOURCE_ROOT; };
  377. 7162A5011C586F5B00AB630E /* AddressEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AddressEditorViewController.m; path = common/Functions/address/AddressEditorViewController.m; sourceTree = SOURCE_ROOT; };
  378. 7162A5031C586FC100AB630E /* CycleScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CycleScrollView.h; path = common/AutoScrollImage/CycleScrollView.h; sourceTree = SOURCE_ROOT; };
  379. 7162A5041C586FC100AB630E /* CycleScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CycleScrollView.m; path = common/AutoScrollImage/CycleScrollView.m; sourceTree = SOURCE_ROOT; };
  380. 7162A5051C586FC100AB630E /* NSTimer+Addition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSTimer+Addition.h"; path = "common/AutoScrollImage/NSTimer+Addition.h"; sourceTree = SOURCE_ROOT; };
  381. 7162A5061C586FC100AB630E /* NSTimer+Addition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSTimer+Addition.m"; path = "common/AutoScrollImage/NSTimer+Addition.m"; sourceTree = SOURCE_ROOT; };
  382. 7162A5071C586FC100AB630E /* SliderPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SliderPage.h; path = common/AutoScrollImage/SliderPage.h; sourceTree = SOURCE_ROOT; };
  383. 7162A5081C586FC100AB630E /* SliderPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SliderPage.m; path = common/AutoScrollImage/SliderPage.m; sourceTree = SOURCE_ROOT; };
  384. 7162A50C1C58704600AB630E /* BundleModelCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleModelCell.h; path = common/Functions/cart/BundleModelCell.h; sourceTree = SOURCE_ROOT; };
  385. 7162A50D1C58704600AB630E /* BundleModelCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleModelCell.m; path = common/Functions/cart/BundleModelCell.m; sourceTree = SOURCE_ROOT; };
  386. 7162A50E1C58704600AB630E /* BundleModelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleModelViewController.h; path = common/Functions/cart/BundleModelViewController.h; sourceTree = SOURCE_ROOT; };
  387. 7162A50F1C58704600AB630E /* BundleModelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleModelViewController.m; path = common/Functions/cart/BundleModelViewController.m; sourceTree = SOURCE_ROOT; };
  388. 7162A5101C58704600AB630E /* CartViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartViewController.h; path = common/Functions/cart/CartViewController.h; sourceTree = SOURCE_ROOT; };
  389. 7162A5111C58704600AB630E /* CartViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartViewController.m; path = common/Functions/cart/CartViewController.m; sourceTree = SOURCE_ROOT; };
  390. 7162A5121C58704600AB630E /* EditModelPriceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EditModelPriceViewController.h; path = common/Functions/cart/EditModelPriceViewController.h; sourceTree = SOURCE_ROOT; };
  391. 7162A5131C58704600AB630E /* EditModelPriceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EditModelPriceViewController.m; path = common/Functions/cart/EditModelPriceViewController.m; sourceTree = SOURCE_ROOT; };
  392. 7162A5141C58704600AB630E /* ModelItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModelItemCell.h; path = common/Functions/cart/ModelItemCell.h; sourceTree = SOURCE_ROOT; };
  393. 7162A5151C58704600AB630E /* ModelItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModelItemCell.m; path = common/Functions/cart/ModelItemCell.m; sourceTree = SOURCE_ROOT; };
  394. 7162A51F1C58706C00AB630E /* CategoryCellSmall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryCellSmall.h; path = common/Functions/category/CategoryCellSmall.h; sourceTree = SOURCE_ROOT; };
  395. 7162A5201C58706C00AB630E /* CategoryCellSmall.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryCellSmall.m; path = common/Functions/category/CategoryCellSmall.m; sourceTree = SOURCE_ROOT; };
  396. 7162A5211C58706C00AB630E /* CategoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryViewController.h; path = common/Functions/category/CategoryViewController.h; sourceTree = SOURCE_ROOT; };
  397. 7162A5221C58706C00AB630E /* CategoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryViewController.m; path = common/Functions/category/CategoryViewController.m; sourceTree = SOURCE_ROOT; };
  398. 7162A5281C58713200AB630E /* CategoryCellNPD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryCellNPD.h; sourceTree = "<group>"; };
  399. 7162A5291C58713200AB630E /* CategoryCellNPD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryCellNPD.m; sourceTree = "<group>"; };
  400. 7162A52B1C58719D00AB630E /* RATreeNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNode.h; path = common/categoryMenu_RATree/RATreeNode.h; sourceTree = SOURCE_ROOT; };
  401. 7162A52C1C58719D00AB630E /* RATreeNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNode.m; path = common/categoryMenu_RATree/RATreeNode.m; sourceTree = SOURCE_ROOT; };
  402. 7162A52D1C58719D00AB630E /* RATreeNodeCollectionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNodeCollectionController.h; path = common/categoryMenu_RATree/RATreeNodeCollectionController.h; sourceTree = SOURCE_ROOT; };
  403. 7162A52E1C58719D00AB630E /* RATreeNodeCollectionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNodeCollectionController.m; path = common/categoryMenu_RATree/RATreeNodeCollectionController.m; sourceTree = SOURCE_ROOT; };
  404. 7162A52F1C58719D00AB630E /* RATreeNodeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNodeInfo.h; path = common/categoryMenu_RATree/RATreeNodeInfo.h; sourceTree = SOURCE_ROOT; };
  405. 7162A5301C58719D00AB630E /* RATreeNodeInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNodeInfo.m; path = common/categoryMenu_RATree/RATreeNodeInfo.m; sourceTree = SOURCE_ROOT; };
  406. 7162A5311C58719D00AB630E /* RATreeNodeInfo+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeNodeInfo+Private.h"; path = "common/categoryMenu_RATree/RATreeNodeInfo+Private.h"; sourceTree = SOURCE_ROOT; };
  407. 7162A5321C58719D00AB630E /* RATreeNodeInfo+Private.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeNodeInfo+Private.m"; path = "common/categoryMenu_RATree/RATreeNodeInfo+Private.m"; sourceTree = SOURCE_ROOT; };
  408. 7162A5331C58719D00AB630E /* RATreeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeView.h; path = common/categoryMenu_RATree/RATreeView.h; sourceTree = SOURCE_ROOT; };
  409. 7162A5341C58719D00AB630E /* RATreeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeView.m; path = common/categoryMenu_RATree/RATreeView.m; sourceTree = SOURCE_ROOT; };
  410. 7162A5351C58719D00AB630E /* RATreeView+Enums.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+Enums.h"; path = "common/categoryMenu_RATree/RATreeView+Enums.h"; sourceTree = SOURCE_ROOT; };
  411. 7162A5361C58719D00AB630E /* RATreeView+Enums.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+Enums.m"; path = "common/categoryMenu_RATree/RATreeView+Enums.m"; sourceTree = SOURCE_ROOT; };
  412. 7162A5371C58719D00AB630E /* RATreeView+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+Private.h"; path = "common/categoryMenu_RATree/RATreeView+Private.h"; sourceTree = SOURCE_ROOT; };
  413. 7162A5381C58719D00AB630E /* RATreeView+Private.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+Private.m"; path = "common/categoryMenu_RATree/RATreeView+Private.m"; sourceTree = SOURCE_ROOT; };
  414. 7162A5391C58719D00AB630E /* RATreeView+TableViewDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+TableViewDataSource.h"; path = "common/categoryMenu_RATree/RATreeView+TableViewDataSource.h"; sourceTree = SOURCE_ROOT; };
  415. 7162A53A1C58719D00AB630E /* RATreeView+TableViewDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+TableViewDataSource.m"; path = "common/categoryMenu_RATree/RATreeView+TableViewDataSource.m"; sourceTree = SOURCE_ROOT; };
  416. 7162A53B1C58719D00AB630E /* RATreeView+TableViewDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+TableViewDelegate.h"; path = "common/categoryMenu_RATree/RATreeView+TableViewDelegate.h"; sourceTree = SOURCE_ROOT; };
  417. 7162A53C1C58719D00AB630E /* RATreeView+TableViewDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+TableViewDelegate.m"; path = "common/categoryMenu_RATree/RATreeView+TableViewDelegate.m"; sourceTree = SOURCE_ROOT; };
  418. 7162A53D1C58719D00AB630E /* RATreeView+UIScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+UIScrollView.h"; path = "common/categoryMenu_RATree/RATreeView+UIScrollView.h"; sourceTree = SOURCE_ROOT; };
  419. 7162A53E1C58719D00AB630E /* RATreeView+UIScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+UIScrollView.m"; path = "common/categoryMenu_RATree/RATreeView+UIScrollView.m"; sourceTree = SOURCE_ROOT; };
  420. 7162A53F1C58719D00AB630E /* RAViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAViewController.h; path = common/categoryMenu_RATree/RAViewController.h; sourceTree = SOURCE_ROOT; };
  421. 7162A5401C58719D00AB630E /* RAViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAViewController.m; path = common/categoryMenu_RATree/RAViewController.m; sourceTree = SOURCE_ROOT; };
  422. 7162A54C1C58722200AB630E /* CreditCardEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CreditCardEditorViewController.h; path = common/Functions/creditcard/CreditCardEditorViewController.h; sourceTree = SOURCE_ROOT; };
  423. 7162A54D1C58722200AB630E /* CreditCardEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CreditCardEditorViewController.m; path = common/Functions/creditcard/CreditCardEditorViewController.m; sourceTree = SOURCE_ROOT; };
  424. 7162A54F1C58724700AB630E /* ContactAdvanceSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactAdvanceSearchViewController.h; path = common/Functions/contact/ContactAdvanceSearchViewController.h; sourceTree = SOURCE_ROOT; };
  425. 7162A5501C58724700AB630E /* ContactAdvanceSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactAdvanceSearchViewController.m; path = common/Functions/contact/ContactAdvanceSearchViewController.m; sourceTree = SOURCE_ROOT; };
  426. 7162A5511C58724700AB630E /* ContactListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactListTableViewCell.h; path = common/Functions/contact/ContactListTableViewCell.h; sourceTree = SOURCE_ROOT; };
  427. 7162A5521C58724700AB630E /* ContactListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactListTableViewCell.m; path = common/Functions/contact/ContactListTableViewCell.m; sourceTree = SOURCE_ROOT; };
  428. 7162A5531C58724700AB630E /* ContactListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactListViewController.h; path = common/Functions/contact/ContactListViewController.h; sourceTree = SOURCE_ROOT; };
  429. 7162A5541C58724700AB630E /* ContactListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactListViewController.m; path = common/Functions/contact/ContactListViewController.m; sourceTree = SOURCE_ROOT; };
  430. 7162A5551C58724700AB630E /* customer_advanced_search.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = customer_advanced_search.json; path = common/Functions/contact/customer_advanced_search.json; sourceTree = SOURCE_ROOT; };
  431. 7162A5561C58724700AB630E /* customer_info_template.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = customer_info_template.json; path = common/Functions/contact/customer_info_template.json; sourceTree = SOURCE_ROOT; };
  432. 7162A5571C58724700AB630E /* CustomerEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomerEditViewController.h; path = common/Functions/contact/CustomerEditViewController.h; sourceTree = SOURCE_ROOT; };
  433. 7162A5581C58724700AB630E /* CustomerEditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomerEditViewController.m; path = common/Functions/contact/CustomerEditViewController.m; sourceTree = SOURCE_ROOT; };
  434. 7162A5591C58724700AB630E /* CustomerInfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomerInfoViewController.h; path = common/Functions/contact/CustomerInfoViewController.h; sourceTree = SOURCE_ROOT; };
  435. 7162A55A1C58724700AB630E /* CustomerInfoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomerInfoViewController.m; path = common/Functions/contact/CustomerInfoViewController.m; sourceTree = SOURCE_ROOT; };
  436. 7162A5621C58728D00AB630E /* DetailHeaderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailHeaderCell.h; path = common/Functions/modelDetail/DetailHeaderCell.h; sourceTree = SOURCE_ROOT; };
  437. 7162A5631C58728D00AB630E /* DetailHeaderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailHeaderCell.m; path = common/Functions/modelDetail/DetailHeaderCell.m; sourceTree = SOURCE_ROOT; };
  438. 7162A5641C58728D00AB630E /* DetailImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailImageCell.h; path = common/Functions/modelDetail/DetailImageCell.h; sourceTree = SOURCE_ROOT; };
  439. 7162A5651C58728D00AB630E /* DetailImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailImageCell.m; path = common/Functions/modelDetail/DetailImageCell.m; sourceTree = SOURCE_ROOT; };
  440. 7162A5661C58728D00AB630E /* DetailKVCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailKVCell.h; path = common/Functions/modelDetail/DetailKVCell.h; sourceTree = SOURCE_ROOT; };
  441. 7162A5671C58728D00AB630E /* DetailKVCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailKVCell.m; path = common/Functions/modelDetail/DetailKVCell.m; sourceTree = SOURCE_ROOT; };
  442. 7162A5681C58728D00AB630E /* DetailTopicCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailTopicCell.h; path = common/Functions/modelDetail/DetailTopicCell.h; sourceTree = SOURCE_ROOT; };
  443. 7162A5691C58728D00AB630E /* DetailTopicCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailTopicCell.m; path = common/Functions/modelDetail/DetailTopicCell.m; sourceTree = SOURCE_ROOT; };
  444. 7162A56A1C58728D00AB630E /* DetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailViewController.h; path = common/Functions/modelDetail/DetailViewController.h; sourceTree = SOURCE_ROOT; };
  445. 7162A56B1C58728D00AB630E /* DetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailViewController.m; path = common/Functions/modelDetail/DetailViewController.m; sourceTree = SOURCE_ROOT; };
  446. 7162A56C1C58728D00AB630E /* LineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LineView.h; path = common/Functions/modelDetail/LineView.h; sourceTree = SOURCE_ROOT; };
  447. 7162A56D1C58728D00AB630E /* LineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LineView.m; path = common/Functions/modelDetail/LineView.m; sourceTree = SOURCE_ROOT; };
  448. 7162A5771C5872EF00AB630E /* HomeTableViewCellBanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellBanner.h; path = common/Functions/home/HomeTableViewCellBanner.h; sourceTree = SOURCE_ROOT; };
  449. 7162A5781C5872EF00AB630E /* HomeTableViewCellBanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellBanner.m; path = common/Functions/home/HomeTableViewCellBanner.m; sourceTree = SOURCE_ROOT; };
  450. 7162A5791C5872EF00AB630E /* HomeTableViewCellButtonBanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellButtonBanner.h; path = common/Functions/home/HomeTableViewCellButtonBanner.h; sourceTree = SOURCE_ROOT; };
  451. 7162A57A1C5872EF00AB630E /* HomeTableViewCellButtonBanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellButtonBanner.m; path = common/Functions/home/HomeTableViewCellButtonBanner.m; sourceTree = SOURCE_ROOT; };
  452. 7162A57B1C5872EF00AB630E /* HomeTableViewCellSlide.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellSlide.h; path = common/Functions/home/HomeTableViewCellSlide.h; sourceTree = SOURCE_ROOT; };
  453. 7162A57C1C5872EF00AB630E /* HomeTableViewCellSlide.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellSlide.m; path = common/Functions/home/HomeTableViewCellSlide.m; sourceTree = SOURCE_ROOT; };
  454. 7162A57D1C5872EF00AB630E /* HomeTableViewCellTopic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellTopic.h; path = common/Functions/home/HomeTableViewCellTopic.h; sourceTree = SOURCE_ROOT; };
  455. 7162A57E1C5872EF00AB630E /* HomeTableViewCellTopic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellTopic.m; path = common/Functions/home/HomeTableViewCellTopic.m; sourceTree = SOURCE_ROOT; };
  456. 7162A57F1C5872EF00AB630E /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeViewController.h; path = common/Functions/home/HomeViewController.h; sourceTree = SOURCE_ROOT; };
  457. 7162A5801C5872EF00AB630E /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeViewController.m; path = common/Functions/home/HomeViewController.m; sourceTree = SOURCE_ROOT; };
  458. 7162A5861C58733400AB630E /* CreateOrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CreateOrderViewController.h; path = common/Functions/order/CreateOrderViewController.h; sourceTree = SOURCE_ROOT; };
  459. 7162A5871C58733400AB630E /* CreateOrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CreateOrderViewController.m; path = common/Functions/order/CreateOrderViewController.m; sourceTree = SOURCE_ROOT; };
  460. 7162A5881C58733400AB630E /* OrderDetailHtmlCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailHtmlCell.h; path = common/Functions/order/OrderDetailHtmlCell.h; sourceTree = SOURCE_ROOT; };
  461. 7162A5891C58733400AB630E /* OrderDetailHtmlCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailHtmlCell.m; path = common/Functions/order/OrderDetailHtmlCell.m; sourceTree = SOURCE_ROOT; };
  462. 7162A58A1C58733400AB630E /* OrderDetailInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailInfoCell.h; path = common/Functions/order/OrderDetailInfoCell.h; sourceTree = SOURCE_ROOT; };
  463. 7162A58B1C58733400AB630E /* OrderDetailInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailInfoCell.m; path = common/Functions/order/OrderDetailInfoCell.m; sourceTree = SOURCE_ROOT; };
  464. 7162A58C1C58733400AB630E /* OrderDetailModelCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailModelCell.h; path = common/Functions/order/OrderDetailModelCell.h; sourceTree = SOURCE_ROOT; };
  465. 7162A58D1C58733400AB630E /* OrderDetailModelCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailModelCell.m; path = common/Functions/order/OrderDetailModelCell.m; sourceTree = SOURCE_ROOT; };
  466. 7162A58E1C58733400AB630E /* OrderDetailPriceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailPriceCell.h; path = common/Functions/order/OrderDetailPriceCell.h; sourceTree = SOURCE_ROOT; };
  467. 7162A58F1C58733400AB630E /* OrderDetailPriceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailPriceCell.m; path = common/Functions/order/OrderDetailPriceCell.m; sourceTree = SOURCE_ROOT; };
  468. 7162A5901C58733400AB630E /* OrderDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailViewController.h; path = common/Functions/order/OrderDetailViewController.h; sourceTree = SOURCE_ROOT; };
  469. 7162A5911C58733400AB630E /* OrderDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailViewController.m; path = common/Functions/order/OrderDetailViewController.m; sourceTree = SOURCE_ROOT; };
  470. 7162A5921C58733400AB630E /* OrderListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderListTableViewCell.h; path = common/Functions/order/OrderListTableViewCell.h; sourceTree = SOURCE_ROOT; };
  471. 7162A5931C58733400AB630E /* OrderListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderListTableViewCell.m; path = common/Functions/order/OrderListTableViewCell.m; sourceTree = SOURCE_ROOT; };
  472. 7162A5941C58733400AB630E /* OrderListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderListViewController.h; path = common/Functions/order/OrderListViewController.h; sourceTree = SOURCE_ROOT; };
  473. 7162A5951C58733400AB630E /* OrderListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderListViewController.m; path = common/Functions/order/OrderListViewController.m; sourceTree = SOURCE_ROOT; };
  474. 7162A5961C58733400AB630E /* status_filter_cadedate_open.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = status_filter_cadedate_open.json; path = common/Functions/order/status_filter_cadedate_open.json; sourceTree = SOURCE_ROOT; };
  475. 7162A5971C58733400AB630E /* offline_status_filter_cadedate.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = offline_status_filter_cadedate.json; path = common/Functions/order/offline_status_filter_cadedate.json; sourceTree = SOURCE_ROOT; };
  476. 7162A5A21C58735900AB630E /* PDFListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFListTableViewCell.h; path = common/Functions/portfolio/PDFListTableViewCell.h; sourceTree = SOURCE_ROOT; };
  477. 7162A5A31C58735900AB630E /* PDFListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFListTableViewCell.m; path = common/Functions/portfolio/PDFListTableViewCell.m; sourceTree = SOURCE_ROOT; };
  478. 7162A5A41C58735900AB630E /* PDFListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFListViewController.h; path = common/Functions/portfolio/PDFListViewController.h; sourceTree = SOURCE_ROOT; };
  479. 7162A5A51C58735900AB630E /* PDFListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFListViewController.m; path = common/Functions/portfolio/PDFListViewController.m; sourceTree = SOURCE_ROOT; };
  480. 7162A5A61C58735900AB630E /* PortfolioViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioViewController.h; path = common/Functions/portfolio/PortfolioViewController.h; sourceTree = SOURCE_ROOT; };
  481. 7162A5A71C58735900AB630E /* PortfolioViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioViewController.m; path = common/Functions/portfolio/PortfolioViewController.m; sourceTree = SOURCE_ROOT; };
  482. 7162A5A81C58735900AB630E /* TearSheetParamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TearSheetParamViewController.h; path = common/Functions/portfolio/TearSheetParamViewController.h; sourceTree = SOURCE_ROOT; };
  483. 7162A5A91C58735900AB630E /* TearSheetParamViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TearSheetParamViewController.m; path = common/Functions/portfolio/TearSheetParamViewController.m; sourceTree = SOURCE_ROOT; };
  484. 7162A5AE1C58738600AB630E /* ScannerControllerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerControllerView.h; path = common/Functions/camscan/ScannerControllerView.h; sourceTree = SOURCE_ROOT; };
  485. 7162A5AF1C58738600AB630E /* ScannerControllerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerControllerView.m; path = common/Functions/camscan/ScannerControllerView.m; sourceTree = SOURCE_ROOT; };
  486. 7162A5B01C58738600AB630E /* ScannerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerViewController.h; path = common/Functions/camscan/ScannerViewController.h; sourceTree = SOURCE_ROOT; };
  487. 7162A5B11C58738600AB630E /* ScannerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerViewController.m; path = common/Functions/camscan/ScannerViewController.m; sourceTree = SOURCE_ROOT; };
  488. 7162A5B21C58738600AB630E /* SCShapeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SCShapeView.h; path = common/Functions/camscan/SCShapeView.h; sourceTree = SOURCE_ROOT; };
  489. 7162A5B31C58738600AB630E /* SCShapeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SCShapeView.m; path = common/Functions/camscan/SCShapeView.m; sourceTree = SOURCE_ROOT; };
  490. 7162A5B71C5873BB00AB630E /* FilterCellCadedate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FilterCellCadedate.h; path = "common/Functions/search+itemsearch/FilterCellCadedate.h"; sourceTree = SOURCE_ROOT; };
  491. 7162A5B81C5873BB00AB630E /* FilterCellCadedate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FilterCellCadedate.m; path = "common/Functions/search+itemsearch/FilterCellCadedate.m"; sourceTree = SOURCE_ROOT; };
  492. 7162A5B91C5873BB00AB630E /* FilterCellValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FilterCellValue.h; path = "common/Functions/search+itemsearch/FilterCellValue.h"; sourceTree = SOURCE_ROOT; };
  493. 7162A5BA1C5873BB00AB630E /* FilterCellValue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FilterCellValue.m; path = "common/Functions/search+itemsearch/FilterCellValue.m"; sourceTree = SOURCE_ROOT; };
  494. 7162A5BB1C5873BB00AB630E /* ItemSearchFilterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemSearchFilterViewController.h; path = "common/Functions/search+itemsearch/ItemSearchFilterViewController.h"; sourceTree = SOURCE_ROOT; };
  495. 7162A5BC1C5873BB00AB630E /* ItemSearchFilterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemSearchFilterViewController.m; path = "common/Functions/search+itemsearch/ItemSearchFilterViewController.m"; sourceTree = SOURCE_ROOT; };
  496. 7162A5BD1C5873BB00AB630E /* ItemSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemSearchViewController.h; path = "common/Functions/search+itemsearch/ItemSearchViewController.h"; sourceTree = SOURCE_ROOT; };
  497. 7162A5BE1C5873BB00AB630E /* ItemSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemSearchViewController.m; path = "common/Functions/search+itemsearch/ItemSearchViewController.m"; sourceTree = SOURCE_ROOT; };
  498. 7162A5BF1C5873BB00AB630E /* SearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SearchViewController.h; path = "common/Functions/search+itemsearch/SearchViewController.h"; sourceTree = SOURCE_ROOT; };
  499. 7162A5C01C5873BB00AB630E /* SearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SearchViewController.m; path = "common/Functions/search+itemsearch/SearchViewController.m"; sourceTree = SOURCE_ROOT; };
  500. 7162A5C61C58761500AB630E /* SignatureView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SignatureView.h; path = common/Functions/signature/SignatureView.h; sourceTree = SOURCE_ROOT; };
  501. 7162A5C71C58761500AB630E /* SignatureView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SignatureView.m; path = common/Functions/signature/SignatureView.m; sourceTree = SOURCE_ROOT; };
  502. 7162A5C81C58761500AB630E /* SignatureViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SignatureViewController.h; path = common/Functions/signature/SignatureViewController.h; sourceTree = SOURCE_ROOT; };
  503. 7162A5C91C58761500AB630E /* SignatureViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SignatureViewController.m; path = common/Functions/signature/SignatureViewController.m; sourceTree = SOURCE_ROOT; };
  504. 7162A5CC1C5876E300AB630E /* AboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutViewController.h; path = common/Functions/sidemenu/AboutViewController.h; sourceTree = SOURCE_ROOT; };
  505. 7162A5CD1C5876E300AB630E /* AboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AboutViewController.m; path = common/Functions/sidemenu/AboutViewController.m; sourceTree = SOURCE_ROOT; };
  506. 7162A5CE1C5876E300AB630E /* CacheViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CacheViewController.h; path = common/Functions/sidemenu/CacheViewController.h; sourceTree = SOURCE_ROOT; };
  507. 7162A5CF1C5876E300AB630E /* CacheViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CacheViewController.m; path = common/Functions/sidemenu/CacheViewController.m; sourceTree = SOURCE_ROOT; };
  508. 7162A5D01C5876E300AB630E /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LoginViewController.h; path = common/Functions/sidemenu/LoginViewController.h; sourceTree = SOURCE_ROOT; };
  509. 7162A5D11C5876E300AB630E /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LoginViewController.m; path = common/Functions/sidemenu/LoginViewController.m; sourceTree = SOURCE_ROOT; };
  510. 7162A5D21C5876E300AB630E /* PopupNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PopupNavigationController.h; path = common/Functions/sidemenu/PopupNavigationController.h; sourceTree = SOURCE_ROOT; };
  511. 7162A5D31C5876E300AB630E /* PopupNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PopupNavigationController.m; path = common/Functions/sidemenu/PopupNavigationController.m; sourceTree = SOURCE_ROOT; };
  512. 7162A5D41C5876E300AB630E /* RetrievePassViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RetrievePassViewController.h; path = common/Functions/sidemenu/RetrievePassViewController.h; sourceTree = SOURCE_ROOT; };
  513. 7162A5D51C5876E300AB630E /* RetrievePassViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RetrievePassViewController.m; path = common/Functions/sidemenu/RetrievePassViewController.m; sourceTree = SOURCE_ROOT; };
  514. 7162A5D61C5876E300AB630E /* ScannerSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerSettingViewController.h; path = common/Functions/sidemenu/ScannerSettingViewController.h; sourceTree = SOURCE_ROOT; };
  515. 7162A5D71C5876E300AB630E /* ScannerSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerSettingViewController.m; path = common/Functions/sidemenu/ScannerSettingViewController.m; sourceTree = SOURCE_ROOT; };
  516. 7162A5D81C5876E300AB630E /* SettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SettingViewController.h; path = common/Functions/sidemenu/SettingViewController.h; sourceTree = SOURCE_ROOT; };
  517. 7162A5D91C5876E300AB630E /* SettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SettingViewController.m; path = common/Functions/sidemenu/SettingViewController.m; sourceTree = SOURCE_ROOT; };
  518. 7162A5E11C5877CE00AB630E /* WatchListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WatchListViewController.h; path = common/Functions/watchlist/WatchListViewController.h; sourceTree = SOURCE_ROOT; };
  519. 7162A5E21C5877CE00AB630E /* WatchListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WatchListViewController.m; path = common/Functions/watchlist/WatchListViewController.m; sourceTree = SOURCE_ROOT; };
  520. 7162A5E41C58781000AB630E /* iSalesNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iSalesNavigationController.h; path = common/iSalesNavigationController.h; sourceTree = SOURCE_ROOT; };
  521. 7162A5E51C58781000AB630E /* iSalesNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iSalesNavigationController.m; path = common/iSalesNavigationController.m; sourceTree = SOURCE_ROOT; };
  522. 7162A5E71C5899F700AB630E /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainViewController.h; path = common/Functions/MainViewController.h; sourceTree = SOURCE_ROOT; };
  523. 7162A5E81C5899F700AB630E /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MainViewController.m; path = common/Functions/MainViewController.m; sourceTree = SOURCE_ROOT; };
  524. 716387D3195408E7006E65E6 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
  525. 716961B419594E1000B19FB4 /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
  526. 716AF8DF1D7AA0E0001188E0 /* SelectUploadOrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SelectUploadOrderViewController.h; path = common/Functions/offline/SelectUploadOrderViewController.h; sourceTree = SOURCE_ROOT; };
  527. 716AF8E01D7AA0E0001188E0 /* SelectUploadOrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SelectUploadOrderViewController.m; path = common/Functions/offline/SelectUploadOrderViewController.m; sourceTree = SOURCE_ROOT; };
  528. 716AF8E51D7AA398001188E0 /* SelectOrderTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SelectOrderTableViewCell.m; path = common/Functions/offline/SelectOrderTableViewCell.m; sourceTree = SOURCE_ROOT; };
  529. 716AF8E61D7AA398001188E0 /* SelectOrderTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SelectOrderTableViewCell.h; path = common/Functions/offline/SelectOrderTableViewCell.h; sourceTree = SOURCE_ROOT; };
  530. 71777FC51C8AC97300DA2511 /* debug_category_filter.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = debug_category_filter.json; sourceTree = "<group>"; };
  531. 7186C25B1C97A6EE00CB43F4 /* FunctionTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FunctionTestViewController.h; path = common/Functions/sidemenu/FunctionTestViewController.h; sourceTree = SOURCE_ROOT; };
  532. 7186C25C1C97A6EE00CB43F4 /* FunctionTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FunctionTestViewController.m; path = common/Functions/sidemenu/FunctionTestViewController.m; sourceTree = SOURCE_ROOT; };
  533. 718716221C433D5000F25860 /* libScanApiCore.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libScanApiCore.a; path = ../lib/libScanApiCore.a; sourceTree = "<group>"; };
  534. 718716241C433D8B00F25860 /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = System/Library/Frameworks/ExternalAccessory.framework; sourceTree = SDKROOT; };
  535. 718716261C433D9700F25860 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  536. 718716281C433DA400F25860 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  537. 7187162A1C43406300F25860 /* libScanApiCore.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libScanApiCore.a; path = "../../../ios_samples/ScanApiSDK-10.2.227/lib/libScanApiCore.a"; sourceTree = "<group>"; };
  538. 718B91811C75638100265FFF /* TouchImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TouchImageView.h; path = common/customUI/TouchImageView.h; sourceTree = SOURCE_ROOT; };
  539. 718B91821C75638100265FFF /* TouchImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TouchImageView.m; path = common/customUI/TouchImageView.m; sourceTree = SOURCE_ROOT; };
  540. 7195623A1CF57D1800C74A49 /* CategoryHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryHeaderView.h; path = common/Functions/category/CategoryHeaderView.h; sourceTree = SOURCE_ROOT; };
  541. 7195623B1CF57D1800C74A49 /* CategoryHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryHeaderView.m; path = common/Functions/category/CategoryHeaderView.m; sourceTree = SOURCE_ROOT; };
  542. 719562401CF5828200C74A49 /* DefaultTableHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultTableHeaderView.h; path = common/customUI/DefaultTableHeaderView.h; sourceTree = SOURCE_ROOT; };
  543. 719562411CF5828200C74A49 /* DefaultTableHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultTableHeaderView.m; path = common/customUI/DefaultTableHeaderView.m; sourceTree = SOURCE_ROOT; };
  544. 71BBA2211CEAC16000C91DED /* ZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ZipArchive.h; path = common/zip/ZipArchive.h; sourceTree = SOURCE_ROOT; };
  545. 71BBA2221CEAC16000C91DED /* ZipArchive.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ZipArchive.mm; path = common/zip/ZipArchive.mm; sourceTree = SOURCE_ROOT; };
  546. 71BBA2281CEAC17E00C91DED /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  547. 71BBA2371CEAEF0700C91DED /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crypt.h; path = common/zip/minizip/crypt.h; sourceTree = SOURCE_ROOT; };
  548. 71BBA2381CEAEF0700C91DED /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ioapi.c; path = common/zip/minizip/ioapi.c; sourceTree = SOURCE_ROOT; };
  549. 71BBA2391CEAEF0700C91DED /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ioapi.h; path = common/zip/minizip/ioapi.h; sourceTree = SOURCE_ROOT; };
  550. 71BBA23A1CEAEF0700C91DED /* mztools.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mztools.c; path = common/zip/minizip/mztools.c; sourceTree = SOURCE_ROOT; };
  551. 71BBA23B1CEAEF0700C91DED /* mztools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mztools.h; path = common/zip/minizip/mztools.h; sourceTree = SOURCE_ROOT; };
  552. 71BBA23C1CEAEF0700C91DED /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unzip.c; path = common/zip/minizip/unzip.c; sourceTree = SOURCE_ROOT; };
  553. 71BBA23D1CEAEF0700C91DED /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unzip.h; path = common/zip/minizip/unzip.h; sourceTree = SOURCE_ROOT; };
  554. 71BBA23E1CEAEF0700C91DED /* zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zip.c; path = common/zip/minizip/zip.c; sourceTree = SOURCE_ROOT; };
  555. 71BBA23F1CEAEF0700C91DED /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = zip.h; path = common/zip/minizip/zip.h; sourceTree = SOURCE_ROOT; };
  556. 71BF06F91D2F3CAC00981938 /* OLDataProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OLDataProvider.h; path = common/Functions/offline/OLDataProvider.h; sourceTree = SOURCE_ROOT; };
  557. 71BF06FA1D2F3CAC00981938 /* OLDataProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OLDataProvider.m; path = common/Functions/offline/OLDataProvider.m; sourceTree = SOURCE_ROOT; };
  558. 71BF06FC1D2F3CBA00981938 /* OfflineSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OfflineSettingViewController.h; path = common/Functions/offline/OfflineSettingViewController.h; sourceTree = SOURCE_ROOT; };
  559. 71BF06FD1D2F3CBA00981938 /* OfflineSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OfflineSettingViewController.m; path = common/Functions/offline/OfflineSettingViewController.m; sourceTree = SOURCE_ROOT; };
  560. 71BF07061D2F3D2800981938 /* SyncControlPanelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SyncControlPanelViewController.h; path = common/Functions/offline/SyncControlPanelViewController.h; sourceTree = SOURCE_ROOT; };
  561. 71BF07071D2F3D2800981938 /* SyncControlPanelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SyncControlPanelViewController.m; path = common/Functions/offline/SyncControlPanelViewController.m; sourceTree = SOURCE_ROOT; };
  562. 71D0344D1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioEditQTYViewController.h; path = common/Functions/portfolio/PortfolioEditQTYViewController.h; sourceTree = SOURCE_ROOT; };
  563. 71D0344E1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioEditQTYViewController.m; path = common/Functions/portfolio/PortfolioEditQTYViewController.m; sourceTree = SOURCE_ROOT; };
  564. 71D30A201CFBEDC6006F9477 /* default_appearance.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = default_appearance.json; sourceTree = "<group>"; };
  565. 71D30A2B1CFC0EF8006F9477 /* DefaultImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultImageButton.h; path = common/Functions/DefaultImageButton.h; sourceTree = SOURCE_ROOT; };
  566. 71D30A2C1CFC0EF8006F9477 /* DefaultImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultImageButton.m; path = common/Functions/DefaultImageButton.m; sourceTree = SOURCE_ROOT; };
  567. 71D46D101CE1D9EF00A081AC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/OLM.storyboard; sourceTree = "<group>"; };
  568. 71D5016B1DC32C3300971FBB /* portfolio_2x3.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = portfolio_2x3.json; sourceTree = "<group>"; };
  569. 71D99D2E1CEF02E700CA32DE /* CustomIOSAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomIOSAlertView.h; path = common/customUI/CustomIOSAlertView.h; sourceTree = SOURCE_ROOT; };
  570. 71D99D2F1CEF02E700CA32DE /* CustomIOSAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomIOSAlertView.m; path = common/customUI/CustomIOSAlertView.m; sourceTree = SOURCE_ROOT; };
  571. 71DEE873192DE003003F645F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  572. 71DEE875192DE00E003F645F /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  573. 71DF74291C57560600F2789C /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Reachability.h; path = common/Reachability.h; sourceTree = SOURCE_ROOT; };
  574. 71DF742A1C57560600F2789C /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Reachability.m; path = common/Reachability.m; sourceTree = SOURCE_ROOT; };
  575. 71DF742D1C5756C600F2789C /* const.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = const.h; path = common/const.h; sourceTree = SOURCE_ROOT; };
  576. 71DF742E1C57572600F2789C /* RAUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAUtils.h; path = common/RAUtils.h; sourceTree = SOURCE_ROOT; };
  577. 71DF742F1C57572600F2789C /* RAUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAUtils.m; path = common/RAUtils.m; sourceTree = SOURCE_ROOT; };
  578. 71DF74321C5757DA00F2789C /* ActiveViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ActiveViewController.h; path = common/ActiveViewController.h; sourceTree = SOURCE_ROOT; };
  579. 71DF74331C5757DA00F2789C /* ActiveViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ActiveViewController.m; path = common/ActiveViewController.m; sourceTree = SOURCE_ROOT; };
  580. 71DF74351C575D6600F2789C /* CommonGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonGridViewController.h; path = common/CommonGridViewController.h; sourceTree = SOURCE_ROOT; };
  581. 71DF74361C575D6600F2789C /* CommonGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonGridViewController.m; path = common/CommonGridViewController.m; sourceTree = SOURCE_ROOT; };
  582. 71DF743B1C575E7900F2789C /* CommonEditorCellAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellAction.h; path = common/CommonEditor/CommonEditorCellAction.h; sourceTree = SOURCE_ROOT; };
  583. 71DF743C1C575E7900F2789C /* CommonEditorCellAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellAction.m; path = common/CommonEditor/CommonEditorCellAction.m; sourceTree = SOURCE_ROOT; };
  584. 71DF743D1C575E7900F2789C /* CommonEditorCellEdit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEdit.h; path = common/CommonEditor/CommonEditorCellEdit.h; sourceTree = SOURCE_ROOT; };
  585. 71DF743E1C575E7900F2789C /* CommonEditorCellEdit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEdit.m; path = common/CommonEditor/CommonEditorCellEdit.m; sourceTree = SOURCE_ROOT; };
  586. 71DF743F1C575E7900F2789C /* CommonEditorCellEnum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEnum.h; path = common/CommonEditor/CommonEditorCellEnum.h; sourceTree = SOURCE_ROOT; };
  587. 71DF74401C575E7900F2789C /* CommonEditorCellEnum.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEnum.m; path = common/CommonEditor/CommonEditorCellEnum.m; sourceTree = SOURCE_ROOT; };
  588. 71DF74411C575E7900F2789C /* CommonEditorCellImg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellImg.h; path = common/CommonEditor/CommonEditorCellImg.h; sourceTree = SOURCE_ROOT; };
  589. 71DF74421C575E7900F2789C /* CommonEditorCellImg.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellImg.m; path = common/CommonEditor/CommonEditorCellImg.m; sourceTree = SOURCE_ROOT; };
  590. 71DF74431C575E7900F2789C /* CommonEditorCellLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellLabel.h; path = common/CommonEditor/CommonEditorCellLabel.h; sourceTree = SOURCE_ROOT; };
  591. 71DF74441C575E7900F2789C /* CommonEditorCellLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellLabel.m; path = common/CommonEditor/CommonEditorCellLabel.m; sourceTree = SOURCE_ROOT; };
  592. 71DF74451C575E7900F2789C /* CommonEditorCellMAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellMAction.h; path = common/CommonEditor/CommonEditorCellMAction.h; sourceTree = SOURCE_ROOT; };
  593. 71DF74461C575E7900F2789C /* CommonEditorCellMAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellMAction.m; path = common/CommonEditor/CommonEditorCellMAction.m; sourceTree = SOURCE_ROOT; };
  594. 71DF74471C575E7900F2789C /* CommonEditorCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellModel.h; path = common/CommonEditor/CommonEditorCellModel.h; sourceTree = SOURCE_ROOT; };
  595. 71DF74481C575E7900F2789C /* CommonEditorCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellModel.m; path = common/CommonEditor/CommonEditorCellModel.m; sourceTree = SOURCE_ROOT; };
  596. 71DF74491C575E7900F2789C /* CommonEditorCellSignature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellSignature.h; path = common/CommonEditor/CommonEditorCellSignature.h; sourceTree = SOURCE_ROOT; };
  597. 71DF744A1C575E7900F2789C /* CommonEditorCellSignature.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellSignature.m; path = common/CommonEditor/CommonEditorCellSignature.m; sourceTree = SOURCE_ROOT; };
  598. 71DF744B1C575E7900F2789C /* CommonEditorCellSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellSwitch.h; path = common/CommonEditor/CommonEditorCellSwitch.h; sourceTree = SOURCE_ROOT; };
  599. 71DF744C1C575E7900F2789C /* CommonEditorCellSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellSwitch.m; path = common/CommonEditor/CommonEditorCellSwitch.m; sourceTree = SOURCE_ROOT; };
  600. 71DF744D1C575E7900F2789C /* CommonEditorCellTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellTextView.h; path = common/CommonEditor/CommonEditorCellTextView.h; sourceTree = SOURCE_ROOT; };
  601. 71DF744E1C575E7900F2789C /* CommonEditorCellTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellTextView.m; path = common/CommonEditor/CommonEditorCellTextView.m; sourceTree = SOURCE_ROOT; };
  602. 71DF744F1C575E7900F2789C /* CommonEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorViewController.h; path = common/CommonEditor/CommonEditorViewController.h; sourceTree = SOURCE_ROOT; };
  603. 71DF74501C575E7900F2789C /* CommonEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorViewController.m; path = common/CommonEditor/CommonEditorViewController.m; sourceTree = SOURCE_ROOT; };
  604. 71DF74511C575E7900F2789C /* DatePickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DatePickerViewController.h; path = common/CommonEditor/DatePickerViewController.h; sourceTree = SOURCE_ROOT; };
  605. 71DF74521C575E7900F2789C /* DatePickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DatePickerViewController.m; path = common/CommonEditor/DatePickerViewController.m; sourceTree = SOURCE_ROOT; };
  606. 71DF74531C575E7900F2789C /* EnumSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectorCell.h; path = common/CommonEditor/EnumSelectorCell.h; sourceTree = SOURCE_ROOT; };
  607. 71DF74541C575E7900F2789C /* EnumSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectorCell.m; path = common/CommonEditor/EnumSelectorCell.m; sourceTree = SOURCE_ROOT; };
  608. 71DF74551C575E7900F2789C /* EnumSelectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectViewController.h; path = common/CommonEditor/EnumSelectViewController.h; sourceTree = SOURCE_ROOT; };
  609. 71DF74561C575E7900F2789C /* EnumSelectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectViewController.m; path = common/CommonEditor/EnumSelectViewController.m; sourceTree = SOURCE_ROOT; };
  610. 71DF74571C575E7900F2789C /* MonthPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MonthPickerViewController.h; path = common/CommonEditor/MonthPickerViewController.h; sourceTree = SOURCE_ROOT; };
  611. 71DF74581C575E7900F2789C /* MonthPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MonthPickerViewController.m; path = common/CommonEditor/MonthPickerViewController.m; sourceTree = SOURCE_ROOT; };
  612. 71DF74591C575E7900F2789C /* SRMonthPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SRMonthPicker.h; path = common/CommonEditor/SRMonthPicker.h; sourceTree = SOURCE_ROOT; };
  613. 71DF745A1C575E7900F2789C /* SRMonthPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SRMonthPicker.m; path = common/CommonEditor/SRMonthPicker.m; sourceTree = SOURCE_ROOT; };
  614. 71DF746B1C57608F00F2789C /* ImageScrollerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageScrollerView.h; path = common/customUI/ImageScrollerView.h; sourceTree = SOURCE_ROOT; };
  615. 71DF746C1C57608F00F2789C /* ImageScrollerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageScrollerView.m; path = common/customUI/ImageScrollerView.m; sourceTree = SOURCE_ROOT; };
  616. 71DF746D1C57608F00F2789C /* ImageScrollerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageScrollerViewController.h; path = common/customUI/ImageScrollerViewController.h; sourceTree = SOURCE_ROOT; };
  617. 71DF746E1C57608F00F2789C /* ImageScrollerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageScrollerViewController.m; path = common/customUI/ImageScrollerViewController.m; sourceTree = SOURCE_ROOT; };
  618. 71DF746F1C57608F00F2789C /* ImageUploadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageUploadViewController.h; path = common/customUI/ImageUploadViewController.h; sourceTree = SOURCE_ROOT; };
  619. 71DF74701C57608F00F2789C /* ImageUploadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageUploadViewController.m; path = common/customUI/ImageUploadViewController.m; sourceTree = SOURCE_ROOT; };
  620. 71DF74711C57608F00F2789C /* ImageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageViewController.h; path = common/customUI/ImageViewController.h; sourceTree = SOURCE_ROOT; };
  621. 71DF74721C57608F00F2789C /* ImageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageViewController.m; path = common/customUI/ImageViewController.m; sourceTree = SOURCE_ROOT; };
  622. 71DF74731C57608F00F2789C /* NIDropDown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NIDropDown.h; path = common/customUI/NIDropDown.h; sourceTree = SOURCE_ROOT; };
  623. 71DF74741C57608F00F2789C /* NIDropDown.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NIDropDown.m; path = common/customUI/NIDropDown.m; sourceTree = SOURCE_ROOT; };
  624. 71DF74751C57608F00F2789C /* PulldownMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PulldownMenu.h; path = common/customUI/PulldownMenu.h; sourceTree = SOURCE_ROOT; };
  625. 71DF74761C57608F00F2789C /* PulldownMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PulldownMenu.m; path = common/customUI/PulldownMenu.m; sourceTree = SOURCE_ROOT; };
  626. 71DF74771C57608F00F2789C /* RadioButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RadioButton.h; path = common/customUI/RadioButton.h; sourceTree = SOURCE_ROOT; };
  627. 71DF74781C57608F00F2789C /* RadioButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RadioButton.m; path = common/customUI/RadioButton.m; sourceTree = SOURCE_ROOT; };
  628. 71DF74791C57608F00F2789C /* RTLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RTLabel.h; path = common/customUI/RTLabel.h; sourceTree = SOURCE_ROOT; };
  629. 71DF747A1C57608F00F2789C /* RTLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RTLabel.m; path = common/customUI/RTLabel.m; sourceTree = SOURCE_ROOT; };
  630. 71DF747B1C57608F00F2789C /* SimpleGrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimpleGrid.h; path = common/customUI/SimpleGrid.h; sourceTree = SOURCE_ROOT; };
  631. 71DF747C1C57608F00F2789C /* SimpleGrid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimpleGrid.m; path = common/customUI/SimpleGrid.m; sourceTree = SOURCE_ROOT; };
  632. 71DF747D1C57608F00F2789C /* StrikethroughLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StrikethroughLabel.h; path = common/customUI/StrikethroughLabel.h; sourceTree = SOURCE_ROOT; };
  633. 71DF747E1C57608F00F2789C /* StrikethroughLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = StrikethroughLabel.m; path = common/customUI/StrikethroughLabel.m; sourceTree = SOURCE_ROOT; };
  634. 71DF747F1C57608F00F2789C /* TouchLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TouchLabel.h; path = common/customUI/TouchLabel.h; sourceTree = SOURCE_ROOT; };
  635. 71DF74801C57608F00F2789C /* TouchLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TouchLabel.m; path = common/customUI/TouchLabel.m; sourceTree = SOURCE_ROOT; };
  636. 71DF74811C57608F00F2789C /* UILabel+FontAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UILabel+FontAppearance.h"; path = "common/customUI/UILabel+FontAppearance.h"; sourceTree = SOURCE_ROOT; };
  637. 71DF74821C57608F00F2789C /* UILabel+FontAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UILabel+FontAppearance.m"; path = "common/customUI/UILabel+FontAppearance.m"; sourceTree = SOURCE_ROOT; };
  638. 71DF748F1C57614C00F2789C /* PhotoBorder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = PhotoBorder.png; path = common/photoStack/PhotoBorder.png; sourceTree = SOURCE_ROOT; };
  639. 71DF74901C57614C00F2789C /* PhotoBorder@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "PhotoBorder@2x.png"; path = "common/photoStack/PhotoBorder@2x.png"; sourceTree = SOURCE_ROOT; };
  640. 71DF74911C57614C00F2789C /* PhotoStackView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhotoStackView.h; path = common/photoStack/PhotoStackView.h; sourceTree = SOURCE_ROOT; };
  641. 71DF74921C57614C00F2789C /* PhotoStackView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhotoStackView.m; path = common/photoStack/PhotoStackView.m; sourceTree = SOURCE_ROOT; };
  642. 71DF74931C57614C00F2789C /* PhotoStackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhotoStackViewController.h; path = common/photoStack/PhotoStackViewController.h; sourceTree = SOURCE_ROOT; };
  643. 71DF74941C57614C00F2789C /* PhotoStackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhotoStackViewController.m; path = common/photoStack/PhotoStackViewController.m; sourceTree = SOURCE_ROOT; };
  644. 71E5A00F1DC99370005BF655 /* config.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = config.plist; sourceTree = "<group>"; };
  645. 71FFBBE51C60894900D91DC2 /* iSalesDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iSalesDB.h; path = common/data_provider/iSalesDB.h; sourceTree = SOURCE_ROOT; };
  646. 71FFBBE61C60894900D91DC2 /* iSalesDB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iSalesDB.m; path = common/data_provider/iSalesDB.m; sourceTree = SOURCE_ROOT; };
  647. 71FFBBE71C60894900D91DC2 /* iSalesNetwork.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iSalesNetwork.h; path = common/data_provider/iSalesNetwork.h; sourceTree = SOURCE_ROOT; };
  648. 71FFBBE81C60894900D91DC2 /* iSalesNetwork.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iSalesNetwork.m; path = common/data_provider/iSalesNetwork.m; sourceTree = SOURCE_ROOT; };
  649. C694180C757B34E24180D628 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; };
  650. /* End PBXFileReference section */
  651. /* Begin PBXFrameworksBuildPhase section */
  652. 713F76A31929F4A7006A7305 /* Frameworks */ = {
  653. isa = PBXFrameworksBuildPhase;
  654. buildActionMask = 2147483647;
  655. files = (
  656. 71BBA2291CEAC17E00C91DED /* libz.tbd in Frameworks */,
  657. 7187162C1C43428100F25860 /* libScanApiCore.a in Frameworks */,
  658. 718716291C433DA400F25860 /* AVFoundation.framework in Frameworks */,
  659. 718716271C433D9700F25860 /* AudioToolbox.framework in Frameworks */,
  660. 718716251C433D8B00F25860 /* ExternalAccessory.framework in Frameworks */,
  661. 716961B519594E1000B19FB4 /* libsqlite3.dylib in Frameworks */,
  662. 71DEE876192DE00E003F645F /* Accelerate.framework in Frameworks */,
  663. 71DEE874192DE003003F645F /* QuartzCore.framework in Frameworks */,
  664. 713F76AC1929F4A7006A7305 /* CoreGraphics.framework in Frameworks */,
  665. 713F76AE1929F4A7006A7305 /* UIKit.framework in Frameworks */,
  666. 713F76AA1929F4A7006A7305 /* Foundation.framework in Frameworks */,
  667. A31E80CF7BEA220BD1CC4B97 /* libPods.a in Frameworks */,
  668. );
  669. runOnlyForDeploymentPostprocessing = 0;
  670. };
  671. /* End PBXFrameworksBuildPhase section */
  672. /* Begin PBXGroup section */
  673. 421C54FF1D81586D00CFA3B1 /* JKTimer */ = {
  674. isa = PBXGroup;
  675. children = (
  676. 421C55001D81586D00CFA3B1 /* JKTimerManager.h */,
  677. 421C55011D81586D00CFA3B1 /* JKTimerManager.m */,
  678. );
  679. path = JKTimer;
  680. sourceTree = "<group>";
  681. };
  682. 423B49F01DAC8CE0004181C2 /* Price Setting */ = {
  683. isa = PBXGroup;
  684. children = (
  685. 423B49F11DAC8D2C004181C2 /* PriceSettingViewController.h */,
  686. 423B49F21DAC8D2C004181C2 /* PriceSettingViewController.m */,
  687. 426D40101DACB0990058B96B /* CategoryPriceViewController.h */,
  688. 426D40111DACB0990058B96B /* CategoryPriceViewController.m */,
  689. 426D40131DACB51F0058B96B /* CategoryPriceCell.h */,
  690. 426D40141DACB51F0058B96B /* CategoryPriceCell.m */,
  691. 426D40161DACC2250058B96B /* SetCategoryPriceController.h */,
  692. 426D40171DACC2250058B96B /* SetCategoryPriceController.m */,
  693. );
  694. name = "Price Setting";
  695. sourceTree = "<group>";
  696. };
  697. 42BED0141DAF74DF004576E0 /* JKLock */ = {
  698. isa = PBXGroup;
  699. children = (
  700. 42F637501DB2178E00605C4B /* JKMessageBoxController.h */,
  701. 42F637511DB2178E00605C4B /* JKMessageBoxController.m */,
  702. 42BED0151DAF74DF004576E0 /* JKDotView.h */,
  703. 42BED0161DAF74DF004576E0 /* JKDotView.m */,
  704. 42BED0171DAF74DF004576E0 /* JKLockButton.h */,
  705. 42BED0181DAF74DF004576E0 /* JKLockButton.m */,
  706. 42BED0191DAF74DF004576E0 /* JKLockController.h */,
  707. 42BED01A1DAF74DF004576E0 /* JKLockController.m */,
  708. );
  709. path = JKLock;
  710. sourceTree = "<group>";
  711. };
  712. 42E58BFF1D7E735A0092810A /* UIColor+HEX */ = {
  713. isa = PBXGroup;
  714. children = (
  715. 42E58C001D7E735A0092810A /* UIColor+JK_HEX.h */,
  716. 42E58C011D7E735A0092810A /* UIColor+JK_HEX.m */,
  717. );
  718. path = "UIColor+HEX";
  719. sourceTree = "<group>";
  720. };
  721. 710212821B8D59DE00E1788B /* watchlist */ = {
  722. isa = PBXGroup;
  723. children = (
  724. 7162A5E11C5877CE00AB630E /* WatchListViewController.h */,
  725. 7162A5E21C5877CE00AB630E /* WatchListViewController.m */,
  726. );
  727. name = watchlist;
  728. sourceTree = "<group>";
  729. };
  730. 711A551F1C153AA800EF5FDA /* portfolio */ = {
  731. isa = PBXGroup;
  732. children = (
  733. 7162A5A21C58735900AB630E /* PDFListTableViewCell.h */,
  734. 7162A5A31C58735900AB630E /* PDFListTableViewCell.m */,
  735. 7162A5A41C58735900AB630E /* PDFListViewController.h */,
  736. 7162A5A51C58735900AB630E /* PDFListViewController.m */,
  737. 7162A5A61C58735900AB630E /* PortfolioViewController.h */,
  738. 7162A5A71C58735900AB630E /* PortfolioViewController.m */,
  739. 7162A5A81C58735900AB630E /* TearSheetParamViewController.h */,
  740. 7162A5A91C58735900AB630E /* TearSheetParamViewController.m */,
  741. 71D0344D1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.h */,
  742. 71D0344E1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m */,
  743. );
  744. name = portfolio;
  745. sourceTree = "<group>";
  746. };
  747. 712AFEC41DBA044C00254965 /* pdfCreator */ = {
  748. isa = PBXGroup;
  749. children = (
  750. 712AFEC51DBA050200254965 /* BasicDrawable.h */,
  751. 712AFEC61DBA050200254965 /* BasicDrawable.m */,
  752. 712AFEC71DBA050200254965 /* GridDrawable.h */,
  753. 712AFEC81DBA050200254965 /* GridDrawable.m */,
  754. 712AFEC91DBA050200254965 /* GroupDrawable.h */,
  755. 712AFECA1DBA050200254965 /* GroupDrawable.m */,
  756. 712AFECB1DBA050200254965 /* ImageDrawable.h */,
  757. 712AFECC1DBA050200254965 /* ImageDrawable.m */,
  758. 712AFECD1DBA050200254965 /* LineDrawable.h */,
  759. 712AFECE1DBA050200254965 /* LineDrawable.m */,
  760. 712AFECF1DBA050200254965 /* PDFDrawable.h */,
  761. 712AFED01DBA050200254965 /* PDFDrawable.m */,
  762. 712AFED11DBA050200254965 /* PDFPage.h */,
  763. 712AFED21DBA050200254965 /* PDFPage.m */,
  764. 712AFED31DBA050200254965 /* TableDrawable.h */,
  765. 712AFED41DBA050200254965 /* TableDrawable.m */,
  766. 712AFED51DBA050200254965 /* TextDrawable.h */,
  767. 712AFED61DBA050200254965 /* TextDrawable.m */,
  768. 712AFEE01DBA077F00254965 /* pdfCreator.h */,
  769. 712AFEE11DBA077F00254965 /* pdfCreator.m */,
  770. );
  771. name = pdfCreator;
  772. sourceTree = "<group>";
  773. };
  774. 712AFEE31DBDAEA000254965 /* PDFResource */ = {
  775. isa = PBXGroup;
  776. children = (
  777. 7142E8471DBF01A10077EFA2 /* font */,
  778. 712AFEE41DBDAF0300254965 /* pdfcreator.xcassets */,
  779. 7142E8481DBF01AC0077EFA2 /* template */,
  780. );
  781. name = PDFResource;
  782. sourceTree = "<group>";
  783. };
  784. 713393FE19936C980075BBAC /* Signature */ = {
  785. isa = PBXGroup;
  786. children = (
  787. 7162A5C61C58761500AB630E /* SignatureView.h */,
  788. 7162A5C71C58761500AB630E /* SignatureView.m */,
  789. 7162A5C81C58761500AB630E /* SignatureViewController.h */,
  790. 7162A5C91C58761500AB630E /* SignatureViewController.m */,
  791. );
  792. name = Signature;
  793. sourceTree = "<group>";
  794. };
  795. 713F769D1929F4A7006A7305 = {
  796. isa = PBXGroup;
  797. children = (
  798. 713F76AF1929F4A7006A7305 /* iSales-NPD */,
  799. );
  800. sourceTree = "<group>";
  801. };
  802. 713F76A71929F4A7006A7305 /* Products */ = {
  803. isa = PBXGroup;
  804. children = (
  805. 713F76A61929F4A7006A7305 /* NPD Mobile.app */,
  806. );
  807. name = Products;
  808. path = ..;
  809. sourceTree = "<group>";
  810. };
  811. 713F76A81929F4A7006A7305 /* Frameworks */ = {
  812. isa = PBXGroup;
  813. children = (
  814. 71BBA2281CEAC17E00C91DED /* libz.tbd */,
  815. 7187162A1C43406300F25860 /* libScanApiCore.a */,
  816. 718716281C433DA400F25860 /* AVFoundation.framework */,
  817. 718716261C433D9700F25860 /* AudioToolbox.framework */,
  818. 718716241C433D8B00F25860 /* ExternalAccessory.framework */,
  819. 718716221C433D5000F25860 /* libScanApiCore.a */,
  820. 716961B419594E1000B19FB4 /* libsqlite3.dylib */,
  821. 71DEE875192DE00E003F645F /* Accelerate.framework */,
  822. 71DEE873192DE003003F645F /* QuartzCore.framework */,
  823. 713F76A91929F4A7006A7305 /* Foundation.framework */,
  824. 713F76AB1929F4A7006A7305 /* CoreGraphics.framework */,
  825. 713F76AD1929F4A7006A7305 /* UIKit.framework */,
  826. 713F76C81929F4A7006A7305 /* XCTest.framework */,
  827. C694180C757B34E24180D628 /* libPods.a */,
  828. );
  829. name = Frameworks;
  830. path = ..;
  831. sourceTree = "<group>";
  832. };
  833. 713F76AF1929F4A7006A7305 /* iSales-NPD */ = {
  834. isa = PBXGroup;
  835. children = (
  836. 716387C71953CDB4006E65E6 /* utils */,
  837. 71DF74311C5757C800F2789C /* CommonUI */,
  838. 718716141C433B4300F25860 /* ScanAPI */,
  839. 71DF742C1C57567800F2789C /* NPD */,
  840. 7190F1091BBBCAF100B2F243 /* PDF+Web */,
  841. 714C6ADA1B83016A000123E3 /* address */,
  842. 71F731FC192F395000F2CF76 /* AutoScrollImage */,
  843. 7143E0C919414E4B00B2EB1A /* cartView */,
  844. 7191A67319650A11007DC977 /* cagegory */,
  845. 716BA58D195AB4170007093A /* categoryMenu */,
  846. 714C6ADE1B83069A000123E3 /* creditcard */,
  847. 7185C3CE1B919C7200B4823C /* contact */,
  848. 719E45D71B63883100FD098B /* DetailView */,
  849. 71DBACEE1B5E401A00D8BD7E /* HomeView */,
  850. 714C6AE21B83107A000123E3 /* order */,
  851. 717AE10B1D1A5E99007DC5CA /* offline */,
  852. 711A551F1C153AA800EF5FDA /* portfolio */,
  853. 714A52061995E90300627D23 /* cam_scan */,
  854. 71A2478A1B955448000E1F84 /* search */,
  855. 713393FE19936C980075BBAC /* Signature */,
  856. 716387CC1953D693006E65E6 /* sideMenu */,
  857. 710212821B8D59DE00E1788B /* watchlist */,
  858. 423B49F01DAC8CE0004181C2 /* Price Setting */,
  859. 713F76B81929F4A7006A7305 /* AppDelegate.h */,
  860. 713F76B91929F4A7006A7305 /* AppDelegate.m */,
  861. 4219B7E81DADC48D0092B4DE /* Singleton.h */,
  862. 4219B7E91DADC48D0092B4DE /* Singleton.m */,
  863. 7162A5E71C5899F700AB630E /* MainViewController.h */,
  864. 7162A5E81C5899F700AB630E /* MainViewController.m */,
  865. 423B49EE1DAC8071004181C2 /* CUL.storyboard */,
  866. 71D46D0F1CE1D9EF00A081AC /* OLM.storyboard */,
  867. 713F76BB1929F4A7006A7305 /* Main.storyboard */,
  868. 7162A5E41C58781000AB630E /* iSalesNavigationController.h */,
  869. 7162A5E51C58781000AB630E /* iSalesNavigationController.m */,
  870. 4207D2821D8247CB001B4A67 /* NotificationNameCenter.h */,
  871. 4207D2831D8247CB001B4A67 /* NotificationNameCenter.m */,
  872. 713F76C11929F4A7006A7305 /* Images.xcassets */,
  873. 713F76B01929F4A7006A7305 /* Supporting Files */,
  874. 713F76B11929F4A7006A7305 /* iSales-NPD-Info.plist */,
  875. 713F76B21929F4A7006A7305 /* InfoPlist.strings */,
  876. 713F76B51929F4A7006A7305 /* main.m */,
  877. 713F76B71929F4A7006A7305 /* iSales-NPD-Prefix.pch */,
  878. 713F76A81929F4A7006A7305 /* Frameworks */,
  879. 713F76A71929F4A7006A7305 /* Products */,
  880. CA33503C644B4B30FB07E665 /* Pods */,
  881. );
  882. path = "iSales-NPD";
  883. sourceTree = "<group>";
  884. };
  885. 713F76B01929F4A7006A7305 /* Supporting Files */ = {
  886. isa = PBXGroup;
  887. children = (
  888. );
  889. name = "Supporting Files";
  890. sourceTree = "<group>";
  891. };
  892. 7142E8471DBF01A10077EFA2 /* font */ = {
  893. isa = PBXGroup;
  894. children = (
  895. 7142E8781DBF57510077EFA2 /* KALINGA.TTF */,
  896. 7142E8791DBF57510077EFA2 /* KALINGAB.TTF */,
  897. 7142E87C1DC300010077EFA2 /* DejaVuSans-Bold.ttf */,
  898. 7142E87D1DC300010077EFA2 /* DejaVuSans.ttf */,
  899. );
  900. name = font;
  901. sourceTree = "<group>";
  902. };
  903. 7142E8481DBF01AC0077EFA2 /* template */ = {
  904. isa = PBXGroup;
  905. children = (
  906. 712AFEE61DBDB48000254965 /* portfolio_3x2.json */,
  907. 71D5016B1DC32C3300971FBB /* portfolio_2x3.json */,
  908. );
  909. name = template;
  910. sourceTree = "<group>";
  911. };
  912. 7143E0C919414E4B00B2EB1A /* cartView */ = {
  913. isa = PBXGroup;
  914. children = (
  915. 7162A50C1C58704600AB630E /* BundleModelCell.h */,
  916. 7162A50D1C58704600AB630E /* BundleModelCell.m */,
  917. 7162A50E1C58704600AB630E /* BundleModelViewController.h */,
  918. 7162A50F1C58704600AB630E /* BundleModelViewController.m */,
  919. 7162A5101C58704600AB630E /* CartViewController.h */,
  920. 7162A5111C58704600AB630E /* CartViewController.m */,
  921. 7162A5121C58704600AB630E /* EditModelPriceViewController.h */,
  922. 7162A5131C58704600AB630E /* EditModelPriceViewController.m */,
  923. 7162A5141C58704600AB630E /* ModelItemCell.h */,
  924. 7162A5151C58704600AB630E /* ModelItemCell.m */,
  925. 712C40B71C731126000E6831 /* ItemNotesViewController.h */,
  926. 712C40B81C731126000E6831 /* ItemNotesViewController.m */,
  927. 712C40B41C7310F4000E6831 /* CartGeneralNotesViewController.h */,
  928. 712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */,
  929. );
  930. name = cartView;
  931. sourceTree = "<group>";
  932. };
  933. 714A52061995E90300627D23 /* cam_scan */ = {
  934. isa = PBXGroup;
  935. children = (
  936. 7162A5AE1C58738600AB630E /* ScannerControllerView.h */,
  937. 7162A5AF1C58738600AB630E /* ScannerControllerView.m */,
  938. 7162A5B01C58738600AB630E /* ScannerViewController.h */,
  939. 7162A5B11C58738600AB630E /* ScannerViewController.m */,
  940. 7162A5B21C58738600AB630E /* SCShapeView.h */,
  941. 7162A5B31C58738600AB630E /* SCShapeView.m */,
  942. );
  943. name = cam_scan;
  944. sourceTree = "<group>";
  945. };
  946. 714C6ADA1B83016A000123E3 /* address */ = {
  947. isa = PBXGroup;
  948. children = (
  949. 7162A5001C586F5B00AB630E /* AddressEditorViewController.h */,
  950. 7162A5011C586F5B00AB630E /* AddressEditorViewController.m */,
  951. );
  952. name = address;
  953. sourceTree = "<group>";
  954. };
  955. 714C6ADE1B83069A000123E3 /* creditcard */ = {
  956. isa = PBXGroup;
  957. children = (
  958. 7162A54C1C58722200AB630E /* CreditCardEditorViewController.h */,
  959. 7162A54D1C58722200AB630E /* CreditCardEditorViewController.m */,
  960. );
  961. name = creditcard;
  962. sourceTree = "<group>";
  963. };
  964. 714C6AE21B83107A000123E3 /* order */ = {
  965. isa = PBXGroup;
  966. children = (
  967. 7162A5861C58733400AB630E /* CreateOrderViewController.h */,
  968. 7162A5871C58733400AB630E /* CreateOrderViewController.m */,
  969. 7162A5881C58733400AB630E /* OrderDetailHtmlCell.h */,
  970. 7162A5891C58733400AB630E /* OrderDetailHtmlCell.m */,
  971. 7162A58A1C58733400AB630E /* OrderDetailInfoCell.h */,
  972. 7162A58B1C58733400AB630E /* OrderDetailInfoCell.m */,
  973. 7162A58C1C58733400AB630E /* OrderDetailModelCell.h */,
  974. 7162A58D1C58733400AB630E /* OrderDetailModelCell.m */,
  975. 7162A58E1C58733400AB630E /* OrderDetailPriceCell.h */,
  976. 7162A58F1C58733400AB630E /* OrderDetailPriceCell.m */,
  977. 7162A5901C58733400AB630E /* OrderDetailViewController.h */,
  978. 7162A5911C58733400AB630E /* OrderDetailViewController.m */,
  979. 7162A5921C58733400AB630E /* OrderListTableViewCell.h */,
  980. 7162A5931C58733400AB630E /* OrderListTableViewCell.m */,
  981. 7162A5941C58733400AB630E /* OrderListViewController.h */,
  982. 7162A5951C58733400AB630E /* OrderListViewController.m */,
  983. 7162A5961C58733400AB630E /* status_filter_cadedate_open.json */,
  984. 7162A5971C58733400AB630E /* offline_status_filter_cadedate.json */,
  985. 714B1F3E1C7BF74100539193 /* OrderDetailSignatureCell.h */,
  986. 714B1F3F1C7BF74100539193 /* OrderDetailSignatureCell.m */,
  987. );
  988. name = order;
  989. sourceTree = "<group>";
  990. };
  991. 715EB9A6193866F2006D16A5 /* photoStack */ = {
  992. isa = PBXGroup;
  993. children = (
  994. 71DF748F1C57614C00F2789C /* PhotoBorder.png */,
  995. 71DF74901C57614C00F2789C /* PhotoBorder@2x.png */,
  996. 71DF74911C57614C00F2789C /* PhotoStackView.h */,
  997. 71DF74921C57614C00F2789C /* PhotoStackView.m */,
  998. 71DF74931C57614C00F2789C /* PhotoStackViewController.h */,
  999. 71DF74941C57614C00F2789C /* PhotoStackViewController.m */,
  1000. );
  1001. name = photoStack;
  1002. sourceTree = "<group>";
  1003. };
  1004. 7162A5271C5870C100AB630E /* NPD */ = {
  1005. isa = PBXGroup;
  1006. children = (
  1007. 7162A5281C58713200AB630E /* CategoryCellNPD.h */,
  1008. 7162A5291C58713200AB630E /* CategoryCellNPD.m */,
  1009. );
  1010. name = NPD;
  1011. sourceTree = "<group>";
  1012. };
  1013. 716387C71953CDB4006E65E6 /* utils */ = {
  1014. isa = PBXGroup;
  1015. children = (
  1016. 712AFEC41DBA044C00254965 /* pdfCreator */,
  1017. 712AFEE31DBDAEA000254965 /* PDFResource */,
  1018. 42BED0141DAF74DF004576E0 /* JKLock */,
  1019. 421C54FF1D81586D00CFA3B1 /* JKTimer */,
  1020. 42E58BFF1D7E735A0092810A /* UIColor+HEX */,
  1021. 71BBA2171CEAC10200C91DED /* zip */,
  1022. 71B1250B1C55BD4600118904 /* QRCODE */,
  1023. 71BE066E1BA1607400FA6544 /* AES */,
  1024. 71DF74291C57560600F2789C /* Reachability.h */,
  1025. 71DF742A1C57560600F2789C /* Reachability.m */,
  1026. 71DF742D1C5756C600F2789C /* const.h */,
  1027. 71DF742E1C57572600F2789C /* RAUtils.h */,
  1028. 71DF742F1C57572600F2789C /* RAUtils.m */,
  1029. 71FFBBE51C60894900D91DC2 /* iSalesDB.h */,
  1030. 71FFBBE61C60894900D91DC2 /* iSalesDB.m */,
  1031. 71FFBBE71C60894900D91DC2 /* iSalesNetwork.h */,
  1032. 71FFBBE81C60894900D91DC2 /* iSalesNetwork.m */,
  1033. 71BF06F91D2F3CAC00981938 /* OLDataProvider.h */,
  1034. 71BF06FA1D2F3CAC00981938 /* OLDataProvider.m */,
  1035. 42C9FB141D5B28FA001DCA8B /* contactAdvanceSearch.json */,
  1036. 423A4ADB1D503A53005ECE4A /* createContact.json */,
  1037. 42969C011D52F31C00FF190A /* editContact.json */,
  1038. 42DC31121D546FBE00BCD1C6 /* category.json */,
  1039. 42A51BF51D62F9AB00F13667 /* orderDetail.json */,
  1040. 42A51BF31D62F60300F13667 /* more_info.html */,
  1041. 42B3C9BA1D642C880053985C /* order_info.html */,
  1042. 42A225321D6E7D1D00235B62 /* placeOrderTemplate.json */,
  1043. 42C2E8BB1DB49D02006C0495 /* TearSheet.json */,
  1044. );
  1045. name = utils;
  1046. sourceTree = "<group>";
  1047. };
  1048. 716387CC1953D693006E65E6 /* sideMenu */ = {
  1049. isa = PBXGroup;
  1050. children = (
  1051. 7162A5CC1C5876E300AB630E /* AboutViewController.h */,
  1052. 7162A5CD1C5876E300AB630E /* AboutViewController.m */,
  1053. 7162A5CE1C5876E300AB630E /* CacheViewController.h */,
  1054. 7162A5CF1C5876E300AB630E /* CacheViewController.m */,
  1055. 7162A5D01C5876E300AB630E /* LoginViewController.h */,
  1056. 7162A5D11C5876E300AB630E /* LoginViewController.m */,
  1057. 7162A5D21C5876E300AB630E /* PopupNavigationController.h */,
  1058. 7162A5D31C5876E300AB630E /* PopupNavigationController.m */,
  1059. 7162A5D41C5876E300AB630E /* RetrievePassViewController.h */,
  1060. 7162A5D51C5876E300AB630E /* RetrievePassViewController.m */,
  1061. 7162A5D61C5876E300AB630E /* ScannerSettingViewController.h */,
  1062. 7162A5D71C5876E300AB630E /* ScannerSettingViewController.m */,
  1063. 7162A5D81C5876E300AB630E /* SettingViewController.h */,
  1064. 7162A5D91C5876E300AB630E /* SettingViewController.m */,
  1065. 7186C25B1C97A6EE00CB43F4 /* FunctionTestViewController.h */,
  1066. 7186C25C1C97A6EE00CB43F4 /* FunctionTestViewController.m */,
  1067. 71131F901CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.h */,
  1068. 71131F911CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m */,
  1069. 710274231CC606C4009FD219 /* UserListViewController.h */,
  1070. 710274241CC606C4009FD219 /* UserListViewController.m */,
  1071. );
  1072. name = sideMenu;
  1073. sourceTree = "<group>";
  1074. };
  1075. 716387D2195408DA006E65E6 /* config */ = {
  1076. isa = PBXGroup;
  1077. children = (
  1078. 716387D3195408E7006E65E6 /* config.h */,
  1079. 71E5A00F1DC99370005BF655 /* config.plist */,
  1080. );
  1081. name = config;
  1082. sourceTree = "<group>";
  1083. };
  1084. 716BA58D195AB4170007093A /* categoryMenu */ = {
  1085. isa = PBXGroup;
  1086. children = (
  1087. 7162A52B1C58719D00AB630E /* RATreeNode.h */,
  1088. 7162A52C1C58719D00AB630E /* RATreeNode.m */,
  1089. 7162A52D1C58719D00AB630E /* RATreeNodeCollectionController.h */,
  1090. 7162A52E1C58719D00AB630E /* RATreeNodeCollectionController.m */,
  1091. 7162A52F1C58719D00AB630E /* RATreeNodeInfo.h */,
  1092. 7162A5301C58719D00AB630E /* RATreeNodeInfo.m */,
  1093. 7162A5311C58719D00AB630E /* RATreeNodeInfo+Private.h */,
  1094. 7162A5321C58719D00AB630E /* RATreeNodeInfo+Private.m */,
  1095. 7162A5331C58719D00AB630E /* RATreeView.h */,
  1096. 7162A5341C58719D00AB630E /* RATreeView.m */,
  1097. 7162A5351C58719D00AB630E /* RATreeView+Enums.h */,
  1098. 7162A5361C58719D00AB630E /* RATreeView+Enums.m */,
  1099. 7162A5371C58719D00AB630E /* RATreeView+Private.h */,
  1100. 7162A5381C58719D00AB630E /* RATreeView+Private.m */,
  1101. 7162A5391C58719D00AB630E /* RATreeView+TableViewDataSource.h */,
  1102. 7162A53A1C58719D00AB630E /* RATreeView+TableViewDataSource.m */,
  1103. 7162A53B1C58719D00AB630E /* RATreeView+TableViewDelegate.h */,
  1104. 7162A53C1C58719D00AB630E /* RATreeView+TableViewDelegate.m */,
  1105. 7162A53D1C58719D00AB630E /* RATreeView+UIScrollView.h */,
  1106. 7162A53E1C58719D00AB630E /* RATreeView+UIScrollView.m */,
  1107. 7162A53F1C58719D00AB630E /* RAViewController.h */,
  1108. 7162A5401C58719D00AB630E /* RAViewController.m */,
  1109. );
  1110. name = categoryMenu;
  1111. sourceTree = "<group>";
  1112. };
  1113. 717AE10B1D1A5E99007DC5CA /* offline */ = {
  1114. isa = PBXGroup;
  1115. children = (
  1116. 7161FEB21D61B24900157EE1 /* creditcardpayment.html */,
  1117. 7161FEB31D61B24900157EE1 /* normalpayment.html */,
  1118. 7161FEB41D61B24900157EE1 /* orderinfo.html */,
  1119. 71BF06FC1D2F3CBA00981938 /* OfflineSettingViewController.h */,
  1120. 71BF06FD1D2F3CBA00981938 /* OfflineSettingViewController.m */,
  1121. 71BF07061D2F3D2800981938 /* SyncControlPanelViewController.h */,
  1122. 71BF07071D2F3D2800981938 /* SyncControlPanelViewController.m */,
  1123. 716AF8DF1D7AA0E0001188E0 /* SelectUploadOrderViewController.h */,
  1124. 716AF8E01D7AA0E0001188E0 /* SelectUploadOrderViewController.m */,
  1125. 716AF8E61D7AA398001188E0 /* SelectOrderTableViewCell.h */,
  1126. 716AF8E51D7AA398001188E0 /* SelectOrderTableViewCell.m */,
  1127. 715F30BB1DAB37EB00490EED /* OfflineUnlockViewController.h */,
  1128. 715F30BC1DAB37EB00490EED /* OfflineUnlockViewController.m */,
  1129. );
  1130. name = offline;
  1131. sourceTree = "<group>";
  1132. };
  1133. 7185C3CE1B919C7200B4823C /* contact */ = {
  1134. isa = PBXGroup;
  1135. children = (
  1136. 7162A54F1C58724700AB630E /* ContactAdvanceSearchViewController.h */,
  1137. 7162A5501C58724700AB630E /* ContactAdvanceSearchViewController.m */,
  1138. 7162A5511C58724700AB630E /* ContactListTableViewCell.h */,
  1139. 7162A5521C58724700AB630E /* ContactListTableViewCell.m */,
  1140. 7162A5531C58724700AB630E /* ContactListViewController.h */,
  1141. 7162A5541C58724700AB630E /* ContactListViewController.m */,
  1142. 7162A5551C58724700AB630E /* customer_advanced_search.json */,
  1143. 7162A5561C58724700AB630E /* customer_info_template.json */,
  1144. 7111E5711C76C557004763B3 /* customer_info_template_edit.json */,
  1145. 7162A5571C58724700AB630E /* CustomerEditViewController.h */,
  1146. 7162A5581C58724700AB630E /* CustomerEditViewController.m */,
  1147. 7162A5591C58724700AB630E /* CustomerInfoViewController.h */,
  1148. 7162A55A1C58724700AB630E /* CustomerInfoViewController.m */,
  1149. );
  1150. name = contact;
  1151. sourceTree = "<group>";
  1152. };
  1153. 718600B31936C385004B6CDE /* customUI */ = {
  1154. isa = PBXGroup;
  1155. children = (
  1156. 71D99D2E1CEF02E700CA32DE /* CustomIOSAlertView.h */,
  1157. 71D99D2F1CEF02E700CA32DE /* CustomIOSAlertView.m */,
  1158. 71DF746B1C57608F00F2789C /* ImageScrollerView.h */,
  1159. 71DF746C1C57608F00F2789C /* ImageScrollerView.m */,
  1160. 71DF746D1C57608F00F2789C /* ImageScrollerViewController.h */,
  1161. 71DF746E1C57608F00F2789C /* ImageScrollerViewController.m */,
  1162. 71DF746F1C57608F00F2789C /* ImageUploadViewController.h */,
  1163. 71DF74701C57608F00F2789C /* ImageUploadViewController.m */,
  1164. 71DF74711C57608F00F2789C /* ImageViewController.h */,
  1165. 71DF74721C57608F00F2789C /* ImageViewController.m */,
  1166. 71DF74731C57608F00F2789C /* NIDropDown.h */,
  1167. 71DF74741C57608F00F2789C /* NIDropDown.m */,
  1168. 71DF74751C57608F00F2789C /* PulldownMenu.h */,
  1169. 71DF74761C57608F00F2789C /* PulldownMenu.m */,
  1170. 71DF74771C57608F00F2789C /* RadioButton.h */,
  1171. 71DF74781C57608F00F2789C /* RadioButton.m */,
  1172. 71DF74791C57608F00F2789C /* RTLabel.h */,
  1173. 71DF747A1C57608F00F2789C /* RTLabel.m */,
  1174. 71DF747B1C57608F00F2789C /* SimpleGrid.h */,
  1175. 71DF747C1C57608F00F2789C /* SimpleGrid.m */,
  1176. 71DF747D1C57608F00F2789C /* StrikethroughLabel.h */,
  1177. 71DF747E1C57608F00F2789C /* StrikethroughLabel.m */,
  1178. 71DF747F1C57608F00F2789C /* TouchLabel.h */,
  1179. 71DF74801C57608F00F2789C /* TouchLabel.m */,
  1180. 718B91811C75638100265FFF /* TouchImageView.h */,
  1181. 718B91821C75638100265FFF /* TouchImageView.m */,
  1182. 71DF74811C57608F00F2789C /* UILabel+FontAppearance.h */,
  1183. 71DF74821C57608F00F2789C /* UILabel+FontAppearance.m */,
  1184. );
  1185. name = customUI;
  1186. sourceTree = "<group>";
  1187. };
  1188. 718716141C433B4300F25860 /* ScanAPI */ = {
  1189. isa = PBXGroup;
  1190. children = (
  1191. 7141DD351C5726B700F7DF59 /* DeviceInfo.h */,
  1192. 7141DD361C5726B700F7DF59 /* DeviceInfo.m */,
  1193. 7141DD371C5726B700F7DF59 /* ScanApiHelper.h */,
  1194. 7141DD381C5726B700F7DF59 /* ScanApiHelper.mm */,
  1195. 7141DD391C5726B700F7DF59 /* ScanApiIncludes.h */,
  1196. 7141DD3A1C5726B700F7DF59 /* softScanBeep.wav */,
  1197. 7141DD331C57269B00F7DF59 /* include */,
  1198. );
  1199. name = ScanAPI;
  1200. sourceTree = "<group>";
  1201. };
  1202. 7190F1091BBBCAF100B2F243 /* PDF+Web */ = {
  1203. isa = PBXGroup;
  1204. children = (
  1205. 7162A4FA1C585FFB00AB630E /* PDFViewController.h */,
  1206. 7162A4FB1C585FFB00AB630E /* PDFViewController.m */,
  1207. 7162A4FC1C585FFB00AB630E /* WebViewController.h */,
  1208. 7162A4FD1C585FFB00AB630E /* WebViewController.m */,
  1209. );
  1210. name = "PDF+Web";
  1211. sourceTree = "<group>";
  1212. };
  1213. 7191A67319650A11007DC977 /* cagegory */ = {
  1214. isa = PBXGroup;
  1215. children = (
  1216. 7162A5271C5870C100AB630E /* NPD */,
  1217. 7162A51F1C58706C00AB630E /* CategoryCellSmall.h */,
  1218. 7162A5201C58706C00AB630E /* CategoryCellSmall.m */,
  1219. 712BABF11C897E3A0007466B /* CategorySearchFilterViewController.h */,
  1220. 712BABF21C897E3A0007466B /* CategorySearchFilterViewController.m */,
  1221. 7162A5211C58706C00AB630E /* CategoryViewController.h */,
  1222. 7162A5221C58706C00AB630E /* CategoryViewController.m */,
  1223. 7195623A1CF57D1800C74A49 /* CategoryHeaderView.h */,
  1224. 7195623B1CF57D1800C74A49 /* CategoryHeaderView.m */,
  1225. 71777FC51C8AC97300DA2511 /* debug_category_filter.json */,
  1226. );
  1227. name = cagegory;
  1228. sourceTree = "<group>";
  1229. };
  1230. 719562351CF5733500C74A49 /* appearance */ = {
  1231. isa = PBXGroup;
  1232. children = (
  1233. 715850441CF6F0E500856B20 /* DefaultAppearance.h */,
  1234. 715850451CF6F0E500856B20 /* DefaultAppearance.m */,
  1235. 71D30A201CFBEDC6006F9477 /* default_appearance.json */,
  1236. );
  1237. name = appearance;
  1238. sourceTree = "<group>";
  1239. };
  1240. 719E45D71B63883100FD098B /* DetailView */ = {
  1241. isa = PBXGroup;
  1242. children = (
  1243. 7162A5621C58728D00AB630E /* DetailHeaderCell.h */,
  1244. 7162A5631C58728D00AB630E /* DetailHeaderCell.m */,
  1245. 7162A5641C58728D00AB630E /* DetailImageCell.h */,
  1246. 7162A5651C58728D00AB630E /* DetailImageCell.m */,
  1247. 7162A5661C58728D00AB630E /* DetailKVCell.h */,
  1248. 7162A5671C58728D00AB630E /* DetailKVCell.m */,
  1249. 7162A5681C58728D00AB630E /* DetailTopicCell.h */,
  1250. 7162A5691C58728D00AB630E /* DetailTopicCell.m */,
  1251. 7162A56A1C58728D00AB630E /* DetailViewController.h */,
  1252. 7162A56B1C58728D00AB630E /* DetailViewController.m */,
  1253. 7162A56C1C58728D00AB630E /* LineView.h */,
  1254. 7162A56D1C58728D00AB630E /* LineView.m */,
  1255. );
  1256. name = DetailView;
  1257. sourceTree = "<group>";
  1258. };
  1259. 71A2478A1B955448000E1F84 /* search */ = {
  1260. isa = PBXGroup;
  1261. children = (
  1262. 7162A5B71C5873BB00AB630E /* FilterCellCadedate.h */,
  1263. 7162A5B81C5873BB00AB630E /* FilterCellCadedate.m */,
  1264. 7162A5B91C5873BB00AB630E /* FilterCellValue.h */,
  1265. 7162A5BA1C5873BB00AB630E /* FilterCellValue.m */,
  1266. 7162A5BB1C5873BB00AB630E /* ItemSearchFilterViewController.h */,
  1267. 7162A5BC1C5873BB00AB630E /* ItemSearchFilterViewController.m */,
  1268. 7162A5BD1C5873BB00AB630E /* ItemSearchViewController.h */,
  1269. 7162A5BE1C5873BB00AB630E /* ItemSearchViewController.m */,
  1270. 7162A5BF1C5873BB00AB630E /* SearchViewController.h */,
  1271. 7162A5C01C5873BB00AB630E /* SearchViewController.m */,
  1272. );
  1273. name = search;
  1274. sourceTree = "<group>";
  1275. };
  1276. 71B1250B1C55BD4600118904 /* QRCODE */ = {
  1277. isa = PBXGroup;
  1278. children = (
  1279. 7141DD3E1C57459B00F7DF59 /* bitstream.c */,
  1280. 7141DD3F1C57459B00F7DF59 /* bitstream.h */,
  1281. 7141DD401C57459B00F7DF59 /* mask.c */,
  1282. 7141DD411C57459B00F7DF59 /* mask.h */,
  1283. 7141DD421C57459B00F7DF59 /* QRCodeGenerator.h */,
  1284. 7141DD431C57459B00F7DF59 /* QRCodeGenerator.m */,
  1285. 7141DD441C57459B00F7DF59 /* qrencode.c */,
  1286. 7141DD451C57459B00F7DF59 /* qrencode.h */,
  1287. 7141DD461C57459B00F7DF59 /* qrinput.c */,
  1288. 7141DD471C57459B00F7DF59 /* qrinput.h */,
  1289. 7141DD481C57459B00F7DF59 /* qrspec.c */,
  1290. 7141DD491C57459B00F7DF59 /* qrspec.h */,
  1291. 7141DD4A1C57459B00F7DF59 /* rscode.c */,
  1292. 7141DD4B1C57459B00F7DF59 /* rscode.h */,
  1293. 7141DD4C1C57459B00F7DF59 /* split.c */,
  1294. 7141DD4D1C57459B00F7DF59 /* split.h */,
  1295. );
  1296. name = QRCODE;
  1297. sourceTree = "<group>";
  1298. };
  1299. 71BBA2171CEAC10200C91DED /* zip */ = {
  1300. isa = PBXGroup;
  1301. children = (
  1302. 71BBA2371CEAEF0700C91DED /* crypt.h */,
  1303. 71BBA2381CEAEF0700C91DED /* ioapi.c */,
  1304. 71BBA2391CEAEF0700C91DED /* ioapi.h */,
  1305. 71BBA23A1CEAEF0700C91DED /* mztools.c */,
  1306. 71BBA23B1CEAEF0700C91DED /* mztools.h */,
  1307. 71BBA23C1CEAEF0700C91DED /* unzip.c */,
  1308. 71BBA23D1CEAEF0700C91DED /* unzip.h */,
  1309. 71BBA23E1CEAEF0700C91DED /* zip.c */,
  1310. 71BBA23F1CEAEF0700C91DED /* zip.h */,
  1311. 71BBA2211CEAC16000C91DED /* ZipArchive.h */,
  1312. 71BBA2221CEAC16000C91DED /* ZipArchive.mm */,
  1313. );
  1314. name = zip;
  1315. sourceTree = "<group>";
  1316. };
  1317. 71BE066E1BA1607400FA6544 /* AES */ = {
  1318. isa = PBXGroup;
  1319. children = (
  1320. 7141DD561C5747CE00F7DF59 /* AESCrypt.h */,
  1321. 7141DD571C5747CE00F7DF59 /* AESCrypt.m */,
  1322. 7141DD581C5747CE00F7DF59 /* LICENSE */,
  1323. 7141DD591C5747CE00F7DF59 /* NSData+Base64.h */,
  1324. 7141DD5A1C5747CE00F7DF59 /* NSData+Base64.m */,
  1325. 7141DD5B1C5747CE00F7DF59 /* NSData+CommonCrypto.h */,
  1326. 7141DD5C1C5747CE00F7DF59 /* NSData+CommonCrypto.m */,
  1327. 7141DD5D1C5747CE00F7DF59 /* NSString+Base64.h */,
  1328. 7141DD5E1C5747CE00F7DF59 /* NSString+Base64.m */,
  1329. );
  1330. name = AES;
  1331. sourceTree = "<group>";
  1332. };
  1333. 71DBACEE1B5E401A00D8BD7E /* HomeView */ = {
  1334. isa = PBXGroup;
  1335. children = (
  1336. 7162A5771C5872EF00AB630E /* HomeTableViewCellBanner.h */,
  1337. 7162A5781C5872EF00AB630E /* HomeTableViewCellBanner.m */,
  1338. 7162A5791C5872EF00AB630E /* HomeTableViewCellButtonBanner.h */,
  1339. 7162A57A1C5872EF00AB630E /* HomeTableViewCellButtonBanner.m */,
  1340. 7162A57B1C5872EF00AB630E /* HomeTableViewCellSlide.h */,
  1341. 7162A57C1C5872EF00AB630E /* HomeTableViewCellSlide.m */,
  1342. 7162A57D1C5872EF00AB630E /* HomeTableViewCellTopic.h */,
  1343. 7162A57E1C5872EF00AB630E /* HomeTableViewCellTopic.m */,
  1344. 7162A57F1C5872EF00AB630E /* HomeViewController.h */,
  1345. 7162A5801C5872EF00AB630E /* HomeViewController.m */,
  1346. );
  1347. name = HomeView;
  1348. sourceTree = "<group>";
  1349. };
  1350. 71DF742C1C57567800F2789C /* NPD */ = {
  1351. isa = PBXGroup;
  1352. children = (
  1353. 719562351CF5733500C74A49 /* appearance */,
  1354. 716387D2195408DA006E65E6 /* config */,
  1355. );
  1356. name = NPD;
  1357. sourceTree = "<group>";
  1358. };
  1359. 71DF74311C5757C800F2789C /* CommonUI */ = {
  1360. isa = PBXGroup;
  1361. children = (
  1362. 715EB9A6193866F2006D16A5 /* photoStack */,
  1363. 718600B31936C385004B6CDE /* customUI */,
  1364. 71DF743A1C575E6600F2789C /* CommonEditor */,
  1365. 71DF74321C5757DA00F2789C /* ActiveViewController.h */,
  1366. 71DF74331C5757DA00F2789C /* ActiveViewController.m */,
  1367. 71DF74351C575D6600F2789C /* CommonGridViewController.h */,
  1368. 71DF74361C575D6600F2789C /* CommonGridViewController.m */,
  1369. 71D30A2B1CFC0EF8006F9477 /* DefaultImageButton.h */,
  1370. 71D30A2C1CFC0EF8006F9477 /* DefaultImageButton.m */,
  1371. 719562401CF5828200C74A49 /* DefaultTableHeaderView.h */,
  1372. 719562411CF5828200C74A49 /* DefaultTableHeaderView.m */,
  1373. 715001FD1D114D9100F5927F /* BundleDetailButton.h */,
  1374. 715001FE1D114D9100F5927F /* BundleDetailButton.m */,
  1375. 42B99E111D7D032300E773CD /* SortItemViewController.h */,
  1376. 42B99E121D7D032300E773CD /* SortItemViewController.m */,
  1377. 42B99E141D7D052A00E773CD /* SortItemCell.h */,
  1378. 42B99E151D7D052A00E773CD /* SortItemCell.m */,
  1379. 42E58BF91D7E5EF50092810A /* SortButton.h */,
  1380. 42E58BFA1D7E5EF50092810A /* SortButton.m */,
  1381. );
  1382. name = CommonUI;
  1383. sourceTree = "<group>";
  1384. };
  1385. 71DF743A1C575E6600F2789C /* CommonEditor */ = {
  1386. isa = PBXGroup;
  1387. children = (
  1388. 71DF743B1C575E7900F2789C /* CommonEditorCellAction.h */,
  1389. 71DF743C1C575E7900F2789C /* CommonEditorCellAction.m */,
  1390. 71DF743D1C575E7900F2789C /* CommonEditorCellEdit.h */,
  1391. 71DF743E1C575E7900F2789C /* CommonEditorCellEdit.m */,
  1392. 71DF743F1C575E7900F2789C /* CommonEditorCellEnum.h */,
  1393. 71DF74401C575E7900F2789C /* CommonEditorCellEnum.m */,
  1394. 71DF74411C575E7900F2789C /* CommonEditorCellImg.h */,
  1395. 71DF74421C575E7900F2789C /* CommonEditorCellImg.m */,
  1396. 71DF74431C575E7900F2789C /* CommonEditorCellLabel.h */,
  1397. 71DF74441C575E7900F2789C /* CommonEditorCellLabel.m */,
  1398. 71DF74451C575E7900F2789C /* CommonEditorCellMAction.h */,
  1399. 71DF74461C575E7900F2789C /* CommonEditorCellMAction.m */,
  1400. 71DF74471C575E7900F2789C /* CommonEditorCellModel.h */,
  1401. 71DF74481C575E7900F2789C /* CommonEditorCellModel.m */,
  1402. 71DF74491C575E7900F2789C /* CommonEditorCellSignature.h */,
  1403. 71DF744A1C575E7900F2789C /* CommonEditorCellSignature.m */,
  1404. 71DF744B1C575E7900F2789C /* CommonEditorCellSwitch.h */,
  1405. 71DF744C1C575E7900F2789C /* CommonEditorCellSwitch.m */,
  1406. 71DF744D1C575E7900F2789C /* CommonEditorCellTextView.h */,
  1407. 71DF744E1C575E7900F2789C /* CommonEditorCellTextView.m */,
  1408. 71DF744F1C575E7900F2789C /* CommonEditorViewController.h */,
  1409. 71DF74501C575E7900F2789C /* CommonEditorViewController.m */,
  1410. 71DF74511C575E7900F2789C /* DatePickerViewController.h */,
  1411. 71DF74521C575E7900F2789C /* DatePickerViewController.m */,
  1412. 71DF74531C575E7900F2789C /* EnumSelectorCell.h */,
  1413. 71DF74541C575E7900F2789C /* EnumSelectorCell.m */,
  1414. 71DF74551C575E7900F2789C /* EnumSelectViewController.h */,
  1415. 71DF74561C575E7900F2789C /* EnumSelectViewController.m */,
  1416. 71DF74571C575E7900F2789C /* MonthPickerViewController.h */,
  1417. 71DF74581C575E7900F2789C /* MonthPickerViewController.m */,
  1418. 71DF74591C575E7900F2789C /* SRMonthPicker.h */,
  1419. 71DF745A1C575E7900F2789C /* SRMonthPicker.m */,
  1420. );
  1421. name = CommonEditor;
  1422. sourceTree = "<group>";
  1423. };
  1424. 71F731FC192F395000F2CF76 /* AutoScrollImage */ = {
  1425. isa = PBXGroup;
  1426. children = (
  1427. 7162A5031C586FC100AB630E /* CycleScrollView.h */,
  1428. 7162A5041C586FC100AB630E /* CycleScrollView.m */,
  1429. 7162A5051C586FC100AB630E /* NSTimer+Addition.h */,
  1430. 7162A5061C586FC100AB630E /* NSTimer+Addition.m */,
  1431. 7162A5071C586FC100AB630E /* SliderPage.h */,
  1432. 7162A5081C586FC100AB630E /* SliderPage.m */,
  1433. );
  1434. name = AutoScrollImage;
  1435. sourceTree = "<group>";
  1436. };
  1437. CA33503C644B4B30FB07E665 /* Pods */ = {
  1438. isa = PBXGroup;
  1439. children = (
  1440. 56528CA8B8A71F67C2EE5366 /* Pods.debug.xcconfig */,
  1441. 6C826876B24EFB83AC94A464 /* Pods.release.xcconfig */,
  1442. );
  1443. name = Pods;
  1444. path = ..;
  1445. sourceTree = "<group>";
  1446. };
  1447. /* End PBXGroup section */
  1448. /* Begin PBXNativeTarget section */
  1449. 713F76A51929F4A7006A7305 /* iSales-NPD */ = {
  1450. isa = PBXNativeTarget;
  1451. buildConfigurationList = 713F76D81929F4A7006A7305 /* Build configuration list for PBXNativeTarget "iSales-NPD" */;
  1452. buildPhases = (
  1453. 83B497AF6D8F30851BF07892 /* Check Pods Manifest.lock */,
  1454. 713F76A21929F4A7006A7305 /* Sources */,
  1455. 713F76A31929F4A7006A7305 /* Frameworks */,
  1456. 713F76A41929F4A7006A7305 /* Resources */,
  1457. 9D1D98CA53B7A76F53D76557 /* Embed Pods Frameworks */,
  1458. BCE8779EB44C92756196E042 /* Copy Pods Resources */,
  1459. );
  1460. buildRules = (
  1461. );
  1462. dependencies = (
  1463. );
  1464. name = "iSales-NPD";
  1465. productName = "iSales-NPD";
  1466. productReference = 713F76A61929F4A7006A7305 /* NPD Mobile.app */;
  1467. productType = "com.apple.product-type.application";
  1468. };
  1469. /* End PBXNativeTarget section */
  1470. /* Begin PBXProject section */
  1471. 713F769E1929F4A7006A7305 /* Project object */ = {
  1472. isa = PBXProject;
  1473. attributes = {
  1474. LastUpgradeCheck = 0720;
  1475. ORGANIZATIONNAME = "United Software Applications, Inc";
  1476. TargetAttributes = {
  1477. 713F76A51929F4A7006A7305 = {
  1478. DevelopmentTeam = HXWLAA5YN5;
  1479. };
  1480. };
  1481. };
  1482. buildConfigurationList = 713F76A11929F4A7006A7305 /* Build configuration list for PBXProject "iSales-NPD" */;
  1483. compatibilityVersion = "Xcode 3.2";
  1484. developmentRegion = English;
  1485. hasScannedForEncodings = 0;
  1486. knownRegions = (
  1487. en,
  1488. Base,
  1489. );
  1490. mainGroup = 713F769D1929F4A7006A7305;
  1491. productRefGroup = 713F76A71929F4A7006A7305 /* Products */;
  1492. projectDirPath = "";
  1493. projectRoot = "";
  1494. targets = (
  1495. 713F76A51929F4A7006A7305 /* iSales-NPD */,
  1496. );
  1497. };
  1498. /* End PBXProject section */
  1499. /* Begin PBXResourcesBuildPhase section */
  1500. 713F76A41929F4A7006A7305 /* Resources */ = {
  1501. isa = PBXResourcesBuildPhase;
  1502. buildActionMask = 2147483647;
  1503. files = (
  1504. 7142E87E1DC300690077EFA2 /* DejaVuSans-Bold.ttf in Resources */,
  1505. 7142E87F1DC300690077EFA2 /* DejaVuSans.ttf in Resources */,
  1506. 7142E87A1DBF577A0077EFA2 /* KALINGA.TTF in Resources */,
  1507. 7142E87B1DBF577A0077EFA2 /* KALINGAB.TTF in Resources */,
  1508. 713F76C21929F4A7006A7305 /* Images.xcassets in Resources */,
  1509. 713F76B41929F4A7006A7305 /* InfoPlist.strings in Resources */,
  1510. 7162A5A01C58733400AB630E /* status_filter_cadedate_open.json in Resources */,
  1511. 71D30A211CFBEDC6006F9477 /* default_appearance.json in Resources */,
  1512. 71D5016C1DC32C3300971FBB /* portfolio_2x3.json in Resources */,
  1513. 42969C021D52F31C00FF190A /* editContact.json in Resources */,
  1514. 42A51BF61D62F9AB00F13667 /* orderDetail.json in Resources */,
  1515. 7161FEB71D61B24900157EE1 /* orderinfo.html in Resources */,
  1516. 42C9FB151D5B28FA001DCA8B /* contactAdvanceSearch.json in Resources */,
  1517. 7161FEB51D61B24900157EE1 /* creditcardpayment.html in Resources */,
  1518. 71777FC61C8AC97300DA2511 /* debug_category_filter.json in Resources */,
  1519. 712AFEE71DBDB48000254965 /* portfolio_3x2.json in Resources */,
  1520. 71E5A0101DC99370005BF655 /* config.plist in Resources */,
  1521. 71DF74951C57614C00F2789C /* PhotoBorder.png in Resources */,
  1522. 7162A55F1C58724700AB630E /* customer_info_template.json in Resources */,
  1523. 71D46D111CE1D9EF00A081AC /* OLM.storyboard in Resources */,
  1524. 423B49EF1DAC8071004181C2 /* CUL.storyboard in Resources */,
  1525. 42C2E8BC1DB49D02006C0495 /* TearSheet.json in Resources */,
  1526. 42B3C9BB1D642C880053985C /* order_info.html in Resources */,
  1527. 42A225331D6E7D1D00235B62 /* placeOrderTemplate.json in Resources */,
  1528. 7141DD3D1C5726B700F7DF59 /* softScanBeep.wav in Resources */,
  1529. 7141DD341C57269B00F7DF59 /* include in Resources */,
  1530. 7141DD601C5747CE00F7DF59 /* LICENSE in Resources */,
  1531. 42DC31131D546FBE00BCD1C6 /* category.json in Resources */,
  1532. 423A4ADC1D503A53005ECE4A /* createContact.json in Resources */,
  1533. 7111E5721C76C557004763B3 /* customer_info_template_edit.json in Resources */,
  1534. 7161FEB61D61B24900157EE1 /* normalpayment.html in Resources */,
  1535. 71DF74961C57614C00F2789C /* PhotoBorder@2x.png in Resources */,
  1536. 712AFEE51DBDAF0300254965 /* pdfcreator.xcassets in Resources */,
  1537. 7162A55E1C58724700AB630E /* customer_advanced_search.json in Resources */,
  1538. 7162A5A11C58733400AB630E /* offline_status_filter_cadedate.json in Resources */,
  1539. 713F76BD1929F4A7006A7305 /* Main.storyboard in Resources */,
  1540. 42A51BF41D62F60300F13667 /* more_info.html in Resources */,
  1541. );
  1542. runOnlyForDeploymentPostprocessing = 0;
  1543. };
  1544. /* End PBXResourcesBuildPhase section */
  1545. /* Begin PBXShellScriptBuildPhase section */
  1546. 83B497AF6D8F30851BF07892 /* Check Pods Manifest.lock */ = {
  1547. isa = PBXShellScriptBuildPhase;
  1548. buildActionMask = 2147483647;
  1549. files = (
  1550. );
  1551. inputPaths = (
  1552. );
  1553. name = "Check Pods Manifest.lock";
  1554. outputPaths = (
  1555. );
  1556. runOnlyForDeploymentPostprocessing = 0;
  1557. shellPath = /bin/sh;
  1558. shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
  1559. showEnvVarsInLog = 0;
  1560. };
  1561. 9D1D98CA53B7A76F53D76557 /* Embed Pods Frameworks */ = {
  1562. isa = PBXShellScriptBuildPhase;
  1563. buildActionMask = 2147483647;
  1564. files = (
  1565. );
  1566. inputPaths = (
  1567. );
  1568. name = "Embed Pods Frameworks";
  1569. outputPaths = (
  1570. );
  1571. runOnlyForDeploymentPostprocessing = 0;
  1572. shellPath = /bin/sh;
  1573. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-frameworks.sh\"\n";
  1574. showEnvVarsInLog = 0;
  1575. };
  1576. BCE8779EB44C92756196E042 /* Copy Pods Resources */ = {
  1577. isa = PBXShellScriptBuildPhase;
  1578. buildActionMask = 2147483647;
  1579. files = (
  1580. );
  1581. inputPaths = (
  1582. );
  1583. name = "Copy Pods Resources";
  1584. outputPaths = (
  1585. );
  1586. runOnlyForDeploymentPostprocessing = 0;
  1587. shellPath = /bin/sh;
  1588. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh\"\n";
  1589. showEnvVarsInLog = 0;
  1590. };
  1591. /* End PBXShellScriptBuildPhase section */
  1592. /* Begin PBXSourcesBuildPhase section */
  1593. 713F76A21929F4A7006A7305 /* Sources */ = {
  1594. isa = PBXSourcesBuildPhase;
  1595. buildActionMask = 2147483647;
  1596. files = (
  1597. 7141DD531C57459B00F7DF59 /* qrspec.c in Sources */,
  1598. 71BF07081D2F3D2800981938 /* SyncControlPanelViewController.m in Sources */,
  1599. 71FFBBEA1C60894900D91DC2 /* iSalesNetwork.m in Sources */,
  1600. 7162A59D1C58733400AB630E /* OrderDetailViewController.m in Sources */,
  1601. 7141DD3B1C5726B700F7DF59 /* DeviceInfo.m in Sources */,
  1602. 71DF74671C575E7900F2789C /* EnumSelectorCell.m in Sources */,
  1603. 712AFEDC1DBA050200254965 /* PDFDrawable.m in Sources */,
  1604. 7195623C1CF57D1800C74A49 /* CategoryHeaderView.m in Sources */,
  1605. 712AFED81DBA050200254965 /* GridDrawable.m in Sources */,
  1606. 7162A5C11C5873BB00AB630E /* FilterCellCadedate.m in Sources */,
  1607. 71DF748A1C57608F00F2789C /* RTLabel.m in Sources */,
  1608. 71DF742B1C57560600F2789C /* Reachability.m in Sources */,
  1609. 7162A5701C58728D00AB630E /* DetailHeaderCell.m in Sources */,
  1610. 71BBA2271CEAC16000C91DED /* ZipArchive.mm in Sources */,
  1611. 7162A5491C58719D00AB630E /* RATreeView+TableViewDelegate.m in Sources */,
  1612. 7162A5B41C58738600AB630E /* ScannerControllerView.m in Sources */,
  1613. 7162A5831C5872EF00AB630E /* HomeTableViewCellSlide.m in Sources */,
  1614. 7162A5851C5872EF00AB630E /* HomeViewController.m in Sources */,
  1615. 7162A5E31C5877CE00AB630E /* WatchListViewController.m in Sources */,
  1616. 426D40151DACB51F0058B96B /* CategoryPriceCell.m in Sources */,
  1617. 715001FF1D114D9100F5927F /* BundleDetailButton.m in Sources */,
  1618. 7162A5421C58719D00AB630E /* RATreeNodeCollectionController.m in Sources */,
  1619. 71DF74631C575E7900F2789C /* CommonEditorCellSwitch.m in Sources */,
  1620. 42BED01D1DAF74DF004576E0 /* JKLockController.m in Sources */,
  1621. 7162A5DE1C5876E300AB630E /* RetrievePassViewController.m in Sources */,
  1622. 7141DD541C57459B00F7DF59 /* rscode.c in Sources */,
  1623. 71DF74621C575E7900F2789C /* CommonEditorCellSignature.m in Sources */,
  1624. 7162A5E01C5876E300AB630E /* SettingViewController.m in Sources */,
  1625. 712AFEDB1DBA050200254965 /* LineDrawable.m in Sources */,
  1626. 71DF748B1C57608F00F2789C /* SimpleGrid.m in Sources */,
  1627. 42B99E131D7D032300E773CD /* SortItemViewController.m in Sources */,
  1628. 71DF74651C575E7900F2789C /* CommonEditorViewController.m in Sources */,
  1629. 7162A5171C58704600AB630E /* BundleModelViewController.m in Sources */,
  1630. 71DF745B1C575E7900F2789C /* CommonEditorCellAction.m in Sources */,
  1631. 7162A5411C58719D00AB630E /* RATreeNode.m in Sources */,
  1632. 7162A5251C58706C00AB630E /* CategoryCellSmall.m in Sources */,
  1633. 712AFEDA1DBA050200254965 /* ImageDrawable.m in Sources */,
  1634. 4219B7EA1DADC48D0092B4DE /* Singleton.m in Sources */,
  1635. 712C40B91C731126000E6831 /* ItemNotesViewController.m in Sources */,
  1636. 7162A5AD1C58735900AB630E /* TearSheetParamViewController.m in Sources */,
  1637. 7141DD611C5747CE00F7DF59 /* NSData+Base64.m in Sources */,
  1638. 71BBA2431CEAEF0700C91DED /* zip.c in Sources */,
  1639. 7141DD5F1C5747CE00F7DF59 /* AESCrypt.m in Sources */,
  1640. 7162A5991C58733400AB630E /* OrderDetailHtmlCell.m in Sources */,
  1641. 7162A5091C586FC100AB630E /* CycleScrollView.m in Sources */,
  1642. 715F30BD1DAB37EB00490EED /* OfflineUnlockViewController.m in Sources */,
  1643. 7162A5161C58704600AB630E /* BundleModelCell.m in Sources */,
  1644. 426D40121DACB0990058B96B /* CategoryPriceViewController.m in Sources */,
  1645. 426D40181DACC2250058B96B /* SetCategoryPriceController.m in Sources */,
  1646. 7141DD621C5747CE00F7DF59 /* NSData+CommonCrypto.m in Sources */,
  1647. 712AFED71DBA050200254965 /* BasicDrawable.m in Sources */,
  1648. 71DF74891C57608F00F2789C /* RadioButton.m in Sources */,
  1649. 7162A5DF1C5876E300AB630E /* ScannerSettingViewController.m in Sources */,
  1650. 71DF74661C575E7900F2789C /* DatePickerViewController.m in Sources */,
  1651. 71DF74831C57608F00F2789C /* ImageScrollerView.m in Sources */,
  1652. 71DF74871C57608F00F2789C /* NIDropDown.m in Sources */,
  1653. 42E58BFB1D7E5EF50092810A /* SortButton.m in Sources */,
  1654. 710274251CC606C4009FD219 /* UserListViewController.m in Sources */,
  1655. 71DF74881C57608F00F2789C /* PulldownMenu.m in Sources */,
  1656. 421C55021D81586D00CFA3B1 /* JKTimerManager.m in Sources */,
  1657. 7141DD551C57459B00F7DF59 /* split.c in Sources */,
  1658. 719562421CF5828200C74A49 /* DefaultTableHeaderView.m in Sources */,
  1659. 716AF8E11D7AA0E0001188E0 /* SelectUploadOrderViewController.m in Sources */,
  1660. 42BED01B1DAF74DF004576E0 /* JKDotView.m in Sources */,
  1661. 712AFEDF1DBA050200254965 /* TextDrawable.m in Sources */,
  1662. 42F637521DB2178E00605C4B /* JKMessageBoxController.m in Sources */,
  1663. 7162A5611C58724700AB630E /* CustomerInfoViewController.m in Sources */,
  1664. 42B99E161D7D052A00E773CD /* SortItemCell.m in Sources */,
  1665. 7162A5AB1C58735900AB630E /* PDFListViewController.m in Sources */,
  1666. 4207D2841D8247CB001B4A67 /* NotificationNameCenter.m in Sources */,
  1667. 71DF74681C575E7900F2789C /* EnumSelectViewController.m in Sources */,
  1668. 71D99D301CEF02E700CA32DE /* CustomIOSAlertView.m in Sources */,
  1669. 7162A5731C58728D00AB630E /* DetailTopicCell.m in Sources */,
  1670. 71BBA2421CEAEF0700C91DED /* unzip.c in Sources */,
  1671. 7162A5AA1C58735900AB630E /* PDFListTableViewCell.m in Sources */,
  1672. 7162A5AC1C58735900AB630E /* PortfolioViewController.m in Sources */,
  1673. 71DF748C1C57608F00F2789C /* StrikethroughLabel.m in Sources */,
  1674. 7162A5981C58733400AB630E /* CreateOrderViewController.m in Sources */,
  1675. 7162A5021C586F5B00AB630E /* AddressEditorViewController.m in Sources */,
  1676. 71131F921CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m in Sources */,
  1677. 7162A55C1C58724700AB630E /* ContactListTableViewCell.m in Sources */,
  1678. 71DF745C1C575E7900F2789C /* CommonEditorCellEdit.m in Sources */,
  1679. 7186C25D1C97A6EE00CB43F4 /* FunctionTestViewController.m in Sources */,
  1680. 71DF74691C575E7900F2789C /* MonthPickerViewController.m in Sources */,
  1681. 71DF74371C575D6600F2789C /* CommonGridViewController.m in Sources */,
  1682. 71D0344F1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m in Sources */,
  1683. 7162A5B51C58738600AB630E /* ScannerViewController.m in Sources */,
  1684. 716AF8E71D7AA398001188E0 /* SelectOrderTableViewCell.m in Sources */,
  1685. 713F76BA1929F4A7006A7305 /* AppDelegate.m in Sources */,
  1686. 71BF06FB1D2F3CAC00981938 /* OLDataProvider.m in Sources */,
  1687. 7162A59B1C58733400AB630E /* OrderDetailModelCell.m in Sources */,
  1688. 7162A5E91C5899F700AB630E /* MainViewController.m in Sources */,
  1689. 7141DD4F1C57459B00F7DF59 /* mask.c in Sources */,
  1690. 7162A54E1C58722200AB630E /* CreditCardEditorViewController.m in Sources */,
  1691. 7162A5C31C5873BB00AB630E /* ItemSearchFilterViewController.m in Sources */,
  1692. 71D30A2D1CFC0EF8006F9477 /* DefaultImageButton.m in Sources */,
  1693. 7162A5841C5872EF00AB630E /* HomeTableViewCellTopic.m in Sources */,
  1694. 7162A59F1C58733400AB630E /* OrderListViewController.m in Sources */,
  1695. 712AFEE21DBA077F00254965 /* pdfCreator.m in Sources */,
  1696. 71BBA2401CEAEF0700C91DED /* ioapi.c in Sources */,
  1697. 71DF74641C575E7900F2789C /* CommonEditorCellTextView.m in Sources */,
  1698. 7162A5461C58719D00AB630E /* RATreeView+Enums.m in Sources */,
  1699. 7162A54B1C58719D00AB630E /* RAViewController.m in Sources */,
  1700. 71BBA2411CEAEF0700C91DED /* mztools.c in Sources */,
  1701. 7162A59C1C58733400AB630E /* OrderDetailPriceCell.m in Sources */,
  1702. 715850461CF6F0E500856B20 /* DefaultAppearance.m in Sources */,
  1703. 71DF74301C57572600F2789C /* RAUtils.m in Sources */,
  1704. 7162A5B61C58738600AB630E /* SCShapeView.m in Sources */,
  1705. 7162A54A1C58719D00AB630E /* RATreeView+UIScrollView.m in Sources */,
  1706. 7162A55D1C58724700AB630E /* ContactListViewController.m in Sources */,
  1707. 7162A5751C58728D00AB630E /* LineView.m in Sources */,
  1708. 712AFEDD1DBA050200254965 /* PDFPage.m in Sources */,
  1709. 7162A5741C58728D00AB630E /* DetailViewController.m in Sources */,
  1710. 7162A52A1C58713200AB630E /* CategoryCellNPD.m in Sources */,
  1711. 71DF748E1C57608F00F2789C /* UILabel+FontAppearance.m in Sources */,
  1712. 712C40B61C7310F4000E6831 /* CartGeneralNotesViewController.m in Sources */,
  1713. 712AFEDE1DBA050200254965 /* TableDrawable.m in Sources */,
  1714. 7162A5CB1C58761500AB630E /* SignatureViewController.m in Sources */,
  1715. 7162A5DD1C5876E300AB630E /* PopupNavigationController.m in Sources */,
  1716. 7162A59E1C58733400AB630E /* OrderListTableViewCell.m in Sources */,
  1717. 71DF746A1C575E7900F2789C /* SRMonthPicker.m in Sources */,
  1718. 714B1F401C7BF74100539193 /* OrderDetailSignatureCell.m in Sources */,
  1719. 71DF745D1C575E7900F2789C /* CommonEditorCellEnum.m in Sources */,
  1720. 7141DD521C57459B00F7DF59 /* qrinput.c in Sources */,
  1721. 7162A5601C58724700AB630E /* CustomerEditViewController.m in Sources */,
  1722. 718B91831C75638100265FFF /* TouchImageView.m in Sources */,
  1723. 7162A5DC1C5876E300AB630E /* LoginViewController.m in Sources */,
  1724. 7162A5811C5872EF00AB630E /* HomeTableViewCellBanner.m in Sources */,
  1725. 7162A5E61C58781000AB630E /* iSalesNavigationController.m in Sources */,
  1726. 423B49F31DAC8D2C004181C2 /* PriceSettingViewController.m in Sources */,
  1727. 7141DD631C5747CE00F7DF59 /* NSString+Base64.m in Sources */,
  1728. 7162A5C41C5873BB00AB630E /* ItemSearchViewController.m in Sources */,
  1729. 7162A5481C58719D00AB630E /* RATreeView+TableViewDataSource.m in Sources */,
  1730. 7162A5DB1C5876E300AB630E /* CacheViewController.m in Sources */,
  1731. 7162A5C21C5873BB00AB630E /* FilterCellValue.m in Sources */,
  1732. 71DF74971C57614C00F2789C /* PhotoStackView.m in Sources */,
  1733. 7162A50B1C586FC100AB630E /* SliderPage.m in Sources */,
  1734. 712BABF31C897E3A0007466B /* CategorySearchFilterViewController.m in Sources */,
  1735. 71DF74981C57614C00F2789C /* PhotoStackViewController.m in Sources */,
  1736. 7162A59A1C58733400AB630E /* OrderDetailInfoCell.m in Sources */,
  1737. 7162A5471C58719D00AB630E /* RATreeView+Private.m in Sources */,
  1738. 71DF748D1C57608F00F2789C /* TouchLabel.m in Sources */,
  1739. 7162A5711C58728D00AB630E /* DetailImageCell.m in Sources */,
  1740. 7162A51A1C58704600AB630E /* ModelItemCell.m in Sources */,
  1741. 7141DD511C57459B00F7DF59 /* qrencode.c in Sources */,
  1742. 7162A5451C58719D00AB630E /* RATreeView.m in Sources */,
  1743. 7162A4FE1C585FFB00AB630E /* PDFViewController.m in Sources */,
  1744. 71DF74841C57608F00F2789C /* ImageScrollerViewController.m in Sources */,
  1745. 42E58C021D7E735A0092810A /* UIColor+JK_HEX.m in Sources */,
  1746. 71DF74861C57608F00F2789C /* ImageViewController.m in Sources */,
  1747. 7162A5821C5872EF00AB630E /* HomeTableViewCellButtonBanner.m in Sources */,
  1748. 713F76B61929F4A7006A7305 /* main.m in Sources */,
  1749. 71BF06FE1D2F3CBA00981938 /* OfflineSettingViewController.m in Sources */,
  1750. 71DF74611C575E7900F2789C /* CommonEditorCellModel.m in Sources */,
  1751. 71DF74341C5757DA00F2789C /* ActiveViewController.m in Sources */,
  1752. 7162A5431C58719D00AB630E /* RATreeNodeInfo.m in Sources */,
  1753. 7162A4FF1C585FFB00AB630E /* WebViewController.m in Sources */,
  1754. 71FFBBE91C60894900D91DC2 /* iSalesDB.m in Sources */,
  1755. 42BED01C1DAF74DF004576E0 /* JKLockButton.m in Sources */,
  1756. 7162A55B1C58724700AB630E /* ContactAdvanceSearchViewController.m in Sources */,
  1757. 7162A5441C58719D00AB630E /* RATreeNodeInfo+Private.m in Sources */,
  1758. 7162A5C51C5873BB00AB630E /* SearchViewController.m in Sources */,
  1759. 7162A5191C58704600AB630E /* EditModelPriceViewController.m in Sources */,
  1760. 7162A5721C58728D00AB630E /* DetailKVCell.m in Sources */,
  1761. 7141DD501C57459B00F7DF59 /* QRCodeGenerator.m in Sources */,
  1762. 7162A5DA1C5876E300AB630E /* AboutViewController.m in Sources */,
  1763. 7141DD4E1C57459B00F7DF59 /* bitstream.c in Sources */,
  1764. 71DF74851C57608F00F2789C /* ImageUploadViewController.m in Sources */,
  1765. 7162A5CA1C58761500AB630E /* SignatureView.m in Sources */,
  1766. 7162A5181C58704600AB630E /* CartViewController.m in Sources */,
  1767. 71DF74601C575E7900F2789C /* CommonEditorCellMAction.m in Sources */,
  1768. 71DF745F1C575E7900F2789C /* CommonEditorCellLabel.m in Sources */,
  1769. 7141DD3C1C5726B700F7DF59 /* ScanApiHelper.mm in Sources */,
  1770. 7162A5261C58706C00AB630E /* CategoryViewController.m in Sources */,
  1771. 7162A50A1C586FC100AB630E /* NSTimer+Addition.m in Sources */,
  1772. 71DF745E1C575E7900F2789C /* CommonEditorCellImg.m in Sources */,
  1773. 712AFED91DBA050200254965 /* GroupDrawable.m in Sources */,
  1774. );
  1775. runOnlyForDeploymentPostprocessing = 0;
  1776. };
  1777. /* End PBXSourcesBuildPhase section */
  1778. /* Begin PBXVariantGroup section */
  1779. 713F76B21929F4A7006A7305 /* InfoPlist.strings */ = {
  1780. isa = PBXVariantGroup;
  1781. children = (
  1782. 713F76B31929F4A7006A7305 /* en */,
  1783. );
  1784. name = InfoPlist.strings;
  1785. sourceTree = "<group>";
  1786. };
  1787. 713F76BB1929F4A7006A7305 /* Main.storyboard */ = {
  1788. isa = PBXVariantGroup;
  1789. children = (
  1790. 713F76BC1929F4A7006A7305 /* Base */,
  1791. );
  1792. name = Main.storyboard;
  1793. sourceTree = "<group>";
  1794. };
  1795. 71D46D0F1CE1D9EF00A081AC /* OLM.storyboard */ = {
  1796. isa = PBXVariantGroup;
  1797. children = (
  1798. 71D46D101CE1D9EF00A081AC /* Base */,
  1799. );
  1800. name = OLM.storyboard;
  1801. sourceTree = "<group>";
  1802. };
  1803. /* End PBXVariantGroup section */
  1804. /* Begin XCBuildConfiguration section */
  1805. 713F76D61929F4A7006A7305 /* Debug */ = {
  1806. isa = XCBuildConfiguration;
  1807. buildSettings = {
  1808. ALWAYS_SEARCH_USER_PATHS = NO;
  1809. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1810. CLANG_CXX_LIBRARY = "libc++";
  1811. CLANG_ENABLE_MODULES = YES;
  1812. CLANG_ENABLE_OBJC_ARC = YES;
  1813. CLANG_WARN_BOOL_CONVERSION = YES;
  1814. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1815. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1816. CLANG_WARN_EMPTY_BODY = YES;
  1817. CLANG_WARN_ENUM_CONVERSION = YES;
  1818. CLANG_WARN_INT_CONVERSION = YES;
  1819. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1820. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1821. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1822. COPY_PHASE_STRIP = NO;
  1823. ENABLE_TESTABILITY = YES;
  1824. GCC_C_LANGUAGE_STANDARD = gnu99;
  1825. GCC_DYNAMIC_NO_PIC = NO;
  1826. GCC_OPTIMIZATION_LEVEL = 0;
  1827. GCC_PREPROCESSOR_DEFINITIONS = (
  1828. "DEBUG=1",
  1829. "$(inherited)",
  1830. );
  1831. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  1832. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1833. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1834. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1835. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1836. GCC_WARN_UNUSED_FUNCTION = YES;
  1837. GCC_WARN_UNUSED_VARIABLE = YES;
  1838. HEADER_SEARCH_PATHS = (
  1839. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/include",
  1840. "$(PROJECT_DIR)/common/qrcode",
  1841. "$(PROJECT_DIR)/common/CommonEditor",
  1842. );
  1843. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1844. LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib";
  1845. ONLY_ACTIVE_ARCH = YES;
  1846. SDKROOT = iphoneos;
  1847. TARGETED_DEVICE_FAMILY = 2;
  1848. };
  1849. name = Debug;
  1850. };
  1851. 713F76D71929F4A7006A7305 /* Release */ = {
  1852. isa = XCBuildConfiguration;
  1853. buildSettings = {
  1854. ALWAYS_SEARCH_USER_PATHS = NO;
  1855. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1856. CLANG_CXX_LIBRARY = "libc++";
  1857. CLANG_ENABLE_MODULES = YES;
  1858. CLANG_ENABLE_OBJC_ARC = YES;
  1859. CLANG_WARN_BOOL_CONVERSION = YES;
  1860. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1861. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1862. CLANG_WARN_EMPTY_BODY = YES;
  1863. CLANG_WARN_ENUM_CONVERSION = YES;
  1864. CLANG_WARN_INT_CONVERSION = YES;
  1865. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1866. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1867. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1868. COPY_PHASE_STRIP = YES;
  1869. ENABLE_NS_ASSERTIONS = NO;
  1870. GCC_C_LANGUAGE_STANDARD = gnu99;
  1871. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1872. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1873. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1874. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1875. GCC_WARN_UNUSED_FUNCTION = YES;
  1876. GCC_WARN_UNUSED_VARIABLE = YES;
  1877. HEADER_SEARCH_PATHS = (
  1878. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/include",
  1879. "$(PROJECT_DIR)/common/qrcode",
  1880. "$(PROJECT_DIR)/common/CommonEditor",
  1881. );
  1882. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1883. LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib";
  1884. SDKROOT = iphoneos;
  1885. TARGETED_DEVICE_FAMILY = 2;
  1886. VALIDATE_PRODUCT = YES;
  1887. };
  1888. name = Release;
  1889. };
  1890. 713F76D91929F4A7006A7305 /* Debug */ = {
  1891. isa = XCBuildConfiguration;
  1892. baseConfigurationReference = 56528CA8B8A71F67C2EE5366 /* Pods.debug.xcconfig */;
  1893. buildSettings = {
  1894. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1895. CODE_SIGN_IDENTITY = "iPhone Developer";
  1896. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1897. DEVELOPMENT_TEAM = HXWLAA5YN5;
  1898. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1899. GCC_PREFIX_HEADER = "iSales-NPD/iSales-NPD-Prefix.pch";
  1900. INFOPLIST_FILE = "$(SRCROOT)/iSales-NPD/iSales-NPD-Info.plist";
  1901. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1902. LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib";
  1903. PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.iSales-NPD";
  1904. PRODUCT_NAME = "NPD Mobile";
  1905. PROVISIONING_PROFILE = "";
  1906. WRAPPER_EXTENSION = app;
  1907. };
  1908. name = Debug;
  1909. };
  1910. 713F76DA1929F4A7006A7305 /* Release */ = {
  1911. isa = XCBuildConfiguration;
  1912. baseConfigurationReference = 6C826876B24EFB83AC94A464 /* Pods.release.xcconfig */;
  1913. buildSettings = {
  1914. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1915. CODE_SIGN_IDENTITY = "iPhone Developer";
  1916. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1917. DEVELOPMENT_TEAM = HXWLAA5YN5;
  1918. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1919. GCC_PREFIX_HEADER = "iSales-NPD/iSales-NPD-Prefix.pch";
  1920. INFOPLIST_FILE = "$(SRCROOT)/iSales-NPD/iSales-NPD-Info.plist";
  1921. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1922. LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib";
  1923. PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.iSales-NPD";
  1924. PRODUCT_NAME = "NPD Mobile";
  1925. PROVISIONING_PROFILE = "";
  1926. WRAPPER_EXTENSION = app;
  1927. };
  1928. name = Release;
  1929. };
  1930. /* End XCBuildConfiguration section */
  1931. /* Begin XCConfigurationList section */
  1932. 713F76A11929F4A7006A7305 /* Build configuration list for PBXProject "iSales-NPD" */ = {
  1933. isa = XCConfigurationList;
  1934. buildConfigurations = (
  1935. 713F76D61929F4A7006A7305 /* Debug */,
  1936. 713F76D71929F4A7006A7305 /* Release */,
  1937. );
  1938. defaultConfigurationIsVisible = 0;
  1939. defaultConfigurationName = Release;
  1940. };
  1941. 713F76D81929F4A7006A7305 /* Build configuration list for PBXNativeTarget "iSales-NPD" */ = {
  1942. isa = XCConfigurationList;
  1943. buildConfigurations = (
  1944. 713F76D91929F4A7006A7305 /* Debug */,
  1945. 713F76DA1929F4A7006A7305 /* Release */,
  1946. );
  1947. defaultConfigurationIsVisible = 0;
  1948. defaultConfigurationName = Release;
  1949. };
  1950. /* End XCConfigurationList section */
  1951. };
  1952. rootObject = 713F769E1929F4A7006A7305 /* Project object */;
  1953. }