| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
- /* Begin PBXBuildFile section */
- 3C2F99B8237BE1790000808F /* PortfolioListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2F99B6237BE1790000808F /* PortfolioListTableViewCell.m */; };
- 3C68314D239607B500AD5BD7 /* ytplayer.html in Resources */ = {isa = PBXBuildFile; fileRef = 3C68314A239607B500AD5BD7 /* ytplayer.html */; };
- 3C68314E239607B500AD5BD7 /* RAYTPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C68314B239607B500AD5BD7 /* RAYTPlayer.m */; };
- 3C6831562396082800AD5BD7 /* ERP_Mobile_Discard.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C68314F2396082700AD5BD7 /* ERP_Mobile_Discard.storyboard */; };
- 3C6831572396082800AD5BD7 /* ERP_Mobile_Cart.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831502396082700AD5BD7 /* ERP_Mobile_Cart.storyboard */; };
- 3C6831582396082800AD5BD7 /* ERP_Mobile_Model.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831512396082700AD5BD7 /* ERP_Mobile_Model.storyboard */; };
- 3C6831592396082800AD5BD7 /* ERP_Mobile_Search.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831522396082700AD5BD7 /* ERP_Mobile_Search.storyboard */; };
- 3C68315A2396082800AD5BD7 /* ERP_Mobile_Contact.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831532396082700AD5BD7 /* ERP_Mobile_Contact.storyboard */; };
- 3C68315B2396082800AD5BD7 /* ERP_Mobile_Order.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831542396082800AD5BD7 /* ERP_Mobile_Order.storyboard */; };
- 3C68315C2396082800AD5BD7 /* ERP_Mobile_Portfolio.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831552396082800AD5BD7 /* ERP_Mobile_Portfolio.storyboard */; };
- 3C6831682396094200AD5BD7 /* iPadCommonEditorCellImg.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C68315D2396094100AD5BD7 /* iPadCommonEditorCellImg.xib */; };
- 3C6831692396094200AD5BD7 /* CommonEditor.iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C68315E2396094100AD5BD7 /* CommonEditor.iPad.xib */; };
- 3C68316A2396094200AD5BD7 /* iPadCommonEditorCellLabel.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C68315F2396094200AD5BD7 /* iPadCommonEditorCellLabel.xib */; };
- 3C68316B2396094200AD5BD7 /* iPadCommonEditorCellSwitch.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831602396094200AD5BD7 /* iPadCommonEditorCellSwitch.xib */; };
- 3C68316C2396094200AD5BD7 /* iPadCommonEditorCellEnum.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831612396094200AD5BD7 /* iPadCommonEditorCellEnum.xib */; };
- 3C68316D2396094200AD5BD7 /* iPadCommonEditorCellTextView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831622396094200AD5BD7 /* iPadCommonEditorCellTextView.xib */; };
- 3C68316E2396094200AD5BD7 /* iPadCommonEditorCellAction.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831632396094200AD5BD7 /* iPadCommonEditorCellAction.xib */; };
- 3C68316F2396094200AD5BD7 /* iPadCommonEditorCellModel.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831642396094200AD5BD7 /* iPadCommonEditorCellModel.xib */; };
- 3C6831702396094200AD5BD7 /* iPadCommonEditorCellMAction.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831652396094200AD5BD7 /* iPadCommonEditorCellMAction.xib */; };
- 3C6831712396094200AD5BD7 /* iPadCommonEditorCellSignature.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831662396094200AD5BD7 /* iPadCommonEditorCellSignature.xib */; };
- 3C6831722396094200AD5BD7 /* iPadCommonEditorCellEdit.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831672396094200AD5BD7 /* iPadCommonEditorCellEdit.xib */; };
- 3C69618223C7156D0075172A /* RAPDFViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C69617E23C7156D0075172A /* RAPDFViewController.m */; };
- 3C69618323C7156D0075172A /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C69617F23C7156D0075172A /* WebViewController.m */; };
- 3C69618423C7156D0075172A /* wkweb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C69618023C7156D0075172A /* wkweb.storyboard */; };
- 3C7E5A8E237BDB0C006D0105 /* PortfolioListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7E5A8C237BDB0C006D0105 /* PortfolioListViewController.m */; };
- 423CC87521D22FDE008BD2C4 /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 423CC87421D22FDE008BD2C4 /* Launch Screen.storyboard */; };
- 424A02D11FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 424A02D01FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m */; };
- 4254CCDE1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4254CCDD1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m */; };
- 428980041E2490C1005F1BD8 /* NotificationNameCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980031E2490C1005F1BD8 /* NotificationNameCenter.m */; };
- 4289800A1E24918F005F1BD8 /* CartUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980091E24918F005F1BD8 /* CartUtils.m */; };
- 428980151E24924D005F1BD8 /* SortButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980101E24924D005F1BD8 /* SortButton.m */; };
- 428980161E24924D005F1BD8 /* SortItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980121E24924D005F1BD8 /* SortItemCell.m */; };
- 428980171E24924D005F1BD8 /* SortItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980141E24924D005F1BD8 /* SortItemViewController.m */; };
- 4289802B1E2492D2005F1BD8 /* CategoryPriceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980241E2492D2005F1BD8 /* CategoryPriceCell.m */; };
- 4289802C1E2492D2005F1BD8 /* CategoryPriceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980261E2492D2005F1BD8 /* CategoryPriceViewController.m */; };
- 4289802D1E2492D2005F1BD8 /* PriceSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980281E2492D2005F1BD8 /* PriceSettingViewController.m */; };
- 4289802E1E2492D2005F1BD8 /* SetCategoryPriceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289802A1E2492D2005F1BD8 /* SetCategoryPriceController.m */; };
- 428980451E249339005F1BD8 /* JKDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289803E1E249339005F1BD8 /* JKDotView.m */; };
- 428980461E249339005F1BD8 /* JKLockButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980401E249339005F1BD8 /* JKLockButton.m */; };
- 428980471E249339005F1BD8 /* JKLockController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980421E249339005F1BD8 /* JKLockController.m */; };
- 428980481E249339005F1BD8 /* JKMessageBoxController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980441E249339005F1BD8 /* JKMessageBoxController.m */; };
- 4289805D1E249375005F1BD8 /* UIColor+JK_HEX.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289805C1E249375005F1BD8 /* UIColor+JK_HEX.m */; };
- 428980721E24B1E9005F1BD8 /* Singleton.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980711E24B1E9005F1BD8 /* Singleton.m */; };
- 4289809E1E24B526005F1BD8 /* JKTimerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289809D1E24B526005F1BD8 /* JKTimerManager.m */; };
- 4295AE1C1FE74D46007BE365 /* CommonEditorAutoCompleteView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4295AE1A1FE74D46007BE365 /* CommonEditorAutoCompleteView.m */; };
- 4295AE1D1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4295AE1B1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib */; };
- 42B309791E45BA32007AFC62 /* status_filter_cadedate_po.json in Resources */ = {isa = PBXBuildFile; fileRef = 42B309781E45BA32007AFC62 /* status_filter_cadedate_po.json */; };
- 42BEAB351FA1D23B0024D647 /* EnumModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BEAB2F1FA1D23A0024D647 /* EnumModel.m */; };
- 42BEAB361FA1D23B0024D647 /* EnumSelectAndSort.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 42BEAB301FA1D23A0024D647 /* EnumSelectAndSort.storyboard */; };
- 42BEAB371FA1D23B0024D647 /* EnumSelectAndSortCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BEAB321FA1D23A0024D647 /* EnumSelectAndSortCell.m */; };
- 42BEAB381FA1D23B0024D647 /* EnumSelectAndSortViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BEAB341FA1D23A0024D647 /* EnumSelectAndSortViewController.m */; };
- 42BEF34F1E89FE1100632AB6 /* FirebaseAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF3241E89FE1100632AB6 /* FirebaseAnalytics.framework */; };
- 42BEF3501E89FE1100632AB6 /* FirebaseCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF3271E89FE1100632AB6 /* FirebaseCore.framework */; };
- 42BEF3521E89FE1200632AB6 /* FirebaseInstanceID.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF32B1E89FE1100632AB6 /* FirebaseInstanceID.framework */; };
- 42BEF3541E89FE1200632AB6 /* GGLAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF32F1E89FE1100632AB6 /* GGLAnalytics.framework */; };
- 42BEF3551E89FE1200632AB6 /* GGLCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF3301E89FE1100632AB6 /* GGLCore.framework */; };
- 42BEF3571E89FE1200632AB6 /* libGoogleAnalytics.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF33C1E89FE1100632AB6 /* libGoogleAnalytics.a */; };
- 42BEF3581E89FE1200632AB6 /* GTMNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BEF34B1E89FE1100632AB6 /* GTMNSData+zlib.m */; };
- 42BEF35D1E89FECD00632AB6 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF35C1E89FECD00632AB6 /* SystemConfiguration.framework */; };
- 42BEF35F1E89FEE300632AB6 /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF35E1E89FEE300632AB6 /* CoreData.framework */; };
- 42BEF3621E8A005800632AB6 /* GoogleAnalyst.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BEF3611E8A005800632AB6 /* GoogleAnalyst.m */; };
- 42BF67CC1E5179970081F90A /* ERPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BF67CB1E5179970081F90A /* ERPUtils.m */; };
- 42D3A4A11EFA6D36007A54C1 /* ContentPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42D3A49B1EFA6D36007A54C1 /* ContentPreviewController.m */; };
- 42D3A4A21EFA6D36007A54C1 /* PhotoList.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 42D3A49D1EFA6D36007A54C1 /* PhotoList.storyboard */; };
- 42D3A4A31EFA6D36007A54C1 /* PhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42D3A4A01EFA6D36007A54C1 /* PhotoPreviewCell.m */; };
- 42D3A4A61EFA7346007A54C1 /* VideoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42D3A4A51EFA7346007A54C1 /* VideoPreviewCell.m */; };
- 42D9A0231EB02DA6008AF7AF /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42D9A0221EB02DA6008AF7AF /* AdSupport.framework */; };
- 42D9A0251EB03994008AF7AF /* libAdIdAccess.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 42D9A0241EB03994008AF7AF /* libAdIdAccess.a */; };
- 42DC12F11F0CD98E00A4C011 /* OrderDetailPickInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42DC12F01F0CD98E00A4C011 /* OrderDetailPickInfoCell.m */; };
- 42E153C81FC57A3D00C36077 /* CommonEditorTableContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42E153C71FC57A3D00C36077 /* CommonEditorTableContainerView.m */; };
- 42E489611EE63F4E007256A0 /* more_color_64.png in Resources */ = {isa = PBXBuildFile; fileRef = 42E489601EE63F4E007256A0 /* more_color_64.png */; };
- 42FD1A031FBD1A3000C5D9A8 /* RAOrderPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FD1A021FBD1A3000C5D9A8 /* RAOrderPreviewController.m */; };
- 710274251CC606C4009FD219 /* UserListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 710274241CC606C4009FD219 /* UserListViewController.m */; };
- 7111E5721C76C557004763B3 /* customer_info_template_edit.json in Resources */ = {isa = PBXBuildFile; fileRef = 7111E5711C76C557004763B3 /* customer_info_template_edit.json */; };
- 71131F921CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71131F911CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m */; };
- 7115D45D1E16317600EF4E4C /* CommonEditor.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7115D45C1E16317600EF4E4C /* CommonEditor.storyboard */; };
- 712AFED71DBA050200254965 /* BasicDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFEC61DBA050200254965 /* BasicDrawable.m */; };
- 712AFED81DBA050200254965 /* GridDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFEC81DBA050200254965 /* GridDrawable.m */; };
- 712AFED91DBA050200254965 /* GroupDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFECA1DBA050200254965 /* GroupDrawable.m */; };
- 712AFEDA1DBA050200254965 /* ImageDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFECC1DBA050200254965 /* ImageDrawable.m */; };
- 712AFEDB1DBA050200254965 /* LineDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFECE1DBA050200254965 /* LineDrawable.m */; };
- 712AFEDC1DBA050200254965 /* PDFDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED01DBA050200254965 /* PDFDrawable.m */; };
- 712AFEDD1DBA050200254965 /* RAPDFPage.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED21DBA050200254965 /* RAPDFPage.m */; };
- 712AFEDE1DBA050200254965 /* TableDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED41DBA050200254965 /* TableDrawable.m */; };
- 712AFEDF1DBA050200254965 /* TextDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED61DBA050200254965 /* TextDrawable.m */; };
- 712AFEE21DBA077F00254965 /* pdfCreator.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFEE11DBA077F00254965 /* pdfCreator.m */; };
- 712AFEE51DBDAF0300254965 /* pdfcreator.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 712AFEE41DBDAF0300254965 /* pdfcreator.xcassets */; };
- 712BABF31C897E3A0007466B /* CategorySearchFilterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712BABF21C897E3A0007466B /* CategorySearchFilterViewController.m */; };
- 712C40B61C7310F4000E6831 /* CartGeneralNotesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */; };
- 712C40B91C731126000E6831 /* ItemNotesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712C40B81C731126000E6831 /* ItemNotesViewController.m */; };
- 713F76AA1929F4A7006A7305 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713F76A91929F4A7006A7305 /* Foundation.framework */; };
- 713F76AC1929F4A7006A7305 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713F76AB1929F4A7006A7305 /* CoreGraphics.framework */; };
- 713F76AE1929F4A7006A7305 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713F76AD1929F4A7006A7305 /* UIKit.framework */; };
- 713F76B41929F4A7006A7305 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 713F76B21929F4A7006A7305 /* InfoPlist.strings */; };
- 713F76B61929F4A7006A7305 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 713F76B51929F4A7006A7305 /* main.m */; };
- 713F76BA1929F4A7006A7305 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 713F76B91929F4A7006A7305 /* AppDelegate.m */; };
- 713F76C21929F4A7006A7305 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 713F76C11929F4A7006A7305 /* Images.xcassets */; };
- 714036F921646B8C0029B10F /* AppDelegateBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 714036F721646B8C0029B10F /* AppDelegateBase.m */; };
- 714036FC21646CFF0029B10F /* UIResponder+Router.m in Sources */ = {isa = PBXBuildFile; fileRef = 714036FA21646CFF0029B10F /* UIResponder+Router.m */; };
- 714037052164707E0029B10F /* MainHeaderViewColorPanel.m in Sources */ = {isa = PBXBuildFile; fileRef = 714037042164707D0029B10F /* MainHeaderViewColorPanel.m */; };
- 7141DD341C57269B00F7DF59 /* include in Resources */ = {isa = PBXBuildFile; fileRef = 7141DD331C57269B00F7DF59 /* include */; };
- 7141DD3B1C5726B700F7DF59 /* DeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD361C5726B700F7DF59 /* DeviceInfo.m */; };
- 7141DD3C1C5726B700F7DF59 /* ScanApiHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD381C5726B700F7DF59 /* ScanApiHelper.mm */; };
- 7141DD3D1C5726B700F7DF59 /* softScanBeep.wav in Resources */ = {isa = PBXBuildFile; fileRef = 7141DD3A1C5726B700F7DF59 /* softScanBeep.wav */; };
- 7141DD4E1C57459B00F7DF59 /* bitstream.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD3E1C57459B00F7DF59 /* bitstream.c */; };
- 7141DD4F1C57459B00F7DF59 /* mask.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD401C57459B00F7DF59 /* mask.c */; };
- 7141DD501C57459B00F7DF59 /* QRCodeGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD431C57459B00F7DF59 /* QRCodeGenerator.m */; };
- 7141DD511C57459B00F7DF59 /* qrencode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD441C57459B00F7DF59 /* qrencode.c */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; };
- 7141DD521C57459B00F7DF59 /* qrinput.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD461C57459B00F7DF59 /* qrinput.c */; };
- 7141DD531C57459B00F7DF59 /* qrspec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD481C57459B00F7DF59 /* qrspec.c */; };
- 7141DD541C57459B00F7DF59 /* rscode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD4A1C57459B00F7DF59 /* rscode.c */; };
- 7141DD551C57459B00F7DF59 /* split.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD4C1C57459B00F7DF59 /* split.c */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; };
- 7141DD5F1C5747CE00F7DF59 /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD571C5747CE00F7DF59 /* AESCrypt.m */; };
- 7141DD601C5747CE00F7DF59 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 7141DD581C5747CE00F7DF59 /* LICENSE */; };
- 7141DD611C5747CE00F7DF59 /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD5A1C5747CE00F7DF59 /* NSData+Base64.m */; };
- 7141DD621C5747CE00F7DF59 /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD5C1C5747CE00F7DF59 /* NSData+CommonCrypto.m */; };
- 7141DD631C5747CE00F7DF59 /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD5E1C5747CE00F7DF59 /* NSString+Base64.m */; };
- 7142E87A1DBF577A0077EFA2 /* KALINGA.TTF in Resources */ = {isa = PBXBuildFile; fileRef = 7142E8781DBF57510077EFA2 /* KALINGA.TTF */; };
- 7142E87B1DBF577A0077EFA2 /* KALINGAB.TTF in Resources */ = {isa = PBXBuildFile; fileRef = 7142E8791DBF57510077EFA2 /* KALINGAB.TTF */; };
- 7142E87E1DC300690077EFA2 /* DejaVuSans-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7142E87C1DC300010077EFA2 /* DejaVuSans-Bold.ttf */; };
- 7142E87F1DC300690077EFA2 /* DejaVuSans.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7142E87D1DC300010077EFA2 /* DejaVuSans.ttf */; };
- 7143E20C202FCEEC00451903 /* OLM.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7143E208202FCEEB00451903 /* OLM.storyboard */; };
- 7143E20D202FCEEC00451903 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7143E20A202FCEEC00451903 /* Main.storyboard */; };
- 7143E20F202FCEF600451903 /* CUL.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7143E20E202FCEF600451903 /* CUL.storyboard */; };
- 7143E212202FCF7600451903 /* CategoryCellNPD.m in Sources */ = {isa = PBXBuildFile; fileRef = 7143E211202FCF7600451903 /* CategoryCellNPD.m */; };
- 7143E214202FCFC000451903 /* debug_category_filter.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E213202FCFC000451903 /* debug_category_filter.json */; };
- 7143E217202FD15A00451903 /* category.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E216202FD15A00451903 /* category.json */; };
- 7143E21A202FD1DC00451903 /* contactAdvanceSearch.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E218202FD1DC00451903 /* contactAdvanceSearch.json */; };
- 7143E21B202FD1DC00451903 /* createContact.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E219202FD1DC00451903 /* createContact.json */; };
- 7143E21D202FD21F00451903 /* editContact.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E21C202FD21F00451903 /* editContact.json */; };
- 7143E220202FD28900451903 /* TearSheet.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E21E202FD28800451903 /* TearSheet.json */; };
- 7143E221202FD28900451903 /* placeOrderTemplate.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E21F202FD28900451903 /* placeOrderTemplate.json */; };
- 7143E226202FD2CA00451903 /* so_thumb.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E222202FD2CA00451903 /* so_thumb.json */; };
- 7143E227202FD2CA00451903 /* portfolio_3x2.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E223202FD2CA00451903 /* portfolio_3x2.json */; };
- 7143E228202FD2CA00451903 /* portfolio_2x3.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E224202FD2CA00451903 /* portfolio_2x3.json */; };
- 7143E229202FD2CA00451903 /* so.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E225202FD2CA00451903 /* so.json */; };
- 7143E22B202FD37500451903 /* orderDetail.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E22A202FD37500451903 /* orderDetail.json */; };
- 7143E22E202FD3CD00451903 /* more_info.html in Resources */ = {isa = PBXBuildFile; fileRef = 7143E22C202FD3CC00451903 /* more_info.html */; };
- 7143E22F202FD3CD00451903 /* order_info.html in Resources */ = {isa = PBXBuildFile; fileRef = 7143E22D202FD3CC00451903 /* order_info.html */; };
- 714B1F401C7BF74100539193 /* OrderDetailSignatureCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 714B1F3F1C7BF74100539193 /* OrderDetailSignatureCell.m */; };
- 715001FF1D114D9100F5927F /* BundleDetailButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 715001FE1D114D9100F5927F /* BundleDetailButton.m */; };
- 715671331E10A0EF006324A0 /* RectDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 715671321E10A0EF006324A0 /* RectDrawable.m */; };
- 715850461CF6F0E500856B20 /* DefaultAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 715850451CF6F0E500856B20 /* DefaultAppearance.m */; };
- 715F30BD1DAB37EB00490EED /* OfflineUnlockViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715F30BC1DAB37EB00490EED /* OfflineUnlockViewController.m */; };
- 7161FEB51D61B24900157EE1 /* creditcardpayment.html in Resources */ = {isa = PBXBuildFile; fileRef = 7161FEB21D61B24900157EE1 /* creditcardpayment.html */; };
- 7161FEB61D61B24900157EE1 /* normalpayment.html in Resources */ = {isa = PBXBuildFile; fileRef = 7161FEB31D61B24900157EE1 /* normalpayment.html */; };
- 7161FEB71D61B24900157EE1 /* orderinfo.html in Resources */ = {isa = PBXBuildFile; fileRef = 7161FEB41D61B24900157EE1 /* orderinfo.html */; };
- 7162A5021C586F5B00AB630E /* AddressEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5011C586F5B00AB630E /* AddressEditorViewController.m */; };
- 7162A5091C586FC100AB630E /* CycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5041C586FC100AB630E /* CycleScrollView.m */; };
- 7162A50A1C586FC100AB630E /* NSTimer+Addition.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5061C586FC100AB630E /* NSTimer+Addition.m */; };
- 7162A50B1C586FC100AB630E /* SliderPage.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5081C586FC100AB630E /* SliderPage.m */; };
- 7162A5161C58704600AB630E /* BundleModelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A50D1C58704600AB630E /* BundleModelCell.m */; };
- 7162A5171C58704600AB630E /* BundleModelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A50F1C58704600AB630E /* BundleModelViewController.m */; };
- 7162A5181C58704600AB630E /* CartViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5111C58704600AB630E /* CartViewController.m */; };
- 7162A5191C58704600AB630E /* EditModelPriceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5131C58704600AB630E /* EditModelPriceViewController.m */; };
- 7162A51A1C58704600AB630E /* ModelItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5151C58704600AB630E /* ModelItemCell.m */; };
- 7162A5251C58706C00AB630E /* CategoryCellSmall.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5201C58706C00AB630E /* CategoryCellSmall.m */; };
- 7162A5261C58706C00AB630E /* CategoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5221C58706C00AB630E /* CategoryViewController.m */; };
- 7162A5411C58719D00AB630E /* RATreeNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A52C1C58719D00AB630E /* RATreeNode.m */; };
- 7162A5421C58719D00AB630E /* RATreeNodeCollectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A52E1C58719D00AB630E /* RATreeNodeCollectionController.m */; };
- 7162A5431C58719D00AB630E /* RATreeNodeInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5301C58719D00AB630E /* RATreeNodeInfo.m */; };
- 7162A5441C58719D00AB630E /* RATreeNodeInfo+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5321C58719D00AB630E /* RATreeNodeInfo+Private.m */; };
- 7162A5451C58719D00AB630E /* RATreeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5341C58719D00AB630E /* RATreeView.m */; };
- 7162A5461C58719D00AB630E /* RATreeView+Enums.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5361C58719D00AB630E /* RATreeView+Enums.m */; };
- 7162A5471C58719D00AB630E /* RATreeView+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5381C58719D00AB630E /* RATreeView+Private.m */; };
- 7162A5481C58719D00AB630E /* RATreeView+TableViewDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A53A1C58719D00AB630E /* RATreeView+TableViewDataSource.m */; };
- 7162A5491C58719D00AB630E /* RATreeView+TableViewDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A53C1C58719D00AB630E /* RATreeView+TableViewDelegate.m */; };
- 7162A54A1C58719D00AB630E /* RATreeView+UIScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A53E1C58719D00AB630E /* RATreeView+UIScrollView.m */; };
- 7162A54B1C58719D00AB630E /* RAViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5401C58719D00AB630E /* RAViewController.m */; };
- 7162A54E1C58722200AB630E /* CreditCardEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A54D1C58722200AB630E /* CreditCardEditorViewController.m */; };
- 7162A55B1C58724700AB630E /* ContactAdvanceSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5501C58724700AB630E /* ContactAdvanceSearchViewController.m */; };
- 7162A55C1C58724700AB630E /* ContactListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5521C58724700AB630E /* ContactListTableViewCell.m */; };
- 7162A55D1C58724700AB630E /* ContactListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5541C58724700AB630E /* ContactListViewController.m */; };
- 7162A55E1C58724700AB630E /* customer_advanced_search.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5551C58724700AB630E /* customer_advanced_search.json */; };
- 7162A55F1C58724700AB630E /* customer_info_template.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5561C58724700AB630E /* customer_info_template.json */; };
- 7162A5601C58724700AB630E /* CustomerEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5581C58724700AB630E /* CustomerEditViewController.m */; };
- 7162A5611C58724700AB630E /* CustomerInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A55A1C58724700AB630E /* CustomerInfoViewController.m */; };
- 7162A5701C58728D00AB630E /* DetailHeaderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5631C58728D00AB630E /* DetailHeaderCell.m */; };
- 7162A5711C58728D00AB630E /* DetailImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5651C58728D00AB630E /* DetailImageCell.m */; };
- 7162A5721C58728D00AB630E /* DetailKVCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5671C58728D00AB630E /* DetailKVCell.m */; };
- 7162A5731C58728D00AB630E /* DetailTopicCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5691C58728D00AB630E /* DetailTopicCell.m */; };
- 7162A5741C58728D00AB630E /* DetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A56B1C58728D00AB630E /* DetailViewController.m */; };
- 7162A5751C58728D00AB630E /* LineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A56D1C58728D00AB630E /* LineView.m */; };
- 7162A5811C5872EF00AB630E /* HomeTableViewCellBanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5781C5872EF00AB630E /* HomeTableViewCellBanner.m */; };
- 7162A5821C5872EF00AB630E /* HomeTableViewCellButtonBanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A57A1C5872EF00AB630E /* HomeTableViewCellButtonBanner.m */; };
- 7162A5831C5872EF00AB630E /* HomeTableViewCellSlide.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A57C1C5872EF00AB630E /* HomeTableViewCellSlide.m */; };
- 7162A5841C5872EF00AB630E /* HomeTableViewCellTopic.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A57E1C5872EF00AB630E /* HomeTableViewCellTopic.m */; };
- 7162A5851C5872EF00AB630E /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5801C5872EF00AB630E /* HomeViewController.m */; };
- 7162A5981C58733400AB630E /* CreateOrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5871C58733400AB630E /* CreateOrderViewController.m */; };
- 7162A5991C58733400AB630E /* OrderDetailHtmlCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5891C58733400AB630E /* OrderDetailHtmlCell.m */; };
- 7162A59A1C58733400AB630E /* OrderDetailInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A58B1C58733400AB630E /* OrderDetailInfoCell.m */; };
- 7162A59B1C58733400AB630E /* OrderDetailModelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A58D1C58733400AB630E /* OrderDetailModelCell.m */; };
- 7162A59C1C58733400AB630E /* OrderDetailPriceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A58F1C58733400AB630E /* OrderDetailPriceCell.m */; };
- 7162A59D1C58733400AB630E /* OrderDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5911C58733400AB630E /* OrderDetailViewController.m */; };
- 7162A59E1C58733400AB630E /* OrderListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5931C58733400AB630E /* OrderListTableViewCell.m */; };
- 7162A59F1C58733400AB630E /* OrderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5951C58733400AB630E /* OrderListViewController.m */; };
- 7162A5A01C58733400AB630E /* status_filter_cadedate_open.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5961C58733400AB630E /* status_filter_cadedate_open.json */; };
- 7162A5A11C58733400AB630E /* offline_status_filter_cadedate.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5971C58733400AB630E /* offline_status_filter_cadedate.json */; };
- 7162A5AC1C58735900AB630E /* PortfolioViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5A71C58735900AB630E /* PortfolioViewController.m */; };
- 7162A5AD1C58735900AB630E /* TearSheetParamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5A91C58735900AB630E /* TearSheetParamViewController.m */; };
- 7162A5B41C58738600AB630E /* ScannerControllerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5AF1C58738600AB630E /* ScannerControllerView.m */; };
- 7162A5B51C58738600AB630E /* ScannerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5B11C58738600AB630E /* ScannerViewController.m */; };
- 7162A5B61C58738600AB630E /* SCShapeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5B31C58738600AB630E /* SCShapeView.m */; };
- 7162A5C11C5873BB00AB630E /* FilterCellCadedate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5B81C5873BB00AB630E /* FilterCellCadedate.m */; };
- 7162A5C21C5873BB00AB630E /* FilterCellValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5BA1C5873BB00AB630E /* FilterCellValue.m */; };
- 7162A5C31C5873BB00AB630E /* ItemSearchFilterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5BC1C5873BB00AB630E /* ItemSearchFilterViewController.m */; };
- 7162A5C41C5873BB00AB630E /* ItemSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5BE1C5873BB00AB630E /* ItemSearchViewController.m */; };
- 7162A5C51C5873BB00AB630E /* SearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5C01C5873BB00AB630E /* SearchViewController.m */; };
- 7162A5CA1C58761500AB630E /* SignatureView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5C71C58761500AB630E /* SignatureView.m */; };
- 7162A5CB1C58761500AB630E /* SignatureViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5C91C58761500AB630E /* SignatureViewController.m */; };
- 7162A5DA1C5876E300AB630E /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5CD1C5876E300AB630E /* AboutViewController.m */; };
- 7162A5DB1C5876E300AB630E /* CacheViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5CF1C5876E300AB630E /* CacheViewController.m */; };
- 7162A5DC1C5876E300AB630E /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D11C5876E300AB630E /* LoginViewController.m */; };
- 7162A5DD1C5876E300AB630E /* PopupNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D31C5876E300AB630E /* PopupNavigationController.m */; };
- 7162A5DE1C5876E300AB630E /* RetrievePassViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D51C5876E300AB630E /* RetrievePassViewController.m */; };
- 7162A5DF1C5876E300AB630E /* ScannerSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D71C5876E300AB630E /* ScannerSettingViewController.m */; };
- 7162A5E01C5876E300AB630E /* SettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D91C5876E300AB630E /* SettingViewController.m */; };
- 7162A5E31C5877CE00AB630E /* WatchListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5E21C5877CE00AB630E /* WatchListViewController.m */; };
- 7162A5E61C58781000AB630E /* iSalesNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5E51C58781000AB630E /* iSalesNavigationController.m */; };
- 7162A5E91C5899F700AB630E /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5E81C5899F700AB630E /* MainViewController.m */; };
- 7165662E1EF3ACD900CB897F /* photostack_image.html in Resources */ = {isa = PBXBuildFile; fileRef = 7165662C1EF3ACD900CB897F /* photostack_image.html */; };
- 7165662F1EF3ACD900CB897F /* photostack_video.html in Resources */ = {isa = PBXBuildFile; fileRef = 7165662D1EF3ACD900CB897F /* photostack_video.html */; };
- 716961B519594E1000B19FB4 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 716961B419594E1000B19FB4 /* libsqlite3.dylib */; };
- 716AF8E11D7AA0E0001188E0 /* SelectUploadOrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 716AF8E01D7AA0E0001188E0 /* SelectUploadOrderViewController.m */; };
- 716AF8E71D7AA398001188E0 /* SelectOrderTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 716AF8E51D7AA398001188E0 /* SelectOrderTableViewCell.m */; };
- 7186C25D1C97A6EE00CB43F4 /* FunctionTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7186C25C1C97A6EE00CB43F4 /* FunctionTestViewController.m */; };
- 718716251C433D8B00F25860 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716241C433D8B00F25860 /* ExternalAccessory.framework */; };
- 718716271C433D9700F25860 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716261C433D9700F25860 /* AudioToolbox.framework */; };
- 718716291C433DA400F25860 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716281C433DA400F25860 /* AVFoundation.framework */; };
- 7187162C1C43428100F25860 /* libScanApiCore.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716221C433D5000F25860 /* libScanApiCore.a */; };
- 718B91831C75638100265FFF /* TouchImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 718B91821C75638100265FFF /* TouchImageView.m */; };
- 7195623C1CF57D1800C74A49 /* CategoryHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7195623B1CF57D1800C74A49 /* CategoryHeaderView.m */; };
- 719562421CF5828200C74A49 /* DefaultTableHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 719562411CF5828200C74A49 /* DefaultTableHeaderView.m */; };
- 71BBA2271CEAC16000C91DED /* ZipArchive.mm in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA2221CEAC16000C91DED /* ZipArchive.mm */; };
- 71BBA2291CEAC17E00C91DED /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 71BBA2281CEAC17E00C91DED /* libz.tbd */; };
- 71BBA2401CEAEF0700C91DED /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA2381CEAEF0700C91DED /* ioapi.c */; };
- 71BBA2411CEAEF0700C91DED /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA23A1CEAEF0700C91DED /* mztools.c */; };
- 71BBA2421CEAEF0700C91DED /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA23C1CEAEF0700C91DED /* unzip.c */; settings = {COMPILER_FLAGS = "-Wno-dangling-else"; }; };
- 71BBA2431CEAEF0700C91DED /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA23E1CEAEF0700C91DED /* zip.c */; };
- 71BF06FB1D2F3CAC00981938 /* OLDataProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF06FA1D2F3CAC00981938 /* OLDataProvider.m */; };
- 71BF06FE1D2F3CBA00981938 /* OfflineSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF06FD1D2F3CBA00981938 /* OfflineSettingViewController.m */; };
- 71BF07081D2F3D2800981938 /* SyncControlPanelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF07071D2F3D2800981938 /* SyncControlPanelViewController.m */; };
- 71C1D84E1F456CAA00CEA1C9 /* HWWeakTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C1D84D1F456CAA00CEA1C9 /* HWWeakTimer.m */; };
- 71C1D8541F456D2700CEA1C9 /* ModelDescriptionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C1D8531F456D2700CEA1C9 /* ModelDescriptionController.m */; };
- 71CB70751F99DF02009FDCB7 /* FileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CB70731F99DF01009FDCB7 /* FileCache.m */; };
- 71CB70781F99E338009FDCB7 /* RAConvertor.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CB70771F99E338009FDCB7 /* RAConvertor.m */; };
- 71D01ADD1E08CB1C006620CE /* signature.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71D01ADC1E08CB1C006620CE /* signature.storyboard */; };
- 71D01B1A1E0A2055006620CE /* ImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D01B151E0A2055006620CE /* ImageUtils.m */; };
- 71D01B1B1E0A2055006620CE /* PDFUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D01B171E0A2055006620CE /* PDFUtils.m */; };
- 71D01B1C1E0A2055006620CE /* TextUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D01B191E0A2055006620CE /* TextUtils.m */; };
- 71D0344F1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D0344E1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m */; };
- 71D30A211CFBEDC6006F9477 /* default_appearance.json in Resources */ = {isa = PBXBuildFile; fileRef = 71D30A201CFBEDC6006F9477 /* default_appearance.json */; };
- 71D30A2D1CFC0EF8006F9477 /* DefaultImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D30A2C1CFC0EF8006F9477 /* DefaultImageButton.m */; };
- 71D99D301CEF02E700CA32DE /* CustomIOSAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D99D2F1CEF02E700CA32DE /* CustomIOSAlertView.m */; };
- 71DEE874192DE003003F645F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71DEE873192DE003003F645F /* QuartzCore.framework */; };
- 71DEE876192DE00E003F645F /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71DEE875192DE00E003F645F /* Accelerate.framework */; };
- 71DF742B1C57560600F2789C /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF742A1C57560600F2789C /* Reachability.m */; };
- 71DF74301C57572600F2789C /* RAUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF742F1C57572600F2789C /* RAUtils.m */; };
- 71DF74341C5757DA00F2789C /* ActiveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74331C5757DA00F2789C /* ActiveViewController.m */; };
- 71DF745B1C575E7900F2789C /* CommonEditorCellAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF743C1C575E7900F2789C /* CommonEditorCellAction.m */; };
- 71DF745C1C575E7900F2789C /* CommonEditorCellEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF743E1C575E7900F2789C /* CommonEditorCellEdit.m */; };
- 71DF745D1C575E7900F2789C /* CommonEditorCellEnum.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74401C575E7900F2789C /* CommonEditorCellEnum.m */; };
- 71DF745E1C575E7900F2789C /* CommonEditorCellImg.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74421C575E7900F2789C /* CommonEditorCellImg.m */; };
- 71DF745F1C575E7900F2789C /* CommonEditorCellLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74441C575E7900F2789C /* CommonEditorCellLabel.m */; };
- 71DF74601C575E7900F2789C /* CommonEditorCellMAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74461C575E7900F2789C /* CommonEditorCellMAction.m */; };
- 71DF74611C575E7900F2789C /* CommonEditorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74481C575E7900F2789C /* CommonEditorCellModel.m */; };
- 71DF74621C575E7900F2789C /* CommonEditorCellSignature.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF744A1C575E7900F2789C /* CommonEditorCellSignature.m */; };
- 71DF74631C575E7900F2789C /* CommonEditorCellSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF744C1C575E7900F2789C /* CommonEditorCellSwitch.m */; };
- 71DF74641C575E7900F2789C /* CommonEditorCellTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF744E1C575E7900F2789C /* CommonEditorCellTextView.m */; };
- 71DF74651C575E7900F2789C /* CommonEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74501C575E7900F2789C /* CommonEditorViewController.m */; };
- 71DF74661C575E7900F2789C /* DatePickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74521C575E7900F2789C /* DatePickerViewController.m */; };
- 71DF74671C575E7900F2789C /* EnumSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74541C575E7900F2789C /* EnumSelectorCell.m */; };
- 71DF74681C575E7900F2789C /* EnumSelectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74561C575E7900F2789C /* EnumSelectViewController.m */; };
- 71DF74691C575E7900F2789C /* MonthPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74581C575E7900F2789C /* MonthPickerViewController.m */; };
- 71DF746A1C575E7900F2789C /* SRMonthPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF745A1C575E7900F2789C /* SRMonthPicker.m */; };
- 71DF74831C57608F00F2789C /* ImageScrollerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF746C1C57608F00F2789C /* ImageScrollerView.m */; };
- 71DF74841C57608F00F2789C /* ImageScrollerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF746E1C57608F00F2789C /* ImageScrollerViewController.m */; };
- 71DF74851C57608F00F2789C /* ImageUploadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74701C57608F00F2789C /* ImageUploadViewController.m */; };
- 71DF74861C57608F00F2789C /* ImageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74721C57608F00F2789C /* ImageViewController.m */; };
- 71DF74871C57608F00F2789C /* NIDropDown.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74741C57608F00F2789C /* NIDropDown.m */; };
- 71DF74881C57608F00F2789C /* PulldownMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74761C57608F00F2789C /* PulldownMenu.m */; };
- 71DF74891C57608F00F2789C /* RadioButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74781C57608F00F2789C /* RadioButton.m */; };
- 71DF748A1C57608F00F2789C /* RTLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF747A1C57608F00F2789C /* RTLabel.m */; };
- 71DF748B1C57608F00F2789C /* SimpleGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF747C1C57608F00F2789C /* SimpleGrid.m */; };
- 71DF748C1C57608F00F2789C /* StrikethroughLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF747E1C57608F00F2789C /* StrikethroughLabel.m */; };
- 71DF748D1C57608F00F2789C /* TouchLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74801C57608F00F2789C /* TouchLabel.m */; };
- 71DF748E1C57608F00F2789C /* UILabel+FontAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74821C57608F00F2789C /* UILabel+FontAppearance.m */; };
- 71DF74951C57614C00F2789C /* PhotoBorder.png in Resources */ = {isa = PBXBuildFile; fileRef = 71DF748F1C57614C00F2789C /* PhotoBorder.png */; };
- 71DF74961C57614C00F2789C /* PhotoBorder@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 71DF74901C57614C00F2789C /* PhotoBorder@2x.png */; };
- 71DF74971C57614C00F2789C /* PhotoStackView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74921C57614C00F2789C /* PhotoStackView.m */; };
- 71DF74981C57614C00F2789C /* PhotoStackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74941C57614C00F2789C /* PhotoStackViewController.m */; };
- 71E5A0101DC99370005BF655 /* config.plist in Resources */ = {isa = PBXBuildFile; fileRef = 71E5A00F1DC99370005BF655 /* config.plist */; };
- 71E9F6BC1F8B52DD0052C78E /* NetworkUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E9F6BA1F8B52DC0052C78E /* NetworkUtils.m */; };
- 71E9F6C21F8B57E40052C78E /* RANetworkTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E9F6C01F8B57E30052C78E /* RANetworkTaskDelegate.m */; };
- 71FFBBE91C60894900D91DC2 /* iSalesDB.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FFBBE61C60894900D91DC2 /* iSalesDB.m */; };
- 71FFBBEA1C60894900D91DC2 /* RANetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FFBBE81C60894900D91DC2 /* RANetwork.m */; };
- /* End PBXBuildFile section */
- /* Begin PBXFileReference section */
- 3C2F99B6237BE1790000808F /* PortfolioListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioListTableViewCell.m; path = common/Functions/portfolio/PortfolioListTableViewCell.m; sourceTree = SOURCE_ROOT; };
- 3C2F99B7237BE1790000808F /* PortfolioListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioListTableViewCell.h; path = common/Functions/portfolio/PortfolioListTableViewCell.h; sourceTree = SOURCE_ROOT; };
- 3C68314A239607B500AD5BD7 /* ytplayer.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = ytplayer.html; path = ../../common/Youtube/ytplayer.html; sourceTree = "<group>"; };
- 3C68314B239607B500AD5BD7 /* RAYTPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAYTPlayer.m; path = ../../common/Youtube/RAYTPlayer.m; sourceTree = "<group>"; };
- 3C68314C239607B500AD5BD7 /* RAYTPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAYTPlayer.h; path = ../../common/Youtube/RAYTPlayer.h; sourceTree = "<group>"; };
- 3C68314F2396082700AD5BD7 /* ERP_Mobile_Discard.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Discard.storyboard; path = common/ERP_Mobile_Discard.storyboard; sourceTree = SOURCE_ROOT; };
- 3C6831502396082700AD5BD7 /* ERP_Mobile_Cart.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Cart.storyboard; path = common/ERP_Mobile_Cart.storyboard; sourceTree = SOURCE_ROOT; };
- 3C6831512396082700AD5BD7 /* ERP_Mobile_Model.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Model.storyboard; path = common/ERP_Mobile_Model.storyboard; sourceTree = SOURCE_ROOT; };
- 3C6831522396082700AD5BD7 /* ERP_Mobile_Search.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Search.storyboard; path = common/ERP_Mobile_Search.storyboard; sourceTree = SOURCE_ROOT; };
- 3C6831532396082700AD5BD7 /* ERP_Mobile_Contact.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Contact.storyboard; path = common/ERP_Mobile_Contact.storyboard; sourceTree = SOURCE_ROOT; };
- 3C6831542396082800AD5BD7 /* ERP_Mobile_Order.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Order.storyboard; path = common/ERP_Mobile_Order.storyboard; sourceTree = SOURCE_ROOT; };
- 3C6831552396082800AD5BD7 /* ERP_Mobile_Portfolio.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Portfolio.storyboard; path = common/ERP_Mobile_Portfolio.storyboard; sourceTree = SOURCE_ROOT; };
- 3C68315D2396094100AD5BD7 /* iPadCommonEditorCellImg.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellImg.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellImg.xib; sourceTree = "<group>"; };
- 3C68315E2396094100AD5BD7 /* CommonEditor.iPad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = CommonEditor.iPad.xib; path = ../../common/customUI/CommonEditoriPad/CommonEditor.iPad.xib; sourceTree = "<group>"; };
- 3C68315F2396094200AD5BD7 /* iPadCommonEditorCellLabel.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellLabel.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellLabel.xib; sourceTree = "<group>"; };
- 3C6831602396094200AD5BD7 /* iPadCommonEditorCellSwitch.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellSwitch.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellSwitch.xib; sourceTree = "<group>"; };
- 3C6831612396094200AD5BD7 /* iPadCommonEditorCellEnum.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellEnum.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellEnum.xib; sourceTree = "<group>"; };
- 3C6831622396094200AD5BD7 /* iPadCommonEditorCellTextView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellTextView.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellTextView.xib; sourceTree = "<group>"; };
- 3C6831632396094200AD5BD7 /* iPadCommonEditorCellAction.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellAction.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellAction.xib; sourceTree = "<group>"; };
- 3C6831642396094200AD5BD7 /* iPadCommonEditorCellModel.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellModel.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellModel.xib; sourceTree = "<group>"; };
- 3C6831652396094200AD5BD7 /* iPadCommonEditorCellMAction.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellMAction.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellMAction.xib; sourceTree = "<group>"; };
- 3C6831662396094200AD5BD7 /* iPadCommonEditorCellSignature.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellSignature.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellSignature.xib; sourceTree = "<group>"; };
- 3C6831672396094200AD5BD7 /* iPadCommonEditorCellEdit.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellEdit.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellEdit.xib; sourceTree = "<group>"; };
- 3C69617D23C7156D0075172A /* RAPDFViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAPDFViewController.h; path = "../../common/WK PDF+Web/RAPDFViewController.h"; sourceTree = "<group>"; };
- 3C69617E23C7156D0075172A /* RAPDFViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAPDFViewController.m; path = "../../common/WK PDF+Web/RAPDFViewController.m"; sourceTree = "<group>"; };
- 3C69617F23C7156D0075172A /* WebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebViewController.m; path = "../../common/WK PDF+Web/WebViewController.m"; sourceTree = "<group>"; };
- 3C69618023C7156D0075172A /* wkweb.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = wkweb.storyboard; path = "../../common/WK PDF+Web/wkweb.storyboard"; sourceTree = "<group>"; };
- 3C69618123C7156D0075172A /* WebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebViewController.h; path = "../../common/WK PDF+Web/WebViewController.h"; sourceTree = "<group>"; };
- 3C7E5A8C237BDB0C006D0105 /* PortfolioListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioListViewController.m; path = common/Functions/portfolio/PortfolioListViewController.m; sourceTree = SOURCE_ROOT; };
- 3C7E5A8D237BDB0C006D0105 /* PortfolioListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioListViewController.h; path = common/Functions/portfolio/PortfolioListViewController.h; sourceTree = SOURCE_ROOT; };
- 423CC87421D22FDE008BD2C4 /* Launch Screen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = SOURCE_ROOT; };
- 424A02CF1FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RABackOrderSubmitAlertController.h; path = common/Functions/order/RABackOrderSubmitAlertController.h; sourceTree = SOURCE_ROOT; };
- 424A02D01FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RABackOrderSubmitAlertController.m; path = common/Functions/order/RABackOrderSubmitAlertController.m; sourceTree = SOURCE_ROOT; };
- 4254CCDC1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RAOrderEditorViewController.h; path = common/Functions/order/RAOrderEditorViewController.h; sourceTree = SOURCE_ROOT; };
- 4254CCDD1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RAOrderEditorViewController.m; path = common/Functions/order/RAOrderEditorViewController.m; sourceTree = SOURCE_ROOT; };
- 428980021E2490C1005F1BD8 /* NotificationNameCenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NotificationNameCenter.h; path = common/NotificationNameCenter.h; sourceTree = SOURCE_ROOT; };
- 428980031E2490C1005F1BD8 /* NotificationNameCenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NotificationNameCenter.m; path = common/NotificationNameCenter.m; sourceTree = SOURCE_ROOT; };
- 428980081E24918F005F1BD8 /* CartUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartUtils.h; path = common/CartUtils.h; sourceTree = SOURCE_ROOT; };
- 428980091E24918F005F1BD8 /* CartUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartUtils.m; path = common/CartUtils.m; sourceTree = SOURCE_ROOT; };
- 4289800F1E24924D005F1BD8 /* SortButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortButton.h; sourceTree = "<group>"; };
- 428980101E24924D005F1BD8 /* SortButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortButton.m; sourceTree = "<group>"; };
- 428980111E24924D005F1BD8 /* SortItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortItemCell.h; sourceTree = "<group>"; };
- 428980121E24924D005F1BD8 /* SortItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortItemCell.m; sourceTree = "<group>"; };
- 428980131E24924D005F1BD8 /* SortItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortItemViewController.h; sourceTree = "<group>"; };
- 428980141E24924D005F1BD8 /* SortItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortItemViewController.m; sourceTree = "<group>"; };
- 428980231E2492D2005F1BD8 /* CategoryPriceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryPriceCell.h; sourceTree = "<group>"; };
- 428980241E2492D2005F1BD8 /* CategoryPriceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryPriceCell.m; sourceTree = "<group>"; };
- 428980251E2492D2005F1BD8 /* CategoryPriceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryPriceViewController.h; sourceTree = "<group>"; };
- 428980261E2492D2005F1BD8 /* CategoryPriceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryPriceViewController.m; sourceTree = "<group>"; };
- 428980271E2492D2005F1BD8 /* PriceSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PriceSettingViewController.h; sourceTree = "<group>"; };
- 428980281E2492D2005F1BD8 /* PriceSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PriceSettingViewController.m; sourceTree = "<group>"; };
- 428980291E2492D2005F1BD8 /* SetCategoryPriceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SetCategoryPriceController.h; sourceTree = "<group>"; };
- 4289802A1E2492D2005F1BD8 /* SetCategoryPriceController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SetCategoryPriceController.m; sourceTree = "<group>"; };
- 4289803D1E249339005F1BD8 /* JKDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKDotView.h; sourceTree = "<group>"; };
- 4289803E1E249339005F1BD8 /* JKDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKDotView.m; sourceTree = "<group>"; };
- 4289803F1E249339005F1BD8 /* JKLockButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKLockButton.h; sourceTree = "<group>"; };
- 428980401E249339005F1BD8 /* JKLockButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKLockButton.m; sourceTree = "<group>"; };
- 428980411E249339005F1BD8 /* JKLockController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKLockController.h; sourceTree = "<group>"; };
- 428980421E249339005F1BD8 /* JKLockController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKLockController.m; sourceTree = "<group>"; };
- 428980431E249339005F1BD8 /* JKMessageBoxController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKMessageBoxController.h; sourceTree = "<group>"; };
- 428980441E249339005F1BD8 /* JKMessageBoxController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKMessageBoxController.m; sourceTree = "<group>"; };
- 4289805B1E249375005F1BD8 /* UIColor+JK_HEX.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+JK_HEX.h"; sourceTree = "<group>"; };
- 4289805C1E249375005F1BD8 /* UIColor+JK_HEX.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JK_HEX.m"; sourceTree = "<group>"; };
- 428980701E24B1E9005F1BD8 /* Singleton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = common/Singleton.h; sourceTree = SOURCE_ROOT; };
- 428980711E24B1E9005F1BD8 /* Singleton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Singleton.m; path = common/Singleton.m; sourceTree = SOURCE_ROOT; };
- 4289809C1E24B526005F1BD8 /* JKTimerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKTimerManager.h; sourceTree = "<group>"; };
- 4289809D1E24B526005F1BD8 /* JKTimerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKTimerManager.m; sourceTree = "<group>"; };
- 4295AE191FE74D46007BE365 /* CommonEditorAutoCompleteView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorAutoCompleteView.h; path = ../../common/customUI/commoneditor/CommonEditorAutoCompleteView.h; sourceTree = "<group>"; };
- 4295AE1A1FE74D46007BE365 /* CommonEditorAutoCompleteView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorAutoCompleteView.m; path = ../../common/customUI/commoneditor/CommonEditorAutoCompleteView.m; sourceTree = "<group>"; };
- 4295AE1B1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = CommonEditorAutoCompleteView.xib; path = ../../common/customUI/commoneditor/CommonEditorAutoCompleteView.xib; sourceTree = "<group>"; };
- 42B309781E45BA32007AFC62 /* status_filter_cadedate_po.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = status_filter_cadedate_po.json; path = common/Functions/order/status_filter_cadedate_po.json; sourceTree = SOURCE_ROOT; };
- 42BEAB2E1FA1D23A0024D647 /* EnumModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EnumModel.h; sourceTree = "<group>"; };
- 42BEAB2F1FA1D23A0024D647 /* EnumModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EnumModel.m; sourceTree = "<group>"; };
- 42BEAB301FA1D23A0024D647 /* EnumSelectAndSort.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = EnumSelectAndSort.storyboard; sourceTree = "<group>"; };
- 42BEAB311FA1D23A0024D647 /* EnumSelectAndSortCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EnumSelectAndSortCell.h; sourceTree = "<group>"; };
- 42BEAB321FA1D23A0024D647 /* EnumSelectAndSortCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EnumSelectAndSortCell.m; sourceTree = "<group>"; };
- 42BEAB331FA1D23A0024D647 /* EnumSelectAndSortViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EnumSelectAndSortViewController.h; sourceTree = "<group>"; };
- 42BEAB341FA1D23A0024D647 /* EnumSelectAndSortViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EnumSelectAndSortViewController.m; sourceTree = "<group>"; };
- 42BEF3241E89FE1100632AB6 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
- 42BEF3271E89FE1100632AB6 /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
- 42BEF3291E89FE1100632AB6 /* CHANGELOG.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = "<group>"; };
- 42BEF32B1E89FE1100632AB6 /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
- 42BEF32C1E89FE1100632AB6 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
- 42BEF32F1E89FE1100632AB6 /* GGLAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GGLAnalytics.framework; sourceTree = "<group>"; };
- 42BEF3301E89FE1100632AB6 /* GGLCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GGLCore.framework; sourceTree = "<group>"; };
- 42BEF3321E89FE1100632AB6 /* Analytics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Analytics.h; sourceTree = "<group>"; };
- 42BEF3331E89FE1100632AB6 /* Core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Core.h; sourceTree = "<group>"; };
- 42BEF3341E89FE1100632AB6 /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = module.modulemap; sourceTree = "<group>"; };
- 42BEF3361E89FE1100632AB6 /* Analytics-Module.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Analytics-Module.h"; sourceTree = "<group>"; };
- 42BEF3371E89FE1100632AB6 /* Core-Module.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Core-Module.h"; sourceTree = "<group>"; };
- 42BEF3381E89FE1100632AB6 /* SignIn-Module.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SignIn-Module.h"; sourceTree = "<group>"; };
- 42BEF3391E89FE1100632AB6 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
- 42BEF33C1E89FE1100632AB6 /* libGoogleAnalytics.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libGoogleAnalytics.a; sourceTree = "<group>"; };
- 42BEF33E1E89FE1100632AB6 /* GAI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAI.h; sourceTree = "<group>"; };
- 42BEF33F1E89FE1100632AB6 /* GAIDictionaryBuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAIDictionaryBuilder.h; sourceTree = "<group>"; };
- 42BEF3401E89FE1100632AB6 /* GAIEcommerceFields.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAIEcommerceFields.h; sourceTree = "<group>"; };
- 42BEF3411E89FE1100632AB6 /* GAIEcommerceProduct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAIEcommerceProduct.h; sourceTree = "<group>"; };
- 42BEF3421E89FE1100632AB6 /* GAIEcommerceProductAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAIEcommerceProductAction.h; sourceTree = "<group>"; };
- 42BEF3431E89FE1100632AB6 /* GAIEcommercePromotion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAIEcommercePromotion.h; sourceTree = "<group>"; };
- 42BEF3441E89FE1100632AB6 /* GAIFields.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAIFields.h; sourceTree = "<group>"; };
- 42BEF3451E89FE1100632AB6 /* GAILogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAILogger.h; sourceTree = "<group>"; };
- 42BEF3461E89FE1100632AB6 /* GAITrackedViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAITrackedViewController.h; sourceTree = "<group>"; };
- 42BEF3471E89FE1100632AB6 /* GAITracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAITracker.h; sourceTree = "<group>"; };
- 42BEF34A1E89FE1100632AB6 /* GTMNSData+zlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GTMNSData+zlib.h"; sourceTree = "<group>"; };
- 42BEF34B1E89FE1100632AB6 /* GTMNSData+zlib.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "GTMNSData+zlib.m"; sourceTree = "<group>"; };
- 42BEF34C1E89FE1100632AB6 /* GTMDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = "<group>"; };
- 42BEF34E1E89FE1100632AB6 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
- 42BEF35C1E89FECD00632AB6 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
- 42BEF35E1E89FEE300632AB6 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
- 42BEF3601E8A005800632AB6 /* GoogleAnalyst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoogleAnalyst.h; sourceTree = "<group>"; };
- 42BEF3611E8A005800632AB6 /* GoogleAnalyst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoogleAnalyst.m; sourceTree = "<group>"; };
- 42BF67CA1E5179970081F90A /* ERPUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ERPUtils.h; path = common/ERPUtils.h; sourceTree = SOURCE_ROOT; };
- 42BF67CB1E5179970081F90A /* ERPUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ERPUtils.m; path = common/ERPUtils.m; sourceTree = SOURCE_ROOT; };
- 42D3A49A1EFA6D36007A54C1 /* ContentPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContentPreviewController.h; sourceTree = "<group>"; };
- 42D3A49B1EFA6D36007A54C1 /* ContentPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContentPreviewController.m; sourceTree = "<group>"; };
- 42D3A49D1EFA6D36007A54C1 /* PhotoList.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = PhotoList.storyboard; sourceTree = "<group>"; };
- 42D3A49F1EFA6D36007A54C1 /* PhotoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoPreviewCell.h; sourceTree = "<group>"; };
- 42D3A4A01EFA6D36007A54C1 /* PhotoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoPreviewCell.m; sourceTree = "<group>"; };
- 42D3A4A41EFA7346007A54C1 /* VideoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoPreviewCell.h; sourceTree = "<group>"; };
- 42D3A4A51EFA7346007A54C1 /* VideoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoPreviewCell.m; sourceTree = "<group>"; };
- 42D9A0221EB02DA6008AF7AF /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
- 42D9A0241EB03994008AF7AF /* libAdIdAccess.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libAdIdAccess.a; sourceTree = "<group>"; };
- 42DC12EF1F0CD98E00A4C011 /* OrderDetailPickInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailPickInfoCell.h; path = common/Functions/order/OrderDetailPickInfoCell.h; sourceTree = SOURCE_ROOT; };
- 42DC12F01F0CD98E00A4C011 /* OrderDetailPickInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailPickInfoCell.m; path = common/Functions/order/OrderDetailPickInfoCell.m; sourceTree = SOURCE_ROOT; };
- 42E153C61FC57A3D00C36077 /* CommonEditorTableContainerView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CommonEditorTableContainerView.h; path = common/CommonEditor/CommonEditorTableContainerView.h; sourceTree = SOURCE_ROOT; };
- 42E153C71FC57A3D00C36077 /* CommonEditorTableContainerView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CommonEditorTableContainerView.m; path = common/CommonEditor/CommonEditorTableContainerView.m; sourceTree = SOURCE_ROOT; };
- 42E489601EE63F4E007256A0 /* more_color_64.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = more_color_64.png; sourceTree = "<group>"; };
- 42FD1A011FBD1A3000C5D9A8 /* RAOrderPreviewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RAOrderPreviewController.h; path = common/Functions/order/RAOrderPreviewController.h; sourceTree = SOURCE_ROOT; };
- 42FD1A021FBD1A3000C5D9A8 /* RAOrderPreviewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RAOrderPreviewController.m; path = common/Functions/order/RAOrderPreviewController.m; sourceTree = SOURCE_ROOT; };
- 710274231CC606C4009FD219 /* UserListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UserListViewController.h; path = common/Functions/sidemenu/UserListViewController.h; sourceTree = SOURCE_ROOT; };
- 710274241CC606C4009FD219 /* UserListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = UserListViewController.m; path = common/Functions/sidemenu/UserListViewController.m; sourceTree = SOURCE_ROOT; };
- 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; };
- 71131F901CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimplifiedBuyingProgramViewController.h; path = common/Functions/sidemenu/SimplifiedBuyingProgramViewController.h; sourceTree = SOURCE_ROOT; };
- 71131F911CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimplifiedBuyingProgramViewController.m; path = common/Functions/sidemenu/SimplifiedBuyingProgramViewController.m; sourceTree = SOURCE_ROOT; };
- 7115D45C1E16317600EF4E4C /* CommonEditor.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CommonEditor.storyboard; path = common/CommonEditor/CommonEditor.storyboard; sourceTree = SOURCE_ROOT; };
- 712AFEC51DBA050200254965 /* BasicDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BasicDrawable.h; path = common/pdfCreator/BasicDrawable.h; sourceTree = SOURCE_ROOT; };
- 712AFEC61DBA050200254965 /* BasicDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BasicDrawable.m; path = common/pdfCreator/BasicDrawable.m; sourceTree = SOURCE_ROOT; };
- 712AFEC71DBA050200254965 /* GridDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GridDrawable.h; path = common/pdfCreator/GridDrawable.h; sourceTree = SOURCE_ROOT; };
- 712AFEC81DBA050200254965 /* GridDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GridDrawable.m; path = common/pdfCreator/GridDrawable.m; sourceTree = SOURCE_ROOT; };
- 712AFEC91DBA050200254965 /* GroupDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupDrawable.h; path = common/pdfCreator/GroupDrawable.h; sourceTree = SOURCE_ROOT; };
- 712AFECA1DBA050200254965 /* GroupDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GroupDrawable.m; path = common/pdfCreator/GroupDrawable.m; sourceTree = SOURCE_ROOT; };
- 712AFECB1DBA050200254965 /* ImageDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageDrawable.h; path = common/pdfCreator/ImageDrawable.h; sourceTree = SOURCE_ROOT; };
- 712AFECC1DBA050200254965 /* ImageDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageDrawable.m; path = common/pdfCreator/ImageDrawable.m; sourceTree = SOURCE_ROOT; };
- 712AFECD1DBA050200254965 /* LineDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LineDrawable.h; path = common/pdfCreator/LineDrawable.h; sourceTree = SOURCE_ROOT; };
- 712AFECE1DBA050200254965 /* LineDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LineDrawable.m; path = common/pdfCreator/LineDrawable.m; sourceTree = SOURCE_ROOT; };
- 712AFECF1DBA050200254965 /* PDFDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFDrawable.h; path = common/pdfCreator/PDFDrawable.h; sourceTree = SOURCE_ROOT; };
- 712AFED01DBA050200254965 /* PDFDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFDrawable.m; path = common/pdfCreator/PDFDrawable.m; sourceTree = SOURCE_ROOT; };
- 712AFED11DBA050200254965 /* RAPDFPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAPDFPage.h; path = common/pdfCreator/RAPDFPage.h; sourceTree = SOURCE_ROOT; };
- 712AFED21DBA050200254965 /* RAPDFPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAPDFPage.m; path = common/pdfCreator/RAPDFPage.m; sourceTree = SOURCE_ROOT; };
- 712AFED31DBA050200254965 /* TableDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TableDrawable.h; path = common/pdfCreator/TableDrawable.h; sourceTree = SOURCE_ROOT; };
- 712AFED41DBA050200254965 /* TableDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TableDrawable.m; path = common/pdfCreator/TableDrawable.m; sourceTree = SOURCE_ROOT; };
- 712AFED51DBA050200254965 /* TextDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextDrawable.h; path = common/pdfCreator/TextDrawable.h; sourceTree = SOURCE_ROOT; };
- 712AFED61DBA050200254965 /* TextDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TextDrawable.m; path = common/pdfCreator/TextDrawable.m; sourceTree = SOURCE_ROOT; };
- 712AFEE01DBA077F00254965 /* pdfCreator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pdfCreator.h; path = common/pdfCreator/pdfCreator.h; sourceTree = SOURCE_ROOT; };
- 712AFEE11DBA077F00254965 /* pdfCreator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = pdfCreator.m; path = common/pdfCreator/pdfCreator.m; sourceTree = SOURCE_ROOT; };
- 712AFEE41DBDAF0300254965 /* pdfcreator.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = pdfcreator.xcassets; sourceTree = "<group>"; };
- 712BABF11C897E3A0007466B /* CategorySearchFilterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategorySearchFilterViewController.h; path = common/Functions/category/CategorySearchFilterViewController.h; sourceTree = SOURCE_ROOT; };
- 712BABF21C897E3A0007466B /* CategorySearchFilterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategorySearchFilterViewController.m; path = common/Functions/category/CategorySearchFilterViewController.m; sourceTree = SOURCE_ROOT; };
- 712C40B41C7310F4000E6831 /* CartGeneralNotesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartGeneralNotesViewController.h; path = common/Functions/cart/CartGeneralNotesViewController.h; sourceTree = SOURCE_ROOT; };
- 712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartGeneralNotesViewController.m; path = common/Functions/cart/CartGeneralNotesViewController.m; sourceTree = SOURCE_ROOT; };
- 712C40B71C731126000E6831 /* ItemNotesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemNotesViewController.h; path = common/Functions/cart/ItemNotesViewController.h; sourceTree = SOURCE_ROOT; };
- 712C40B81C731126000E6831 /* ItemNotesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemNotesViewController.m; path = common/Functions/cart/ItemNotesViewController.m; sourceTree = SOURCE_ROOT; };
- 713F76A61929F4A7006A7305 /* USAI Mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "USAI Mobile.app"; sourceTree = BUILT_PRODUCTS_DIR; };
- 713F76A91929F4A7006A7305 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
- 713F76AB1929F4A7006A7305 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
- 713F76AD1929F4A7006A7305 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
- 713F76B11929F4A7006A7305 /* iSales-USAI-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "iSales-USAI-Info.plist"; sourceTree = "<group>"; };
- 713F76B31929F4A7006A7305 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 713F76B51929F4A7006A7305 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- 713F76B71929F4A7006A7305 /* iSales-USAI-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "iSales-USAI-Prefix.pch"; sourceTree = "<group>"; };
- 713F76B81929F4A7006A7305 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
- 713F76B91929F4A7006A7305 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
- 713F76C11929F4A7006A7305 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
- 713F76C81929F4A7006A7305 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
- 714036F721646B8C0029B10F /* AppDelegateBase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegateBase.m; path = common/AppDelegateBase.m; sourceTree = SOURCE_ROOT; };
- 714036F821646B8C0029B10F /* AppDelegateBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegateBase.h; path = common/AppDelegateBase.h; sourceTree = SOURCE_ROOT; };
- 714036FA21646CFF0029B10F /* UIResponder+Router.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+Router.m"; path = "common/UIResponder+Router.m"; sourceTree = SOURCE_ROOT; };
- 714036FB21646CFF0029B10F /* UIResponder+Router.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIResponder+Router.h"; path = "common/UIResponder+Router.h"; sourceTree = SOURCE_ROOT; };
- 714037032164707D0029B10F /* MainHeaderViewColorPanel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainHeaderViewColorPanel.h; path = common/Functions/MainHeaderViewColorPanel.h; sourceTree = SOURCE_ROOT; };
- 714037042164707D0029B10F /* MainHeaderViewColorPanel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MainHeaderViewColorPanel.m; path = common/Functions/MainHeaderViewColorPanel.m; sourceTree = SOURCE_ROOT; };
- 7141DD331C57269B00F7DF59 /* include */ = {isa = PBXFileReference; lastKnownFileType = folder; name = include; path = "ScanApiSDK-10.2.227-2/include"; sourceTree = SOURCE_ROOT; };
- 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; };
- 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; };
- 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; };
- 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; };
- 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; };
- 7141DD3A1C5726B700F7DF59 /* softScanBeep.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; name = softScanBeep.wav; path = "ScanApiSDK-10.2.227-2/softScanBeep.wav"; sourceTree = SOURCE_ROOT; };
- 7141DD3E1C57459B00F7DF59 /* bitstream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = bitstream.c; path = common/qrcode/bitstream.c; sourceTree = SOURCE_ROOT; };
- 7141DD3F1C57459B00F7DF59 /* bitstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bitstream.h; path = common/qrcode/bitstream.h; sourceTree = SOURCE_ROOT; };
- 7141DD401C57459B00F7DF59 /* mask.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mask.c; path = common/qrcode/mask.c; sourceTree = SOURCE_ROOT; };
- 7141DD411C57459B00F7DF59 /* mask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mask.h; path = common/qrcode/mask.h; sourceTree = SOURCE_ROOT; };
- 7141DD421C57459B00F7DF59 /* QRCodeGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = QRCodeGenerator.h; path = common/qrcode/QRCodeGenerator.h; sourceTree = SOURCE_ROOT; };
- 7141DD431C57459B00F7DF59 /* QRCodeGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = QRCodeGenerator.m; path = common/qrcode/QRCodeGenerator.m; sourceTree = SOURCE_ROOT; };
- 7141DD441C57459B00F7DF59 /* qrencode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrencode.c; path = common/qrcode/qrencode.c; sourceTree = SOURCE_ROOT; };
- 7141DD451C57459B00F7DF59 /* qrencode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrencode.h; path = common/qrcode/qrencode.h; sourceTree = SOURCE_ROOT; };
- 7141DD461C57459B00F7DF59 /* qrinput.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrinput.c; path = common/qrcode/qrinput.c; sourceTree = SOURCE_ROOT; };
- 7141DD471C57459B00F7DF59 /* qrinput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrinput.h; path = common/qrcode/qrinput.h; sourceTree = SOURCE_ROOT; };
- 7141DD481C57459B00F7DF59 /* qrspec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrspec.c; path = common/qrcode/qrspec.c; sourceTree = SOURCE_ROOT; };
- 7141DD491C57459B00F7DF59 /* qrspec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrspec.h; path = common/qrcode/qrspec.h; sourceTree = SOURCE_ROOT; };
- 7141DD4A1C57459B00F7DF59 /* rscode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rscode.c; path = common/qrcode/rscode.c; sourceTree = SOURCE_ROOT; };
- 7141DD4B1C57459B00F7DF59 /* rscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rscode.h; path = common/qrcode/rscode.h; sourceTree = SOURCE_ROOT; };
- 7141DD4C1C57459B00F7DF59 /* split.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = split.c; path = common/qrcode/split.c; sourceTree = SOURCE_ROOT; };
- 7141DD4D1C57459B00F7DF59 /* split.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = split.h; path = common/qrcode/split.h; sourceTree = SOURCE_ROOT; };
- 7141DD561C5747CE00F7DF59 /* AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = common/AES/AESCrypt.h; sourceTree = SOURCE_ROOT; };
- 7141DD571C5747CE00F7DF59 /* AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AESCrypt.m; path = common/AES/AESCrypt.m; sourceTree = SOURCE_ROOT; };
- 7141DD581C5747CE00F7DF59 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE; path = common/AES/LICENSE; sourceTree = SOURCE_ROOT; };
- 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; };
- 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; };
- 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; };
- 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; };
- 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; };
- 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; };
- 7142E8781DBF57510077EFA2 /* KALINGA.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; path = KALINGA.TTF; sourceTree = "<group>"; };
- 7142E8791DBF57510077EFA2 /* KALINGAB.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; path = KALINGAB.TTF; sourceTree = "<group>"; };
- 7142E87C1DC300010077EFA2 /* DejaVuSans-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "DejaVuSans-Bold.ttf"; sourceTree = "<group>"; };
- 7142E87D1DC300010077EFA2 /* DejaVuSans.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = DejaVuSans.ttf; sourceTree = "<group>"; };
- 7143E209202FCEEB00451903 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = "iSales-NPD/Base.lproj/OLM.storyboard"; sourceTree = SOURCE_ROOT; };
- 7143E20B202FCEEC00451903 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = "iSales-NPD/Base.lproj/Main.storyboard"; sourceTree = SOURCE_ROOT; };
- 7143E20E202FCEF600451903 /* CUL.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CUL.storyboard; path = "iSales-NPD/CUL.storyboard"; sourceTree = SOURCE_ROOT; };
- 7143E210202FCF7600451903 /* CategoryCellNPD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryCellNPD.h; path = "iSales-NPD/CategoryCellNPD.h"; sourceTree = SOURCE_ROOT; };
- 7143E211202FCF7600451903 /* CategoryCellNPD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryCellNPD.m; path = "iSales-NPD/CategoryCellNPD.m"; sourceTree = SOURCE_ROOT; };
- 7143E213202FCFC000451903 /* debug_category_filter.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = debug_category_filter.json; path = "iSales-NPD/debug_category_filter.json"; sourceTree = SOURCE_ROOT; };
- 7143E216202FD15A00451903 /* category.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = category.json; path = "iSales-NPD/category.json"; sourceTree = SOURCE_ROOT; };
- 7143E218202FD1DC00451903 /* contactAdvanceSearch.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = contactAdvanceSearch.json; path = "iSales-NPD/contactAdvanceSearch.json"; sourceTree = SOURCE_ROOT; };
- 7143E219202FD1DC00451903 /* createContact.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = createContact.json; path = "iSales-NPD/createContact.json"; sourceTree = SOURCE_ROOT; };
- 7143E21C202FD21F00451903 /* editContact.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = editContact.json; path = "iSales-NPD/editContact.json"; sourceTree = SOURCE_ROOT; };
- 7143E21E202FD28800451903 /* TearSheet.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = TearSheet.json; path = "iSales-NPD/TearSheet.json"; sourceTree = SOURCE_ROOT; };
- 7143E21F202FD28900451903 /* placeOrderTemplate.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = placeOrderTemplate.json; path = "iSales-NPD/placeOrderTemplate.json"; sourceTree = SOURCE_ROOT; };
- 7143E222202FD2CA00451903 /* so_thumb.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = so_thumb.json; path = "iSales-NPD/so_thumb.json"; sourceTree = SOURCE_ROOT; };
- 7143E223202FD2CA00451903 /* portfolio_3x2.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = portfolio_3x2.json; path = "iSales-NPD/portfolio_3x2.json"; sourceTree = SOURCE_ROOT; };
- 7143E224202FD2CA00451903 /* portfolio_2x3.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = portfolio_2x3.json; path = "iSales-NPD/portfolio_2x3.json"; sourceTree = SOURCE_ROOT; };
- 7143E225202FD2CA00451903 /* so.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = so.json; path = "iSales-NPD/so.json"; sourceTree = SOURCE_ROOT; };
- 7143E22A202FD37500451903 /* orderDetail.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = orderDetail.json; path = "iSales-NPD/orderDetail.json"; sourceTree = SOURCE_ROOT; };
- 7143E22C202FD3CC00451903 /* more_info.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = more_info.html; path = "iSales-NPD/more_info.html"; sourceTree = SOURCE_ROOT; };
- 7143E22D202FD3CC00451903 /* order_info.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = order_info.html; path = "iSales-NPD/order_info.html"; sourceTree = SOURCE_ROOT; };
- 714B1F3E1C7BF74100539193 /* OrderDetailSignatureCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailSignatureCell.h; path = common/Functions/order/OrderDetailSignatureCell.h; sourceTree = SOURCE_ROOT; };
- 714B1F3F1C7BF74100539193 /* OrderDetailSignatureCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailSignatureCell.m; path = common/Functions/order/OrderDetailSignatureCell.m; sourceTree = SOURCE_ROOT; };
- 715001FD1D114D9100F5927F /* BundleDetailButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleDetailButton.h; path = common/Functions/BundleDetailButton.h; sourceTree = SOURCE_ROOT; };
- 715001FE1D114D9100F5927F /* BundleDetailButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleDetailButton.m; path = common/Functions/BundleDetailButton.m; sourceTree = SOURCE_ROOT; };
- 715671311E10A0EF006324A0 /* RectDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RectDrawable.h; path = common/pdfCreator/RectDrawable.h; sourceTree = SOURCE_ROOT; };
- 715671321E10A0EF006324A0 /* RectDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RectDrawable.m; path = common/pdfCreator/RectDrawable.m; sourceTree = SOURCE_ROOT; };
- 715850441CF6F0E500856B20 /* DefaultAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultAppearance.h; path = common/Functions/DefaultAppearance.h; sourceTree = SOURCE_ROOT; };
- 715850451CF6F0E500856B20 /* DefaultAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultAppearance.m; path = common/Functions/DefaultAppearance.m; sourceTree = SOURCE_ROOT; };
- 715F30BB1DAB37EB00490EED /* OfflineUnlockViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OfflineUnlockViewController.h; path = common/Functions/offline/OfflineUnlockViewController.h; sourceTree = SOURCE_ROOT; };
- 715F30BC1DAB37EB00490EED /* OfflineUnlockViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OfflineUnlockViewController.m; path = common/Functions/offline/OfflineUnlockViewController.m; sourceTree = SOURCE_ROOT; };
- 7161FEB21D61B24900157EE1 /* creditcardpayment.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = creditcardpayment.html; path = common/Functions/offline/creditcardpayment.html; sourceTree = SOURCE_ROOT; };
- 7161FEB31D61B24900157EE1 /* normalpayment.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = normalpayment.html; path = common/Functions/offline/normalpayment.html; sourceTree = SOURCE_ROOT; };
- 7161FEB41D61B24900157EE1 /* orderinfo.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = orderinfo.html; path = common/Functions/offline/orderinfo.html; sourceTree = SOURCE_ROOT; };
- 7162A5001C586F5B00AB630E /* AddressEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AddressEditorViewController.h; path = common/Functions/address/AddressEditorViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5011C586F5B00AB630E /* AddressEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AddressEditorViewController.m; path = common/Functions/address/AddressEditorViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5031C586FC100AB630E /* CycleScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CycleScrollView.h; path = common/AutoScrollImage/CycleScrollView.h; sourceTree = SOURCE_ROOT; };
- 7162A5041C586FC100AB630E /* CycleScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CycleScrollView.m; path = common/AutoScrollImage/CycleScrollView.m; sourceTree = SOURCE_ROOT; };
- 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; };
- 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; };
- 7162A5071C586FC100AB630E /* SliderPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SliderPage.h; path = common/AutoScrollImage/SliderPage.h; sourceTree = SOURCE_ROOT; };
- 7162A5081C586FC100AB630E /* SliderPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SliderPage.m; path = common/AutoScrollImage/SliderPage.m; sourceTree = SOURCE_ROOT; };
- 7162A50C1C58704600AB630E /* BundleModelCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleModelCell.h; path = common/Functions/cart/BundleModelCell.h; sourceTree = SOURCE_ROOT; };
- 7162A50D1C58704600AB630E /* BundleModelCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleModelCell.m; path = common/Functions/cart/BundleModelCell.m; sourceTree = SOURCE_ROOT; };
- 7162A50E1C58704600AB630E /* BundleModelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleModelViewController.h; path = common/Functions/cart/BundleModelViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A50F1C58704600AB630E /* BundleModelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleModelViewController.m; path = common/Functions/cart/BundleModelViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5101C58704600AB630E /* CartViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartViewController.h; path = common/Functions/cart/CartViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5111C58704600AB630E /* CartViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartViewController.m; path = common/Functions/cart/CartViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5121C58704600AB630E /* EditModelPriceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EditModelPriceViewController.h; path = common/Functions/cart/EditModelPriceViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5131C58704600AB630E /* EditModelPriceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EditModelPriceViewController.m; path = common/Functions/cart/EditModelPriceViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5141C58704600AB630E /* ModelItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModelItemCell.h; path = common/Functions/cart/ModelItemCell.h; sourceTree = SOURCE_ROOT; };
- 7162A5151C58704600AB630E /* ModelItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModelItemCell.m; path = common/Functions/cart/ModelItemCell.m; sourceTree = SOURCE_ROOT; };
- 7162A51F1C58706C00AB630E /* CategoryCellSmall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryCellSmall.h; path = common/Functions/category/CategoryCellSmall.h; sourceTree = SOURCE_ROOT; };
- 7162A5201C58706C00AB630E /* CategoryCellSmall.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryCellSmall.m; path = common/Functions/category/CategoryCellSmall.m; sourceTree = SOURCE_ROOT; };
- 7162A5211C58706C00AB630E /* CategoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryViewController.h; path = common/Functions/category/CategoryViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5221C58706C00AB630E /* CategoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryViewController.m; path = common/Functions/category/CategoryViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A52B1C58719D00AB630E /* RATreeNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNode.h; path = common/categoryMenu_RATree/RATreeNode.h; sourceTree = SOURCE_ROOT; };
- 7162A52C1C58719D00AB630E /* RATreeNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNode.m; path = common/categoryMenu_RATree/RATreeNode.m; sourceTree = SOURCE_ROOT; };
- 7162A52D1C58719D00AB630E /* RATreeNodeCollectionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNodeCollectionController.h; path = common/categoryMenu_RATree/RATreeNodeCollectionController.h; sourceTree = SOURCE_ROOT; };
- 7162A52E1C58719D00AB630E /* RATreeNodeCollectionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNodeCollectionController.m; path = common/categoryMenu_RATree/RATreeNodeCollectionController.m; sourceTree = SOURCE_ROOT; };
- 7162A52F1C58719D00AB630E /* RATreeNodeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNodeInfo.h; path = common/categoryMenu_RATree/RATreeNodeInfo.h; sourceTree = SOURCE_ROOT; };
- 7162A5301C58719D00AB630E /* RATreeNodeInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNodeInfo.m; path = common/categoryMenu_RATree/RATreeNodeInfo.m; sourceTree = SOURCE_ROOT; };
- 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; };
- 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; };
- 7162A5331C58719D00AB630E /* RATreeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeView.h; path = common/categoryMenu_RATree/RATreeView.h; sourceTree = SOURCE_ROOT; };
- 7162A5341C58719D00AB630E /* RATreeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeView.m; path = common/categoryMenu_RATree/RATreeView.m; sourceTree = SOURCE_ROOT; };
- 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; };
- 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; };
- 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; };
- 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; };
- 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; };
- 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; };
- 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; };
- 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; };
- 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; };
- 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; };
- 7162A53F1C58719D00AB630E /* RAViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAViewController.h; path = common/categoryMenu_RATree/RAViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5401C58719D00AB630E /* RAViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAViewController.m; path = common/categoryMenu_RATree/RAViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A54C1C58722200AB630E /* CreditCardEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CreditCardEditorViewController.h; path = common/Functions/creditcard/CreditCardEditorViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A54D1C58722200AB630E /* CreditCardEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CreditCardEditorViewController.m; path = common/Functions/creditcard/CreditCardEditorViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A54F1C58724700AB630E /* ContactAdvanceSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactAdvanceSearchViewController.h; path = common/Functions/contact/ContactAdvanceSearchViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5501C58724700AB630E /* ContactAdvanceSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactAdvanceSearchViewController.m; path = common/Functions/contact/ContactAdvanceSearchViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5511C58724700AB630E /* ContactListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactListTableViewCell.h; path = common/Functions/contact/ContactListTableViewCell.h; sourceTree = SOURCE_ROOT; };
- 7162A5521C58724700AB630E /* ContactListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactListTableViewCell.m; path = common/Functions/contact/ContactListTableViewCell.m; sourceTree = SOURCE_ROOT; };
- 7162A5531C58724700AB630E /* ContactListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactListViewController.h; path = common/Functions/contact/ContactListViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5541C58724700AB630E /* ContactListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactListViewController.m; path = common/Functions/contact/ContactListViewController.m; sourceTree = SOURCE_ROOT; };
- 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; };
- 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; };
- 7162A5571C58724700AB630E /* CustomerEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomerEditViewController.h; path = common/Functions/contact/CustomerEditViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5581C58724700AB630E /* CustomerEditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomerEditViewController.m; path = common/Functions/contact/CustomerEditViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5591C58724700AB630E /* CustomerInfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomerInfoViewController.h; path = common/Functions/contact/CustomerInfoViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A55A1C58724700AB630E /* CustomerInfoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomerInfoViewController.m; path = common/Functions/contact/CustomerInfoViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5621C58728D00AB630E /* DetailHeaderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailHeaderCell.h; path = common/Functions/modelDetail/DetailHeaderCell.h; sourceTree = SOURCE_ROOT; };
- 7162A5631C58728D00AB630E /* DetailHeaderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailHeaderCell.m; path = common/Functions/modelDetail/DetailHeaderCell.m; sourceTree = SOURCE_ROOT; };
- 7162A5641C58728D00AB630E /* DetailImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailImageCell.h; path = common/Functions/modelDetail/DetailImageCell.h; sourceTree = SOURCE_ROOT; };
- 7162A5651C58728D00AB630E /* DetailImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailImageCell.m; path = common/Functions/modelDetail/DetailImageCell.m; sourceTree = SOURCE_ROOT; };
- 7162A5661C58728D00AB630E /* DetailKVCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailKVCell.h; path = common/Functions/modelDetail/DetailKVCell.h; sourceTree = SOURCE_ROOT; };
- 7162A5671C58728D00AB630E /* DetailKVCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailKVCell.m; path = common/Functions/modelDetail/DetailKVCell.m; sourceTree = SOURCE_ROOT; };
- 7162A5681C58728D00AB630E /* DetailTopicCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailTopicCell.h; path = common/Functions/modelDetail/DetailTopicCell.h; sourceTree = SOURCE_ROOT; };
- 7162A5691C58728D00AB630E /* DetailTopicCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailTopicCell.m; path = common/Functions/modelDetail/DetailTopicCell.m; sourceTree = SOURCE_ROOT; };
- 7162A56A1C58728D00AB630E /* DetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailViewController.h; path = common/Functions/modelDetail/DetailViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A56B1C58728D00AB630E /* DetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailViewController.m; path = common/Functions/modelDetail/DetailViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A56C1C58728D00AB630E /* LineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LineView.h; path = common/Functions/modelDetail/LineView.h; sourceTree = SOURCE_ROOT; };
- 7162A56D1C58728D00AB630E /* LineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LineView.m; path = common/Functions/modelDetail/LineView.m; sourceTree = SOURCE_ROOT; };
- 7162A5771C5872EF00AB630E /* HomeTableViewCellBanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellBanner.h; path = common/Functions/home/HomeTableViewCellBanner.h; sourceTree = SOURCE_ROOT; };
- 7162A5781C5872EF00AB630E /* HomeTableViewCellBanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellBanner.m; path = common/Functions/home/HomeTableViewCellBanner.m; sourceTree = SOURCE_ROOT; };
- 7162A5791C5872EF00AB630E /* HomeTableViewCellButtonBanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellButtonBanner.h; path = common/Functions/home/HomeTableViewCellButtonBanner.h; sourceTree = SOURCE_ROOT; };
- 7162A57A1C5872EF00AB630E /* HomeTableViewCellButtonBanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellButtonBanner.m; path = common/Functions/home/HomeTableViewCellButtonBanner.m; sourceTree = SOURCE_ROOT; };
- 7162A57B1C5872EF00AB630E /* HomeTableViewCellSlide.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellSlide.h; path = common/Functions/home/HomeTableViewCellSlide.h; sourceTree = SOURCE_ROOT; };
- 7162A57C1C5872EF00AB630E /* HomeTableViewCellSlide.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellSlide.m; path = common/Functions/home/HomeTableViewCellSlide.m; sourceTree = SOURCE_ROOT; };
- 7162A57D1C5872EF00AB630E /* HomeTableViewCellTopic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellTopic.h; path = common/Functions/home/HomeTableViewCellTopic.h; sourceTree = SOURCE_ROOT; };
- 7162A57E1C5872EF00AB630E /* HomeTableViewCellTopic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellTopic.m; path = common/Functions/home/HomeTableViewCellTopic.m; sourceTree = SOURCE_ROOT; };
- 7162A57F1C5872EF00AB630E /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeViewController.h; path = common/Functions/home/HomeViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5801C5872EF00AB630E /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeViewController.m; path = common/Functions/home/HomeViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5861C58733400AB630E /* CreateOrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CreateOrderViewController.h; path = common/Functions/order/CreateOrderViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5871C58733400AB630E /* CreateOrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CreateOrderViewController.m; path = common/Functions/order/CreateOrderViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5881C58733400AB630E /* OrderDetailHtmlCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailHtmlCell.h; path = common/Functions/order/OrderDetailHtmlCell.h; sourceTree = SOURCE_ROOT; };
- 7162A5891C58733400AB630E /* OrderDetailHtmlCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailHtmlCell.m; path = common/Functions/order/OrderDetailHtmlCell.m; sourceTree = SOURCE_ROOT; };
- 7162A58A1C58733400AB630E /* OrderDetailInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailInfoCell.h; path = common/Functions/order/OrderDetailInfoCell.h; sourceTree = SOURCE_ROOT; };
- 7162A58B1C58733400AB630E /* OrderDetailInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailInfoCell.m; path = common/Functions/order/OrderDetailInfoCell.m; sourceTree = SOURCE_ROOT; };
- 7162A58C1C58733400AB630E /* OrderDetailModelCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailModelCell.h; path = common/Functions/order/OrderDetailModelCell.h; sourceTree = SOURCE_ROOT; };
- 7162A58D1C58733400AB630E /* OrderDetailModelCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailModelCell.m; path = common/Functions/order/OrderDetailModelCell.m; sourceTree = SOURCE_ROOT; };
- 7162A58E1C58733400AB630E /* OrderDetailPriceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailPriceCell.h; path = common/Functions/order/OrderDetailPriceCell.h; sourceTree = SOURCE_ROOT; };
- 7162A58F1C58733400AB630E /* OrderDetailPriceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailPriceCell.m; path = common/Functions/order/OrderDetailPriceCell.m; sourceTree = SOURCE_ROOT; };
- 7162A5901C58733400AB630E /* OrderDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailViewController.h; path = common/Functions/order/OrderDetailViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5911C58733400AB630E /* OrderDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailViewController.m; path = common/Functions/order/OrderDetailViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5921C58733400AB630E /* OrderListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderListTableViewCell.h; path = common/Functions/order/OrderListTableViewCell.h; sourceTree = SOURCE_ROOT; };
- 7162A5931C58733400AB630E /* OrderListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderListTableViewCell.m; path = common/Functions/order/OrderListTableViewCell.m; sourceTree = SOURCE_ROOT; };
- 7162A5941C58733400AB630E /* OrderListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderListViewController.h; path = common/Functions/order/OrderListViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5951C58733400AB630E /* OrderListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderListViewController.m; path = common/Functions/order/OrderListViewController.m; sourceTree = SOURCE_ROOT; };
- 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; };
- 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; };
- 7162A5A61C58735900AB630E /* PortfolioViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioViewController.h; path = common/Functions/portfolio/PortfolioViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5A71C58735900AB630E /* PortfolioViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioViewController.m; path = common/Functions/portfolio/PortfolioViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5A81C58735900AB630E /* TearSheetParamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TearSheetParamViewController.h; path = common/Functions/portfolio/TearSheetParamViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5A91C58735900AB630E /* TearSheetParamViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TearSheetParamViewController.m; path = common/Functions/portfolio/TearSheetParamViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5AE1C58738600AB630E /* ScannerControllerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerControllerView.h; path = common/Functions/camscan/ScannerControllerView.h; sourceTree = SOURCE_ROOT; };
- 7162A5AF1C58738600AB630E /* ScannerControllerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerControllerView.m; path = common/Functions/camscan/ScannerControllerView.m; sourceTree = SOURCE_ROOT; };
- 7162A5B01C58738600AB630E /* ScannerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerViewController.h; path = common/Functions/camscan/ScannerViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5B11C58738600AB630E /* ScannerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerViewController.m; path = common/Functions/camscan/ScannerViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5B21C58738600AB630E /* SCShapeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SCShapeView.h; path = common/Functions/camscan/SCShapeView.h; sourceTree = SOURCE_ROOT; };
- 7162A5B31C58738600AB630E /* SCShapeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SCShapeView.m; path = common/Functions/camscan/SCShapeView.m; sourceTree = SOURCE_ROOT; };
- 7162A5B71C5873BB00AB630E /* FilterCellCadedate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FilterCellCadedate.h; path = "common/Functions/search+itemsearch/FilterCellCadedate.h"; sourceTree = SOURCE_ROOT; };
- 7162A5B81C5873BB00AB630E /* FilterCellCadedate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FilterCellCadedate.m; path = "common/Functions/search+itemsearch/FilterCellCadedate.m"; sourceTree = SOURCE_ROOT; };
- 7162A5B91C5873BB00AB630E /* FilterCellValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FilterCellValue.h; path = "common/Functions/search+itemsearch/FilterCellValue.h"; sourceTree = SOURCE_ROOT; };
- 7162A5BA1C5873BB00AB630E /* FilterCellValue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FilterCellValue.m; path = "common/Functions/search+itemsearch/FilterCellValue.m"; sourceTree = SOURCE_ROOT; };
- 7162A5BB1C5873BB00AB630E /* ItemSearchFilterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemSearchFilterViewController.h; path = "common/Functions/search+itemsearch/ItemSearchFilterViewController.h"; sourceTree = SOURCE_ROOT; };
- 7162A5BC1C5873BB00AB630E /* ItemSearchFilterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemSearchFilterViewController.m; path = "common/Functions/search+itemsearch/ItemSearchFilterViewController.m"; sourceTree = SOURCE_ROOT; };
- 7162A5BD1C5873BB00AB630E /* ItemSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemSearchViewController.h; path = "common/Functions/search+itemsearch/ItemSearchViewController.h"; sourceTree = SOURCE_ROOT; };
- 7162A5BE1C5873BB00AB630E /* ItemSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemSearchViewController.m; path = "common/Functions/search+itemsearch/ItemSearchViewController.m"; sourceTree = SOURCE_ROOT; };
- 7162A5BF1C5873BB00AB630E /* SearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SearchViewController.h; path = "common/Functions/search+itemsearch/SearchViewController.h"; sourceTree = SOURCE_ROOT; };
- 7162A5C01C5873BB00AB630E /* SearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SearchViewController.m; path = "common/Functions/search+itemsearch/SearchViewController.m"; sourceTree = SOURCE_ROOT; };
- 7162A5C61C58761500AB630E /* SignatureView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SignatureView.h; path = common/Functions/signature/SignatureView.h; sourceTree = SOURCE_ROOT; };
- 7162A5C71C58761500AB630E /* SignatureView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SignatureView.m; path = common/Functions/signature/SignatureView.m; sourceTree = SOURCE_ROOT; };
- 7162A5C81C58761500AB630E /* SignatureViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SignatureViewController.h; path = common/Functions/signature/SignatureViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5C91C58761500AB630E /* SignatureViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SignatureViewController.m; path = common/Functions/signature/SignatureViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5CC1C5876E300AB630E /* AboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutViewController.h; path = common/Functions/sidemenu/AboutViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5CD1C5876E300AB630E /* AboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AboutViewController.m; path = common/Functions/sidemenu/AboutViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5CE1C5876E300AB630E /* CacheViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CacheViewController.h; path = common/Functions/sidemenu/CacheViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5CF1C5876E300AB630E /* CacheViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CacheViewController.m; path = common/Functions/sidemenu/CacheViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5D01C5876E300AB630E /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LoginViewController.h; path = common/Functions/sidemenu/LoginViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5D11C5876E300AB630E /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LoginViewController.m; path = common/Functions/sidemenu/LoginViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5D21C5876E300AB630E /* PopupNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PopupNavigationController.h; path = common/Functions/sidemenu/PopupNavigationController.h; sourceTree = SOURCE_ROOT; };
- 7162A5D31C5876E300AB630E /* PopupNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PopupNavigationController.m; path = common/Functions/sidemenu/PopupNavigationController.m; sourceTree = SOURCE_ROOT; };
- 7162A5D41C5876E300AB630E /* RetrievePassViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RetrievePassViewController.h; path = common/Functions/sidemenu/RetrievePassViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5D51C5876E300AB630E /* RetrievePassViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RetrievePassViewController.m; path = common/Functions/sidemenu/RetrievePassViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5D61C5876E300AB630E /* ScannerSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerSettingViewController.h; path = common/Functions/sidemenu/ScannerSettingViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5D71C5876E300AB630E /* ScannerSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerSettingViewController.m; path = common/Functions/sidemenu/ScannerSettingViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5D81C5876E300AB630E /* SettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SettingViewController.h; path = common/Functions/sidemenu/SettingViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5D91C5876E300AB630E /* SettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SettingViewController.m; path = common/Functions/sidemenu/SettingViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5E11C5877CE00AB630E /* WatchListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WatchListViewController.h; path = common/Functions/watchlist/WatchListViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5E21C5877CE00AB630E /* WatchListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WatchListViewController.m; path = common/Functions/watchlist/WatchListViewController.m; sourceTree = SOURCE_ROOT; };
- 7162A5E41C58781000AB630E /* iSalesNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iSalesNavigationController.h; path = common/iSalesNavigationController.h; sourceTree = SOURCE_ROOT; };
- 7162A5E51C58781000AB630E /* iSalesNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iSalesNavigationController.m; path = common/iSalesNavigationController.m; sourceTree = SOURCE_ROOT; };
- 7162A5E71C5899F700AB630E /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainViewController.h; path = common/Functions/MainViewController.h; sourceTree = SOURCE_ROOT; };
- 7162A5E81C5899F700AB630E /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MainViewController.m; path = common/Functions/MainViewController.m; sourceTree = SOURCE_ROOT; };
- 716387D3195408E7006E65E6 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
- 7165662C1EF3ACD900CB897F /* photostack_image.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = photostack_image.html; path = common/photoStack/photostack_image.html; sourceTree = SOURCE_ROOT; };
- 7165662D1EF3ACD900CB897F /* photostack_video.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = photostack_video.html; path = common/photoStack/photostack_video.html; sourceTree = SOURCE_ROOT; };
- 716961B419594E1000B19FB4 /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
- 716AF8DF1D7AA0E0001188E0 /* SelectUploadOrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SelectUploadOrderViewController.h; path = common/Functions/offline/SelectUploadOrderViewController.h; sourceTree = SOURCE_ROOT; };
- 716AF8E01D7AA0E0001188E0 /* SelectUploadOrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SelectUploadOrderViewController.m; path = common/Functions/offline/SelectUploadOrderViewController.m; sourceTree = SOURCE_ROOT; };
- 716AF8E51D7AA398001188E0 /* SelectOrderTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SelectOrderTableViewCell.m; path = common/Functions/offline/SelectOrderTableViewCell.m; sourceTree = SOURCE_ROOT; };
- 716AF8E61D7AA398001188E0 /* SelectOrderTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SelectOrderTableViewCell.h; path = common/Functions/offline/SelectOrderTableViewCell.h; sourceTree = SOURCE_ROOT; };
- 7186C25B1C97A6EE00CB43F4 /* FunctionTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FunctionTestViewController.h; path = common/Functions/sidemenu/FunctionTestViewController.h; sourceTree = SOURCE_ROOT; };
- 7186C25C1C97A6EE00CB43F4 /* FunctionTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FunctionTestViewController.m; path = common/Functions/sidemenu/FunctionTestViewController.m; sourceTree = SOURCE_ROOT; };
- 718716221C433D5000F25860 /* libScanApiCore.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libScanApiCore.a; path = ../lib/libScanApiCore.a; sourceTree = "<group>"; };
- 718716241C433D8B00F25860 /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = System/Library/Frameworks/ExternalAccessory.framework; sourceTree = SDKROOT; };
- 718716261C433D9700F25860 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
- 718716281C433DA400F25860 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
- 7187162A1C43406300F25860 /* libScanApiCore.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libScanApiCore.a; path = "../../../ios_samples/ScanApiSDK-10.2.227/lib/libScanApiCore.a"; sourceTree = "<group>"; };
- 718B91811C75638100265FFF /* TouchImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TouchImageView.h; path = common/customUI/TouchImageView.h; sourceTree = SOURCE_ROOT; };
- 718B91821C75638100265FFF /* TouchImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TouchImageView.m; path = common/customUI/TouchImageView.m; sourceTree = SOURCE_ROOT; };
- 7195623A1CF57D1800C74A49 /* CategoryHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryHeaderView.h; path = common/Functions/category/CategoryHeaderView.h; sourceTree = SOURCE_ROOT; };
- 7195623B1CF57D1800C74A49 /* CategoryHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryHeaderView.m; path = common/Functions/category/CategoryHeaderView.m; sourceTree = SOURCE_ROOT; };
- 719562401CF5828200C74A49 /* DefaultTableHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultTableHeaderView.h; path = common/customUI/DefaultTableHeaderView.h; sourceTree = SOURCE_ROOT; };
- 719562411CF5828200C74A49 /* DefaultTableHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultTableHeaderView.m; path = common/customUI/DefaultTableHeaderView.m; sourceTree = SOURCE_ROOT; };
- 71BBA2211CEAC16000C91DED /* ZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ZipArchive.h; path = common/zip/ZipArchive.h; sourceTree = SOURCE_ROOT; };
- 71BBA2221CEAC16000C91DED /* ZipArchive.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ZipArchive.mm; path = common/zip/ZipArchive.mm; sourceTree = SOURCE_ROOT; };
- 71BBA2281CEAC17E00C91DED /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
- 71BBA2371CEAEF0700C91DED /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crypt.h; path = common/zip/minizip/crypt.h; sourceTree = SOURCE_ROOT; };
- 71BBA2381CEAEF0700C91DED /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ioapi.c; path = common/zip/minizip/ioapi.c; sourceTree = SOURCE_ROOT; };
- 71BBA2391CEAEF0700C91DED /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ioapi.h; path = common/zip/minizip/ioapi.h; sourceTree = SOURCE_ROOT; };
- 71BBA23A1CEAEF0700C91DED /* mztools.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mztools.c; path = common/zip/minizip/mztools.c; sourceTree = SOURCE_ROOT; };
- 71BBA23B1CEAEF0700C91DED /* mztools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mztools.h; path = common/zip/minizip/mztools.h; sourceTree = SOURCE_ROOT; };
- 71BBA23C1CEAEF0700C91DED /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unzip.c; path = common/zip/minizip/unzip.c; sourceTree = SOURCE_ROOT; };
- 71BBA23D1CEAEF0700C91DED /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unzip.h; path = common/zip/minizip/unzip.h; sourceTree = SOURCE_ROOT; };
- 71BBA23E1CEAEF0700C91DED /* zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zip.c; path = common/zip/minizip/zip.c; sourceTree = SOURCE_ROOT; };
- 71BBA23F1CEAEF0700C91DED /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = zip.h; path = common/zip/minizip/zip.h; sourceTree = SOURCE_ROOT; };
- 71BF06F91D2F3CAC00981938 /* OLDataProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OLDataProvider.h; path = common/Functions/offline/OLDataProvider.h; sourceTree = SOURCE_ROOT; };
- 71BF06FA1D2F3CAC00981938 /* OLDataProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OLDataProvider.m; path = common/Functions/offline/OLDataProvider.m; sourceTree = SOURCE_ROOT; };
- 71BF06FC1D2F3CBA00981938 /* OfflineSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OfflineSettingViewController.h; path = common/Functions/offline/OfflineSettingViewController.h; sourceTree = SOURCE_ROOT; };
- 71BF06FD1D2F3CBA00981938 /* OfflineSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OfflineSettingViewController.m; path = common/Functions/offline/OfflineSettingViewController.m; sourceTree = SOURCE_ROOT; };
- 71BF07061D2F3D2800981938 /* SyncControlPanelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SyncControlPanelViewController.h; path = common/Functions/offline/SyncControlPanelViewController.h; sourceTree = SOURCE_ROOT; };
- 71BF07071D2F3D2800981938 /* SyncControlPanelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SyncControlPanelViewController.m; path = common/Functions/offline/SyncControlPanelViewController.m; sourceTree = SOURCE_ROOT; };
- 71C1D84C1F456CAA00CEA1C9 /* HWWeakTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HWWeakTimer.h; path = common/AutoScrollImage/HWWeakTimer.h; sourceTree = SOURCE_ROOT; };
- 71C1D84D1F456CAA00CEA1C9 /* HWWeakTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HWWeakTimer.m; path = common/AutoScrollImage/HWWeakTimer.m; sourceTree = SOURCE_ROOT; };
- 71C1D8521F456D2700CEA1C9 /* ModelDescriptionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModelDescriptionController.h; path = common/Functions/modelDetail/ModelDescriptionController.h; sourceTree = SOURCE_ROOT; };
- 71C1D8531F456D2700CEA1C9 /* ModelDescriptionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModelDescriptionController.m; path = common/Functions/modelDetail/ModelDescriptionController.m; sourceTree = SOURCE_ROOT; };
- 71CB70731F99DF01009FDCB7 /* FileCache.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = FileCache.m; path = ../../common/FileCache.m; sourceTree = "<group>"; };
- 71CB70741F99DF02009FDCB7 /* FileCache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = FileCache.h; path = ../../common/FileCache.h; sourceTree = "<group>"; };
- 71CB70761F99E337009FDCB7 /* RAConvertor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RAConvertor.h; path = ../../common/RAConvertor.h; sourceTree = "<group>"; };
- 71CB70771F99E338009FDCB7 /* RAConvertor.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RAConvertor.m; path = ../../common/RAConvertor.m; sourceTree = "<group>"; };
- 71D01ADC1E08CB1C006620CE /* signature.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = signature.storyboard; path = common/Functions/signature/signature.storyboard; sourceTree = SOURCE_ROOT; };
- 71D01B141E0A2055006620CE /* ImageUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageUtils.h; path = common/ImageUtils.h; sourceTree = SOURCE_ROOT; };
- 71D01B151E0A2055006620CE /* ImageUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageUtils.m; path = common/ImageUtils.m; sourceTree = SOURCE_ROOT; };
- 71D01B161E0A2055006620CE /* PDFUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFUtils.h; path = common/PDFUtils.h; sourceTree = SOURCE_ROOT; };
- 71D01B171E0A2055006620CE /* PDFUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFUtils.m; path = common/PDFUtils.m; sourceTree = SOURCE_ROOT; };
- 71D01B181E0A2055006620CE /* TextUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextUtils.h; path = common/TextUtils.h; sourceTree = SOURCE_ROOT; };
- 71D01B191E0A2055006620CE /* TextUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TextUtils.m; path = common/TextUtils.m; sourceTree = SOURCE_ROOT; };
- 71D0344D1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioEditQTYViewController.h; path = common/Functions/portfolio/PortfolioEditQTYViewController.h; sourceTree = SOURCE_ROOT; };
- 71D0344E1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioEditQTYViewController.m; path = common/Functions/portfolio/PortfolioEditQTYViewController.m; sourceTree = SOURCE_ROOT; };
- 71D30A201CFBEDC6006F9477 /* default_appearance.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = default_appearance.json; sourceTree = "<group>"; };
- 71D30A2B1CFC0EF8006F9477 /* DefaultImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultImageButton.h; path = common/Functions/DefaultImageButton.h; sourceTree = SOURCE_ROOT; };
- 71D30A2C1CFC0EF8006F9477 /* DefaultImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultImageButton.m; path = common/Functions/DefaultImageButton.m; sourceTree = SOURCE_ROOT; };
- 71D99D2E1CEF02E700CA32DE /* CustomIOSAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomIOSAlertView.h; path = common/customUI/CustomIOSAlertView.h; sourceTree = SOURCE_ROOT; };
- 71D99D2F1CEF02E700CA32DE /* CustomIOSAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomIOSAlertView.m; path = common/customUI/CustomIOSAlertView.m; sourceTree = SOURCE_ROOT; };
- 71DEE873192DE003003F645F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
- 71DEE875192DE00E003F645F /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
- 71DF74291C57560600F2789C /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Reachability.h; path = common/Reachability.h; sourceTree = SOURCE_ROOT; };
- 71DF742A1C57560600F2789C /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Reachability.m; path = common/Reachability.m; sourceTree = SOURCE_ROOT; };
- 71DF742D1C5756C600F2789C /* const.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = const.h; path = common/const.h; sourceTree = SOURCE_ROOT; };
- 71DF742E1C57572600F2789C /* RAUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAUtils.h; path = common/RAUtils.h; sourceTree = SOURCE_ROOT; };
- 71DF742F1C57572600F2789C /* RAUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAUtils.m; path = common/RAUtils.m; sourceTree = SOURCE_ROOT; };
- 71DF74321C5757DA00F2789C /* ActiveViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ActiveViewController.h; path = common/ActiveViewController.h; sourceTree = SOURCE_ROOT; };
- 71DF74331C5757DA00F2789C /* ActiveViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ActiveViewController.m; path = common/ActiveViewController.m; sourceTree = SOURCE_ROOT; };
- 71DF743B1C575E7900F2789C /* CommonEditorCellAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellAction.h; path = common/CommonEditor/CommonEditorCellAction.h; sourceTree = SOURCE_ROOT; };
- 71DF743C1C575E7900F2789C /* CommonEditorCellAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellAction.m; path = common/CommonEditor/CommonEditorCellAction.m; sourceTree = SOURCE_ROOT; };
- 71DF743D1C575E7900F2789C /* CommonEditorCellEdit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEdit.h; path = common/CommonEditor/CommonEditorCellEdit.h; sourceTree = SOURCE_ROOT; };
- 71DF743E1C575E7900F2789C /* CommonEditorCellEdit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEdit.m; path = common/CommonEditor/CommonEditorCellEdit.m; sourceTree = SOURCE_ROOT; };
- 71DF743F1C575E7900F2789C /* CommonEditorCellEnum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEnum.h; path = common/CommonEditor/CommonEditorCellEnum.h; sourceTree = SOURCE_ROOT; };
- 71DF74401C575E7900F2789C /* CommonEditorCellEnum.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEnum.m; path = common/CommonEditor/CommonEditorCellEnum.m; sourceTree = SOURCE_ROOT; };
- 71DF74411C575E7900F2789C /* CommonEditorCellImg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellImg.h; path = common/CommonEditor/CommonEditorCellImg.h; sourceTree = SOURCE_ROOT; };
- 71DF74421C575E7900F2789C /* CommonEditorCellImg.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellImg.m; path = common/CommonEditor/CommonEditorCellImg.m; sourceTree = SOURCE_ROOT; };
- 71DF74431C575E7900F2789C /* CommonEditorCellLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellLabel.h; path = common/CommonEditor/CommonEditorCellLabel.h; sourceTree = SOURCE_ROOT; };
- 71DF74441C575E7900F2789C /* CommonEditorCellLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellLabel.m; path = common/CommonEditor/CommonEditorCellLabel.m; sourceTree = SOURCE_ROOT; };
- 71DF74451C575E7900F2789C /* CommonEditorCellMAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellMAction.h; path = common/CommonEditor/CommonEditorCellMAction.h; sourceTree = SOURCE_ROOT; };
- 71DF74461C575E7900F2789C /* CommonEditorCellMAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellMAction.m; path = common/CommonEditor/CommonEditorCellMAction.m; sourceTree = SOURCE_ROOT; };
- 71DF74471C575E7900F2789C /* CommonEditorCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellModel.h; path = common/CommonEditor/CommonEditorCellModel.h; sourceTree = SOURCE_ROOT; };
- 71DF74481C575E7900F2789C /* CommonEditorCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellModel.m; path = common/CommonEditor/CommonEditorCellModel.m; sourceTree = SOURCE_ROOT; };
- 71DF74491C575E7900F2789C /* CommonEditorCellSignature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellSignature.h; path = common/CommonEditor/CommonEditorCellSignature.h; sourceTree = SOURCE_ROOT; };
- 71DF744A1C575E7900F2789C /* CommonEditorCellSignature.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellSignature.m; path = common/CommonEditor/CommonEditorCellSignature.m; sourceTree = SOURCE_ROOT; };
- 71DF744B1C575E7900F2789C /* CommonEditorCellSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellSwitch.h; path = common/CommonEditor/CommonEditorCellSwitch.h; sourceTree = SOURCE_ROOT; };
- 71DF744C1C575E7900F2789C /* CommonEditorCellSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellSwitch.m; path = common/CommonEditor/CommonEditorCellSwitch.m; sourceTree = SOURCE_ROOT; };
- 71DF744D1C575E7900F2789C /* CommonEditorCellTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellTextView.h; path = common/CommonEditor/CommonEditorCellTextView.h; sourceTree = SOURCE_ROOT; };
- 71DF744E1C575E7900F2789C /* CommonEditorCellTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellTextView.m; path = common/CommonEditor/CommonEditorCellTextView.m; sourceTree = SOURCE_ROOT; };
- 71DF744F1C575E7900F2789C /* CommonEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorViewController.h; path = common/CommonEditor/CommonEditorViewController.h; sourceTree = SOURCE_ROOT; };
- 71DF74501C575E7900F2789C /* CommonEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorViewController.m; path = common/CommonEditor/CommonEditorViewController.m; sourceTree = SOURCE_ROOT; };
- 71DF74511C575E7900F2789C /* DatePickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DatePickerViewController.h; path = common/CommonEditor/DatePickerViewController.h; sourceTree = SOURCE_ROOT; };
- 71DF74521C575E7900F2789C /* DatePickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DatePickerViewController.m; path = common/CommonEditor/DatePickerViewController.m; sourceTree = SOURCE_ROOT; };
- 71DF74531C575E7900F2789C /* EnumSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectorCell.h; path = common/CommonEditor/EnumSelectorCell.h; sourceTree = SOURCE_ROOT; };
- 71DF74541C575E7900F2789C /* EnumSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectorCell.m; path = common/CommonEditor/EnumSelectorCell.m; sourceTree = SOURCE_ROOT; };
- 71DF74551C575E7900F2789C /* EnumSelectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectViewController.h; path = common/CommonEditor/EnumSelectViewController.h; sourceTree = SOURCE_ROOT; };
- 71DF74561C575E7900F2789C /* EnumSelectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectViewController.m; path = common/CommonEditor/EnumSelectViewController.m; sourceTree = SOURCE_ROOT; };
- 71DF74571C575E7900F2789C /* MonthPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MonthPickerViewController.h; path = common/CommonEditor/MonthPickerViewController.h; sourceTree = SOURCE_ROOT; };
- 71DF74581C575E7900F2789C /* MonthPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MonthPickerViewController.m; path = common/CommonEditor/MonthPickerViewController.m; sourceTree = SOURCE_ROOT; };
- 71DF74591C575E7900F2789C /* SRMonthPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SRMonthPicker.h; path = common/CommonEditor/SRMonthPicker.h; sourceTree = SOURCE_ROOT; };
- 71DF745A1C575E7900F2789C /* SRMonthPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SRMonthPicker.m; path = common/CommonEditor/SRMonthPicker.m; sourceTree = SOURCE_ROOT; };
- 71DF746B1C57608F00F2789C /* ImageScrollerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageScrollerView.h; path = common/customUI/ImageScrollerView.h; sourceTree = SOURCE_ROOT; };
- 71DF746C1C57608F00F2789C /* ImageScrollerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageScrollerView.m; path = common/customUI/ImageScrollerView.m; sourceTree = SOURCE_ROOT; };
- 71DF746D1C57608F00F2789C /* ImageScrollerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageScrollerViewController.h; path = common/customUI/ImageScrollerViewController.h; sourceTree = SOURCE_ROOT; };
- 71DF746E1C57608F00F2789C /* ImageScrollerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageScrollerViewController.m; path = common/customUI/ImageScrollerViewController.m; sourceTree = SOURCE_ROOT; };
- 71DF746F1C57608F00F2789C /* ImageUploadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageUploadViewController.h; path = common/customUI/ImageUploadViewController.h; sourceTree = SOURCE_ROOT; };
- 71DF74701C57608F00F2789C /* ImageUploadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageUploadViewController.m; path = common/customUI/ImageUploadViewController.m; sourceTree = SOURCE_ROOT; };
- 71DF74711C57608F00F2789C /* ImageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageViewController.h; path = common/customUI/ImageViewController.h; sourceTree = SOURCE_ROOT; };
- 71DF74721C57608F00F2789C /* ImageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageViewController.m; path = common/customUI/ImageViewController.m; sourceTree = SOURCE_ROOT; };
- 71DF74731C57608F00F2789C /* NIDropDown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NIDropDown.h; path = common/customUI/NIDropDown.h; sourceTree = SOURCE_ROOT; };
- 71DF74741C57608F00F2789C /* NIDropDown.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NIDropDown.m; path = common/customUI/NIDropDown.m; sourceTree = SOURCE_ROOT; };
- 71DF74751C57608F00F2789C /* PulldownMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PulldownMenu.h; path = common/customUI/PulldownMenu.h; sourceTree = SOURCE_ROOT; };
- 71DF74761C57608F00F2789C /* PulldownMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PulldownMenu.m; path = common/customUI/PulldownMenu.m; sourceTree = SOURCE_ROOT; };
- 71DF74771C57608F00F2789C /* RadioButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RadioButton.h; path = common/customUI/RadioButton.h; sourceTree = SOURCE_ROOT; };
- 71DF74781C57608F00F2789C /* RadioButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RadioButton.m; path = common/customUI/RadioButton.m; sourceTree = SOURCE_ROOT; };
- 71DF74791C57608F00F2789C /* RTLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RTLabel.h; path = common/customUI/RTLabel.h; sourceTree = SOURCE_ROOT; };
- 71DF747A1C57608F00F2789C /* RTLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RTLabel.m; path = common/customUI/RTLabel.m; sourceTree = SOURCE_ROOT; };
- 71DF747B1C57608F00F2789C /* SimpleGrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimpleGrid.h; path = common/customUI/SimpleGrid.h; sourceTree = SOURCE_ROOT; };
- 71DF747C1C57608F00F2789C /* SimpleGrid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimpleGrid.m; path = common/customUI/SimpleGrid.m; sourceTree = SOURCE_ROOT; };
- 71DF747D1C57608F00F2789C /* StrikethroughLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StrikethroughLabel.h; path = common/customUI/StrikethroughLabel.h; sourceTree = SOURCE_ROOT; };
- 71DF747E1C57608F00F2789C /* StrikethroughLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = StrikethroughLabel.m; path = common/customUI/StrikethroughLabel.m; sourceTree = SOURCE_ROOT; };
- 71DF747F1C57608F00F2789C /* TouchLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TouchLabel.h; path = common/customUI/TouchLabel.h; sourceTree = SOURCE_ROOT; };
- 71DF74801C57608F00F2789C /* TouchLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TouchLabel.m; path = common/customUI/TouchLabel.m; sourceTree = SOURCE_ROOT; };
- 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; };
- 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; };
- 71DF748F1C57614C00F2789C /* PhotoBorder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = PhotoBorder.png; path = common/photoStack/PhotoBorder.png; sourceTree = SOURCE_ROOT; };
- 71DF74901C57614C00F2789C /* PhotoBorder@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "PhotoBorder@2x.png"; path = "common/photoStack/PhotoBorder@2x.png"; sourceTree = SOURCE_ROOT; };
- 71DF74911C57614C00F2789C /* PhotoStackView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhotoStackView.h; path = common/photoStack/PhotoStackView.h; sourceTree = SOURCE_ROOT; };
- 71DF74921C57614C00F2789C /* PhotoStackView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhotoStackView.m; path = common/photoStack/PhotoStackView.m; sourceTree = SOURCE_ROOT; };
- 71DF74931C57614C00F2789C /* PhotoStackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhotoStackViewController.h; path = common/photoStack/PhotoStackViewController.h; sourceTree = SOURCE_ROOT; };
- 71DF74941C57614C00F2789C /* PhotoStackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhotoStackViewController.m; path = common/photoStack/PhotoStackViewController.m; sourceTree = SOURCE_ROOT; };
- 71E5A00F1DC99370005BF655 /* config.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = config.plist; sourceTree = "<group>"; };
- 71E9F6BA1F8B52DC0052C78E /* NetworkUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = NetworkUtils.m; path = ../../common/NetworkUtils.m; sourceTree = "<group>"; };
- 71E9F6BB1F8B52DC0052C78E /* NetworkUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = NetworkUtils.h; path = ../../common/NetworkUtils.h; sourceTree = "<group>"; };
- 71E9F6C01F8B57E30052C78E /* RANetworkTaskDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RANetworkTaskDelegate.m; path = ../../common/upload/RANetworkTaskDelegate.m; sourceTree = "<group>"; };
- 71E9F6C11F8B57E40052C78E /* RANetworkTaskDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RANetworkTaskDelegate.h; path = ../../common/upload/RANetworkTaskDelegate.h; sourceTree = "<group>"; };
- 71FFBBE51C60894900D91DC2 /* iSalesDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iSalesDB.h; path = common/data_provider/iSalesDB.h; sourceTree = SOURCE_ROOT; };
- 71FFBBE61C60894900D91DC2 /* iSalesDB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iSalesDB.m; path = common/data_provider/iSalesDB.m; sourceTree = SOURCE_ROOT; };
- 71FFBBE71C60894900D91DC2 /* RANetwork.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RANetwork.h; path = common/data_provider/RANetwork.h; sourceTree = SOURCE_ROOT; };
- 71FFBBE81C60894900D91DC2 /* RANetwork.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RANetwork.m; path = common/data_provider/RANetwork.m; sourceTree = SOURCE_ROOT; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 713F76A31929F4A7006A7305 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 42D9A0251EB03994008AF7AF /* libAdIdAccess.a in Frameworks */,
- 42D9A0231EB02DA6008AF7AF /* AdSupport.framework in Frameworks */,
- 42BEF35F1E89FEE300632AB6 /* CoreData.framework in Frameworks */,
- 42BEF35D1E89FECD00632AB6 /* SystemConfiguration.framework in Frameworks */,
- 71BBA2291CEAC17E00C91DED /* libz.tbd in Frameworks */,
- 7187162C1C43428100F25860 /* libScanApiCore.a in Frameworks */,
- 42BEF3551E89FE1200632AB6 /* GGLCore.framework in Frameworks */,
- 718716291C433DA400F25860 /* AVFoundation.framework in Frameworks */,
- 718716271C433D9700F25860 /* AudioToolbox.framework in Frameworks */,
- 42BEF3541E89FE1200632AB6 /* GGLAnalytics.framework in Frameworks */,
- 42BEF3501E89FE1100632AB6 /* FirebaseCore.framework in Frameworks */,
- 718716251C433D8B00F25860 /* ExternalAccessory.framework in Frameworks */,
- 716961B519594E1000B19FB4 /* libsqlite3.dylib in Frameworks */,
- 42BEF3521E89FE1200632AB6 /* FirebaseInstanceID.framework in Frameworks */,
- 71DEE876192DE00E003F645F /* Accelerate.framework in Frameworks */,
- 71DEE874192DE003003F645F /* QuartzCore.framework in Frameworks */,
- 713F76AC1929F4A7006A7305 /* CoreGraphics.framework in Frameworks */,
- 713F76AE1929F4A7006A7305 /* UIKit.framework in Frameworks */,
- 713F76AA1929F4A7006A7305 /* Foundation.framework in Frameworks */,
- 42BEF34F1E89FE1100632AB6 /* FirebaseAnalytics.framework in Frameworks */,
- 42BEF3571E89FE1200632AB6 /* libGoogleAnalytics.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 4254CCDB1FB1AB6600C8B4B6 /* Order Editor */ = {
- isa = PBXGroup;
- children = (
- 4254CCDC1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.h */,
- 4254CCDD1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m */,
- );
- name = "Order Editor";
- sourceTree = "<group>";
- };
- 4289800E1E24924D005F1BD8 /* sort */ = {
- isa = PBXGroup;
- children = (
- 4289800F1E24924D005F1BD8 /* SortButton.h */,
- 428980101E24924D005F1BD8 /* SortButton.m */,
- 428980111E24924D005F1BD8 /* SortItemCell.h */,
- 428980121E24924D005F1BD8 /* SortItemCell.m */,
- 428980131E24924D005F1BD8 /* SortItemViewController.h */,
- 428980141E24924D005F1BD8 /* SortItemViewController.m */,
- );
- name = sort;
- path = common/sort;
- sourceTree = SOURCE_ROOT;
- };
- 428980221E2492D2005F1BD8 /* Price Setting */ = {
- isa = PBXGroup;
- children = (
- 428980231E2492D2005F1BD8 /* CategoryPriceCell.h */,
- 428980241E2492D2005F1BD8 /* CategoryPriceCell.m */,
- 428980251E2492D2005F1BD8 /* CategoryPriceViewController.h */,
- 428980261E2492D2005F1BD8 /* CategoryPriceViewController.m */,
- 428980271E2492D2005F1BD8 /* PriceSettingViewController.h */,
- 428980281E2492D2005F1BD8 /* PriceSettingViewController.m */,
- 428980291E2492D2005F1BD8 /* SetCategoryPriceController.h */,
- 4289802A1E2492D2005F1BD8 /* SetCategoryPriceController.m */,
- );
- name = "Price Setting";
- path = "common/Price Setting";
- sourceTree = SOURCE_ROOT;
- };
- 4289803C1E249339005F1BD8 /* JKLock */ = {
- isa = PBXGroup;
- children = (
- 4289803D1E249339005F1BD8 /* JKDotView.h */,
- 4289803E1E249339005F1BD8 /* JKDotView.m */,
- 4289803F1E249339005F1BD8 /* JKLockButton.h */,
- 428980401E249339005F1BD8 /* JKLockButton.m */,
- 428980411E249339005F1BD8 /* JKLockController.h */,
- 428980421E249339005F1BD8 /* JKLockController.m */,
- 428980431E249339005F1BD8 /* JKMessageBoxController.h */,
- 428980441E249339005F1BD8 /* JKMessageBoxController.m */,
- );
- name = JKLock;
- path = common/JKLock;
- sourceTree = SOURCE_ROOT;
- };
- 4289805A1E249375005F1BD8 /* UIColor+HEX */ = {
- isa = PBXGroup;
- children = (
- 4289805B1E249375005F1BD8 /* UIColor+JK_HEX.h */,
- 4289805C1E249375005F1BD8 /* UIColor+JK_HEX.m */,
- );
- name = "UIColor+HEX";
- path = "common/UIColor+HEX";
- sourceTree = SOURCE_ROOT;
- };
- 4289809B1E24B526005F1BD8 /* JKTimer */ = {
- isa = PBXGroup;
- children = (
- 4289809C1E24B526005F1BD8 /* JKTimerManager.h */,
- 4289809D1E24B526005F1BD8 /* JKTimerManager.m */,
- );
- name = JKTimer;
- path = common/JKTimer;
- sourceTree = SOURCE_ROOT;
- };
- 4295AE181FE74D26007BE365 /* AutoComplete */ = {
- isa = PBXGroup;
- children = (
- 4295AE191FE74D46007BE365 /* CommonEditorAutoCompleteView.h */,
- 4295AE1A1FE74D46007BE365 /* CommonEditorAutoCompleteView.m */,
- 4295AE1B1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib */,
- );
- name = AutoComplete;
- sourceTree = "<group>";
- };
- 42BEAB2D1FA1D23A0024D647 /* EnumSelectAndSort */ = {
- isa = PBXGroup;
- children = (
- 42BEAB2E1FA1D23A0024D647 /* EnumModel.h */,
- 42BEAB2F1FA1D23A0024D647 /* EnumModel.m */,
- 42BEAB301FA1D23A0024D647 /* EnumSelectAndSort.storyboard */,
- 42BEAB311FA1D23A0024D647 /* EnumSelectAndSortCell.h */,
- 42BEAB321FA1D23A0024D647 /* EnumSelectAndSortCell.m */,
- 42BEAB331FA1D23A0024D647 /* EnumSelectAndSortViewController.h */,
- 42BEAB341FA1D23A0024D647 /* EnumSelectAndSortViewController.m */,
- );
- name = EnumSelectAndSort;
- path = common/CommonEditor/EnumSelectAndSort;
- sourceTree = SOURCE_ROOT;
- };
- 42BEF3211E89FE1100632AB6 /* GoogleAnalytics */ = {
- isa = PBXGroup;
- children = (
- 42BEF3601E8A005800632AB6 /* GoogleAnalyst.h */,
- 42BEF3611E8A005800632AB6 /* GoogleAnalyst.m */,
- 42BEF3221E89FE1100632AB6 /* FirebaseAnalytics */,
- 42BEF3251E89FE1100632AB6 /* FirebaseCore */,
- 42BEF3281E89FE1100632AB6 /* FirebaseInstanceID */,
- 42BEF32D1E89FE1100632AB6 /* Google */,
- 42BEF33A1E89FE1100632AB6 /* GoogleAnalytics */,
- 42BEF3481E89FE1100632AB6 /* GoogleToolboxForMac */,
- );
- path = GoogleAnalytics;
- sourceTree = SOURCE_ROOT;
- };
- 42BEF3221E89FE1100632AB6 /* FirebaseAnalytics */ = {
- isa = PBXGroup;
- children = (
- 42BEF3231E89FE1100632AB6 /* Frameworks */,
- );
- path = FirebaseAnalytics;
- sourceTree = "<group>";
- };
- 42BEF3231E89FE1100632AB6 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 42BEF3241E89FE1100632AB6 /* FirebaseAnalytics.framework */,
- );
- path = Frameworks;
- sourceTree = "<group>";
- };
- 42BEF3251E89FE1100632AB6 /* FirebaseCore */ = {
- isa = PBXGroup;
- children = (
- 42BEF3261E89FE1100632AB6 /* Frameworks */,
- );
- path = FirebaseCore;
- sourceTree = "<group>";
- };
- 42BEF3261E89FE1100632AB6 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 42BEF3271E89FE1100632AB6 /* FirebaseCore.framework */,
- );
- path = Frameworks;
- sourceTree = "<group>";
- };
- 42BEF3281E89FE1100632AB6 /* FirebaseInstanceID */ = {
- isa = PBXGroup;
- children = (
- 42BEF3291E89FE1100632AB6 /* CHANGELOG.md */,
- 42BEF32A1E89FE1100632AB6 /* Frameworks */,
- 42BEF32C1E89FE1100632AB6 /* README.md */,
- );
- path = FirebaseInstanceID;
- sourceTree = "<group>";
- };
- 42BEF32A1E89FE1100632AB6 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 42BEF32B1E89FE1100632AB6 /* FirebaseInstanceID.framework */,
- );
- path = Frameworks;
- sourceTree = "<group>";
- };
- 42BEF32D1E89FE1100632AB6 /* Google */ = {
- isa = PBXGroup;
- children = (
- 42BEF32E1E89FE1100632AB6 /* Frameworks */,
- 42BEF3311E89FE1100632AB6 /* Headers */,
- 42BEF3391E89FE1100632AB6 /* README.md */,
- );
- path = Google;
- sourceTree = "<group>";
- };
- 42BEF32E1E89FE1100632AB6 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 42BEF32F1E89FE1100632AB6 /* GGLAnalytics.framework */,
- 42BEF3301E89FE1100632AB6 /* GGLCore.framework */,
- );
- path = Frameworks;
- sourceTree = "<group>";
- };
- 42BEF3311E89FE1100632AB6 /* Headers */ = {
- isa = PBXGroup;
- children = (
- 42BEF3321E89FE1100632AB6 /* Analytics.h */,
- 42BEF3331E89FE1100632AB6 /* Core.h */,
- 42BEF3341E89FE1100632AB6 /* module.modulemap */,
- 42BEF3351E89FE1100632AB6 /* ModuleHeaders */,
- );
- path = Headers;
- sourceTree = "<group>";
- };
- 42BEF3351E89FE1100632AB6 /* ModuleHeaders */ = {
- isa = PBXGroup;
- children = (
- 42BEF3361E89FE1100632AB6 /* Analytics-Module.h */,
- 42BEF3371E89FE1100632AB6 /* Core-Module.h */,
- 42BEF3381E89FE1100632AB6 /* SignIn-Module.h */,
- );
- path = ModuleHeaders;
- sourceTree = "<group>";
- };
- 42BEF33A1E89FE1100632AB6 /* GoogleAnalytics */ = {
- isa = PBXGroup;
- children = (
- 42BEF33B1E89FE1100632AB6 /* Libraries */,
- 42BEF33D1E89FE1100632AB6 /* Sources */,
- );
- path = GoogleAnalytics;
- sourceTree = "<group>";
- };
- 42BEF33B1E89FE1100632AB6 /* Libraries */ = {
- isa = PBXGroup;
- children = (
- 42BEF33C1E89FE1100632AB6 /* libGoogleAnalytics.a */,
- 42D9A0241EB03994008AF7AF /* libAdIdAccess.a */,
- );
- path = Libraries;
- sourceTree = "<group>";
- };
- 42BEF33D1E89FE1100632AB6 /* Sources */ = {
- isa = PBXGroup;
- children = (
- 42BEF33E1E89FE1100632AB6 /* GAI.h */,
- 42BEF33F1E89FE1100632AB6 /* GAIDictionaryBuilder.h */,
- 42BEF3401E89FE1100632AB6 /* GAIEcommerceFields.h */,
- 42BEF3411E89FE1100632AB6 /* GAIEcommerceProduct.h */,
- 42BEF3421E89FE1100632AB6 /* GAIEcommerceProductAction.h */,
- 42BEF3431E89FE1100632AB6 /* GAIEcommercePromotion.h */,
- 42BEF3441E89FE1100632AB6 /* GAIFields.h */,
- 42BEF3451E89FE1100632AB6 /* GAILogger.h */,
- 42BEF3461E89FE1100632AB6 /* GAITrackedViewController.h */,
- 42BEF3471E89FE1100632AB6 /* GAITracker.h */,
- );
- path = Sources;
- sourceTree = "<group>";
- };
- 42BEF3481E89FE1100632AB6 /* GoogleToolboxForMac */ = {
- isa = PBXGroup;
- children = (
- 42BEF3491E89FE1100632AB6 /* Foundation */,
- 42BEF34C1E89FE1100632AB6 /* GTMDefines.h */,
- 42BEF34E1E89FE1100632AB6 /* README.md */,
- );
- path = GoogleToolboxForMac;
- sourceTree = "<group>";
- };
- 42BEF3491E89FE1100632AB6 /* Foundation */ = {
- isa = PBXGroup;
- children = (
- 42BEF34A1E89FE1100632AB6 /* GTMNSData+zlib.h */,
- 42BEF34B1E89FE1100632AB6 /* GTMNSData+zlib.m */,
- );
- path = Foundation;
- sourceTree = "<group>";
- };
- 42BEF35B1E89FECC00632AB6 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 42D9A0221EB02DA6008AF7AF /* AdSupport.framework */,
- 42BEF35E1E89FEE300632AB6 /* CoreData.framework */,
- 42BEF35C1E89FECD00632AB6 /* SystemConfiguration.framework */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- 42D3A4981EFA6D36007A54C1 /* PhotoList */ = {
- isa = PBXGroup;
- children = (
- 42D3A4991EFA6D36007A54C1 /* Controller */,
- 42D3A49C1EFA6D36007A54C1 /* Storyboard */,
- 42D3A49E1EFA6D36007A54C1 /* View */,
- );
- name = PhotoList;
- path = ../common/PhotoList;
- sourceTree = "<group>";
- };
- 42D3A4991EFA6D36007A54C1 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 42D3A49A1EFA6D36007A54C1 /* ContentPreviewController.h */,
- 42D3A49B1EFA6D36007A54C1 /* ContentPreviewController.m */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 42D3A49C1EFA6D36007A54C1 /* Storyboard */ = {
- isa = PBXGroup;
- children = (
- 42D3A49D1EFA6D36007A54C1 /* PhotoList.storyboard */,
- );
- path = Storyboard;
- sourceTree = "<group>";
- };
- 42D3A49E1EFA6D36007A54C1 /* View */ = {
- isa = PBXGroup;
- children = (
- 42D3A49F1EFA6D36007A54C1 /* PhotoPreviewCell.h */,
- 42D3A4A01EFA6D36007A54C1 /* PhotoPreviewCell.m */,
- 42D3A4A41EFA7346007A54C1 /* VideoPreviewCell.h */,
- 42D3A4A51EFA7346007A54C1 /* VideoPreviewCell.m */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 42FD1A001FBD19B800C5D9A8 /* Order Preview */ = {
- isa = PBXGroup;
- children = (
- 42FD1A011FBD1A3000C5D9A8 /* RAOrderPreviewController.h */,
- 42FD1A021FBD1A3000C5D9A8 /* RAOrderPreviewController.m */,
- 424A02CF1FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.h */,
- 424A02D01FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m */,
- );
- name = "Order Preview";
- sourceTree = "<group>";
- };
- 710212821B8D59DE00E1788B /* watchlist */ = {
- isa = PBXGroup;
- children = (
- 7162A5E11C5877CE00AB630E /* WatchListViewController.h */,
- 7162A5E21C5877CE00AB630E /* WatchListViewController.m */,
- );
- name = watchlist;
- sourceTree = "<group>";
- };
- 711A551F1C153AA800EF5FDA /* portfolio */ = {
- isa = PBXGroup;
- children = (
- 3C2F99B7237BE1790000808F /* PortfolioListTableViewCell.h */,
- 3C2F99B6237BE1790000808F /* PortfolioListTableViewCell.m */,
- 3C7E5A8D237BDB0C006D0105 /* PortfolioListViewController.h */,
- 3C7E5A8C237BDB0C006D0105 /* PortfolioListViewController.m */,
- 7162A5A61C58735900AB630E /* PortfolioViewController.h */,
- 7162A5A71C58735900AB630E /* PortfolioViewController.m */,
- 7162A5A81C58735900AB630E /* TearSheetParamViewController.h */,
- 7162A5A91C58735900AB630E /* TearSheetParamViewController.m */,
- 71D0344D1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.h */,
- 71D0344E1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m */,
- );
- name = portfolio;
- sourceTree = "<group>";
- };
- 712AFEC41DBA044C00254965 /* pdfCreator */ = {
- isa = PBXGroup;
- children = (
- 712AFEC51DBA050200254965 /* BasicDrawable.h */,
- 712AFEC61DBA050200254965 /* BasicDrawable.m */,
- 715671311E10A0EF006324A0 /* RectDrawable.h */,
- 715671321E10A0EF006324A0 /* RectDrawable.m */,
- 712AFEC71DBA050200254965 /* GridDrawable.h */,
- 712AFEC81DBA050200254965 /* GridDrawable.m */,
- 712AFEC91DBA050200254965 /* GroupDrawable.h */,
- 712AFECA1DBA050200254965 /* GroupDrawable.m */,
- 712AFECB1DBA050200254965 /* ImageDrawable.h */,
- 712AFECC1DBA050200254965 /* ImageDrawable.m */,
- 712AFECD1DBA050200254965 /* LineDrawable.h */,
- 712AFECE1DBA050200254965 /* LineDrawable.m */,
- 712AFECF1DBA050200254965 /* PDFDrawable.h */,
- 712AFED01DBA050200254965 /* PDFDrawable.m */,
- 712AFED11DBA050200254965 /* RAPDFPage.h */,
- 712AFED21DBA050200254965 /* RAPDFPage.m */,
- 712AFED31DBA050200254965 /* TableDrawable.h */,
- 712AFED41DBA050200254965 /* TableDrawable.m */,
- 712AFED51DBA050200254965 /* TextDrawable.h */,
- 712AFED61DBA050200254965 /* TextDrawable.m */,
- 712AFEE01DBA077F00254965 /* pdfCreator.h */,
- 712AFEE11DBA077F00254965 /* pdfCreator.m */,
- );
- name = pdfCreator;
- sourceTree = "<group>";
- };
- 712AFEE31DBDAEA000254965 /* PDFResource */ = {
- isa = PBXGroup;
- children = (
- 7142E8471DBF01A10077EFA2 /* font */,
- 712AFEE41DBDAF0300254965 /* pdfcreator.xcassets */,
- 7142E8481DBF01AC0077EFA2 /* template */,
- );
- name = PDFResource;
- sourceTree = "<group>";
- };
- 713393FE19936C980075BBAC /* Signature */ = {
- isa = PBXGroup;
- children = (
- 71D01ADC1E08CB1C006620CE /* signature.storyboard */,
- 7162A5C61C58761500AB630E /* SignatureView.h */,
- 7162A5C71C58761500AB630E /* SignatureView.m */,
- 7162A5C81C58761500AB630E /* SignatureViewController.h */,
- 7162A5C91C58761500AB630E /* SignatureViewController.m */,
- );
- name = Signature;
- sourceTree = "<group>";
- };
- 713F769D1929F4A7006A7305 = {
- isa = PBXGroup;
- children = (
- 713F76AF1929F4A7006A7305 /* iSales-USAI */,
- 42BEF35B1E89FECC00632AB6 /* Frameworks */,
- );
- sourceTree = "<group>";
- };
- 713F76A71929F4A7006A7305 /* Products */ = {
- isa = PBXGroup;
- children = (
- 713F76A61929F4A7006A7305 /* USAI Mobile.app */,
- );
- name = Products;
- path = ..;
- sourceTree = "<group>";
- };
- 713F76A81929F4A7006A7305 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 71BBA2281CEAC17E00C91DED /* libz.tbd */,
- 7187162A1C43406300F25860 /* libScanApiCore.a */,
- 718716281C433DA400F25860 /* AVFoundation.framework */,
- 718716261C433D9700F25860 /* AudioToolbox.framework */,
- 718716241C433D8B00F25860 /* ExternalAccessory.framework */,
- 718716221C433D5000F25860 /* libScanApiCore.a */,
- 716961B419594E1000B19FB4 /* libsqlite3.dylib */,
- 71DEE875192DE00E003F645F /* Accelerate.framework */,
- 71DEE873192DE003003F645F /* QuartzCore.framework */,
- 713F76A91929F4A7006A7305 /* Foundation.framework */,
- 713F76AB1929F4A7006A7305 /* CoreGraphics.framework */,
- 713F76AD1929F4A7006A7305 /* UIKit.framework */,
- 713F76C81929F4A7006A7305 /* XCTest.framework */,
- );
- name = Frameworks;
- path = ..;
- sourceTree = "<group>";
- };
- 713F76AF1929F4A7006A7305 /* iSales-USAI */ = {
- isa = PBXGroup;
- children = (
- 71DF742C1C57567800F2789C /* USAI */,
- 712AFEE31DBDAEA000254965 /* PDFResource */,
- 716387C71953CDB4006E65E6 /* utils */,
- 71DF74311C5757C800F2789C /* CommonUI */,
- 718716141C433B4300F25860 /* ScanAPI */,
- 7190F1091BBBCAF100B2F243 /* PDF+Web */,
- 714C6ADA1B83016A000123E3 /* address */,
- 71F731FC192F395000F2CF76 /* AutoScrollImage */,
- 7143E0C919414E4B00B2EB1A /* cartView */,
- 7191A67319650A11007DC977 /* cagegory */,
- 716BA58D195AB4170007093A /* categoryMenu */,
- 714C6ADE1B83069A000123E3 /* creditcard */,
- 7185C3CE1B919C7200B4823C /* contact */,
- 719E45D71B63883100FD098B /* modelDetail */,
- 71DBACEE1B5E401A00D8BD7E /* HomeView */,
- 714C6AE21B83107A000123E3 /* order */,
- 4254CCDB1FB1AB6600C8B4B6 /* Order Editor */,
- 42FD1A001FBD19B800C5D9A8 /* Order Preview */,
- 717AE10B1D1A5E99007DC5CA /* offline */,
- 711A551F1C153AA800EF5FDA /* portfolio */,
- 714A52061995E90300627D23 /* cam_scan */,
- 71A2478A1B955448000E1F84 /* search */,
- 713393FE19936C980075BBAC /* Signature */,
- 716387CC1953D693006E65E6 /* sideMenu */,
- 710212821B8D59DE00E1788B /* watchlist */,
- 428980221E2492D2005F1BD8 /* Price Setting */,
- 713F76B81929F4A7006A7305 /* AppDelegate.h */,
- 713F76B91929F4A7006A7305 /* AppDelegate.m */,
- 714036F821646B8C0029B10F /* AppDelegateBase.h */,
- 714036F721646B8C0029B10F /* AppDelegateBase.m */,
- 428980701E24B1E9005F1BD8 /* Singleton.h */,
- 428980711E24B1E9005F1BD8 /* Singleton.m */,
- 428980021E2490C1005F1BD8 /* NotificationNameCenter.h */,
- 428980031E2490C1005F1BD8 /* NotificationNameCenter.m */,
- 7162A5E71C5899F700AB630E /* MainViewController.h */,
- 7162A5E81C5899F700AB630E /* MainViewController.m */,
- 714037032164707D0029B10F /* MainHeaderViewColorPanel.h */,
- 714037042164707D0029B10F /* MainHeaderViewColorPanel.m */,
- 7162A5E41C58781000AB630E /* iSalesNavigationController.h */,
- 7162A5E51C58781000AB630E /* iSalesNavigationController.m */,
- 7143E20A202FCEEC00451903 /* Main.storyboard */,
- 3C6831502396082700AD5BD7 /* ERP_Mobile_Cart.storyboard */,
- 3C6831532396082700AD5BD7 /* ERP_Mobile_Contact.storyboard */,
- 3C68314F2396082700AD5BD7 /* ERP_Mobile_Discard.storyboard */,
- 3C6831512396082700AD5BD7 /* ERP_Mobile_Model.storyboard */,
- 3C6831542396082800AD5BD7 /* ERP_Mobile_Order.storyboard */,
- 3C6831552396082800AD5BD7 /* ERP_Mobile_Portfolio.storyboard */,
- 3C6831522396082700AD5BD7 /* ERP_Mobile_Search.storyboard */,
- 7143E208202FCEEB00451903 /* OLM.storyboard */,
- 7143E20E202FCEF600451903 /* CUL.storyboard */,
- 713F76C11929F4A7006A7305 /* Images.xcassets */,
- 713F76B01929F4A7006A7305 /* Supporting Files */,
- 713F76B11929F4A7006A7305 /* iSales-USAI-Info.plist */,
- 713F76B21929F4A7006A7305 /* InfoPlist.strings */,
- 713F76B51929F4A7006A7305 /* main.m */,
- 713F76B71929F4A7006A7305 /* iSales-USAI-Prefix.pch */,
- 713F76A81929F4A7006A7305 /* Frameworks */,
- 713F76A71929F4A7006A7305 /* Products */,
- );
- path = "iSales-USAI";
- sourceTree = "<group>";
- };
- 713F76B01929F4A7006A7305 /* Supporting Files */ = {
- isa = PBXGroup;
- children = (
- 423CC87421D22FDE008BD2C4 /* Launch Screen.storyboard */,
- );
- name = "Supporting Files";
- sourceTree = "<group>";
- };
- 7142E8471DBF01A10077EFA2 /* font */ = {
- isa = PBXGroup;
- children = (
- 7142E8781DBF57510077EFA2 /* KALINGA.TTF */,
- 7142E8791DBF57510077EFA2 /* KALINGAB.TTF */,
- 7142E87C1DC300010077EFA2 /* DejaVuSans-Bold.ttf */,
- 7142E87D1DC300010077EFA2 /* DejaVuSans.ttf */,
- );
- name = font;
- sourceTree = "<group>";
- };
- 7142E8481DBF01AC0077EFA2 /* template */ = {
- isa = PBXGroup;
- children = (
- 7143E224202FD2CA00451903 /* portfolio_2x3.json */,
- 7143E223202FD2CA00451903 /* portfolio_3x2.json */,
- 7143E222202FD2CA00451903 /* so_thumb.json */,
- 7143E225202FD2CA00451903 /* so.json */,
- 42E489601EE63F4E007256A0 /* more_color_64.png */,
- );
- name = template;
- sourceTree = "<group>";
- };
- 7143E0C919414E4B00B2EB1A /* cartView */ = {
- isa = PBXGroup;
- children = (
- 7162A50C1C58704600AB630E /* BundleModelCell.h */,
- 7162A50D1C58704600AB630E /* BundleModelCell.m */,
- 7162A50E1C58704600AB630E /* BundleModelViewController.h */,
- 7162A50F1C58704600AB630E /* BundleModelViewController.m */,
- 7162A5101C58704600AB630E /* CartViewController.h */,
- 7162A5111C58704600AB630E /* CartViewController.m */,
- 7162A5121C58704600AB630E /* EditModelPriceViewController.h */,
- 7162A5131C58704600AB630E /* EditModelPriceViewController.m */,
- 7162A5141C58704600AB630E /* ModelItemCell.h */,
- 7162A5151C58704600AB630E /* ModelItemCell.m */,
- 712C40B71C731126000E6831 /* ItemNotesViewController.h */,
- 712C40B81C731126000E6831 /* ItemNotesViewController.m */,
- 712C40B41C7310F4000E6831 /* CartGeneralNotesViewController.h */,
- 712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */,
- );
- name = cartView;
- sourceTree = "<group>";
- };
- 7143E215202FD12B00451903 /* json */ = {
- isa = PBXGroup;
- children = (
- 7143E213202FCFC000451903 /* debug_category_filter.json */,
- 7143E216202FD15A00451903 /* category.json */,
- 7143E218202FD1DC00451903 /* contactAdvanceSearch.json */,
- 7143E219202FD1DC00451903 /* createContact.json */,
- 7143E21C202FD21F00451903 /* editContact.json */,
- 7143E21F202FD28900451903 /* placeOrderTemplate.json */,
- 7143E21E202FD28800451903 /* TearSheet.json */,
- 7143E22A202FD37500451903 /* orderDetail.json */,
- );
- name = json;
- sourceTree = "<group>";
- };
- 714A52061995E90300627D23 /* cam_scan */ = {
- isa = PBXGroup;
- children = (
- 7162A5AE1C58738600AB630E /* ScannerControllerView.h */,
- 7162A5AF1C58738600AB630E /* ScannerControllerView.m */,
- 7162A5B01C58738600AB630E /* ScannerViewController.h */,
- 7162A5B11C58738600AB630E /* ScannerViewController.m */,
- 7162A5B21C58738600AB630E /* SCShapeView.h */,
- 7162A5B31C58738600AB630E /* SCShapeView.m */,
- );
- name = cam_scan;
- sourceTree = "<group>";
- };
- 714C6ADA1B83016A000123E3 /* address */ = {
- isa = PBXGroup;
- children = (
- 7162A5001C586F5B00AB630E /* AddressEditorViewController.h */,
- 7162A5011C586F5B00AB630E /* AddressEditorViewController.m */,
- );
- name = address;
- sourceTree = "<group>";
- };
- 714C6ADE1B83069A000123E3 /* creditcard */ = {
- isa = PBXGroup;
- children = (
- 7162A54C1C58722200AB630E /* CreditCardEditorViewController.h */,
- 7162A54D1C58722200AB630E /* CreditCardEditorViewController.m */,
- );
- name = creditcard;
- sourceTree = "<group>";
- };
- 714C6AE21B83107A000123E3 /* order */ = {
- isa = PBXGroup;
- children = (
- 7162A5861C58733400AB630E /* CreateOrderViewController.h */,
- 7162A5871C58733400AB630E /* CreateOrderViewController.m */,
- 7162A5881C58733400AB630E /* OrderDetailHtmlCell.h */,
- 7162A5891C58733400AB630E /* OrderDetailHtmlCell.m */,
- 7162A58A1C58733400AB630E /* OrderDetailInfoCell.h */,
- 7162A58B1C58733400AB630E /* OrderDetailInfoCell.m */,
- 7162A58C1C58733400AB630E /* OrderDetailModelCell.h */,
- 7162A58D1C58733400AB630E /* OrderDetailModelCell.m */,
- 7162A58E1C58733400AB630E /* OrderDetailPriceCell.h */,
- 7162A58F1C58733400AB630E /* OrderDetailPriceCell.m */,
- 42DC12EF1F0CD98E00A4C011 /* OrderDetailPickInfoCell.h */,
- 42DC12F01F0CD98E00A4C011 /* OrderDetailPickInfoCell.m */,
- 7162A5901C58733400AB630E /* OrderDetailViewController.h */,
- 7162A5911C58733400AB630E /* OrderDetailViewController.m */,
- 7162A5921C58733400AB630E /* OrderListTableViewCell.h */,
- 7162A5931C58733400AB630E /* OrderListTableViewCell.m */,
- 7162A5941C58733400AB630E /* OrderListViewController.h */,
- 7162A5951C58733400AB630E /* OrderListViewController.m */,
- 7162A5961C58733400AB630E /* status_filter_cadedate_open.json */,
- 42B309781E45BA32007AFC62 /* status_filter_cadedate_po.json */,
- 7162A5971C58733400AB630E /* offline_status_filter_cadedate.json */,
- 714B1F3E1C7BF74100539193 /* OrderDetailSignatureCell.h */,
- 714B1F3F1C7BF74100539193 /* OrderDetailSignatureCell.m */,
- );
- name = order;
- sourceTree = "<group>";
- };
- 715EB9A6193866F2006D16A5 /* photoStack */ = {
- isa = PBXGroup;
- children = (
- 71DF748F1C57614C00F2789C /* PhotoBorder.png */,
- 71DF74901C57614C00F2789C /* PhotoBorder@2x.png */,
- 7165662C1EF3ACD900CB897F /* photostack_image.html */,
- 7165662D1EF3ACD900CB897F /* photostack_video.html */,
- 71DF74911C57614C00F2789C /* PhotoStackView.h */,
- 71DF74921C57614C00F2789C /* PhotoStackView.m */,
- 71DF74931C57614C00F2789C /* PhotoStackViewController.h */,
- 71DF74941C57614C00F2789C /* PhotoStackViewController.m */,
- );
- name = photoStack;
- sourceTree = "<group>";
- };
- 716387C71953CDB4006E65E6 /* utils */ = {
- isa = PBXGroup;
- children = (
- 71C1D84C1F456CAA00CEA1C9 /* HWWeakTimer.h */,
- 71C1D84D1F456CAA00CEA1C9 /* HWWeakTimer.m */,
- 42BEF3211E89FE1100632AB6 /* GoogleAnalytics */,
- 4289809B1E24B526005F1BD8 /* JKTimer */,
- 4289805A1E249375005F1BD8 /* UIColor+HEX */,
- 4289803C1E249339005F1BD8 /* JKLock */,
- 712AFEC41DBA044C00254965 /* pdfCreator */,
- 71BBA2171CEAC10200C91DED /* zip */,
- 71B1250B1C55BD4600118904 /* QRCODE */,
- 71E9F6BD1F8B53AB0052C78E /* upload */,
- 71BE066E1BA1607400FA6544 /* AES */,
- 71DF74291C57560600F2789C /* Reachability.h */,
- 71DF742A1C57560600F2789C /* Reachability.m */,
- 71CB70761F99E337009FDCB7 /* RAConvertor.h */,
- 71CB70771F99E338009FDCB7 /* RAConvertor.m */,
- 71CB70741F99DF02009FDCB7 /* FileCache.h */,
- 71CB70731F99DF01009FDCB7 /* FileCache.m */,
- 71DF742E1C57572600F2789C /* RAUtils.h */,
- 71DF742F1C57572600F2789C /* RAUtils.m */,
- 71D01B141E0A2055006620CE /* ImageUtils.h */,
- 71D01B151E0A2055006620CE /* ImageUtils.m */,
- 428980081E24918F005F1BD8 /* CartUtils.h */,
- 428980091E24918F005F1BD8 /* CartUtils.m */,
- 71D01B161E0A2055006620CE /* PDFUtils.h */,
- 71D01B171E0A2055006620CE /* PDFUtils.m */,
- 71D01B181E0A2055006620CE /* TextUtils.h */,
- 71D01B191E0A2055006620CE /* TextUtils.m */,
- 42BF67CA1E5179970081F90A /* ERPUtils.h */,
- 42BF67CB1E5179970081F90A /* ERPUtils.m */,
- 71FFBBE51C60894900D91DC2 /* iSalesDB.h */,
- 71FFBBE61C60894900D91DC2 /* iSalesDB.m */,
- 71E9F6BB1F8B52DC0052C78E /* NetworkUtils.h */,
- 71E9F6BA1F8B52DC0052C78E /* NetworkUtils.m */,
- 71E9F6C11F8B57E40052C78E /* RANetworkTaskDelegate.h */,
- 71E9F6C01F8B57E30052C78E /* RANetworkTaskDelegate.m */,
- 71FFBBE71C60894900D91DC2 /* RANetwork.h */,
- 71FFBBE81C60894900D91DC2 /* RANetwork.m */,
- 71BF06F91D2F3CAC00981938 /* OLDataProvider.h */,
- 71BF06FA1D2F3CAC00981938 /* OLDataProvider.m */,
- 7143E22C202FD3CC00451903 /* more_info.html */,
- 7143E22D202FD3CC00451903 /* order_info.html */,
- );
- name = utils;
- sourceTree = "<group>";
- };
- 716387CC1953D693006E65E6 /* sideMenu */ = {
- isa = PBXGroup;
- children = (
- 7162A5CC1C5876E300AB630E /* AboutViewController.h */,
- 7162A5CD1C5876E300AB630E /* AboutViewController.m */,
- 7162A5CE1C5876E300AB630E /* CacheViewController.h */,
- 7162A5CF1C5876E300AB630E /* CacheViewController.m */,
- 7162A5D01C5876E300AB630E /* LoginViewController.h */,
- 7162A5D11C5876E300AB630E /* LoginViewController.m */,
- 7162A5D21C5876E300AB630E /* PopupNavigationController.h */,
- 7162A5D31C5876E300AB630E /* PopupNavigationController.m */,
- 7162A5D41C5876E300AB630E /* RetrievePassViewController.h */,
- 7162A5D51C5876E300AB630E /* RetrievePassViewController.m */,
- 7162A5D61C5876E300AB630E /* ScannerSettingViewController.h */,
- 7162A5D71C5876E300AB630E /* ScannerSettingViewController.m */,
- 7162A5D81C5876E300AB630E /* SettingViewController.h */,
- 7162A5D91C5876E300AB630E /* SettingViewController.m */,
- 7186C25B1C97A6EE00CB43F4 /* FunctionTestViewController.h */,
- 7186C25C1C97A6EE00CB43F4 /* FunctionTestViewController.m */,
- 71131F901CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.h */,
- 71131F911CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m */,
- 710274231CC606C4009FD219 /* UserListViewController.h */,
- 710274241CC606C4009FD219 /* UserListViewController.m */,
- );
- name = sideMenu;
- sourceTree = "<group>";
- };
- 716387D2195408DA006E65E6 /* config */ = {
- isa = PBXGroup;
- children = (
- 716387D3195408E7006E65E6 /* config.h */,
- 71E5A00F1DC99370005BF655 /* config.plist */,
- 71DF742D1C5756C600F2789C /* const.h */,
- );
- name = config;
- sourceTree = "<group>";
- };
- 716BA58D195AB4170007093A /* categoryMenu */ = {
- isa = PBXGroup;
- children = (
- 7162A52B1C58719D00AB630E /* RATreeNode.h */,
- 7162A52C1C58719D00AB630E /* RATreeNode.m */,
- 7162A52D1C58719D00AB630E /* RATreeNodeCollectionController.h */,
- 7162A52E1C58719D00AB630E /* RATreeNodeCollectionController.m */,
- 7162A52F1C58719D00AB630E /* RATreeNodeInfo.h */,
- 7162A5301C58719D00AB630E /* RATreeNodeInfo.m */,
- 7162A5311C58719D00AB630E /* RATreeNodeInfo+Private.h */,
- 7162A5321C58719D00AB630E /* RATreeNodeInfo+Private.m */,
- 7162A5331C58719D00AB630E /* RATreeView.h */,
- 7162A5341C58719D00AB630E /* RATreeView.m */,
- 7162A5351C58719D00AB630E /* RATreeView+Enums.h */,
- 7162A5361C58719D00AB630E /* RATreeView+Enums.m */,
- 7162A5371C58719D00AB630E /* RATreeView+Private.h */,
- 7162A5381C58719D00AB630E /* RATreeView+Private.m */,
- 7162A5391C58719D00AB630E /* RATreeView+TableViewDataSource.h */,
- 7162A53A1C58719D00AB630E /* RATreeView+TableViewDataSource.m */,
- 7162A53B1C58719D00AB630E /* RATreeView+TableViewDelegate.h */,
- 7162A53C1C58719D00AB630E /* RATreeView+TableViewDelegate.m */,
- 7162A53D1C58719D00AB630E /* RATreeView+UIScrollView.h */,
- 7162A53E1C58719D00AB630E /* RATreeView+UIScrollView.m */,
- 7162A53F1C58719D00AB630E /* RAViewController.h */,
- 7162A5401C58719D00AB630E /* RAViewController.m */,
- );
- name = categoryMenu;
- sourceTree = "<group>";
- };
- 717AE10B1D1A5E99007DC5CA /* offline */ = {
- isa = PBXGroup;
- children = (
- 7161FEB21D61B24900157EE1 /* creditcardpayment.html */,
- 7161FEB31D61B24900157EE1 /* normalpayment.html */,
- 7161FEB41D61B24900157EE1 /* orderinfo.html */,
- 71BF06FC1D2F3CBA00981938 /* OfflineSettingViewController.h */,
- 71BF06FD1D2F3CBA00981938 /* OfflineSettingViewController.m */,
- 71BF07061D2F3D2800981938 /* SyncControlPanelViewController.h */,
- 71BF07071D2F3D2800981938 /* SyncControlPanelViewController.m */,
- 716AF8DF1D7AA0E0001188E0 /* SelectUploadOrderViewController.h */,
- 716AF8E01D7AA0E0001188E0 /* SelectUploadOrderViewController.m */,
- 716AF8E61D7AA398001188E0 /* SelectOrderTableViewCell.h */,
- 716AF8E51D7AA398001188E0 /* SelectOrderTableViewCell.m */,
- 715F30BB1DAB37EB00490EED /* OfflineUnlockViewController.h */,
- 715F30BC1DAB37EB00490EED /* OfflineUnlockViewController.m */,
- );
- name = offline;
- sourceTree = "<group>";
- };
- 7185C3CE1B919C7200B4823C /* contact */ = {
- isa = PBXGroup;
- children = (
- 7162A54F1C58724700AB630E /* ContactAdvanceSearchViewController.h */,
- 7162A5501C58724700AB630E /* ContactAdvanceSearchViewController.m */,
- 7162A5511C58724700AB630E /* ContactListTableViewCell.h */,
- 7162A5521C58724700AB630E /* ContactListTableViewCell.m */,
- 7162A5531C58724700AB630E /* ContactListViewController.h */,
- 7162A5541C58724700AB630E /* ContactListViewController.m */,
- 7162A5551C58724700AB630E /* customer_advanced_search.json */,
- 7162A5561C58724700AB630E /* customer_info_template.json */,
- 7111E5711C76C557004763B3 /* customer_info_template_edit.json */,
- 7162A5571C58724700AB630E /* CustomerEditViewController.h */,
- 7162A5581C58724700AB630E /* CustomerEditViewController.m */,
- 7162A5591C58724700AB630E /* CustomerInfoViewController.h */,
- 7162A55A1C58724700AB630E /* CustomerInfoViewController.m */,
- );
- name = contact;
- sourceTree = "<group>";
- };
- 718600B31936C385004B6CDE /* customUI */ = {
- isa = PBXGroup;
- children = (
- 71D99D2E1CEF02E700CA32DE /* CustomIOSAlertView.h */,
- 71D99D2F1CEF02E700CA32DE /* CustomIOSAlertView.m */,
- 71DF746B1C57608F00F2789C /* ImageScrollerView.h */,
- 71DF746C1C57608F00F2789C /* ImageScrollerView.m */,
- 71DF746D1C57608F00F2789C /* ImageScrollerViewController.h */,
- 71DF746E1C57608F00F2789C /* ImageScrollerViewController.m */,
- 71DF746F1C57608F00F2789C /* ImageUploadViewController.h */,
- 71DF74701C57608F00F2789C /* ImageUploadViewController.m */,
- 71DF74711C57608F00F2789C /* ImageViewController.h */,
- 71DF74721C57608F00F2789C /* ImageViewController.m */,
- 71DF74731C57608F00F2789C /* NIDropDown.h */,
- 71DF74741C57608F00F2789C /* NIDropDown.m */,
- 71DF74751C57608F00F2789C /* PulldownMenu.h */,
- 71DF74761C57608F00F2789C /* PulldownMenu.m */,
- 71DF74771C57608F00F2789C /* RadioButton.h */,
- 71DF74781C57608F00F2789C /* RadioButton.m */,
- 71DF74791C57608F00F2789C /* RTLabel.h */,
- 71DF747A1C57608F00F2789C /* RTLabel.m */,
- 71DF747B1C57608F00F2789C /* SimpleGrid.h */,
- 71DF747C1C57608F00F2789C /* SimpleGrid.m */,
- 71DF747D1C57608F00F2789C /* StrikethroughLabel.h */,
- 71DF747E1C57608F00F2789C /* StrikethroughLabel.m */,
- 71DF747F1C57608F00F2789C /* TouchLabel.h */,
- 71DF74801C57608F00F2789C /* TouchLabel.m */,
- 718B91811C75638100265FFF /* TouchImageView.h */,
- 718B91821C75638100265FFF /* TouchImageView.m */,
- 71DF74811C57608F00F2789C /* UILabel+FontAppearance.h */,
- 71DF74821C57608F00F2789C /* UILabel+FontAppearance.m */,
- );
- name = customUI;
- sourceTree = "<group>";
- };
- 718716141C433B4300F25860 /* ScanAPI */ = {
- isa = PBXGroup;
- children = (
- 7141DD351C5726B700F7DF59 /* DeviceInfo.h */,
- 7141DD361C5726B700F7DF59 /* DeviceInfo.m */,
- 7141DD371C5726B700F7DF59 /* ScanApiHelper.h */,
- 7141DD381C5726B700F7DF59 /* ScanApiHelper.mm */,
- 7141DD391C5726B700F7DF59 /* ScanApiIncludes.h */,
- 7141DD3A1C5726B700F7DF59 /* softScanBeep.wav */,
- 7141DD331C57269B00F7DF59 /* include */,
- );
- name = ScanAPI;
- sourceTree = "<group>";
- };
- 7190F1091BBBCAF100B2F243 /* PDF+Web */ = {
- isa = PBXGroup;
- children = (
- 3C69617D23C7156D0075172A /* RAPDFViewController.h */,
- 3C69617E23C7156D0075172A /* RAPDFViewController.m */,
- 3C69618123C7156D0075172A /* WebViewController.h */,
- 3C69617F23C7156D0075172A /* WebViewController.m */,
- 3C69618023C7156D0075172A /* wkweb.storyboard */,
- );
- name = "PDF+Web";
- sourceTree = "<group>";
- };
- 7191A67319650A11007DC977 /* cagegory */ = {
- isa = PBXGroup;
- children = (
- 7143E210202FCF7600451903 /* CategoryCellNPD.h */,
- 7143E211202FCF7600451903 /* CategoryCellNPD.m */,
- 7162A51F1C58706C00AB630E /* CategoryCellSmall.h */,
- 7162A5201C58706C00AB630E /* CategoryCellSmall.m */,
- 712BABF11C897E3A0007466B /* CategorySearchFilterViewController.h */,
- 712BABF21C897E3A0007466B /* CategorySearchFilterViewController.m */,
- 7162A5211C58706C00AB630E /* CategoryViewController.h */,
- 7162A5221C58706C00AB630E /* CategoryViewController.m */,
- 7195623A1CF57D1800C74A49 /* CategoryHeaderView.h */,
- 7195623B1CF57D1800C74A49 /* CategoryHeaderView.m */,
- );
- name = cagegory;
- sourceTree = "<group>";
- };
- 719562351CF5733500C74A49 /* appearance */ = {
- isa = PBXGroup;
- children = (
- 715850441CF6F0E500856B20 /* DefaultAppearance.h */,
- 715850451CF6F0E500856B20 /* DefaultAppearance.m */,
- 71D30A201CFBEDC6006F9477 /* default_appearance.json */,
- );
- name = appearance;
- sourceTree = "<group>";
- };
- 719E45D71B63883100FD098B /* modelDetail */ = {
- isa = PBXGroup;
- children = (
- 7162A5621C58728D00AB630E /* DetailHeaderCell.h */,
- 7162A5631C58728D00AB630E /* DetailHeaderCell.m */,
- 7162A5641C58728D00AB630E /* DetailImageCell.h */,
- 7162A5651C58728D00AB630E /* DetailImageCell.m */,
- 7162A5661C58728D00AB630E /* DetailKVCell.h */,
- 7162A5671C58728D00AB630E /* DetailKVCell.m */,
- 7162A5681C58728D00AB630E /* DetailTopicCell.h */,
- 7162A5691C58728D00AB630E /* DetailTopicCell.m */,
- 7162A56A1C58728D00AB630E /* DetailViewController.h */,
- 7162A56B1C58728D00AB630E /* DetailViewController.m */,
- 7162A56C1C58728D00AB630E /* LineView.h */,
- 7162A56D1C58728D00AB630E /* LineView.m */,
- 71C1D8521F456D2700CEA1C9 /* ModelDescriptionController.h */,
- 71C1D8531F456D2700CEA1C9 /* ModelDescriptionController.m */,
- );
- name = modelDetail;
- sourceTree = "<group>";
- };
- 71A2478A1B955448000E1F84 /* search */ = {
- isa = PBXGroup;
- children = (
- 7162A5B71C5873BB00AB630E /* FilterCellCadedate.h */,
- 7162A5B81C5873BB00AB630E /* FilterCellCadedate.m */,
- 7162A5B91C5873BB00AB630E /* FilterCellValue.h */,
- 7162A5BA1C5873BB00AB630E /* FilterCellValue.m */,
- 7162A5BB1C5873BB00AB630E /* ItemSearchFilterViewController.h */,
- 7162A5BC1C5873BB00AB630E /* ItemSearchFilterViewController.m */,
- 7162A5BD1C5873BB00AB630E /* ItemSearchViewController.h */,
- 7162A5BE1C5873BB00AB630E /* ItemSearchViewController.m */,
- 7162A5BF1C5873BB00AB630E /* SearchViewController.h */,
- 7162A5C01C5873BB00AB630E /* SearchViewController.m */,
- );
- name = search;
- sourceTree = "<group>";
- };
- 71B1250B1C55BD4600118904 /* QRCODE */ = {
- isa = PBXGroup;
- children = (
- 7141DD3E1C57459B00F7DF59 /* bitstream.c */,
- 7141DD3F1C57459B00F7DF59 /* bitstream.h */,
- 7141DD401C57459B00F7DF59 /* mask.c */,
- 7141DD411C57459B00F7DF59 /* mask.h */,
- 7141DD421C57459B00F7DF59 /* QRCodeGenerator.h */,
- 7141DD431C57459B00F7DF59 /* QRCodeGenerator.m */,
- 7141DD441C57459B00F7DF59 /* qrencode.c */,
- 7141DD451C57459B00F7DF59 /* qrencode.h */,
- 7141DD461C57459B00F7DF59 /* qrinput.c */,
- 7141DD471C57459B00F7DF59 /* qrinput.h */,
- 7141DD481C57459B00F7DF59 /* qrspec.c */,
- 7141DD491C57459B00F7DF59 /* qrspec.h */,
- 7141DD4A1C57459B00F7DF59 /* rscode.c */,
- 7141DD4B1C57459B00F7DF59 /* rscode.h */,
- 7141DD4C1C57459B00F7DF59 /* split.c */,
- 7141DD4D1C57459B00F7DF59 /* split.h */,
- );
- name = QRCODE;
- sourceTree = "<group>";
- };
- 71BBA2171CEAC10200C91DED /* zip */ = {
- isa = PBXGroup;
- children = (
- 71BBA2371CEAEF0700C91DED /* crypt.h */,
- 71BBA2381CEAEF0700C91DED /* ioapi.c */,
- 71BBA2391CEAEF0700C91DED /* ioapi.h */,
- 71BBA23A1CEAEF0700C91DED /* mztools.c */,
- 71BBA23B1CEAEF0700C91DED /* mztools.h */,
- 71BBA23C1CEAEF0700C91DED /* unzip.c */,
- 71BBA23D1CEAEF0700C91DED /* unzip.h */,
- 71BBA23E1CEAEF0700C91DED /* zip.c */,
- 71BBA23F1CEAEF0700C91DED /* zip.h */,
- 71BBA2211CEAC16000C91DED /* ZipArchive.h */,
- 71BBA2221CEAC16000C91DED /* ZipArchive.mm */,
- );
- name = zip;
- sourceTree = "<group>";
- };
- 71BE066E1BA1607400FA6544 /* AES */ = {
- isa = PBXGroup;
- children = (
- 7141DD561C5747CE00F7DF59 /* AESCrypt.h */,
- 7141DD571C5747CE00F7DF59 /* AESCrypt.m */,
- 7141DD581C5747CE00F7DF59 /* LICENSE */,
- 7141DD591C5747CE00F7DF59 /* NSData+Base64.h */,
- 7141DD5A1C5747CE00F7DF59 /* NSData+Base64.m */,
- 7141DD5B1C5747CE00F7DF59 /* NSData+CommonCrypto.h */,
- 7141DD5C1C5747CE00F7DF59 /* NSData+CommonCrypto.m */,
- 7141DD5D1C5747CE00F7DF59 /* NSString+Base64.h */,
- 7141DD5E1C5747CE00F7DF59 /* NSString+Base64.m */,
- );
- name = AES;
- sourceTree = "<group>";
- };
- 71BF32FA1EFA1C0700842CB4 /* youtube player */ = {
- isa = PBXGroup;
- children = (
- 3C68314C239607B500AD5BD7 /* RAYTPlayer.h */,
- 3C68314B239607B500AD5BD7 /* RAYTPlayer.m */,
- 3C68314A239607B500AD5BD7 /* ytplayer.html */,
- );
- name = "youtube player";
- sourceTree = "<group>";
- };
- 71DBACEE1B5E401A00D8BD7E /* HomeView */ = {
- isa = PBXGroup;
- children = (
- 7162A5771C5872EF00AB630E /* HomeTableViewCellBanner.h */,
- 7162A5781C5872EF00AB630E /* HomeTableViewCellBanner.m */,
- 7162A5791C5872EF00AB630E /* HomeTableViewCellButtonBanner.h */,
- 7162A57A1C5872EF00AB630E /* HomeTableViewCellButtonBanner.m */,
- 7162A57B1C5872EF00AB630E /* HomeTableViewCellSlide.h */,
- 7162A57C1C5872EF00AB630E /* HomeTableViewCellSlide.m */,
- 7162A57D1C5872EF00AB630E /* HomeTableViewCellTopic.h */,
- 7162A57E1C5872EF00AB630E /* HomeTableViewCellTopic.m */,
- 7162A57F1C5872EF00AB630E /* HomeViewController.h */,
- 7162A5801C5872EF00AB630E /* HomeViewController.m */,
- );
- name = HomeView;
- sourceTree = "<group>";
- };
- 71DF742C1C57567800F2789C /* USAI */ = {
- isa = PBXGroup;
- children = (
- 7143E215202FD12B00451903 /* json */,
- 719562351CF5733500C74A49 /* appearance */,
- 716387D2195408DA006E65E6 /* config */,
- );
- name = USAI;
- sourceTree = "<group>";
- };
- 71DF74311C5757C800F2789C /* CommonUI */ = {
- isa = PBXGroup;
- children = (
- 42D3A4981EFA6D36007A54C1 /* PhotoList */,
- 71BF32FA1EFA1C0700842CB4 /* youtube player */,
- 4289800E1E24924D005F1BD8 /* sort */,
- 715EB9A6193866F2006D16A5 /* photoStack */,
- 718600B31936C385004B6CDE /* customUI */,
- 71DF743A1C575E6600F2789C /* CommonEditor */,
- 71DF74321C5757DA00F2789C /* ActiveViewController.h */,
- 71DF74331C5757DA00F2789C /* ActiveViewController.m */,
- 71D30A2B1CFC0EF8006F9477 /* DefaultImageButton.h */,
- 71D30A2C1CFC0EF8006F9477 /* DefaultImageButton.m */,
- 719562401CF5828200C74A49 /* DefaultTableHeaderView.h */,
- 719562411CF5828200C74A49 /* DefaultTableHeaderView.m */,
- 715001FD1D114D9100F5927F /* BundleDetailButton.h */,
- 715001FE1D114D9100F5927F /* BundleDetailButton.m */,
- );
- name = CommonUI;
- sourceTree = "<group>";
- };
- 71DF743A1C575E6600F2789C /* CommonEditor */ = {
- isa = PBXGroup;
- children = (
- 714036FB21646CFF0029B10F /* UIResponder+Router.h */,
- 714036FA21646CFF0029B10F /* UIResponder+Router.m */,
- 4295AE181FE74D26007BE365 /* AutoComplete */,
- 71DF743B1C575E7900F2789C /* CommonEditorCellAction.h */,
- 71DF743C1C575E7900F2789C /* CommonEditorCellAction.m */,
- 71DF743D1C575E7900F2789C /* CommonEditorCellEdit.h */,
- 71DF743E1C575E7900F2789C /* CommonEditorCellEdit.m */,
- 71DF743F1C575E7900F2789C /* CommonEditorCellEnum.h */,
- 71DF74401C575E7900F2789C /* CommonEditorCellEnum.m */,
- 71DF74411C575E7900F2789C /* CommonEditorCellImg.h */,
- 71DF74421C575E7900F2789C /* CommonEditorCellImg.m */,
- 71DF74431C575E7900F2789C /* CommonEditorCellLabel.h */,
- 71DF74441C575E7900F2789C /* CommonEditorCellLabel.m */,
- 71DF74451C575E7900F2789C /* CommonEditorCellMAction.h */,
- 71DF74461C575E7900F2789C /* CommonEditorCellMAction.m */,
- 71DF74471C575E7900F2789C /* CommonEditorCellModel.h */,
- 71DF74481C575E7900F2789C /* CommonEditorCellModel.m */,
- 71DF74491C575E7900F2789C /* CommonEditorCellSignature.h */,
- 71DF744A1C575E7900F2789C /* CommonEditorCellSignature.m */,
- 71DF744B1C575E7900F2789C /* CommonEditorCellSwitch.h */,
- 71DF744C1C575E7900F2789C /* CommonEditorCellSwitch.m */,
- 71DF744D1C575E7900F2789C /* CommonEditorCellTextView.h */,
- 71DF744E1C575E7900F2789C /* CommonEditorCellTextView.m */,
- 71DF744F1C575E7900F2789C /* CommonEditorViewController.h */,
- 71DF74501C575E7900F2789C /* CommonEditorViewController.m */,
- 42E153C61FC57A3D00C36077 /* CommonEditorTableContainerView.h */,
- 42E153C71FC57A3D00C36077 /* CommonEditorTableContainerView.m */,
- 71DF74511C575E7900F2789C /* DatePickerViewController.h */,
- 71DF74521C575E7900F2789C /* DatePickerViewController.m */,
- 71DF74531C575E7900F2789C /* EnumSelectorCell.h */,
- 71DF74541C575E7900F2789C /* EnumSelectorCell.m */,
- 71DF74551C575E7900F2789C /* EnumSelectViewController.h */,
- 71DF74561C575E7900F2789C /* EnumSelectViewController.m */,
- 71DF74571C575E7900F2789C /* MonthPickerViewController.h */,
- 71DF74581C575E7900F2789C /* MonthPickerViewController.m */,
- 71DF74591C575E7900F2789C /* SRMonthPicker.h */,
- 71DF745A1C575E7900F2789C /* SRMonthPicker.m */,
- 7115D45C1E16317600EF4E4C /* CommonEditor.storyboard */,
- 3C68315E2396094100AD5BD7 /* CommonEditor.iPad.xib */,
- 3C6831632396094200AD5BD7 /* iPadCommonEditorCellAction.xib */,
- 3C6831672396094200AD5BD7 /* iPadCommonEditorCellEdit.xib */,
- 3C6831612396094200AD5BD7 /* iPadCommonEditorCellEnum.xib */,
- 3C68315D2396094100AD5BD7 /* iPadCommonEditorCellImg.xib */,
- 3C68315F2396094200AD5BD7 /* iPadCommonEditorCellLabel.xib */,
- 3C6831652396094200AD5BD7 /* iPadCommonEditorCellMAction.xib */,
- 3C6831642396094200AD5BD7 /* iPadCommonEditorCellModel.xib */,
- 3C6831662396094200AD5BD7 /* iPadCommonEditorCellSignature.xib */,
- 3C6831602396094200AD5BD7 /* iPadCommonEditorCellSwitch.xib */,
- 3C6831622396094200AD5BD7 /* iPadCommonEditorCellTextView.xib */,
- 42BEAB2D1FA1D23A0024D647 /* EnumSelectAndSort */,
- );
- name = CommonEditor;
- sourceTree = "<group>";
- };
- 71E9F6BD1F8B53AB0052C78E /* upload */ = {
- isa = PBXGroup;
- children = (
- );
- name = upload;
- sourceTree = "<group>";
- };
- 71F731FC192F395000F2CF76 /* AutoScrollImage */ = {
- isa = PBXGroup;
- children = (
- 7162A5031C586FC100AB630E /* CycleScrollView.h */,
- 7162A5041C586FC100AB630E /* CycleScrollView.m */,
- 7162A5051C586FC100AB630E /* NSTimer+Addition.h */,
- 7162A5061C586FC100AB630E /* NSTimer+Addition.m */,
- 7162A5071C586FC100AB630E /* SliderPage.h */,
- 7162A5081C586FC100AB630E /* SliderPage.m */,
- );
- name = AutoScrollImage;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXNativeTarget section */
- 713F76A51929F4A7006A7305 /* iSales-USAI */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 713F76D81929F4A7006A7305 /* Build configuration list for PBXNativeTarget "iSales-USAI" */;
- buildPhases = (
- 713F76A21929F4A7006A7305 /* Sources */,
- 713F76A31929F4A7006A7305 /* Frameworks */,
- 713F76A41929F4A7006A7305 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "iSales-USAI";
- productName = "iSales-USAI";
- productReference = 713F76A61929F4A7006A7305 /* USAI Mobile.app */;
- productType = "com.apple.product-type.application";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- 713F769E1929F4A7006A7305 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 1200;
- ORGANIZATIONNAME = "United Software Applications, Inc";
- TargetAttributes = {
- 713F76A51929F4A7006A7305 = {
- DevelopmentTeam = HXWLAA5YN5;
- ProvisioningStyle = Automatic;
- };
- };
- };
- buildConfigurationList = 713F76A11929F4A7006A7305 /* Build configuration list for PBXProject "iSales-USAI" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- );
- mainGroup = 713F769D1929F4A7006A7305;
- productRefGroup = 713F76A71929F4A7006A7305 /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 713F76A51929F4A7006A7305 /* iSales-USAI */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXResourcesBuildPhase section */
- 713F76A41929F4A7006A7305 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 7143E217202FD15A00451903 /* category.json in Resources */,
- 7143E22B202FD37500451903 /* orderDetail.json in Resources */,
- 7143E20F202FCEF600451903 /* CUL.storyboard in Resources */,
- 3C68316B2396094200AD5BD7 /* iPadCommonEditorCellSwitch.xib in Resources */,
- 3C6831582396082800AD5BD7 /* ERP_Mobile_Model.storyboard in Resources */,
- 7143E20C202FCEEC00451903 /* OLM.storyboard in Resources */,
- 7143E20D202FCEEC00451903 /* Main.storyboard in Resources */,
- 7142E87E1DC300690077EFA2 /* DejaVuSans-Bold.ttf in Resources */,
- 3C6831682396094200AD5BD7 /* iPadCommonEditorCellImg.xib in Resources */,
- 7142E87F1DC300690077EFA2 /* DejaVuSans.ttf in Resources */,
- 7115D45D1E16317600EF4E4C /* CommonEditor.storyboard in Resources */,
- 7142E87A1DBF577A0077EFA2 /* KALINGA.TTF in Resources */,
- 7142E87B1DBF577A0077EFA2 /* KALINGAB.TTF in Resources */,
- 7143E228202FD2CA00451903 /* portfolio_2x3.json in Resources */,
- 713F76C21929F4A7006A7305 /* Images.xcassets in Resources */,
- 3C6831572396082800AD5BD7 /* ERP_Mobile_Cart.storyboard in Resources */,
- 3C6831592396082800AD5BD7 /* ERP_Mobile_Search.storyboard in Resources */,
- 42E489611EE63F4E007256A0 /* more_color_64.png in Resources */,
- 713F76B41929F4A7006A7305 /* InfoPlist.strings in Resources */,
- 7165662F1EF3ACD900CB897F /* photostack_video.html in Resources */,
- 3C6831712396094200AD5BD7 /* iPadCommonEditorCellSignature.xib in Resources */,
- 3C6831722396094200AD5BD7 /* iPadCommonEditorCellEdit.xib in Resources */,
- 7162A5A01C58733400AB630E /* status_filter_cadedate_open.json in Resources */,
- 71D30A211CFBEDC6006F9477 /* default_appearance.json in Resources */,
- 3C68315A2396082800AD5BD7 /* ERP_Mobile_Contact.storyboard in Resources */,
- 7161FEB71D61B24900157EE1 /* orderinfo.html in Resources */,
- 3C69618423C7156D0075172A /* wkweb.storyboard in Resources */,
- 3C68316D2396094200AD5BD7 /* iPadCommonEditorCellTextView.xib in Resources */,
- 3C68315C2396082800AD5BD7 /* ERP_Mobile_Portfolio.storyboard in Resources */,
- 7143E221202FD28900451903 /* placeOrderTemplate.json in Resources */,
- 7161FEB51D61B24900157EE1 /* creditcardpayment.html in Resources */,
- 42BEAB361FA1D23B0024D647 /* EnumSelectAndSort.storyboard in Resources */,
- 7143E227202FD2CA00451903 /* portfolio_3x2.json in Resources */,
- 7143E21A202FD1DC00451903 /* contactAdvanceSearch.json in Resources */,
- 3C6831702396094200AD5BD7 /* iPadCommonEditorCellMAction.xib in Resources */,
- 3C68315B2396082800AD5BD7 /* ERP_Mobile_Order.storyboard in Resources */,
- 71E5A0101DC99370005BF655 /* config.plist in Resources */,
- 71DF74951C57614C00F2789C /* PhotoBorder.png in Resources */,
- 7143E229202FD2CA00451903 /* so.json in Resources */,
- 3C6831562396082800AD5BD7 /* ERP_Mobile_Discard.storyboard in Resources */,
- 7162A55F1C58724700AB630E /* customer_info_template.json in Resources */,
- 42D3A4A21EFA6D36007A54C1 /* PhotoList.storyboard in Resources */,
- 7141DD3D1C5726B700F7DF59 /* softScanBeep.wav in Resources */,
- 3C68316F2396094200AD5BD7 /* iPadCommonEditorCellModel.xib in Resources */,
- 4295AE1D1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib in Resources */,
- 7141DD341C57269B00F7DF59 /* include in Resources */,
- 7141DD601C5747CE00F7DF59 /* LICENSE in Resources */,
- 3C68314D239607B500AD5BD7 /* ytplayer.html in Resources */,
- 71D01ADD1E08CB1C006620CE /* signature.storyboard in Resources */,
- 7143E22F202FD3CD00451903 /* order_info.html in Resources */,
- 423CC87521D22FDE008BD2C4 /* Launch Screen.storyboard in Resources */,
- 3C68316A2396094200AD5BD7 /* iPadCommonEditorCellLabel.xib in Resources */,
- 7111E5721C76C557004763B3 /* customer_info_template_edit.json in Resources */,
- 7161FEB61D61B24900157EE1 /* normalpayment.html in Resources */,
- 3C68316C2396094200AD5BD7 /* iPadCommonEditorCellEnum.xib in Resources */,
- 7143E214202FCFC000451903 /* debug_category_filter.json in Resources */,
- 7143E220202FD28900451903 /* TearSheet.json in Resources */,
- 71DF74961C57614C00F2789C /* PhotoBorder@2x.png in Resources */,
- 7143E226202FD2CA00451903 /* so_thumb.json in Resources */,
- 7165662E1EF3ACD900CB897F /* photostack_image.html in Resources */,
- 3C6831692396094200AD5BD7 /* CommonEditor.iPad.xib in Resources */,
- 712AFEE51DBDAF0300254965 /* pdfcreator.xcassets in Resources */,
- 7143E21B202FD1DC00451903 /* createContact.json in Resources */,
- 7162A55E1C58724700AB630E /* customer_advanced_search.json in Resources */,
- 3C68316E2396094200AD5BD7 /* iPadCommonEditorCellAction.xib in Resources */,
- 7143E22E202FD3CD00451903 /* more_info.html in Resources */,
- 7143E21D202FD21F00451903 /* editContact.json in Resources */,
- 7162A5A11C58733400AB630E /* offline_status_filter_cadedate.json in Resources */,
- 42B309791E45BA32007AFC62 /* status_filter_cadedate_po.json in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 713F76A21929F4A7006A7305 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 7141DD531C57459B00F7DF59 /* qrspec.c in Sources */,
- 3C69618323C7156D0075172A /* WebViewController.m in Sources */,
- 71BF07081D2F3D2800981938 /* SyncControlPanelViewController.m in Sources */,
- 4289802D1E2492D2005F1BD8 /* PriceSettingViewController.m in Sources */,
- 714036F921646B8C0029B10F /* AppDelegateBase.m in Sources */,
- 71FFBBEA1C60894900D91DC2 /* RANetwork.m in Sources */,
- 428980161E24924D005F1BD8 /* SortItemCell.m in Sources */,
- 7162A59D1C58733400AB630E /* OrderDetailViewController.m in Sources */,
- 7141DD3B1C5726B700F7DF59 /* DeviceInfo.m in Sources */,
- 71DF74671C575E7900F2789C /* EnumSelectorCell.m in Sources */,
- 714037052164707E0029B10F /* MainHeaderViewColorPanel.m in Sources */,
- 712AFEDC1DBA050200254965 /* PDFDrawable.m in Sources */,
- 7195623C1CF57D1800C74A49 /* CategoryHeaderView.m in Sources */,
- 712AFED81DBA050200254965 /* GridDrawable.m in Sources */,
- 424A02D11FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m in Sources */,
- 7162A5C11C5873BB00AB630E /* FilterCellCadedate.m in Sources */,
- 71DF748A1C57608F00F2789C /* RTLabel.m in Sources */,
- 42BEF3581E89FE1200632AB6 /* GTMNSData+zlib.m in Sources */,
- 3C2F99B8237BE1790000808F /* PortfolioListTableViewCell.m in Sources */,
- 71DF742B1C57560600F2789C /* Reachability.m in Sources */,
- 7162A5701C58728D00AB630E /* DetailHeaderCell.m in Sources */,
- 71BBA2271CEAC16000C91DED /* ZipArchive.mm in Sources */,
- 7162A5491C58719D00AB630E /* RATreeView+TableViewDelegate.m in Sources */,
- 428980451E249339005F1BD8 /* JKDotView.m in Sources */,
- 7162A5B41C58738600AB630E /* ScannerControllerView.m in Sources */,
- 7162A5831C5872EF00AB630E /* HomeTableViewCellSlide.m in Sources */,
- 4289800A1E24918F005F1BD8 /* CartUtils.m in Sources */,
- 7162A5851C5872EF00AB630E /* HomeViewController.m in Sources */,
- 7162A5E31C5877CE00AB630E /* WatchListViewController.m in Sources */,
- 715001FF1D114D9100F5927F /* BundleDetailButton.m in Sources */,
- 7162A5421C58719D00AB630E /* RATreeNodeCollectionController.m in Sources */,
- 42BEAB351FA1D23B0024D647 /* EnumModel.m in Sources */,
- 71DF74631C575E7900F2789C /* CommonEditorCellSwitch.m in Sources */,
- 7162A5DE1C5876E300AB630E /* RetrievePassViewController.m in Sources */,
- 428980461E249339005F1BD8 /* JKLockButton.m in Sources */,
- 71C1D8541F456D2700CEA1C9 /* ModelDescriptionController.m in Sources */,
- 7143E212202FCF7600451903 /* CategoryCellNPD.m in Sources */,
- 7141DD541C57459B00F7DF59 /* rscode.c in Sources */,
- 42BEAB371FA1D23B0024D647 /* EnumSelectAndSortCell.m in Sources */,
- 42BEAB381FA1D23B0024D647 /* EnumSelectAndSortViewController.m in Sources */,
- 71DF74621C575E7900F2789C /* CommonEditorCellSignature.m in Sources */,
- 7162A5E01C5876E300AB630E /* SettingViewController.m in Sources */,
- 712AFEDB1DBA050200254965 /* LineDrawable.m in Sources */,
- 71DF748B1C57608F00F2789C /* SimpleGrid.m in Sources */,
- 42BEF3621E8A005800632AB6 /* GoogleAnalyst.m in Sources */,
- 71DF74651C575E7900F2789C /* CommonEditorViewController.m in Sources */,
- 7162A5171C58704600AB630E /* BundleModelViewController.m in Sources */,
- 71DF745B1C575E7900F2789C /* CommonEditorCellAction.m in Sources */,
- 7162A5411C58719D00AB630E /* RATreeNode.m in Sources */,
- 7162A5251C58706C00AB630E /* CategoryCellSmall.m in Sources */,
- 712AFEDA1DBA050200254965 /* ImageDrawable.m in Sources */,
- 428980721E24B1E9005F1BD8 /* Singleton.m in Sources */,
- 71E9F6C21F8B57E40052C78E /* RANetworkTaskDelegate.m in Sources */,
- 712C40B91C731126000E6831 /* ItemNotesViewController.m in Sources */,
- 7162A5AD1C58735900AB630E /* TearSheetParamViewController.m in Sources */,
- 7141DD611C5747CE00F7DF59 /* NSData+Base64.m in Sources */,
- 71BBA2431CEAEF0700C91DED /* zip.c in Sources */,
- 7141DD5F1C5747CE00F7DF59 /* AESCrypt.m in Sources */,
- 7162A5991C58733400AB630E /* OrderDetailHtmlCell.m in Sources */,
- 7162A5091C586FC100AB630E /* CycleScrollView.m in Sources */,
- 715F30BD1DAB37EB00490EED /* OfflineUnlockViewController.m in Sources */,
- 7162A5161C58704600AB630E /* BundleModelCell.m in Sources */,
- 42DC12F11F0CD98E00A4C011 /* OrderDetailPickInfoCell.m in Sources */,
- 7141DD621C5747CE00F7DF59 /* NSData+CommonCrypto.m in Sources */,
- 712AFED71DBA050200254965 /* BasicDrawable.m in Sources */,
- 71DF74891C57608F00F2789C /* RadioButton.m in Sources */,
- 7162A5DF1C5876E300AB630E /* ScannerSettingViewController.m in Sources */,
- 71DF74661C575E7900F2789C /* DatePickerViewController.m in Sources */,
- 71DF74831C57608F00F2789C /* ImageScrollerView.m in Sources */,
- 71DF74871C57608F00F2789C /* NIDropDown.m in Sources */,
- 710274251CC606C4009FD219 /* UserListViewController.m in Sources */,
- 71DF74881C57608F00F2789C /* PulldownMenu.m in Sources */,
- 7141DD551C57459B00F7DF59 /* split.c in Sources */,
- 719562421CF5828200C74A49 /* DefaultTableHeaderView.m in Sources */,
- 716AF8E11D7AA0E0001188E0 /* SelectUploadOrderViewController.m in Sources */,
- 42D3A4A61EFA7346007A54C1 /* VideoPreviewCell.m in Sources */,
- 712AFEDF1DBA050200254965 /* TextDrawable.m in Sources */,
- 7162A5611C58724700AB630E /* CustomerInfoViewController.m in Sources */,
- 71DF74681C575E7900F2789C /* EnumSelectViewController.m in Sources */,
- 428980471E249339005F1BD8 /* JKLockController.m in Sources */,
- 71D99D301CEF02E700CA32DE /* CustomIOSAlertView.m in Sources */,
- 7162A5731C58728D00AB630E /* DetailTopicCell.m in Sources */,
- 71BBA2421CEAEF0700C91DED /* unzip.c in Sources */,
- 7162A5AC1C58735900AB630E /* PortfolioViewController.m in Sources */,
- 71D01B1C1E0A2055006620CE /* TextUtils.m in Sources */,
- 71DF748C1C57608F00F2789C /* StrikethroughLabel.m in Sources */,
- 7162A5981C58733400AB630E /* CreateOrderViewController.m in Sources */,
- 4289809E1E24B526005F1BD8 /* JKTimerManager.m in Sources */,
- 7162A5021C586F5B00AB630E /* AddressEditorViewController.m in Sources */,
- 71131F921CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m in Sources */,
- 7162A55C1C58724700AB630E /* ContactListTableViewCell.m in Sources */,
- 71DF745C1C575E7900F2789C /* CommonEditorCellEdit.m in Sources */,
- 7186C25D1C97A6EE00CB43F4 /* FunctionTestViewController.m in Sources */,
- 71DF74691C575E7900F2789C /* MonthPickerViewController.m in Sources */,
- 71C1D84E1F456CAA00CEA1C9 /* HWWeakTimer.m in Sources */,
- 71D0344F1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m in Sources */,
- 7162A5B51C58738600AB630E /* ScannerViewController.m in Sources */,
- 716AF8E71D7AA398001188E0 /* SelectOrderTableViewCell.m in Sources */,
- 713F76BA1929F4A7006A7305 /* AppDelegate.m in Sources */,
- 71BF06FB1D2F3CAC00981938 /* OLDataProvider.m in Sources */,
- 7162A59B1C58733400AB630E /* OrderDetailModelCell.m in Sources */,
- 7162A5E91C5899F700AB630E /* MainViewController.m in Sources */,
- 71D01B1B1E0A2055006620CE /* PDFUtils.m in Sources */,
- 42E153C81FC57A3D00C36077 /* CommonEditorTableContainerView.m in Sources */,
- 7141DD4F1C57459B00F7DF59 /* mask.c in Sources */,
- 7162A54E1C58722200AB630E /* CreditCardEditorViewController.m in Sources */,
- 7162A5C31C5873BB00AB630E /* ItemSearchFilterViewController.m in Sources */,
- 71D30A2D1CFC0EF8006F9477 /* DefaultImageButton.m in Sources */,
- 7162A5841C5872EF00AB630E /* HomeTableViewCellTopic.m in Sources */,
- 7162A59F1C58733400AB630E /* OrderListViewController.m in Sources */,
- 4254CCDE1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m in Sources */,
- 712AFEE21DBA077F00254965 /* pdfCreator.m in Sources */,
- 71BBA2401CEAEF0700C91DED /* ioapi.c in Sources */,
- 71DF74641C575E7900F2789C /* CommonEditorCellTextView.m in Sources */,
- 7162A5461C58719D00AB630E /* RATreeView+Enums.m in Sources */,
- 7162A54B1C58719D00AB630E /* RAViewController.m in Sources */,
- 71BBA2411CEAEF0700C91DED /* mztools.c in Sources */,
- 7162A59C1C58733400AB630E /* OrderDetailPriceCell.m in Sources */,
- 715850461CF6F0E500856B20 /* DefaultAppearance.m in Sources */,
- 3C7E5A8E237BDB0C006D0105 /* PortfolioListViewController.m in Sources */,
- 71DF74301C57572600F2789C /* RAUtils.m in Sources */,
- 4295AE1C1FE74D46007BE365 /* CommonEditorAutoCompleteView.m in Sources */,
- 7162A5B61C58738600AB630E /* SCShapeView.m in Sources */,
- 71CB70751F99DF02009FDCB7 /* FileCache.m in Sources */,
- 7162A54A1C58719D00AB630E /* RATreeView+UIScrollView.m in Sources */,
- 7162A55D1C58724700AB630E /* ContactListViewController.m in Sources */,
- 7162A5751C58728D00AB630E /* LineView.m in Sources */,
- 712AFEDD1DBA050200254965 /* RAPDFPage.m in Sources */,
- 428980481E249339005F1BD8 /* JKMessageBoxController.m in Sources */,
- 7162A5741C58728D00AB630E /* DetailViewController.m in Sources */,
- 71DF748E1C57608F00F2789C /* UILabel+FontAppearance.m in Sources */,
- 712C40B61C7310F4000E6831 /* CartGeneralNotesViewController.m in Sources */,
- 712AFEDE1DBA050200254965 /* TableDrawable.m in Sources */,
- 7162A5CB1C58761500AB630E /* SignatureViewController.m in Sources */,
- 7162A5DD1C5876E300AB630E /* PopupNavigationController.m in Sources */,
- 7162A59E1C58733400AB630E /* OrderListTableViewCell.m in Sources */,
- 71DF746A1C575E7900F2789C /* SRMonthPicker.m in Sources */,
- 714B1F401C7BF74100539193 /* OrderDetailSignatureCell.m in Sources */,
- 4289802E1E2492D2005F1BD8 /* SetCategoryPriceController.m in Sources */,
- 71DF745D1C575E7900F2789C /* CommonEditorCellEnum.m in Sources */,
- 714036FC21646CFF0029B10F /* UIResponder+Router.m in Sources */,
- 71D01B1A1E0A2055006620CE /* ImageUtils.m in Sources */,
- 7141DD521C57459B00F7DF59 /* qrinput.c in Sources */,
- 7162A5601C58724700AB630E /* CustomerEditViewController.m in Sources */,
- 718B91831C75638100265FFF /* TouchImageView.m in Sources */,
- 7162A5DC1C5876E300AB630E /* LoginViewController.m in Sources */,
- 4289805D1E249375005F1BD8 /* UIColor+JK_HEX.m in Sources */,
- 7162A5811C5872EF00AB630E /* HomeTableViewCellBanner.m in Sources */,
- 7162A5E61C58781000AB630E /* iSalesNavigationController.m in Sources */,
- 7141DD631C5747CE00F7DF59 /* NSString+Base64.m in Sources */,
- 71E9F6BC1F8B52DD0052C78E /* NetworkUtils.m in Sources */,
- 7162A5C41C5873BB00AB630E /* ItemSearchViewController.m in Sources */,
- 7162A5481C58719D00AB630E /* RATreeView+TableViewDataSource.m in Sources */,
- 71CB70781F99E338009FDCB7 /* RAConvertor.m in Sources */,
- 42D3A4A31EFA6D36007A54C1 /* PhotoPreviewCell.m in Sources */,
- 7162A5DB1C5876E300AB630E /* CacheViewController.m in Sources */,
- 7162A5C21C5873BB00AB630E /* FilterCellValue.m in Sources */,
- 71DF74971C57614C00F2789C /* PhotoStackView.m in Sources */,
- 7162A50B1C586FC100AB630E /* SliderPage.m in Sources */,
- 712BABF31C897E3A0007466B /* CategorySearchFilterViewController.m in Sources */,
- 71DF74981C57614C00F2789C /* PhotoStackViewController.m in Sources */,
- 428980151E24924D005F1BD8 /* SortButton.m in Sources */,
- 7162A59A1C58733400AB630E /* OrderDetailInfoCell.m in Sources */,
- 7162A5471C58719D00AB630E /* RATreeView+Private.m in Sources */,
- 428980041E2490C1005F1BD8 /* NotificationNameCenter.m in Sources */,
- 4289802C1E2492D2005F1BD8 /* CategoryPriceViewController.m in Sources */,
- 71DF748D1C57608F00F2789C /* TouchLabel.m in Sources */,
- 3C68314E239607B500AD5BD7 /* RAYTPlayer.m in Sources */,
- 428980171E24924D005F1BD8 /* SortItemViewController.m in Sources */,
- 42D3A4A11EFA6D36007A54C1 /* ContentPreviewController.m in Sources */,
- 7162A5711C58728D00AB630E /* DetailImageCell.m in Sources */,
- 7162A51A1C58704600AB630E /* ModelItemCell.m in Sources */,
- 7141DD511C57459B00F7DF59 /* qrencode.c in Sources */,
- 7162A5451C58719D00AB630E /* RATreeView.m in Sources */,
- 71DF74841C57608F00F2789C /* ImageScrollerViewController.m in Sources */,
- 71DF74861C57608F00F2789C /* ImageViewController.m in Sources */,
- 7162A5821C5872EF00AB630E /* HomeTableViewCellButtonBanner.m in Sources */,
- 713F76B61929F4A7006A7305 /* main.m in Sources */,
- 71BF06FE1D2F3CBA00981938 /* OfflineSettingViewController.m in Sources */,
- 71DF74611C575E7900F2789C /* CommonEditorCellModel.m in Sources */,
- 71DF74341C5757DA00F2789C /* ActiveViewController.m in Sources */,
- 7162A5431C58719D00AB630E /* RATreeNodeInfo.m in Sources */,
- 71FFBBE91C60894900D91DC2 /* iSalesDB.m in Sources */,
- 7162A55B1C58724700AB630E /* ContactAdvanceSearchViewController.m in Sources */,
- 7162A5441C58719D00AB630E /* RATreeNodeInfo+Private.m in Sources */,
- 7162A5C51C5873BB00AB630E /* SearchViewController.m in Sources */,
- 7162A5191C58704600AB630E /* EditModelPriceViewController.m in Sources */,
- 7162A5721C58728D00AB630E /* DetailKVCell.m in Sources */,
- 7141DD501C57459B00F7DF59 /* QRCodeGenerator.m in Sources */,
- 715671331E10A0EF006324A0 /* RectDrawable.m in Sources */,
- 4289802B1E2492D2005F1BD8 /* CategoryPriceCell.m in Sources */,
- 7162A5DA1C5876E300AB630E /* AboutViewController.m in Sources */,
- 7141DD4E1C57459B00F7DF59 /* bitstream.c in Sources */,
- 71DF74851C57608F00F2789C /* ImageUploadViewController.m in Sources */,
- 3C69618223C7156D0075172A /* RAPDFViewController.m in Sources */,
- 7162A5CA1C58761500AB630E /* SignatureView.m in Sources */,
- 7162A5181C58704600AB630E /* CartViewController.m in Sources */,
- 71DF74601C575E7900F2789C /* CommonEditorCellMAction.m in Sources */,
- 42BF67CC1E5179970081F90A /* ERPUtils.m in Sources */,
- 42FD1A031FBD1A3000C5D9A8 /* RAOrderPreviewController.m in Sources */,
- 71DF745F1C575E7900F2789C /* CommonEditorCellLabel.m in Sources */,
- 7141DD3C1C5726B700F7DF59 /* ScanApiHelper.mm in Sources */,
- 7162A5261C58706C00AB630E /* CategoryViewController.m in Sources */,
- 7162A50A1C586FC100AB630E /* NSTimer+Addition.m in Sources */,
- 71DF745E1C575E7900F2789C /* CommonEditorCellImg.m in Sources */,
- 712AFED91DBA050200254965 /* GroupDrawable.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXVariantGroup section */
- 713F76B21929F4A7006A7305 /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 713F76B31929F4A7006A7305 /* en */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
- 7143E208202FCEEB00451903 /* OLM.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- 7143E209202FCEEB00451903 /* Base */,
- );
- name = OLM.storyboard;
- sourceTree = "<group>";
- };
- 7143E20A202FCEEC00451903 /* Main.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- 7143E20B202FCEEC00451903 /* Base */,
- );
- name = Main.storyboard;
- sourceTree = "<group>";
- };
- /* End PBXVariantGroup section */
- /* Begin XCBuildConfiguration section */
- 713F76D61929F4A7006A7305 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/include",
- "$(PROJECT_DIR)/common/qrcode",
- "$(PROJECT_DIR)/common/CommonEditor",
- );
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib";
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = 2;
- };
- name = Debug;
- };
- 713F76D71929F4A7006A7305 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = YES;
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/include",
- "$(PROJECT_DIR)/common/qrcode",
- "$(PROJECT_DIR)/common/CommonEditor",
- );
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib";
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = 2;
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 713F76D91929F4A7006A7305 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CURRENT_PROJECT_VERSION = 200119;
- DEVELOPMENT_TEAM = HXWLAA5YN5;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/GoogleAnalytics/FirebaseAnalytics/Frameworks",
- "$(PROJECT_DIR)/GoogleAnalytics/FirebaseCore/Frameworks",
- "$(PROJECT_DIR)/GoogleAnalytics/FirebaseInstanceID/Frameworks",
- "$(PROJECT_DIR)/GoogleAnalytics/Google/Frameworks",
- );
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "iSales-USAI/iSales-USAI-Prefix.pch";
- INFOPLIST_FILE = "$(SRCROOT)/iSales-USAI/iSales-USAI-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LIBRARY_SEARCH_PATHS = (
- "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib",
- "$(PROJECT_DIR)/GoogleAnalytics/GoogleAnalytics/Libraries",
- );
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-framework",
- "\"CoreGraphics\"",
- "-framework",
- "\"MobileCoreServices\"",
- "-framework",
- "\"Security\"",
- "-framework",
- "\"SystemConfiguration\"",
- "-v",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.USAI-Mobile";
- PRODUCT_NAME = "USAI Mobile";
- PROVISIONING_PROFILE = "";
- WRAPPER_EXTENSION = app;
- };
- name = Debug;
- };
- 713F76DA1929F4A7006A7305 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CURRENT_PROJECT_VERSION = 200119;
- DEVELOPMENT_TEAM = HXWLAA5YN5;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/GoogleAnalytics/FirebaseAnalytics/Frameworks",
- "$(PROJECT_DIR)/GoogleAnalytics/FirebaseCore/Frameworks",
- "$(PROJECT_DIR)/GoogleAnalytics/FirebaseInstanceID/Frameworks",
- "$(PROJECT_DIR)/GoogleAnalytics/Google/Frameworks",
- );
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "iSales-USAI/iSales-USAI-Prefix.pch";
- INFOPLIST_FILE = "$(SRCROOT)/iSales-USAI/iSales-USAI-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LIBRARY_SEARCH_PATHS = (
- "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib",
- "$(PROJECT_DIR)/GoogleAnalytics/GoogleAnalytics/Libraries",
- );
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-framework",
- "\"CoreGraphics\"",
- "-framework",
- "\"MobileCoreServices\"",
- "-framework",
- "\"Security\"",
- "-framework",
- "\"SystemConfiguration\"",
- "-v",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.USAI-Mobile";
- PRODUCT_NAME = "USAI Mobile";
- PROVISIONING_PROFILE = "";
- WRAPPER_EXTENSION = app;
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 713F76A11929F4A7006A7305 /* Build configuration list for PBXProject "iSales-USAI" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 713F76D61929F4A7006A7305 /* Debug */,
- 713F76D71929F4A7006A7305 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 713F76D81929F4A7006A7305 /* Build configuration list for PBXNativeTarget "iSales-USAI" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 713F76D91929F4A7006A7305 /* Debug */,
- 713F76DA1929F4A7006A7305 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- /* End XCConfigurationList section */
- };
- rootObject = 713F769E1929F4A7006A7305 /* Project object */;
- }
|