project.pbxproj 196 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 54;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 3C02E836264E610E008DA531 /* enum_cadedate.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C02E835264E610E008DA531 /* enum_cadedate.json */; };
  10. 3C02E83826539642008DA531 /* wkweb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C02E83726539642008DA531 /* wkweb.storyboard */; };
  11. 3C02E83B2653B488008DA531 /* EnumSelectOnlineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C02E8392653B487008DA531 /* EnumSelectOnlineViewController.m */; };
  12. 3C0CB336255E56BF00718A03 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB335255E56BF00718A03 /* AppDelegate.m */; };
  13. 3C0CB339255E56BF00718A03 /* SceneDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB338255E56BF00718A03 /* SceneDelegate.m */; };
  14. 3C0CB33C255E56BF00718A03 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB33B255E56BF00718A03 /* ViewController.m */; };
  15. 3C0CB33F255E56BF00718A03 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C0CB33D255E56BF00718A03 /* Main.storyboard */; };
  16. 3C0CB341255E56BF00718A03 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3C0CB340255E56BF00718A03 /* Assets.xcassets */; };
  17. 3C0CB344255E56BF00718A03 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C0CB342255E56BF00718A03 /* LaunchScreen.storyboard */; };
  18. 3C0CB347255E56BF00718A03 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB346255E56BF00718A03 /* main.m */; };
  19. 3C0CB351255E56C000718A03 /* RA_TradeFilingTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB350255E56C000718A03 /* RA_TradeFilingTests.m */; };
  20. 3C0CB35C255E56C000718A03 /* RA_TradeFilingUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB35B255E56C000718A03 /* RA_TradeFilingUITests.m */; };
  21. 3C0CB375255E599C00718A03 /* RootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB374255E599C00718A03 /* RootViewController.m */; };
  22. 3C0CB37B255E5BEA00718A03 /* TFRootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB37A255E5BEA00718A03 /* TFRootViewController.m */; };
  23. 3C0CB387255E613200718A03 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB385255E613200718A03 /* LoginViewController.m */; };
  24. 3C0CB38E255E618800718A03 /* MylistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB38D255E618800718A03 /* MylistViewController.m */; };
  25. 3C0CB398255E81BD00718A03 /* HomeHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C0CB396255E81BD00718A03 /* HomeHeader.xib */; };
  26. 3C0CB399255E81BD00718A03 /* Home.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C0CB397255E81BD00718A03 /* Home.storyboard */; };
  27. 3C0CB3A3255E81CC00718A03 /* RAHomeViewController+HomeTableDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB39F255E81CC00718A03 /* RAHomeViewController+HomeTableDelegate.m */; };
  28. 3C0CB3A4255E81CC00718A03 /* RAHomeViewController+HomeTableDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB3A1255E81CC00718A03 /* RAHomeViewController+HomeTableDataSource.m */; };
  29. 3C0CB3A5255E81CC00718A03 /* RAHomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB3A2255E81CC00718A03 /* RAHomeViewController.m */; };
  30. 3C0CB3AA255E81F300718A03 /* Search.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C0CB3A9255E81F300718A03 /* Search.storyboard */; };
  31. 3C0CB3AF255E821500718A03 /* My.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C0CB3AE255E821500718A03 /* My.storyboard */; };
  32. 3C0CB3B4255E825B00718A03 /* Login.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C0CB3B3255E825B00718A03 /* Login.storyboard */; };
  33. 3C0CB3BA255E829000718A03 /* SearchlistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB3B9255E829000718A03 /* SearchlistViewController.m */; };
  34. 3C0CB3C0256253D900718A03 /* RABaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB3BF256253D900718A03 /* RABaseViewController.m */; };
  35. 3C0CB3CB2562739F00718A03 /* StaticModelistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB3C62562739F00718A03 /* StaticModelistViewController.m */; };
  36. 3C0CB3CC2562739F00718A03 /* StaticModeTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C0CB3C82562739F00718A03 /* StaticModeTableViewCell.xib */; };
  37. 3C0CB3CD2562739F00718A03 /* StaticModeTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CB3C92562739F00718A03 /* StaticModeTableViewCell.m */; };
  38. 3C0CB3CE2562739F00718A03 /* StaticModelistViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C0CB3CA2562739F00718A03 /* StaticModelistViewController.xib */; };
  39. 3C2431522589EF7400555555 /* searchresult_isf.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C2431512589EF7400555555 /* searchresult_isf.json */; };
  40. 3C2431572589F26100555555 /* searchresult_acem1.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C2431562589F26100555555 /* searchresult_acem1.json */; };
  41. 3C24316D258AF60000555555 /* ResultCustomerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C24316B258AF60000555555 /* ResultCustomerCell.m */; };
  42. 3C24316E258AF60000555555 /* ResultCustomerCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C24316C258AF60000555555 /* ResultCustomerCell.xib */; };
  43. 3C243174258AFBE900555555 /* ResultCustomerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C243173258AFBE900555555 /* ResultCustomerModel.m */; };
  44. 3C24317C258B00A800555555 /* searchresult_customer.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C24317B258B00A800555555 /* searchresult_customer.json */; };
  45. 3C243181258B016C00555555 /* search_customer.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C243180258B016C00555555 /* search_customer.json */; };
  46. 3C243186258B019B00555555 /* result_customer.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C243185258B019B00555555 /* result_customer.json */; };
  47. 3C2431A2258B3C7A00555555 /* ResultISFCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2431A0258B3C7A00555555 /* ResultISFCell.m */; };
  48. 3C2431A3258B3C7A00555555 /* ResultISFCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2431A1258B3C7A00555555 /* ResultISFCell.xib */; };
  49. 3C2431B2258B48AA00555555 /* ResultISFModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2431B1258B48AA00555555 /* ResultISFModel.m */; };
  50. 3C2C26C8263555D4009460F5 /* CommonEditorAutoCompleteView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C26C5263555D4009460F5 /* CommonEditorAutoCompleteView.xib */; };
  51. 3C2C26C9263555D4009460F5 /* CommonEditorAutoCompleteView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C26C7263555D4009460F5 /* CommonEditorAutoCompleteView.m */; };
  52. 3C2C26CF263556C1009460F5 /* CommonEditorTableContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C26CD263556C1009460F5 /* CommonEditorTableContainerView.m */; };
  53. 3C2C26D626355728009460F5 /* Phone_Banner_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C26D426355728009460F5 /* Phone_Banner_Cell.xib */; };
  54. 3C2C26D726355728009460F5 /* Phone_Banner_Item_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C26D526355728009460F5 /* Phone_Banner_Item_Cell.xib */; };
  55. 3C2C26DF2635573B009460F5 /* CommonEditorBannerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C26DC2635573B009460F5 /* CommonEditorBannerCell.m */; };
  56. 3C2C26E02635573B009460F5 /* CommonEditorBannerItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C26DE2635573B009460F5 /* CommonEditorBannerItemCell.m */; };
  57. 3C2C26E62635577F009460F5 /* Phone_Action_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C26E52635577F009460F5 /* Phone_Action_Cell.xib */; };
  58. 3C2C26EC2635578F009460F5 /* CommonEditorCellAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C26EB2635578F009460F5 /* CommonEditorCellAction.m */; };
  59. 3C2C26F3263557B8009460F5 /* CommonEditorCellEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C26F1263557B8009460F5 /* CommonEditorCellEdit.m */; };
  60. 3C2C26F8263557C5009460F5 /* Phone_Edit_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C26F7263557C5009460F5 /* Phone_Edit_Cell.xib */; };
  61. 3C2C26FE263557E8009460F5 /* Phone_Enum_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C26FD263557E8009460F5 /* Phone_Enum_Cell.xib */; };
  62. 3C2C2704263557F8009460F5 /* CommonEditorCellEnum.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C2702263557F8009460F5 /* CommonEditorCellEnum.m */; };
  63. 3C2C270B26355810009460F5 /* CommonEditorCellLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C270926355810009460F5 /* CommonEditorCellLabel.m */; };
  64. 3C2C27102635581E009460F5 /* Phone_Label_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C270F2635581E009460F5 /* Phone_Label_Cell.xib */; };
  65. 3C2C271626355893009460F5 /* Phone_MAction_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C271526355893009460F5 /* Phone_MAction_Cell.xib */; };
  66. 3C2C271C263558A0009460F5 /* CommonEditorCellMAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C271A263558A0009460F5 /* CommonEditorCellMAction.m */; };
  67. 3C2C2723263558CE009460F5 /* CommonEditorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C2722263558CE009460F5 /* CommonEditorCellModel.m */; };
  68. 3C2C2728263558DB009460F5 /* Phone_Model_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C2727263558DA009460F5 /* Phone_Model_Cell.xib */; };
  69. 3C2C272E263558FA009460F5 /* Phone_Signature_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C272D263558FA009460F5 /* Phone_Signature_Cell.xib */; };
  70. 3C2C273426355918009460F5 /* CommonEditorCellSignature.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C273226355918009460F5 /* CommonEditorCellSignature.m */; };
  71. 3C2C273B2635594A009460F5 /* CommonEditorCellSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C273A2635594A009460F5 /* CommonEditorCellSwitch.m */; };
  72. 3C2C27402635595E009460F5 /* Phone_Switch_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C273F2635595E009460F5 /* Phone_Switch_Cell.xib */; };
  73. 3C2C274726355996009460F5 /* CommonEditorCellTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C274626355996009460F5 /* CommonEditorCellTextView.m */; };
  74. 3C2C274C263559A4009460F5 /* Phone_TextView_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C274B263559A4009460F5 /* Phone_TextView_Cell.xib */; };
  75. 3C2C2752263559C1009460F5 /* Phone_Range_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C2751263559C1009460F5 /* Phone_Range_Cell.xib */; };
  76. 3C2C2758263559D6009460F5 /* CommonEditorRangeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C2757263559D6009460F5 /* CommonEditorRangeCell.m */; };
  77. 3C2C275F26355A09009460F5 /* CommonEditorWebCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C275D26355A08009460F5 /* CommonEditorWebCell.m */; };
  78. 3C2C276426355A17009460F5 /* Phone_Web_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C276326355A17009460F5 /* Phone_Web_Cell.xib */; };
  79. 3C2C276C26355A50009460F5 /* RAYTPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C276A26355A50009460F5 /* RAYTPlayer.m */; };
  80. 3C2C276D26355A50009460F5 /* ytplayer.html in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C276B26355A50009460F5 /* ytplayer.html */; };
  81. 3C2C277326355AAF009460F5 /* FileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C277226355AAF009460F5 /* FileCache.m */; };
  82. 3C2C277F2636623F009460F5 /* CommonEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C277E2636623F009460F5 /* CommonEditorViewController.m */; };
  83. 3C2C27892636628D009460F5 /* signature.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C27862636628D009460F5 /* signature.storyboard */; };
  84. 3C2C278A2636628D009460F5 /* SignatureView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27872636628D009460F5 /* SignatureView.m */; };
  85. 3C2C278B2636628D009460F5 /* SignatureViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27882636628D009460F5 /* SignatureViewController.m */; };
  86. 3C2C279026366294009460F5 /* Signature.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C278F26366294009460F5 /* Signature.xcassets */; };
  87. 3C2C2798263663B1009460F5 /* TouchImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C2794263663B1009460F5 /* TouchImageView.m */; };
  88. 3C2C2799263663B1009460F5 /* StrikethroughLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C2795263663B1009460F5 /* StrikethroughLabel.m */; };
  89. 3C2C279F263663FA009460F5 /* CustomIOSAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C279D263663FA009460F5 /* CustomIOSAlertView.m */; };
  90. 3C2C27A726366464009460F5 /* DefaultAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27A426366464009460F5 /* DefaultAppearance.m */; };
  91. 3C2C27A826366464009460F5 /* default_appearance.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C27A626366464009460F5 /* default_appearance.json */; };
  92. 3C2C27B02636652F009460F5 /* EnumSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27AD2636652F009460F5 /* EnumSelectorCell.m */; };
  93. 3C2C27B12636652F009460F5 /* EnumSelectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27AF2636652F009460F5 /* EnumSelectViewController.m */; };
  94. 3C2C27BC2636657C009460F5 /* EnumSelectAndSort.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C27B82636657C009460F5 /* EnumSelectAndSort.storyboard */; };
  95. 3C2C27BD2636657C009460F5 /* EnumSelectAndSortViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27B92636657C009460F5 /* EnumSelectAndSortViewController.m */; };
  96. 3C2C27BE2636657C009460F5 /* EnumModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27BA2636657C009460F5 /* EnumModel.m */; };
  97. 3C2C27BF2636657C009460F5 /* EnumSelectAndSortCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27BB2636657C009460F5 /* EnumSelectAndSortCell.m */; };
  98. 3C2C27C5263665C4009460F5 /* RTLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27C4263665C4009460F5 /* RTLabel.m */; };
  99. 3C2C27D9263666DF009460F5 /* ContentPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27D7263666DF009460F5 /* ContentPreviewController.m */; };
  100. 3C2C27DE263666E8009460F5 /* PhotoList.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C27DD263666E8009460F5 /* PhotoList.storyboard */; };
  101. 3C2C27E6263666F2009460F5 /* PhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27E2263666F2009460F5 /* PhotoPreviewCell.m */; };
  102. 3C2C27E7263666F2009460F5 /* VideoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27E4263666F2009460F5 /* VideoPreviewCell.m */; };
  103. 3C2C27F026366B3C009460F5 /* DefaultTableHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C27EF26366B3C009460F5 /* DefaultTableHeaderView.m */; };
  104. 3C2C27FF2636B8C4009460F5 /* TFEditor.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C2C27FE2636B8C4009460F5 /* TFEditor.storyboard */; };
  105. 3C452F3425B9766C0035AF5F /* HomeDashISFCellP.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F3225B9766C0035AF5F /* HomeDashISFCellP.m */; };
  106. 3C452F3525B9766C0035AF5F /* HomeDashISFCellP.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C452F3325B9766C0035AF5F /* HomeDashISFCellP.xib */; };
  107. 3C452F3B25B9795C0035AF5F /* HomeDashISFModelP.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F3A25B9795C0035AF5F /* HomeDashISFModelP.m */; };
  108. 3C452F4425BA73F70035AF5F /* HomeDashACEM1ModelP.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F4325BA73F70035AF5F /* HomeDashACEM1ModelP.m */; };
  109. 3C452F4B25BA74610035AF5F /* HomeDashACEM1CellP.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F4925BA74610035AF5F /* HomeDashACEM1CellP.m */; };
  110. 3C452F4C25BA74610035AF5F /* HomeDashACEM1CellP.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C452F4A25BA74610035AF5F /* HomeDashACEM1CellP.xib */; };
  111. 3C452F5F25BAA5570035AF5F /* HomeDashACICellP.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F5D25BAA5570035AF5F /* HomeDashACICellP.m */; };
  112. 3C452F6025BAA5570035AF5F /* HomeDashACICellP.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C452F5E25BAA5570035AF5F /* HomeDashACICellP.xib */; };
  113. 3C452F6925BAA5790035AF5F /* HomeDashACIModelP.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F6825BAA5790035AF5F /* HomeDashACIModelP.m */; };
  114. 3C452F6F25BABA2B0035AF5F /* HomeDasheManifestModelP.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F6E25BABA2B0035AF5F /* HomeDasheManifestModelP.m */; };
  115. 3C452F7625BABA740035AF5F /* HomeDasheManifestCellP.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F7425BABA740035AF5F /* HomeDasheManifestCellP.m */; };
  116. 3C452F7725BABA740035AF5F /* HomeDasheManifestCellP.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C452F7525BABA740035AF5F /* HomeDasheManifestCellP.xib */; };
  117. 3C452F7E25BE73190035AF5F /* HomeDashISFCellE.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F7C25BE73190035AF5F /* HomeDashISFCellE.m */; };
  118. 3C452F7F25BE73190035AF5F /* HomeDashISFCellE.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C452F7D25BE73190035AF5F /* HomeDashISFCellE.xib */; };
  119. 3C452F8525BE733A0035AF5F /* HomeDashISFModelE.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F8425BE733A0035AF5F /* HomeDashISFModelE.m */; };
  120. 3C452F8E25BE971C0035AF5F /* HomeDashACEM1ModelE.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F8D25BE971C0035AF5F /* HomeDashACEM1ModelE.m */; };
  121. 3C452F9825BE97430035AF5F /* HomeDashACEM1CellE.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F9625BE97430035AF5F /* HomeDashACEM1CellE.m */; };
  122. 3C452F9925BE97430035AF5F /* HomeDashACEM1CellE.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C452F9725BE97430035AF5F /* HomeDashACEM1CellE.xib */; };
  123. 3C452FA025BE98270035AF5F /* HomeDashACICellE.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452F9E25BE98270035AF5F /* HomeDashACICellE.m */; };
  124. 3C452FA125BE98270035AF5F /* HomeDashACICellE.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C452F9F25BE98270035AF5F /* HomeDashACICellE.xib */; };
  125. 3C452FA825BE98410035AF5F /* HomeDasheManifestCellE.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452FA625BE98410035AF5F /* HomeDasheManifestCellE.m */; };
  126. 3C452FA925BE98410035AF5F /* HomeDasheManifestCellE.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C452FA725BE98410035AF5F /* HomeDasheManifestCellE.xib */; };
  127. 3C452FAF25BE985C0035AF5F /* HomeDashACIModelE.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452FAE25BE985C0035AF5F /* HomeDashACIModelE.m */; };
  128. 3C452FB525BE987C0035AF5F /* HomeDasheManifestModelE.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C452FB425BE987C0035AF5F /* HomeDasheManifestModelE.m */; };
  129. 3C514970273E070300F78617 /* CommonEditorCellEditor.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51496E273E070300F78617 /* CommonEditorCellEditor.m */; };
  130. 3C514971273E070300F78617 /* Phone_Editor_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C51496F273E070300F78617 /* Phone_Editor_Cell.xib */; };
  131. 3C5F8B482564F8D300CFD26A /* JLRefreshBasis.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8B472564F8D300CFD26A /* JLRefreshBasis.m */; };
  132. 3C5F8B552564FDD100CFD26A /* ResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8B522564FDD100CFD26A /* ResultViewController.m */; };
  133. 3C5F8B562564FDD100CFD26A /* Result.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8B532564FDD100CFD26A /* Result.storyboard */; };
  134. 3C5F8B8E2564FFC700CFD26A /* ResultViewController+QuickLook.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8B8D2564FFC700CFD26A /* ResultViewController+QuickLook.m */; };
  135. 3C5F8B982565001700CFD26A /* ResultMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8B962565001700CFD26A /* ResultMenuItem.m */; };
  136. 3C5F8B9E2565003600CFD26A /* ResultPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8B9D2565003600CFD26A /* ResultPresenter.m */; };
  137. 3C5F8BB2256500F900CFD26A /* NSData+RAImageType.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8BB0256500F900CFD26A /* NSData+RAImageType.m */; };
  138. 3C5F8BB82565013B00CFD26A /* ResultBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8BB62565013B00CFD26A /* ResultBaseModel.m */; };
  139. 3C5F8BC12565017E00CFD26A /* ResultACIModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8BBF2565017E00CFD26A /* ResultACIModel.m */; };
  140. 3C5F8BC8256503ED00CFD26A /* ResultAdditionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8BC6256503ED00CFD26A /* ResultAdditionView.m */; };
  141. 3C5F8BC9256503ED00CFD26A /* ApexResultAdditionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8BC7256503ED00CFD26A /* ApexResultAdditionView.xib */; };
  142. 3C5F8BCF2565042F00CFD26A /* UIView+RAConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8BCD2565042E00CFD26A /* UIView+RAConstraint.m */; };
  143. 3C5F8BD52565049400CFD26A /* JLRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8BD32565049300CFD26A /* JLRefreshHeader.m */; };
  144. 3C5F8BDB2565053700CFD26A /* SavedDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8BDA2565053700CFD26A /* SavedDetailViewController.m */; };
  145. 3C5F8BE12565055400CFD26A /* SavedSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8BE02565055300CFD26A /* SavedSearchViewController.m */; };
  146. 3C5F8BF4256505FC00CFD26A /* CellItemHistory.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8BF3256505FC00CFD26A /* CellItemHistory.m */; };
  147. 3C5F8C00256506BA00CFD26A /* MyQLPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8BFF256506BA00CFD26A /* MyQLPreviewController.m */; };
  148. 3C5F8C06256506DC00CFD26A /* CustomizeFieldViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C05256506DC00CFD26A /* CustomizeFieldViewController.m */; };
  149. 3C5F8C0F256508D400CFD26A /* SearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C0E256508D400CFD26A /* SearchViewController.m */; };
  150. 3C5F8C152565092C00CFD26A /* MyAutocompleteView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C142565092C00CFD26A /* MyAutocompleteView.m */; };
  151. 3C5F8C1B2565095900CFD26A /* MyAutocompleteItemsSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C192565095900CFD26A /* MyAutocompleteItemsSource.m */; };
  152. 3C5F8C212565097600CFD26A /* MySuggestion.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C202565097600CFD26A /* MySuggestion.m */; };
  153. 3C5F8C272565099300CFD26A /* MyAutocompletionCellFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C262565099300CFD26A /* MyAutocompletionCellFactory.m */; };
  154. 3C5F8C2D256509AA00CFD26A /* SearchTableAdapterJson.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C2C256509AA00CFD26A /* SearchTableAdapterJson.m */; };
  155. 3C5F8C3B25650A8500CFD26A /* TableCellEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C3625650A8500CFD26A /* TableCellEdit.m */; };
  156. 3C5F8C3C25650A8500CFD26A /* TableCellBool.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C3825650A8500CFD26A /* TableCellBool.m */; };
  157. 3C5F8C3D25650A8500CFD26A /* TableCellDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C3A25650A8500CFD26A /* TableCellDate.m */; };
  158. 3C5F8C4425650B0E00CFD26A /* ResultACEM1Cell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C4125650B0E00CFD26A /* ResultACEM1Cell.m */; };
  159. 3C5F8C4525650B0E00CFD26A /* ResultACEM1Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8C4225650B0E00CFD26A /* ResultACEM1Cell.xib */; };
  160. 3C5F8C5325650B9700CFD26A /* JLCustomerNavigationAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C5225650B9700CFD26A /* JLCustomerNavigationAlertController.m */; };
  161. 3C5F8C5925650BD800CFD26A /* LPShareActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C5725650BD800CFD26A /* LPShareActivity.m */; };
  162. 3C5F8C5F25650C0F00CFD26A /* ResultAddition.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C5D25650C0F00CFD26A /* ResultAddition.m */; };
  163. 3C5F8C6525650C3F00CFD26A /* RAConvertor.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C6425650C3F00CFD26A /* RAConvertor.m */; };
  164. 3C5F8C6E2565196A00CFD26A /* JLPresentationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C6C2565196A00CFD26A /* JLPresentationController.m */; };
  165. 3C5F8C75256660E900CFD26A /* OnlineDataProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C74256660E900CFD26A /* OnlineDataProvider.m */; };
  166. 3C5F8C7B2566610A00CFD26A /* OfflineDataProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C7A2566610A00CFD26A /* OfflineDataProvider.m */; };
  167. 3C5F8C87256B935E00CFD26A /* my.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8C86256B935E00CFD26A /* my.json */; };
  168. 3C5F8C8D256CFF6F00CFD26A /* CollectionViewButtonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C8C256CFF6F00CFD26A /* CollectionViewButtonCell.m */; };
  169. 3C5F8C93256D079200CFD26A /* ButtonCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8C92256D079200CFD26A /* ButtonCollectionView.m */; };
  170. 3C5F8C9D256E3A5900CFD26A /* CollectionViewButtonCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8C9C256E3A5900CFD26A /* CollectionViewButtonCell.xib */; };
  171. 3C5F8CA3256F847400CFD26A /* FunctionSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8CA2256F847300CFD26A /* FunctionSettingViewController.m */; };
  172. 3C5F8CA8256F919900CFD26A /* FunctionPanel.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8CA7256F919900CFD26A /* FunctionPanel.json */; };
  173. 3C5F8CB32574C92300CFD26A /* home.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8CB22574C92200CFD26A /* home.json */; };
  174. 3C5F8CC22576220400CFD26A /* DashboardModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8CC12576220400CFD26A /* DashboardModel.m */; };
  175. 3C5F8CCE25777A2100CFD26A /* search_acem1.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8CCD25777A2100CFD26A /* search_acem1.json */; };
  176. 3C5F8CD725777E7300CFD26A /* Fields.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8CD625777E7300CFD26A /* Fields.storyboard */; };
  177. 3C5F8CE42578807100CFD26A /* search_aci.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8CE12578807100CFD26A /* search_aci.json */; };
  178. 3C5F8CE52578807100CFD26A /* search_isf.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8CE22578807100CFD26A /* search_isf.json */; };
  179. 3C5F8CE62578807100CFD26A /* search_emanifest.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8CE32578807100CFD26A /* search_emanifest.json */; };
  180. 3C5F8CEF257A1DC900CFD26A /* ResultViewController+TableDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8CED257A1DC900CFD26A /* ResultViewController+TableDataSource.m */; };
  181. 3C5F8CF5257A1EE100CFD26A /* ResultViewController+TableDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8CF4257A1EE100CFD26A /* ResultViewController+TableDelegate.m */; };
  182. 3C5F8D13257A265600CFD26A /* result_acem1.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8D0F257A265500CFD26A /* result_acem1.json */; };
  183. 3C5F8D14257A265600CFD26A /* result_emanifest.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8D10257A265500CFD26A /* result_emanifest.json */; };
  184. 3C5F8D15257A265600CFD26A /* result_isf.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8D11257A265500CFD26A /* result_isf.json */; };
  185. 3C5F8D16257A265600CFD26A /* result_aci.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8D12257A265500CFD26A /* result_aci.json */; };
  186. 3C5F8D1B257A2BCB00CFD26A /* searchresult_aci.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8D1A257A2BCB00CFD26A /* searchresult_aci.json */; };
  187. 3C5F8D2D257E2A6A00CFD26A /* DetailTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D2B257E2A6A00CFD26A /* DetailTabBarController.m */; };
  188. 3C5F8D33257E2A8C00CFD26A /* DetailPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D31257E2A8C00CFD26A /* DetailPageViewController.m */; };
  189. 3C5F8D39257E2AEF00CFD26A /* DetailCellKVNew.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D38257E2AEF00CFD26A /* DetailCellKVNew.m */; };
  190. 3C5F8D3F257E2B3600CFD26A /* DetailCellList.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D3D257E2B3600CFD26A /* DetailCellList.m */; };
  191. 3C5F8D45257E2B4500CFD26A /* DetailCellWeb.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D44257E2B4500CFD26A /* DetailCellWeb.m */; };
  192. 3C5F8D4B257E2D8700CFD26A /* DetailContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D4A257E2D8700CFD26A /* DetailContent.m */; };
  193. 3C5F8D54257F53F300CFD26A /* UIView+Toast.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D53257F53F300CFD26A /* UIView+Toast.m */; };
  194. 3C5F8D5D257F541400CFD26A /* UIView+JLExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D5C257F541300CFD26A /* UIView+JLExtension.m */; };
  195. 3C5F8D66257F542500CFD26A /* UIScrollView+JLRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D65257F542500CFD26A /* UIScrollView+JLRefresh.m */; };
  196. 3C5F8D6D257F546B00CFD26A /* DetailShareItemProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D6B257F546B00CFD26A /* DetailShareItemProvider.m */; };
  197. 3C5F8D73257F54FB00CFD26A /* MDHTMLLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D72257F54FB00CFD26A /* MDHTMLLabel.m */; };
  198. 3C5F8D79257F550D00CFD26A /* LineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D78257F550D00CFD26A /* LineView.m */; };
  199. 3C5F8D7F257F55BD00CFD26A /* TabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D7D257F55BD00CFD26A /* TabBarController.m */; };
  200. 3C5F8D84257F5CA800CFD26A /* Detail.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8D83257F5CA800CFD26A /* Detail.storyboard */; };
  201. 3C5F8D89258079BA00CFD26A /* login.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8D88258079B900CFD26A /* login.json */; };
  202. 3C5F8D8F2580B4E500CFD26A /* CompanySelectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D8E2580B4E500CFD26A /* CompanySelectViewController.m */; };
  203. 3C5F8D962583500A00CFD26A /* ResultACICell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8D942583500A00CFD26A /* ResultACICell.m */; };
  204. 3C5F8D972583500A00CFD26A /* ResultACICell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8D952583500A00CFD26A /* ResultACICell.xib */; };
  205. 3C5F8DBA2583655200CFD26A /* searchresult_emanifest.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5F8DB92583655200CFD26A /* searchresult_emanifest.json */; };
  206. 3C5F8DC325836A9F00CFD26A /* ResultACEM1Model.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5F8DC225836A9F00CFD26A /* ResultACEM1Model.m */; };
  207. 3C5FBF362636B9CE00130F65 /* TFEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5FBF352636B9CE00130F65 /* TFEditorViewController.m */; };
  208. 3C5FBF3B2637E83300130F65 /* edit_isf.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5FBF3A2637E83300130F65 /* edit_isf.json */; };
  209. 3C5FBF40263A4CF100130F65 /* CommonEditor.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C5FBF3F263A4CF100130F65 /* CommonEditor.storyboard */; };
  210. 3C5FBF57263AA5D800130F65 /* MonthPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5FBF54263AA5D800130F65 /* MonthPickerViewController.m */; };
  211. 3C5FBF58263AA5D800130F65 /* DatePickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5FBF55263AA5D800130F65 /* DatePickerViewController.m */; };
  212. 3C5FBF63263BAD3A00130F65 /* edit_party.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C5FBF62263BAD3A00130F65 /* edit_party.json */; };
  213. 3C70C0B12A317F15008C2400 /* PopWaitAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C70C0AE2A317F15008C2400 /* PopWaitAlert.m */; };
  214. 3C70C0B22A317F15008C2400 /* MessageBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C70C0AF2A317F15008C2400 /* MessageBox.m */; };
  215. 3C70C0B32A317F15008C2400 /* RAPopviewContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C70C0B02A317F15008C2400 /* RAPopviewContainer.m */; };
  216. 3C7670342595932D00588DB5 /* TFNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7670332595932D00588DB5 /* TFNavigationController.m */; };
  217. 3C7670392595BE2A00588DB5 /* detail.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C7670382595BE2900588DB5 /* detail.json */; };
  218. 3C7670482599B1E000588DB5 /* ResulteManifestModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7670472599B1E000588DB5 /* ResulteManifestModel.m */; };
  219. 3C7670512599B29D00588DB5 /* ResulteManifestCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7670502599B29D00588DB5 /* ResulteManifestCell.m */; };
  220. 3C7670562599B2C700588DB5 /* ResulteManifestCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C7670552599B2C700588DB5 /* ResulteManifestCell.xib */; };
  221. 3C767066259B200F00588DB5 /* HomeDashEmptyCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C767064259B200F00588DB5 /* HomeDashEmptyCell.m */; };
  222. 3C767067259B200F00588DB5 /* HomeDashEmptyCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C767065259B200F00588DB5 /* HomeDashEmptyCell.xib */; };
  223. 3C76706F25A2F4F000588DB5 /* log_isf.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C76706E25A2F4F000588DB5 /* log_isf.json */; };
  224. 3C76707425A2F60C00588DB5 /* container.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C76707325A2F60C00588DB5 /* container.json */; };
  225. 3C76707A25A453AD00588DB5 /* DetailCellContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C76707925A453AD00588DB5 /* DetailCellContainer.m */; };
  226. 3C76708825A6DD7400588DB5 /* ChangePasswordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C76708625A6DD7400588DB5 /* ChangePasswordViewController.m */; };
  227. 3C76709625A84C0C00588DB5 /* log_acem1.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C76709525A84C0C00588DB5 /* log_acem1.json */; };
  228. 3C76709E25A84C1E00588DB5 /* log_aci.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C76709D25A84C1E00588DB5 /* log_aci.json */; };
  229. 3C7670A325A84C3600588DB5 /* log_emanifest.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C7670A225A84C3600588DB5 /* log_emanifest.json */; };
  230. 3C7670A825A84C5900588DB5 /* log_hblclose.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C7670A725A84C5900588DB5 /* log_hblclose.json */; };
  231. 3C7670AD25A84C8600588DB5 /* detail_customer.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C7670AC25A84C8600588DB5 /* detail_customer.json */; };
  232. 3C7670D825AC268300588DB5 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 3C7670D625AC268300588DB5 /* Localizable.strings */; };
  233. 3C7670E125AC275700588DB5 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 3C7670E325AC275700588DB5 /* Localizable.strings */; };
  234. 3C7670FE25B6ABE900588DB5 /* About.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C7670FD25B6ABE900588DB5 /* About.storyboard */; };
  235. 3C76710425B6AFF800588DB5 /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C76710325B6AFF800588DB5 /* AboutViewController.m */; };
  236. 3C76710D25B6D94100588DB5 /* SignupViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C76710C25B6D94100588DB5 /* SignupViewController.m */; };
  237. 3C76711425B7C28600588DB5 /* AgreementViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C76711325B7C28600588DB5 /* AgreementViewController.m */; };
  238. 3C76711C25B7C29800588DB5 /* SignUp.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C76711B25B7C29800588DB5 /* SignUp.storyboard */; };
  239. 3C7F37282563CC5F0033BF82 /* NetworkUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F37262563CC5F0033BF82 /* NetworkUtils.m */; };
  240. 3C7F37432563CDB70033BF82 /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F373B2563CDB70033BF82 /* NSData+CommonCrypto.m */; };
  241. 3C7F37442563CDB70033BF82 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 3C7F373C2563CDB70033BF82 /* LICENSE */; };
  242. 3C7F37452563CDB70033BF82 /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F373F2563CDB70033BF82 /* NSString+Base64.m */; };
  243. 3C7F37462563CDB70033BF82 /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F37402563CDB70033BF82 /* NSData+Base64.m */; };
  244. 3C7F37472563CDB70033BF82 /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F37422563CDB70033BF82 /* AESCrypt.m */; };
  245. 3C7F37532564C0690033BF82 /* RAEmptyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F37512564C0690033BF82 /* RAEmptyView.m */; };
  246. 3C7F376A2564C11E0033BF82 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F37662564C11E0033BF82 /* Reachability.m */; };
  247. 3C7F37712564C13F0033BF82 /* RANetworkTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F376F2564C13E0033BF82 /* RANetworkTaskDelegate.m */; };
  248. 3C7F377A2564C1E10033BF82 /* RABadgeNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F37792564C1E10033BF82 /* RABadgeNumberView.m */; };
  249. 3C7F378C2564C2400033BF82 /* RAProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F378B2564C2400033BF82 /* RAProgressHUD.m */; };
  250. 3C7F37922564C2720033BF82 /* RAHomeHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F37912564C2720033BF82 /* RAHomeHeaderView.m */; };
  251. 3C7F37E02564C3DD0033BF82 /* UIScrollView+Empty.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F37DE2564C3DD0033BF82 /* UIScrollView+Empty.m */; };
  252. 3C7F37E12564C3DD0033BF82 /* RAEmptyDataView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F37DF2564C3DD0033BF82 /* RAEmptyDataView.m */; };
  253. 3C7F37F32564C44D0033BF82 /* UIImage+RedAnt.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F37F12564C44D0033BF82 /* UIImage+RedAnt.m */; };
  254. 3C7F37F92564C4810033BF82 /* RASingleton.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F37F82564C4810033BF82 /* RASingleton.m */; };
  255. 3C7F37FF2564C4C80033BF82 /* RADataProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F37FD2564C4C80033BF82 /* RADataProvider.m */; };
  256. 3C7F38052564C5440033BF82 /* RetrievePasswordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F38032564C5440033BF82 /* RetrievePasswordViewController.m */; };
  257. 3C7F381D2564C6980033BF82 /* RAHomeSectionHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F381B2564C6980033BF82 /* RAHomeSectionHeaderView.m */; };
  258. 3C7F38232564C70F0033BF82 /* JLCustomerAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F38222564C70F0033BF82 /* JLCustomerAlertController.m */; };
  259. 3C7F382D2564C78C0033BF82 /* JLRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F382C2564C78C0033BF82 /* JLRefreshFooter.m */; };
  260. 3C7F38392564C7EB0033BF82 /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7F38372564C7EB0033BF82 /* WebViewController.m */; };
  261. 3C833CA925C7D6CB006F9BEF /* detail_acem1.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C833CA825C7D6CB006F9BEF /* detail_acem1.json */; };
  262. 3C833CAE25C92665006F9BEF /* detail_isf.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C833CAD25C92665006F9BEF /* detail_isf.json */; };
  263. 3C833CB325C941AB006F9BEF /* detail_aci.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C833CB225C941AB006F9BEF /* detail_aci.json */; };
  264. 3C833CB825C94289006F9BEF /* detail_emanifest.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C833CB725C94289006F9BEF /* detail_emanifest.json */; };
  265. 3C833CBE25C944FE006F9BEF /* DetailCellContainerCA.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C833CBD25C944FE006F9BEF /* DetailCellContainerCA.m */; };
  266. 3C833CD225CBF10B006F9BEF /* fake_export.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 3C833CD125CBF10A006F9BEF /* fake_export.pdf */; };
  267. 3C97FE67270058E4005DB50C /* my_d.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C97FE66270058E4005DB50C /* my_d.json */; };
  268. 3C97FE6B2701C0B6005DB50C /* edit_notification_setting.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C97FE6A2701C0B6005DB50C /* edit_notification_setting.json */; };
  269. 3CAB3FDB2564F27D00CB554D /* RAUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CAB3FDA2564F27D00CB554D /* RAUtils.m */; };
  270. /* End PBXBuildFile section */
  271. /* Begin PBXContainerItemProxy section */
  272. 3C0CB34D255E56C000718A03 /* PBXContainerItemProxy */ = {
  273. isa = PBXContainerItemProxy;
  274. containerPortal = 3C0CB329255E56BF00718A03 /* Project object */;
  275. proxyType = 1;
  276. remoteGlobalIDString = 3C0CB330255E56BF00718A03;
  277. remoteInfo = "RA TradeFiling";
  278. };
  279. 3C0CB358255E56C000718A03 /* PBXContainerItemProxy */ = {
  280. isa = PBXContainerItemProxy;
  281. containerPortal = 3C0CB329255E56BF00718A03 /* Project object */;
  282. proxyType = 1;
  283. remoteGlobalIDString = 3C0CB330255E56BF00718A03;
  284. remoteInfo = "RA TradeFiling";
  285. };
  286. /* End PBXContainerItemProxy section */
  287. /* Begin PBXFileReference section */
  288. 3C02E834264E5FAC008DA531 /* EnumSelectDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = EnumSelectDelegate.h; path = ../../common/customUI/commoneditor/EnumSelectDelegate.h; sourceTree = "<group>"; };
  289. 3C02E835264E610E008DA531 /* enum_cadedate.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = enum_cadedate.json; sourceTree = "<group>"; };
  290. 3C02E83726539642008DA531 /* wkweb.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = wkweb.storyboard; path = "../../common/WK PDF+Web/wkweb.storyboard"; sourceTree = "<group>"; };
  291. 3C02E8392653B487008DA531 /* EnumSelectOnlineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectOnlineViewController.m; path = ../../common/customUI/commoneditor/EnumSelectOnlineViewController.m; sourceTree = "<group>"; };
  292. 3C02E83A2653B487008DA531 /* EnumSelectOnlineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectOnlineViewController.h; path = ../../common/customUI/commoneditor/EnumSelectOnlineViewController.h; sourceTree = "<group>"; };
  293. 3C0CB331255E56BF00718A03 /* RA TradeFiling.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "RA TradeFiling.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  294. 3C0CB334255E56BF00718A03 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  295. 3C0CB335255E56BF00718A03 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  296. 3C0CB337255E56BF00718A03 /* SceneDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SceneDelegate.h; sourceTree = "<group>"; };
  297. 3C0CB338255E56BF00718A03 /* SceneDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SceneDelegate.m; sourceTree = "<group>"; };
  298. 3C0CB33A255E56BF00718A03 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
  299. 3C0CB33B255E56BF00718A03 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
  300. 3C0CB33E255E56BF00718A03 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  301. 3C0CB340255E56BF00718A03 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  302. 3C0CB343255E56BF00718A03 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  303. 3C0CB345255E56BF00718A03 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  304. 3C0CB346255E56BF00718A03 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  305. 3C0CB34C255E56C000718A03 /* RA TradeFilingTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "RA TradeFilingTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
  306. 3C0CB350255E56C000718A03 /* RA_TradeFilingTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RA_TradeFilingTests.m; sourceTree = "<group>"; };
  307. 3C0CB352255E56C000718A03 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  308. 3C0CB357255E56C000718A03 /* RA TradeFilingUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "RA TradeFilingUITests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
  309. 3C0CB35B255E56C000718A03 /* RA_TradeFilingUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RA_TradeFilingUITests.m; sourceTree = "<group>"; };
  310. 3C0CB35D255E56C000718A03 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  311. 3C0CB373255E599C00718A03 /* RootViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RootViewController.h; path = "../../../common/Tab Based Framework/RootViewController.h"; sourceTree = "<group>"; };
  312. 3C0CB374255E599C00718A03 /* RootViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RootViewController.m; path = "../../../common/Tab Based Framework/RootViewController.m"; sourceTree = "<group>"; };
  313. 3C0CB379255E5BEA00718A03 /* TFRootViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TFRootViewController.h; sourceTree = "<group>"; };
  314. 3C0CB37A255E5BEA00718A03 /* TFRootViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TFRootViewController.m; sourceTree = "<group>"; };
  315. 3C0CB37F255E5CF900718A03 /* const.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = const.h; sourceTree = "<group>"; };
  316. 3C0CB380255E5D0E00718A03 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
  317. 3C0CB385255E613200718A03 /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
  318. 3C0CB386255E613200718A03 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  319. 3C0CB38C255E618800718A03 /* MylistViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MylistViewController.h; sourceTree = "<group>"; };
  320. 3C0CB38D255E618800718A03 /* MylistViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MylistViewController.m; sourceTree = "<group>"; };
  321. 3C0CB396255E81BD00718A03 /* HomeHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeHeader.xib; sourceTree = "<group>"; };
  322. 3C0CB397255E81BD00718A03 /* Home.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Home.storyboard; sourceTree = "<group>"; };
  323. 3C0CB39D255E81CC00718A03 /* RAHomeViewController+HomeTableDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RAHomeViewController+HomeTableDataSource.h"; sourceTree = "<group>"; };
  324. 3C0CB39E255E81CC00718A03 /* RAHomeViewController+HomeTableDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RAHomeViewController+HomeTableDelegate.h"; sourceTree = "<group>"; };
  325. 3C0CB39F255E81CC00718A03 /* RAHomeViewController+HomeTableDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "RAHomeViewController+HomeTableDelegate.m"; sourceTree = "<group>"; };
  326. 3C0CB3A0255E81CC00718A03 /* RAHomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAHomeViewController.h; sourceTree = "<group>"; };
  327. 3C0CB3A1255E81CC00718A03 /* RAHomeViewController+HomeTableDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "RAHomeViewController+HomeTableDataSource.m"; sourceTree = "<group>"; };
  328. 3C0CB3A2255E81CC00718A03 /* RAHomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAHomeViewController.m; sourceTree = "<group>"; };
  329. 3C0CB3A9255E81F300718A03 /* Search.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = Search.storyboard; sourceTree = "<group>"; };
  330. 3C0CB3AE255E821500718A03 /* My.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = My.storyboard; sourceTree = "<group>"; };
  331. 3C0CB3B3255E825B00718A03 /* Login.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = Login.storyboard; sourceTree = "<group>"; };
  332. 3C0CB3B8255E829000718A03 /* SearchlistViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchlistViewController.h; sourceTree = "<group>"; };
  333. 3C0CB3B9255E829000718A03 /* SearchlistViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchlistViewController.m; sourceTree = "<group>"; };
  334. 3C0CB3BE256253D800718A03 /* RABaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RABaseViewController.h; sourceTree = "<group>"; };
  335. 3C0CB3BF256253D900718A03 /* RABaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RABaseViewController.m; sourceTree = "<group>"; };
  336. 3C0CB3C52562739F00718A03 /* StaticModelistViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StaticModelistViewController.h; sourceTree = "<group>"; };
  337. 3C0CB3C62562739F00718A03 /* StaticModelistViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StaticModelistViewController.m; sourceTree = "<group>"; };
  338. 3C0CB3C72562739F00718A03 /* StaticModeTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StaticModeTableViewCell.h; sourceTree = "<group>"; };
  339. 3C0CB3C82562739F00718A03 /* StaticModeTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StaticModeTableViewCell.xib; sourceTree = "<group>"; };
  340. 3C0CB3C92562739F00718A03 /* StaticModeTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StaticModeTableViewCell.m; sourceTree = "<group>"; };
  341. 3C0CB3CA2562739F00718A03 /* StaticModelistViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StaticModelistViewController.xib; sourceTree = "<group>"; };
  342. 3C2431512589EF7400555555 /* searchresult_isf.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = searchresult_isf.json; sourceTree = "<group>"; };
  343. 3C2431562589F26100555555 /* searchresult_acem1.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = searchresult_acem1.json; sourceTree = "<group>"; };
  344. 3C24316A258AF60000555555 /* ResultCustomerCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResultCustomerCell.h; sourceTree = "<group>"; };
  345. 3C24316B258AF60000555555 /* ResultCustomerCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ResultCustomerCell.m; sourceTree = "<group>"; };
  346. 3C24316C258AF60000555555 /* ResultCustomerCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ResultCustomerCell.xib; sourceTree = "<group>"; };
  347. 3C243172258AFBE900555555 /* ResultCustomerModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResultCustomerModel.h; sourceTree = "<group>"; };
  348. 3C243173258AFBE900555555 /* ResultCustomerModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ResultCustomerModel.m; sourceTree = "<group>"; };
  349. 3C24317B258B00A800555555 /* searchresult_customer.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = searchresult_customer.json; sourceTree = "<group>"; };
  350. 3C243180258B016C00555555 /* search_customer.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = search_customer.json; sourceTree = "<group>"; };
  351. 3C243185258B019B00555555 /* result_customer.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = result_customer.json; sourceTree = "<group>"; };
  352. 3C24319F258B3C7A00555555 /* ResultISFCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResultISFCell.h; sourceTree = "<group>"; };
  353. 3C2431A0258B3C7A00555555 /* ResultISFCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ResultISFCell.m; sourceTree = "<group>"; };
  354. 3C2431A1258B3C7A00555555 /* ResultISFCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ResultISFCell.xib; sourceTree = "<group>"; };
  355. 3C2431B0258B48AA00555555 /* ResultISFModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResultISFModel.h; sourceTree = "<group>"; };
  356. 3C2431B1258B48AA00555555 /* ResultISFModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ResultISFModel.m; sourceTree = "<group>"; };
  357. 3C2C26C5263555D4009460F5 /* CommonEditorAutoCompleteView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = CommonEditorAutoCompleteView.xib; path = ../../common/customUI/commoneditor/CommonEditorAutoCompleteView.xib; sourceTree = "<group>"; };
  358. 3C2C26C6263555D4009460F5 /* CommonEditorAutoCompleteView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorAutoCompleteView.h; path = ../../common/customUI/commoneditor/CommonEditorAutoCompleteView.h; sourceTree = "<group>"; };
  359. 3C2C26C7263555D4009460F5 /* CommonEditorAutoCompleteView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorAutoCompleteView.m; path = ../../common/customUI/commoneditor/CommonEditorAutoCompleteView.m; sourceTree = "<group>"; };
  360. 3C2C26CD263556C1009460F5 /* CommonEditorTableContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorTableContainerView.m; path = ../../common/customUI/commoneditor/CommonEditorTableContainerView.m; sourceTree = "<group>"; };
  361. 3C2C26CE263556C1009460F5 /* CommonEditorTableContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorTableContainerView.h; path = ../../common/customUI/commoneditor/CommonEditorTableContainerView.h; sourceTree = "<group>"; };
  362. 3C2C26D426355728009460F5 /* Phone_Banner_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_Banner_Cell.xib; path = ../../common/customUI/commoneditor/Phone_Banner_Cell.xib; sourceTree = "<group>"; };
  363. 3C2C26D526355728009460F5 /* Phone_Banner_Item_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_Banner_Item_Cell.xib; path = ../../common/customUI/commoneditor/Phone_Banner_Item_Cell.xib; sourceTree = "<group>"; };
  364. 3C2C26DB2635573B009460F5 /* CommonEditorBannerItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorBannerItemCell.h; path = ../../common/customUI/commoneditor/CommonEditorBannerItemCell.h; sourceTree = "<group>"; };
  365. 3C2C26DC2635573B009460F5 /* CommonEditorBannerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorBannerCell.m; path = ../../common/customUI/commoneditor/CommonEditorBannerCell.m; sourceTree = "<group>"; };
  366. 3C2C26DD2635573B009460F5 /* CommonEditorBannerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorBannerCell.h; path = ../../common/customUI/commoneditor/CommonEditorBannerCell.h; sourceTree = "<group>"; };
  367. 3C2C26DE2635573B009460F5 /* CommonEditorBannerItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorBannerItemCell.m; path = ../../common/customUI/commoneditor/CommonEditorBannerItemCell.m; sourceTree = "<group>"; };
  368. 3C2C26E52635577F009460F5 /* Phone_Action_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_Action_Cell.xib; path = ../../common/customUI/commoneditor/Phone_Action_Cell.xib; sourceTree = "<group>"; };
  369. 3C2C26EA2635578F009460F5 /* CommonEditorCellAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellAction.h; path = ../../common/customUI/commoneditor/CommonEditorCellAction.h; sourceTree = "<group>"; };
  370. 3C2C26EB2635578F009460F5 /* CommonEditorCellAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellAction.m; path = ../../common/customUI/commoneditor/CommonEditorCellAction.m; sourceTree = "<group>"; };
  371. 3C2C26F1263557B8009460F5 /* CommonEditorCellEdit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEdit.m; path = ../../common/customUI/commoneditor/CommonEditorCellEdit.m; sourceTree = "<group>"; };
  372. 3C2C26F2263557B8009460F5 /* CommonEditorCellEdit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEdit.h; path = ../../common/customUI/commoneditor/CommonEditorCellEdit.h; sourceTree = "<group>"; };
  373. 3C2C26F7263557C5009460F5 /* Phone_Edit_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_Edit_Cell.xib; path = ../../common/customUI/commoneditor/Phone_Edit_Cell.xib; sourceTree = "<group>"; };
  374. 3C2C26FD263557E8009460F5 /* Phone_Enum_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_Enum_Cell.xib; path = ../../common/customUI/commoneditor/Phone_Enum_Cell.xib; sourceTree = "<group>"; };
  375. 3C2C2702263557F8009460F5 /* CommonEditorCellEnum.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEnum.m; path = ../../common/customUI/commoneditor/CommonEditorCellEnum.m; sourceTree = "<group>"; };
  376. 3C2C2703263557F8009460F5 /* CommonEditorCellEnum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEnum.h; path = ../../common/customUI/commoneditor/CommonEditorCellEnum.h; sourceTree = "<group>"; };
  377. 3C2C270926355810009460F5 /* CommonEditorCellLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellLabel.m; path = ../../common/customUI/commoneditor/CommonEditorCellLabel.m; sourceTree = "<group>"; };
  378. 3C2C270A26355810009460F5 /* CommonEditorCellLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellLabel.h; path = ../../common/customUI/commoneditor/CommonEditorCellLabel.h; sourceTree = "<group>"; };
  379. 3C2C270F2635581E009460F5 /* Phone_Label_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_Label_Cell.xib; path = ../../common/customUI/commoneditor/Phone_Label_Cell.xib; sourceTree = "<group>"; };
  380. 3C2C271526355893009460F5 /* Phone_MAction_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_MAction_Cell.xib; path = ../../common/customUI/commoneditor/Phone_MAction_Cell.xib; sourceTree = "<group>"; };
  381. 3C2C271A263558A0009460F5 /* CommonEditorCellMAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellMAction.m; path = ../../common/customUI/commoneditor/CommonEditorCellMAction.m; sourceTree = "<group>"; };
  382. 3C2C271B263558A0009460F5 /* CommonEditorCellMAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellMAction.h; path = ../../common/customUI/commoneditor/CommonEditorCellMAction.h; sourceTree = "<group>"; };
  383. 3C2C2721263558CE009460F5 /* CommonEditorCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellModel.h; path = ../../common/customUI/commoneditor/CommonEditorCellModel.h; sourceTree = "<group>"; };
  384. 3C2C2722263558CE009460F5 /* CommonEditorCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellModel.m; path = ../../common/customUI/commoneditor/CommonEditorCellModel.m; sourceTree = "<group>"; };
  385. 3C2C2727263558DA009460F5 /* Phone_Model_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_Model_Cell.xib; path = ../../common/customUI/commoneditor/Phone_Model_Cell.xib; sourceTree = "<group>"; };
  386. 3C2C272D263558FA009460F5 /* Phone_Signature_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_Signature_Cell.xib; path = ../../common/customUI/commoneditor/Phone_Signature_Cell.xib; sourceTree = "<group>"; };
  387. 3C2C273226355918009460F5 /* CommonEditorCellSignature.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellSignature.m; path = ../../common/customUI/commoneditor/CommonEditorCellSignature.m; sourceTree = "<group>"; };
  388. 3C2C273326355918009460F5 /* CommonEditorCellSignature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellSignature.h; path = ../../common/customUI/commoneditor/CommonEditorCellSignature.h; sourceTree = "<group>"; };
  389. 3C2C27392635594A009460F5 /* CommonEditorCellSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellSwitch.h; path = ../../common/customUI/commoneditor/CommonEditorCellSwitch.h; sourceTree = "<group>"; };
  390. 3C2C273A2635594A009460F5 /* CommonEditorCellSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellSwitch.m; path = ../../common/customUI/commoneditor/CommonEditorCellSwitch.m; sourceTree = "<group>"; };
  391. 3C2C273F2635595E009460F5 /* Phone_Switch_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_Switch_Cell.xib; path = ../../common/customUI/commoneditor/Phone_Switch_Cell.xib; sourceTree = "<group>"; };
  392. 3C2C274526355996009460F5 /* CommonEditorCellTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellTextView.h; path = ../../common/customUI/commoneditor/CommonEditorCellTextView.h; sourceTree = "<group>"; };
  393. 3C2C274626355996009460F5 /* CommonEditorCellTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellTextView.m; path = ../../common/customUI/commoneditor/CommonEditorCellTextView.m; sourceTree = "<group>"; };
  394. 3C2C274B263559A4009460F5 /* Phone_TextView_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_TextView_Cell.xib; path = ../../common/customUI/commoneditor/Phone_TextView_Cell.xib; sourceTree = "<group>"; };
  395. 3C2C2751263559C1009460F5 /* Phone_Range_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_Range_Cell.xib; path = ../../common/customUI/commoneditor/Phone_Range_Cell.xib; sourceTree = "<group>"; };
  396. 3C2C2756263559D6009460F5 /* CommonEditorRangeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorRangeCell.h; path = ../../common/customUI/commoneditor/CommonEditorRangeCell.h; sourceTree = "<group>"; };
  397. 3C2C2757263559D6009460F5 /* CommonEditorRangeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorRangeCell.m; path = ../../common/customUI/commoneditor/CommonEditorRangeCell.m; sourceTree = "<group>"; };
  398. 3C2C275D26355A08009460F5 /* CommonEditorWebCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorWebCell.m; path = ../../common/customUI/commoneditor/CommonEditorWebCell.m; sourceTree = "<group>"; };
  399. 3C2C275E26355A09009460F5 /* CommonEditorWebCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorWebCell.h; path = ../../common/customUI/commoneditor/CommonEditorWebCell.h; sourceTree = "<group>"; };
  400. 3C2C276326355A17009460F5 /* Phone_Web_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_Web_Cell.xib; path = ../../common/customUI/commoneditor/Phone_Web_Cell.xib; sourceTree = "<group>"; };
  401. 3C2C276926355A50009460F5 /* RAYTPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAYTPlayer.h; path = ../../common/Youtube/RAYTPlayer.h; sourceTree = "<group>"; };
  402. 3C2C276A26355A50009460F5 /* RAYTPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAYTPlayer.m; path = ../../common/Youtube/RAYTPlayer.m; sourceTree = "<group>"; };
  403. 3C2C276B26355A50009460F5 /* ytplayer.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = ytplayer.html; path = ../../common/Youtube/ytplayer.html; sourceTree = "<group>"; };
  404. 3C2C277126355AAF009460F5 /* FileCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FileCache.h; path = ../../common/FileCache.h; sourceTree = "<group>"; };
  405. 3C2C277226355AAF009460F5 /* FileCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FileCache.m; path = ../../common/FileCache.m; sourceTree = "<group>"; };
  406. 3C2C277D2636623F009460F5 /* CommonEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorViewController.h; path = ../../common/customUI/commoneditor/CommonEditorViewController.h; sourceTree = "<group>"; };
  407. 3C2C277E2636623F009460F5 /* CommonEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorViewController.m; path = ../../common/customUI/commoneditor/CommonEditorViewController.m; sourceTree = "<group>"; };
  408. 3C2C27842636628D009460F5 /* SignatureViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SignatureViewController.h; path = "../../RedAnt ERP Mobile/common/Functions/signature/SignatureViewController.h"; sourceTree = "<group>"; };
  409. 3C2C27852636628D009460F5 /* SignatureView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SignatureView.h; path = "../../RedAnt ERP Mobile/common/Functions/signature/SignatureView.h"; sourceTree = "<group>"; };
  410. 3C2C27862636628D009460F5 /* signature.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = signature.storyboard; path = "../../RedAnt ERP Mobile/common/Functions/signature/signature.storyboard"; sourceTree = "<group>"; };
  411. 3C2C27872636628D009460F5 /* SignatureView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SignatureView.m; path = "../../RedAnt ERP Mobile/common/Functions/signature/SignatureView.m"; sourceTree = "<group>"; };
  412. 3C2C27882636628D009460F5 /* SignatureViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SignatureViewController.m; path = "../../RedAnt ERP Mobile/common/Functions/signature/SignatureViewController.m"; sourceTree = "<group>"; };
  413. 3C2C278F26366294009460F5 /* Signature.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Signature.xcassets; path = "../../RedAnt ERP Mobile/common/Functions/signature/Signature.xcassets"; sourceTree = "<group>"; };
  414. 3C2C2794263663B1009460F5 /* TouchImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TouchImageView.m; path = ../../common/customUI/TouchImageView.m; sourceTree = "<group>"; };
  415. 3C2C2795263663B1009460F5 /* StrikethroughLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = StrikethroughLabel.m; path = ../../common/customUI/StrikethroughLabel.m; sourceTree = "<group>"; };
  416. 3C2C2796263663B1009460F5 /* TouchImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TouchImageView.h; path = ../../common/customUI/TouchImageView.h; sourceTree = "<group>"; };
  417. 3C2C2797263663B1009460F5 /* StrikethroughLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StrikethroughLabel.h; path = ../../common/customUI/StrikethroughLabel.h; sourceTree = "<group>"; };
  418. 3C2C279D263663FA009460F5 /* CustomIOSAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomIOSAlertView.m; path = ../../common/customUI/CustomIOSAlertView.m; sourceTree = "<group>"; };
  419. 3C2C279E263663FA009460F5 /* CustomIOSAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomIOSAlertView.h; path = ../../common/customUI/CustomIOSAlertView.h; sourceTree = "<group>"; };
  420. 3C2C27A426366464009460F5 /* DefaultAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DefaultAppearance.m; sourceTree = "<group>"; };
  421. 3C2C27A526366464009460F5 /* DefaultAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DefaultAppearance.h; sourceTree = "<group>"; };
  422. 3C2C27A626366464009460F5 /* default_appearance.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = default_appearance.json; sourceTree = "<group>"; };
  423. 3C2C27AC2636652F009460F5 /* EnumSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectorCell.h; path = ../../common/customUI/commoneditor/EnumSelectorCell.h; sourceTree = "<group>"; };
  424. 3C2C27AD2636652F009460F5 /* EnumSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectorCell.m; path = ../../common/customUI/commoneditor/EnumSelectorCell.m; sourceTree = "<group>"; };
  425. 3C2C27AE2636652F009460F5 /* EnumSelectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectViewController.h; path = ../../common/customUI/commoneditor/EnumSelectViewController.h; sourceTree = "<group>"; };
  426. 3C2C27AF2636652F009460F5 /* EnumSelectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectViewController.m; path = ../../common/customUI/commoneditor/EnumSelectViewController.m; sourceTree = "<group>"; };
  427. 3C2C27B52636657C009460F5 /* EnumModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumModel.h; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumModel.h; sourceTree = "<group>"; };
  428. 3C2C27B62636657C009460F5 /* EnumSelectAndSortViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectAndSortViewController.h; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumSelectAndSortViewController.h; sourceTree = "<group>"; };
  429. 3C2C27B72636657C009460F5 /* EnumSelectAndSortCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectAndSortCell.h; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumSelectAndSortCell.h; sourceTree = "<group>"; };
  430. 3C2C27B82636657C009460F5 /* EnumSelectAndSort.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = EnumSelectAndSort.storyboard; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumSelectAndSort.storyboard; sourceTree = "<group>"; };
  431. 3C2C27B92636657C009460F5 /* EnumSelectAndSortViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectAndSortViewController.m; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumSelectAndSortViewController.m; sourceTree = "<group>"; };
  432. 3C2C27BA2636657C009460F5 /* EnumModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumModel.m; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumModel.m; sourceTree = "<group>"; };
  433. 3C2C27BB2636657C009460F5 /* EnumSelectAndSortCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectAndSortCell.m; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumSelectAndSortCell.m; sourceTree = "<group>"; };
  434. 3C2C27C3263665C4009460F5 /* RTLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RTLabel.h; path = ../../common/customUI/RTLabel.h; sourceTree = "<group>"; };
  435. 3C2C27C4263665C4009460F5 /* RTLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RTLabel.m; path = ../../common/customUI/RTLabel.m; sourceTree = "<group>"; };
  436. 3C2C27D7263666DF009460F5 /* ContentPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContentPreviewController.m; path = ../../common/customUI/PhotoList/Controller/ContentPreviewController.m; sourceTree = "<group>"; };
  437. 3C2C27D8263666DF009460F5 /* ContentPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContentPreviewController.h; path = ../../common/customUI/PhotoList/Controller/ContentPreviewController.h; sourceTree = "<group>"; };
  438. 3C2C27DD263666E8009460F5 /* PhotoList.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = PhotoList.storyboard; path = ../../common/customUI/PhotoList/Storyboard/PhotoList.storyboard; sourceTree = "<group>"; };
  439. 3C2C27E2263666F2009460F5 /* PhotoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhotoPreviewCell.m; path = ../../common/customUI/PhotoList/View/PhotoPreviewCell.m; sourceTree = "<group>"; };
  440. 3C2C27E3263666F2009460F5 /* VideoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VideoPreviewCell.h; path = ../../common/customUI/PhotoList/View/VideoPreviewCell.h; sourceTree = "<group>"; };
  441. 3C2C27E4263666F2009460F5 /* VideoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VideoPreviewCell.m; path = ../../common/customUI/PhotoList/View/VideoPreviewCell.m; sourceTree = "<group>"; };
  442. 3C2C27E5263666F2009460F5 /* PhotoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhotoPreviewCell.h; path = ../../common/customUI/PhotoList/View/PhotoPreviewCell.h; sourceTree = "<group>"; };
  443. 3C2C27EE26366B3B009460F5 /* DefaultTableHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultTableHeaderView.h; path = ../../common/customUI/commoneditor/DefaultTableHeaderView.h; sourceTree = "<group>"; };
  444. 3C2C27EF26366B3C009460F5 /* DefaultTableHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultTableHeaderView.m; path = ../../common/customUI/commoneditor/DefaultTableHeaderView.m; sourceTree = "<group>"; };
  445. 3C2C27FE2636B8C4009460F5 /* TFEditor.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = TFEditor.storyboard; sourceTree = "<group>"; };
  446. 3C452F3125B9766C0035AF5F /* HomeDashISFCellP.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashISFCellP.h; sourceTree = "<group>"; };
  447. 3C452F3225B9766C0035AF5F /* HomeDashISFCellP.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashISFCellP.m; sourceTree = "<group>"; };
  448. 3C452F3325B9766C0035AF5F /* HomeDashISFCellP.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeDashISFCellP.xib; sourceTree = "<group>"; };
  449. 3C452F3925B9795C0035AF5F /* HomeDashISFModelP.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashISFModelP.h; sourceTree = "<group>"; };
  450. 3C452F3A25B9795C0035AF5F /* HomeDashISFModelP.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashISFModelP.m; sourceTree = "<group>"; };
  451. 3C452F4225BA73F70035AF5F /* HomeDashACEM1ModelP.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashACEM1ModelP.h; sourceTree = "<group>"; };
  452. 3C452F4325BA73F70035AF5F /* HomeDashACEM1ModelP.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashACEM1ModelP.m; sourceTree = "<group>"; };
  453. 3C452F4825BA74610035AF5F /* HomeDashACEM1CellP.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashACEM1CellP.h; sourceTree = "<group>"; };
  454. 3C452F4925BA74610035AF5F /* HomeDashACEM1CellP.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashACEM1CellP.m; sourceTree = "<group>"; };
  455. 3C452F4A25BA74610035AF5F /* HomeDashACEM1CellP.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeDashACEM1CellP.xib; sourceTree = "<group>"; };
  456. 3C452F5C25BAA5570035AF5F /* HomeDashACICellP.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashACICellP.h; sourceTree = "<group>"; };
  457. 3C452F5D25BAA5570035AF5F /* HomeDashACICellP.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashACICellP.m; sourceTree = "<group>"; };
  458. 3C452F5E25BAA5570035AF5F /* HomeDashACICellP.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeDashACICellP.xib; sourceTree = "<group>"; };
  459. 3C452F6725BAA5790035AF5F /* HomeDashACIModelP.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashACIModelP.h; sourceTree = "<group>"; };
  460. 3C452F6825BAA5790035AF5F /* HomeDashACIModelP.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashACIModelP.m; sourceTree = "<group>"; };
  461. 3C452F6D25BABA2B0035AF5F /* HomeDasheManifestModelP.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDasheManifestModelP.h; sourceTree = "<group>"; };
  462. 3C452F6E25BABA2B0035AF5F /* HomeDasheManifestModelP.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDasheManifestModelP.m; sourceTree = "<group>"; };
  463. 3C452F7325BABA740035AF5F /* HomeDasheManifestCellP.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDasheManifestCellP.h; sourceTree = "<group>"; };
  464. 3C452F7425BABA740035AF5F /* HomeDasheManifestCellP.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDasheManifestCellP.m; sourceTree = "<group>"; };
  465. 3C452F7525BABA740035AF5F /* HomeDasheManifestCellP.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeDasheManifestCellP.xib; sourceTree = "<group>"; };
  466. 3C452F7B25BE73190035AF5F /* HomeDashISFCellE.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashISFCellE.h; sourceTree = "<group>"; };
  467. 3C452F7C25BE73190035AF5F /* HomeDashISFCellE.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashISFCellE.m; sourceTree = "<group>"; };
  468. 3C452F7D25BE73190035AF5F /* HomeDashISFCellE.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeDashISFCellE.xib; sourceTree = "<group>"; };
  469. 3C452F8325BE733A0035AF5F /* HomeDashISFModelE.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashISFModelE.h; sourceTree = "<group>"; };
  470. 3C452F8425BE733A0035AF5F /* HomeDashISFModelE.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashISFModelE.m; sourceTree = "<group>"; };
  471. 3C452F8C25BE971C0035AF5F /* HomeDashACEM1ModelE.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashACEM1ModelE.h; sourceTree = "<group>"; };
  472. 3C452F8D25BE971C0035AF5F /* HomeDashACEM1ModelE.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashACEM1ModelE.m; sourceTree = "<group>"; };
  473. 3C452F9525BE97430035AF5F /* HomeDashACEM1CellE.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashACEM1CellE.h; sourceTree = "<group>"; };
  474. 3C452F9625BE97430035AF5F /* HomeDashACEM1CellE.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashACEM1CellE.m; sourceTree = "<group>"; };
  475. 3C452F9725BE97430035AF5F /* HomeDashACEM1CellE.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeDashACEM1CellE.xib; sourceTree = "<group>"; };
  476. 3C452F9D25BE98270035AF5F /* HomeDashACICellE.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashACICellE.h; sourceTree = "<group>"; };
  477. 3C452F9E25BE98270035AF5F /* HomeDashACICellE.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashACICellE.m; sourceTree = "<group>"; };
  478. 3C452F9F25BE98270035AF5F /* HomeDashACICellE.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeDashACICellE.xib; sourceTree = "<group>"; };
  479. 3C452FA525BE98410035AF5F /* HomeDasheManifestCellE.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDasheManifestCellE.h; sourceTree = "<group>"; };
  480. 3C452FA625BE98410035AF5F /* HomeDasheManifestCellE.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDasheManifestCellE.m; sourceTree = "<group>"; };
  481. 3C452FA725BE98410035AF5F /* HomeDasheManifestCellE.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeDasheManifestCellE.xib; sourceTree = "<group>"; };
  482. 3C452FAD25BE985C0035AF5F /* HomeDashACIModelE.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashACIModelE.h; sourceTree = "<group>"; };
  483. 3C452FAE25BE985C0035AF5F /* HomeDashACIModelE.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashACIModelE.m; sourceTree = "<group>"; };
  484. 3C452FB325BE987C0035AF5F /* HomeDasheManifestModelE.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDasheManifestModelE.h; sourceTree = "<group>"; };
  485. 3C452FB425BE987C0035AF5F /* HomeDasheManifestModelE.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDasheManifestModelE.m; sourceTree = "<group>"; };
  486. 3C51496D273E070300F78617 /* CommonEditorCellEditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEditor.h; path = ../../common/customUI/commoneditor/CommonEditorCellEditor.h; sourceTree = "<group>"; };
  487. 3C51496E273E070300F78617 /* CommonEditorCellEditor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEditor.m; path = ../../common/customUI/commoneditor/CommonEditorCellEditor.m; sourceTree = "<group>"; };
  488. 3C51496F273E070300F78617 /* Phone_Editor_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = Phone_Editor_Cell.xib; path = ../../common/customUI/commoneditor/Phone_Editor_Cell.xib; sourceTree = "<group>"; };
  489. 3C5F8B462564F8D300CFD26A /* JLRefreshBasis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JLRefreshBasis.h; path = ../../common/customUI/Refresh/JLRefreshBasis.h; sourceTree = "<group>"; };
  490. 3C5F8B472564F8D300CFD26A /* JLRefreshBasis.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = JLRefreshBasis.m; path = ../../common/customUI/Refresh/JLRefreshBasis.m; sourceTree = "<group>"; };
  491. 3C5F8B522564FDD100CFD26A /* ResultViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResultViewController.m; sourceTree = "<group>"; };
  492. 3C5F8B532564FDD100CFD26A /* Result.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Result.storyboard; sourceTree = "<group>"; };
  493. 3C5F8B542564FDD100CFD26A /* ResultViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResultViewController.h; sourceTree = "<group>"; };
  494. 3C5F8B8C2564FFC700CFD26A /* ResultViewController+QuickLook.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ResultViewController+QuickLook.h"; sourceTree = "<group>"; };
  495. 3C5F8B8D2564FFC700CFD26A /* ResultViewController+QuickLook.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ResultViewController+QuickLook.m"; sourceTree = "<group>"; };
  496. 3C5F8B922565000200CFD26A /* ResultProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResultProtocol.h; sourceTree = "<group>"; };
  497. 3C5F8B962565001700CFD26A /* ResultMenuItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResultMenuItem.m; sourceTree = "<group>"; };
  498. 3C5F8B972565001700CFD26A /* ResultMenuItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResultMenuItem.h; sourceTree = "<group>"; };
  499. 3C5F8B9C2565003600CFD26A /* ResultPresenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResultPresenter.h; sourceTree = "<group>"; };
  500. 3C5F8B9D2565003600CFD26A /* ResultPresenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResultPresenter.m; sourceTree = "<group>"; };
  501. 3C5F8BB0256500F900CFD26A /* NSData+RAImageType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+RAImageType.m"; path = "../../common/NSData/NSData+RAImageType.m"; sourceTree = "<group>"; };
  502. 3C5F8BB1256500F900CFD26A /* NSData+RAImageType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+RAImageType.h"; path = "../../common/NSData/NSData+RAImageType.h"; sourceTree = "<group>"; };
  503. 3C5F8BB62565013B00CFD26A /* ResultBaseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResultBaseModel.m; sourceTree = "<group>"; };
  504. 3C5F8BB72565013B00CFD26A /* ResultBaseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResultBaseModel.h; sourceTree = "<group>"; };
  505. 3C5F8BBE2565017E00CFD26A /* ResultACIModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResultACIModel.h; sourceTree = "<group>"; };
  506. 3C5F8BBF2565017E00CFD26A /* ResultACIModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResultACIModel.m; sourceTree = "<group>"; };
  507. 3C5F8BC5256503EC00CFD26A /* ResultAdditionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResultAdditionView.h; sourceTree = "<group>"; };
  508. 3C5F8BC6256503ED00CFD26A /* ResultAdditionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResultAdditionView.m; sourceTree = "<group>"; };
  509. 3C5F8BC7256503ED00CFD26A /* ApexResultAdditionView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApexResultAdditionView.xib; sourceTree = "<group>"; };
  510. 3C5F8BCD2565042E00CFD26A /* UIView+RAConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIView+RAConstraint.m"; path = "../../common/LayoutConstraint/UIView+RAConstraint.m"; sourceTree = "<group>"; };
  511. 3C5F8BCE2565042E00CFD26A /* UIView+RAConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIView+RAConstraint.h"; path = "../../common/LayoutConstraint/UIView+RAConstraint.h"; sourceTree = "<group>"; };
  512. 3C5F8BD32565049300CFD26A /* JLRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = JLRefreshHeader.m; path = ../../common/customUI/Refresh/Header/JLRefreshHeader.m; sourceTree = "<group>"; };
  513. 3C5F8BD42565049400CFD26A /* JLRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JLRefreshHeader.h; path = ../../common/customUI/Refresh/Header/JLRefreshHeader.h; sourceTree = "<group>"; };
  514. 3C5F8BD92565053600CFD26A /* SavedDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SavedDetailViewController.h; sourceTree = "<group>"; };
  515. 3C5F8BDA2565053700CFD26A /* SavedDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SavedDetailViewController.m; sourceTree = "<group>"; };
  516. 3C5F8BDF2565055300CFD26A /* SavedSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SavedSearchViewController.h; sourceTree = "<group>"; };
  517. 3C5F8BE02565055300CFD26A /* SavedSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SavedSearchViewController.m; sourceTree = "<group>"; };
  518. 3C5F8BF2256505FC00CFD26A /* CellItemHistory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CellItemHistory.h; sourceTree = "<group>"; };
  519. 3C5F8BF3256505FC00CFD26A /* CellItemHistory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CellItemHistory.m; sourceTree = "<group>"; };
  520. 3C5F8BFE256506B900CFD26A /* MyQLPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MyQLPreviewController.h; path = ../../../common/customUI/MyQLPreviewController.h; sourceTree = "<group>"; };
  521. 3C5F8BFF256506BA00CFD26A /* MyQLPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MyQLPreviewController.m; path = ../../../common/customUI/MyQLPreviewController.m; sourceTree = "<group>"; };
  522. 3C5F8C04256506DC00CFD26A /* CustomizeFieldViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomizeFieldViewController.h; sourceTree = "<group>"; };
  523. 3C5F8C05256506DC00CFD26A /* CustomizeFieldViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomizeFieldViewController.m; sourceTree = "<group>"; };
  524. 3C5F8C0D256508D400CFD26A /* SearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchViewController.h; sourceTree = "<group>"; };
  525. 3C5F8C0E256508D400CFD26A /* SearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchViewController.m; sourceTree = "<group>"; };
  526. 3C5F8C132565092C00CFD26A /* MyAutocompleteView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAutocompleteView.h; sourceTree = "<group>"; };
  527. 3C5F8C142565092C00CFD26A /* MyAutocompleteView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAutocompleteView.m; sourceTree = "<group>"; };
  528. 3C5F8C192565095900CFD26A /* MyAutocompleteItemsSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAutocompleteItemsSource.m; sourceTree = "<group>"; };
  529. 3C5F8C1A2565095900CFD26A /* MyAutocompleteItemsSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAutocompleteItemsSource.h; sourceTree = "<group>"; };
  530. 3C5F8C1F2565097600CFD26A /* MySuggestion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MySuggestion.h; sourceTree = "<group>"; };
  531. 3C5F8C202565097600CFD26A /* MySuggestion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MySuggestion.m; sourceTree = "<group>"; };
  532. 3C5F8C252565099300CFD26A /* MyAutocompletionCellFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAutocompletionCellFactory.h; sourceTree = "<group>"; };
  533. 3C5F8C262565099300CFD26A /* MyAutocompletionCellFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAutocompletionCellFactory.m; sourceTree = "<group>"; };
  534. 3C5F8C2B256509AA00CFD26A /* SearchTableAdapterJson.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchTableAdapterJson.h; sourceTree = "<group>"; };
  535. 3C5F8C2C256509AA00CFD26A /* SearchTableAdapterJson.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchTableAdapterJson.m; sourceTree = "<group>"; };
  536. 3C5F8C3525650A8500CFD26A /* TableCellEdit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCellEdit.h; sourceTree = "<group>"; };
  537. 3C5F8C3625650A8500CFD26A /* TableCellEdit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCellEdit.m; sourceTree = "<group>"; };
  538. 3C5F8C3725650A8500CFD26A /* TableCellBool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCellBool.h; sourceTree = "<group>"; };
  539. 3C5F8C3825650A8500CFD26A /* TableCellBool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCellBool.m; sourceTree = "<group>"; };
  540. 3C5F8C3925650A8500CFD26A /* TableCellDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCellDate.h; sourceTree = "<group>"; };
  541. 3C5F8C3A25650A8500CFD26A /* TableCellDate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCellDate.m; sourceTree = "<group>"; };
  542. 3C5F8C4125650B0E00CFD26A /* ResultACEM1Cell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResultACEM1Cell.m; sourceTree = "<group>"; };
  543. 3C5F8C4225650B0E00CFD26A /* ResultACEM1Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ResultACEM1Cell.xib; sourceTree = "<group>"; };
  544. 3C5F8C4325650B0E00CFD26A /* ResultACEM1Cell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResultACEM1Cell.h; sourceTree = "<group>"; };
  545. 3C5F8C5125650B9700CFD26A /* JLCustomerNavigationAlertController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JLCustomerNavigationAlertController.h; path = ../../common/customUI/Alert/JLCustomerNavigationAlertController.h; sourceTree = "<group>"; };
  546. 3C5F8C5225650B9700CFD26A /* JLCustomerNavigationAlertController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = JLCustomerNavigationAlertController.m; path = ../../common/customUI/Alert/JLCustomerNavigationAlertController.m; sourceTree = "<group>"; };
  547. 3C5F8C5725650BD800CFD26A /* LPShareActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LPShareActivity.m; sourceTree = "<group>"; };
  548. 3C5F8C5825650BD800CFD26A /* LPShareActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LPShareActivity.h; sourceTree = "<group>"; };
  549. 3C5F8C5D25650C0F00CFD26A /* ResultAddition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResultAddition.m; sourceTree = "<group>"; };
  550. 3C5F8C5E25650C0F00CFD26A /* ResultAddition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResultAddition.h; sourceTree = "<group>"; };
  551. 3C5F8C6325650C3F00CFD26A /* RAConvertor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAConvertor.h; path = ../../common/RAConvertor.h; sourceTree = "<group>"; };
  552. 3C5F8C6425650C3F00CFD26A /* RAConvertor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAConvertor.m; path = ../../common/RAConvertor.m; sourceTree = "<group>"; };
  553. 3C5F8C6C2565196A00CFD26A /* JLPresentationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = JLPresentationController.m; path = ../../common/customUI/Alert/JLPresentationController.m; sourceTree = "<group>"; };
  554. 3C5F8C6D2565196A00CFD26A /* JLPresentationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JLPresentationController.h; path = ../../common/customUI/Alert/JLPresentationController.h; sourceTree = "<group>"; };
  555. 3C5F8C73256660E900CFD26A /* OnlineDataProvider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OnlineDataProvider.h; sourceTree = "<group>"; };
  556. 3C5F8C74256660E900CFD26A /* OnlineDataProvider.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OnlineDataProvider.m; sourceTree = "<group>"; };
  557. 3C5F8C792566610A00CFD26A /* OfflineDataProvider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OfflineDataProvider.h; sourceTree = "<group>"; };
  558. 3C5F8C7A2566610A00CFD26A /* OfflineDataProvider.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OfflineDataProvider.m; sourceTree = "<group>"; };
  559. 3C5F8C86256B935E00CFD26A /* my.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = my.json; sourceTree = "<group>"; };
  560. 3C5F8C8B256CFF6F00CFD26A /* CollectionViewButtonCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CollectionViewButtonCell.h; sourceTree = "<group>"; };
  561. 3C5F8C8C256CFF6F00CFD26A /* CollectionViewButtonCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CollectionViewButtonCell.m; sourceTree = "<group>"; };
  562. 3C5F8C91256D079200CFD26A /* ButtonCollectionView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ButtonCollectionView.h; sourceTree = "<group>"; };
  563. 3C5F8C92256D079200CFD26A /* ButtonCollectionView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ButtonCollectionView.m; sourceTree = "<group>"; };
  564. 3C5F8C9C256E3A5900CFD26A /* CollectionViewButtonCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = CollectionViewButtonCell.xib; sourceTree = "<group>"; };
  565. 3C5F8CA1256F847300CFD26A /* FunctionSettingViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FunctionSettingViewController.h; sourceTree = "<group>"; };
  566. 3C5F8CA2256F847300CFD26A /* FunctionSettingViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FunctionSettingViewController.m; sourceTree = "<group>"; };
  567. 3C5F8CA7256F919900CFD26A /* FunctionPanel.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = FunctionPanel.json; sourceTree = "<group>"; };
  568. 3C5F8CB22574C92200CFD26A /* home.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = home.json; sourceTree = "<group>"; };
  569. 3C5F8CC02576220400CFD26A /* DashboardModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DashboardModel.h; sourceTree = "<group>"; };
  570. 3C5F8CC12576220400CFD26A /* DashboardModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DashboardModel.m; sourceTree = "<group>"; };
  571. 3C5F8CCD25777A2100CFD26A /* search_acem1.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = search_acem1.json; sourceTree = "<group>"; };
  572. 3C5F8CD625777E7300CFD26A /* Fields.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = Fields.storyboard; sourceTree = "<group>"; };
  573. 3C5F8CE12578807100CFD26A /* search_aci.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = search_aci.json; sourceTree = "<group>"; };
  574. 3C5F8CE22578807100CFD26A /* search_isf.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = search_isf.json; sourceTree = "<group>"; };
  575. 3C5F8CE32578807100CFD26A /* search_emanifest.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = search_emanifest.json; sourceTree = "<group>"; };
  576. 3C5F8CED257A1DC900CFD26A /* ResultViewController+TableDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ResultViewController+TableDataSource.m"; sourceTree = "<group>"; };
  577. 3C5F8CEE257A1DC900CFD26A /* ResultViewController+TableDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ResultViewController+TableDataSource.h"; sourceTree = "<group>"; };
  578. 3C5F8CF3257A1EE100CFD26A /* ResultViewController+TableDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ResultViewController+TableDelegate.h"; sourceTree = "<group>"; };
  579. 3C5F8CF4257A1EE100CFD26A /* ResultViewController+TableDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ResultViewController+TableDelegate.m"; sourceTree = "<group>"; };
  580. 3C5F8D0F257A265500CFD26A /* result_acem1.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = result_acem1.json; sourceTree = "<group>"; };
  581. 3C5F8D10257A265500CFD26A /* result_emanifest.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = result_emanifest.json; sourceTree = "<group>"; };
  582. 3C5F8D11257A265500CFD26A /* result_isf.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = result_isf.json; sourceTree = "<group>"; };
  583. 3C5F8D12257A265500CFD26A /* result_aci.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = result_aci.json; sourceTree = "<group>"; };
  584. 3C5F8D1A257A2BCB00CFD26A /* searchresult_aci.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = searchresult_aci.json; sourceTree = "<group>"; };
  585. 3C5F8D2B257E2A6A00CFD26A /* DetailTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailTabBarController.m; sourceTree = "<group>"; };
  586. 3C5F8D2C257E2A6A00CFD26A /* DetailTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailTabBarController.h; sourceTree = "<group>"; };
  587. 3C5F8D31257E2A8C00CFD26A /* DetailPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailPageViewController.m; sourceTree = "<group>"; };
  588. 3C5F8D32257E2A8C00CFD26A /* DetailPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailPageViewController.h; sourceTree = "<group>"; };
  589. 3C5F8D37257E2AEF00CFD26A /* DetailCellKVNew.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailCellKVNew.h; sourceTree = "<group>"; };
  590. 3C5F8D38257E2AEF00CFD26A /* DetailCellKVNew.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailCellKVNew.m; sourceTree = "<group>"; };
  591. 3C5F8D3D257E2B3600CFD26A /* DetailCellList.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailCellList.m; sourceTree = "<group>"; };
  592. 3C5F8D3E257E2B3600CFD26A /* DetailCellList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailCellList.h; sourceTree = "<group>"; };
  593. 3C5F8D43257E2B4500CFD26A /* DetailCellWeb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailCellWeb.h; sourceTree = "<group>"; };
  594. 3C5F8D44257E2B4500CFD26A /* DetailCellWeb.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailCellWeb.m; sourceTree = "<group>"; };
  595. 3C5F8D49257E2D8700CFD26A /* DetailContent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailContent.h; sourceTree = "<group>"; };
  596. 3C5F8D4A257E2D8700CFD26A /* DetailContent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailContent.m; sourceTree = "<group>"; };
  597. 3C5F8D52257F53F300CFD26A /* UIView+Toast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIView+Toast.h"; path = "../../common/customUI/UIView+Toast.h"; sourceTree = "<group>"; };
  598. 3C5F8D53257F53F300CFD26A /* UIView+Toast.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIView+Toast.m"; path = "../../common/customUI/UIView+Toast.m"; sourceTree = "<group>"; };
  599. 3C5F8D5B257F541300CFD26A /* UIView+JLExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIView+JLExtension.h"; path = "../../common/customUI/Refresh/UIView+JLExtension.h"; sourceTree = "<group>"; };
  600. 3C5F8D5C257F541300CFD26A /* UIView+JLExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIView+JLExtension.m"; path = "../../common/customUI/Refresh/UIView+JLExtension.m"; sourceTree = "<group>"; };
  601. 3C5F8D64257F542500CFD26A /* UIScrollView+JLRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+JLRefresh.h"; path = "../../common/customUI/Refresh/UIScrollView+JLRefresh.h"; sourceTree = "<group>"; };
  602. 3C5F8D65257F542500CFD26A /* UIScrollView+JLRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+JLRefresh.m"; path = "../../common/customUI/Refresh/UIScrollView+JLRefresh.m"; sourceTree = "<group>"; };
  603. 3C5F8D6B257F546B00CFD26A /* DetailShareItemProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailShareItemProvider.m; sourceTree = "<group>"; };
  604. 3C5F8D6C257F546B00CFD26A /* DetailShareItemProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailShareItemProvider.h; sourceTree = "<group>"; };
  605. 3C5F8D71257F54FB00CFD26A /* MDHTMLLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MDHTMLLabel.h; path = "../../RedAnt ERP Mobile/common/customUI/MDHTMLLabel.h"; sourceTree = "<group>"; };
  606. 3C5F8D72257F54FB00CFD26A /* MDHTMLLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MDHTMLLabel.m; path = "../../RedAnt ERP Mobile/common/customUI/MDHTMLLabel.m"; sourceTree = "<group>"; };
  607. 3C5F8D77257F550D00CFD26A /* LineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LineView.h; path = "../../Apex Mobile/Apex Mobile/LineView.h"; sourceTree = "<group>"; };
  608. 3C5F8D78257F550D00CFD26A /* LineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LineView.m; path = "../../Apex Mobile/Apex Mobile/LineView.m"; sourceTree = "<group>"; };
  609. 3C5F8D7D257F55BD00CFD26A /* TabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TabBarController.m; sourceTree = "<group>"; };
  610. 3C5F8D7E257F55BD00CFD26A /* TabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TabBarController.h; sourceTree = "<group>"; };
  611. 3C5F8D83257F5CA800CFD26A /* Detail.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = Detail.storyboard; sourceTree = "<group>"; };
  612. 3C5F8D88258079B900CFD26A /* login.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = login.json; sourceTree = "<group>"; };
  613. 3C5F8D8D2580B4E500CFD26A /* CompanySelectViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CompanySelectViewController.h; sourceTree = "<group>"; };
  614. 3C5F8D8E2580B4E500CFD26A /* CompanySelectViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CompanySelectViewController.m; sourceTree = "<group>"; };
  615. 3C5F8D932583500900CFD26A /* ResultACICell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResultACICell.h; sourceTree = "<group>"; };
  616. 3C5F8D942583500A00CFD26A /* ResultACICell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ResultACICell.m; sourceTree = "<group>"; };
  617. 3C5F8D952583500A00CFD26A /* ResultACICell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ResultACICell.xib; sourceTree = "<group>"; };
  618. 3C5F8DB92583655200CFD26A /* searchresult_emanifest.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = searchresult_emanifest.json; sourceTree = "<group>"; };
  619. 3C5F8DC125836A9E00CFD26A /* ResultACEM1Model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResultACEM1Model.h; sourceTree = "<group>"; };
  620. 3C5F8DC225836A9F00CFD26A /* ResultACEM1Model.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResultACEM1Model.m; sourceTree = "<group>"; };
  621. 3C5FBF342636B9CE00130F65 /* TFEditorViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TFEditorViewController.h; sourceTree = "<group>"; };
  622. 3C5FBF352636B9CE00130F65 /* TFEditorViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TFEditorViewController.m; sourceTree = "<group>"; };
  623. 3C5FBF3A2637E83300130F65 /* edit_isf.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = edit_isf.json; sourceTree = "<group>"; };
  624. 3C5FBF3F263A4CF100130F65 /* CommonEditor.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CommonEditor.storyboard; path = ../../common/customUI/commoneditor/CommonEditor.storyboard; sourceTree = "<group>"; };
  625. 3C5FBF53263AA5D800130F65 /* DatePickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DatePickerViewController.h; path = ../../common/customUI/commoneditor/DatePickerViewController.h; sourceTree = "<group>"; };
  626. 3C5FBF54263AA5D800130F65 /* MonthPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MonthPickerViewController.m; path = ../../common/customUI/commoneditor/MonthPickerViewController.m; sourceTree = "<group>"; };
  627. 3C5FBF55263AA5D800130F65 /* DatePickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DatePickerViewController.m; path = ../../common/customUI/commoneditor/DatePickerViewController.m; sourceTree = "<group>"; };
  628. 3C5FBF56263AA5D800130F65 /* MonthPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MonthPickerViewController.h; path = ../../common/customUI/commoneditor/MonthPickerViewController.h; sourceTree = "<group>"; };
  629. 3C5FBF62263BAD3A00130F65 /* edit_party.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = edit_party.json; sourceTree = "<group>"; };
  630. 3C70C0AB2A317F15008C2400 /* MessageBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageBox.h; sourceTree = "<group>"; };
  631. 3C70C0AC2A317F15008C2400 /* PopWaitAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PopWaitAlert.h; sourceTree = "<group>"; };
  632. 3C70C0AD2A317F15008C2400 /* RAPopviewContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAPopviewContainer.h; sourceTree = "<group>"; };
  633. 3C70C0AE2A317F15008C2400 /* PopWaitAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PopWaitAlert.m; sourceTree = "<group>"; };
  634. 3C70C0AF2A317F15008C2400 /* MessageBox.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageBox.m; sourceTree = "<group>"; };
  635. 3C70C0B02A317F15008C2400 /* RAPopviewContainer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAPopviewContainer.m; sourceTree = "<group>"; };
  636. 3C7670322595932D00588DB5 /* TFNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TFNavigationController.h; sourceTree = "<group>"; };
  637. 3C7670332595932D00588DB5 /* TFNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TFNavigationController.m; sourceTree = "<group>"; };
  638. 3C7670382595BE2900588DB5 /* detail.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = detail.json; sourceTree = "<group>"; };
  639. 3C7670462599B1E000588DB5 /* ResulteManifestModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResulteManifestModel.h; sourceTree = "<group>"; };
  640. 3C7670472599B1E000588DB5 /* ResulteManifestModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ResulteManifestModel.m; sourceTree = "<group>"; };
  641. 3C76704F2599B29D00588DB5 /* ResulteManifestCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResulteManifestCell.h; sourceTree = "<group>"; };
  642. 3C7670502599B29D00588DB5 /* ResulteManifestCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ResulteManifestCell.m; sourceTree = "<group>"; };
  643. 3C7670552599B2C700588DB5 /* ResulteManifestCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ResulteManifestCell.xib; sourceTree = "<group>"; };
  644. 3C767063259B200F00588DB5 /* HomeDashEmptyCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeDashEmptyCell.h; sourceTree = "<group>"; };
  645. 3C767064259B200F00588DB5 /* HomeDashEmptyCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeDashEmptyCell.m; sourceTree = "<group>"; };
  646. 3C767065259B200F00588DB5 /* HomeDashEmptyCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeDashEmptyCell.xib; sourceTree = "<group>"; };
  647. 3C76706E25A2F4F000588DB5 /* log_isf.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = log_isf.json; sourceTree = "<group>"; };
  648. 3C76707325A2F60C00588DB5 /* container.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = container.json; sourceTree = "<group>"; };
  649. 3C76707825A453AD00588DB5 /* DetailCellContainer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailCellContainer.h; sourceTree = "<group>"; };
  650. 3C76707925A453AD00588DB5 /* DetailCellContainer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailCellContainer.m; sourceTree = "<group>"; };
  651. 3C76708625A6DD7400588DB5 /* ChangePasswordViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChangePasswordViewController.m; sourceTree = "<group>"; };
  652. 3C76708725A6DD7400588DB5 /* ChangePasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangePasswordViewController.h; sourceTree = "<group>"; };
  653. 3C76709525A84C0C00588DB5 /* log_acem1.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = log_acem1.json; sourceTree = "<group>"; };
  654. 3C76709D25A84C1E00588DB5 /* log_aci.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = log_aci.json; sourceTree = "<group>"; };
  655. 3C7670A225A84C3600588DB5 /* log_emanifest.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = log_emanifest.json; sourceTree = "<group>"; };
  656. 3C7670A725A84C5900588DB5 /* log_hblclose.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = log_hblclose.json; sourceTree = "<group>"; };
  657. 3C7670AC25A84C8600588DB5 /* detail_customer.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = detail_customer.json; sourceTree = "<group>"; };
  658. 3C7670B725AC254B00588DB5 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = "<group>"; };
  659. 3C7670B825AC254C00588DB5 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
  660. 3C7670D725AC268300588DB5 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  661. 3C7670E225AC275700588DB5 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  662. 3C7670FD25B6ABE900588DB5 /* About.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = About.storyboard; sourceTree = "<group>"; };
  663. 3C76710225B6AFF800588DB5 /* AboutViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AboutViewController.h; sourceTree = "<group>"; };
  664. 3C76710325B6AFF800588DB5 /* AboutViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AboutViewController.m; sourceTree = "<group>"; };
  665. 3C76710B25B6D94100588DB5 /* SignupViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SignupViewController.h; sourceTree = "<group>"; };
  666. 3C76710C25B6D94100588DB5 /* SignupViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SignupViewController.m; sourceTree = "<group>"; };
  667. 3C76711225B7C28600588DB5 /* AgreementViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AgreementViewController.h; sourceTree = "<group>"; };
  668. 3C76711325B7C28600588DB5 /* AgreementViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AgreementViewController.m; sourceTree = "<group>"; };
  669. 3C76711B25B7C29800588DB5 /* SignUp.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = SignUp.storyboard; sourceTree = "<group>"; };
  670. 3C7F37262563CC5F0033BF82 /* NetworkUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NetworkUtils.m; path = ../../../common/NetworkUtils.m; sourceTree = "<group>"; };
  671. 3C7F37272563CC5F0033BF82 /* NetworkUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NetworkUtils.h; path = ../../../common/NetworkUtils.h; sourceTree = "<group>"; };
  672. 3C7F373A2563CDB70033BF82 /* NSData+CommonCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+CommonCrypto.h"; path = "../../../RedAnt ERP Mobile/common/AES/NSData+CommonCrypto.h"; sourceTree = "<group>"; };
  673. 3C7F373B2563CDB70033BF82 /* NSData+CommonCrypto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+CommonCrypto.m"; path = "../../../RedAnt ERP Mobile/common/AES/NSData+CommonCrypto.m"; sourceTree = "<group>"; };
  674. 3C7F373C2563CDB70033BF82 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE; path = "../../../RedAnt ERP Mobile/common/AES/LICENSE"; sourceTree = "<group>"; };
  675. 3C7F373D2563CDB70033BF82 /* NSString+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+Base64.h"; path = "../../../RedAnt ERP Mobile/common/AES/NSString+Base64.h"; sourceTree = "<group>"; };
  676. 3C7F373E2563CDB70033BF82 /* AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = "../../../RedAnt ERP Mobile/common/AES/AESCrypt.h"; sourceTree = "<group>"; };
  677. 3C7F373F2563CDB70033BF82 /* NSString+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+Base64.m"; path = "../../../RedAnt ERP Mobile/common/AES/NSString+Base64.m"; sourceTree = "<group>"; };
  678. 3C7F37402563CDB70033BF82 /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+Base64.m"; path = "../../../RedAnt ERP Mobile/common/AES/NSData+Base64.m"; sourceTree = "<group>"; };
  679. 3C7F37412563CDB70033BF82 /* NSData+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+Base64.h"; path = "../../../RedAnt ERP Mobile/common/AES/NSData+Base64.h"; sourceTree = "<group>"; };
  680. 3C7F37422563CDB70033BF82 /* AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AESCrypt.m; path = "../../../RedAnt ERP Mobile/common/AES/AESCrypt.m"; sourceTree = "<group>"; };
  681. 3C7F37512564C0690033BF82 /* RAEmptyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAEmptyView.m; path = ../../common/EmptyView/RAEmptyView.m; sourceTree = "<group>"; };
  682. 3C7F37522564C0690033BF82 /* RAEmptyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAEmptyView.h; path = ../../common/EmptyView/RAEmptyView.h; sourceTree = "<group>"; };
  683. 3C7F37662564C11E0033BF82 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Reachability.m; path = ../../../common/Network/Reachability.m; sourceTree = "<group>"; };
  684. 3C7F37692564C11E0033BF82 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Reachability.h; path = ../../../common/Network/Reachability.h; sourceTree = "<group>"; };
  685. 3C7F376F2564C13E0033BF82 /* RANetworkTaskDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RANetworkTaskDelegate.m; path = ../../../common/Network/RANetworkTaskDelegate.m; sourceTree = "<group>"; };
  686. 3C7F37702564C13E0033BF82 /* RANetworkTaskDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RANetworkTaskDelegate.h; path = ../../../common/Network/RANetworkTaskDelegate.h; sourceTree = "<group>"; };
  687. 3C7F37782564C1E10033BF82 /* RABadgeNumberView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RABadgeNumberView.h; sourceTree = "<group>"; };
  688. 3C7F37792564C1E10033BF82 /* RABadgeNumberView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RABadgeNumberView.m; sourceTree = "<group>"; };
  689. 3C7F378A2564C2400033BF82 /* RAProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAProgressHUD.h; path = ../../common/HUD/RAProgressHUD.h; sourceTree = "<group>"; };
  690. 3C7F378B2564C2400033BF82 /* RAProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAProgressHUD.m; path = ../../common/HUD/RAProgressHUD.m; sourceTree = "<group>"; };
  691. 3C7F37902564C2720033BF82 /* RAHomeHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAHomeHeaderView.h; sourceTree = "<group>"; };
  692. 3C7F37912564C2720033BF82 /* RAHomeHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAHomeHeaderView.m; sourceTree = "<group>"; };
  693. 3C7F37DC2564C3DD0033BF82 /* UIScrollView+Empty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+Empty.h"; path = "../../common/UIScrollVIew+Empty/UIScrollView+Empty.h"; sourceTree = "<group>"; };
  694. 3C7F37DD2564C3DD0033BF82 /* RAEmptyDataView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAEmptyDataView.h; path = "../../common/UIScrollVIew+Empty/RAEmptyDataView.h"; sourceTree = "<group>"; };
  695. 3C7F37DE2564C3DD0033BF82 /* UIScrollView+Empty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+Empty.m"; path = "../../common/UIScrollVIew+Empty/UIScrollView+Empty.m"; sourceTree = "<group>"; };
  696. 3C7F37DF2564C3DD0033BF82 /* RAEmptyDataView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAEmptyDataView.m; path = "../../common/UIScrollVIew+Empty/RAEmptyDataView.m"; sourceTree = "<group>"; };
  697. 3C7F37F12564C44D0033BF82 /* UIImage+RedAnt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RedAnt.m"; path = "../../common/UIImage/UIImage+RedAnt.m"; sourceTree = "<group>"; };
  698. 3C7F37F22564C44D0033BF82 /* UIImage+RedAnt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIImage+RedAnt.h"; path = "../../common/UIImage/UIImage+RedAnt.h"; sourceTree = "<group>"; };
  699. 3C7F37F72564C4810033BF82 /* RASingleton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RASingleton.h; sourceTree = "<group>"; };
  700. 3C7F37F82564C4810033BF82 /* RASingleton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RASingleton.m; sourceTree = "<group>"; };
  701. 3C7F37FD2564C4C80033BF82 /* RADataProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RADataProvider.m; sourceTree = "<group>"; };
  702. 3C7F37FE2564C4C80033BF82 /* RADataProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RADataProvider.h; sourceTree = "<group>"; };
  703. 3C7F38032564C5440033BF82 /* RetrievePasswordViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RetrievePasswordViewController.m; sourceTree = "<group>"; };
  704. 3C7F38042564C5440033BF82 /* RetrievePasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RetrievePasswordViewController.h; sourceTree = "<group>"; };
  705. 3C7F381B2564C6980033BF82 /* RAHomeSectionHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAHomeSectionHeaderView.m; sourceTree = "<group>"; };
  706. 3C7F381C2564C6980033BF82 /* RAHomeSectionHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAHomeSectionHeaderView.h; sourceTree = "<group>"; };
  707. 3C7F38212564C70F0033BF82 /* JLCustomerAlertController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JLCustomerAlertController.h; path = ../../common/customUI/Alert/JLCustomerAlertController.h; sourceTree = "<group>"; };
  708. 3C7F38222564C70F0033BF82 /* JLCustomerAlertController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = JLCustomerAlertController.m; path = ../../common/customUI/Alert/JLCustomerAlertController.m; sourceTree = "<group>"; };
  709. 3C7F382B2564C78C0033BF82 /* JLRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JLRefreshFooter.h; path = ../../common/customUI/Refresh/Footer/JLRefreshFooter.h; sourceTree = "<group>"; };
  710. 3C7F382C2564C78C0033BF82 /* JLRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = JLRefreshFooter.m; path = ../../common/customUI/Refresh/Footer/JLRefreshFooter.m; sourceTree = "<group>"; };
  711. 3C7F38372564C7EB0033BF82 /* WebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebViewController.m; path = "../../common/WK PDF+Web/WebViewController.m"; sourceTree = "<group>"; };
  712. 3C7F38382564C7EB0033BF82 /* WebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebViewController.h; path = "../../common/WK PDF+Web/WebViewController.h"; sourceTree = "<group>"; };
  713. 3C833CA825C7D6CB006F9BEF /* detail_acem1.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = detail_acem1.json; sourceTree = "<group>"; };
  714. 3C833CAD25C92665006F9BEF /* detail_isf.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = detail_isf.json; sourceTree = "<group>"; };
  715. 3C833CB225C941AB006F9BEF /* detail_aci.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = detail_aci.json; sourceTree = "<group>"; };
  716. 3C833CB725C94289006F9BEF /* detail_emanifest.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = detail_emanifest.json; sourceTree = "<group>"; };
  717. 3C833CBC25C944FE006F9BEF /* DetailCellContainerCA.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailCellContainerCA.h; sourceTree = "<group>"; };
  718. 3C833CBD25C944FE006F9BEF /* DetailCellContainerCA.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailCellContainerCA.m; sourceTree = "<group>"; };
  719. 3C833CD125CBF10A006F9BEF /* fake_export.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = fake_export.pdf; sourceTree = "<group>"; };
  720. 3C92A176264677A700344B9B /* common_const.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = common_const.h; path = ../../common/common_const.h; sourceTree = "<group>"; };
  721. 3C97FE66270058E4005DB50C /* my_d.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = my_d.json; sourceTree = "<group>"; };
  722. 3C97FE6A2701C0B6005DB50C /* edit_notification_setting.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = edit_notification_setting.json; sourceTree = "<group>"; };
  723. 3CAB3FD92564F27D00CB554D /* RAUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAUtils.h; path = ../../common/RAUtils.h; sourceTree = "<group>"; };
  724. 3CAB3FDA2564F27D00CB554D /* RAUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAUtils.m; path = ../../common/RAUtils.m; sourceTree = "<group>"; };
  725. /* End PBXFileReference section */
  726. /* Begin PBXFrameworksBuildPhase section */
  727. 3C0CB32E255E56BF00718A03 /* Frameworks */ = {
  728. isa = PBXFrameworksBuildPhase;
  729. buildActionMask = 2147483647;
  730. files = (
  731. );
  732. runOnlyForDeploymentPostprocessing = 0;
  733. };
  734. 3C0CB349255E56C000718A03 /* Frameworks */ = {
  735. isa = PBXFrameworksBuildPhase;
  736. buildActionMask = 2147483647;
  737. files = (
  738. );
  739. runOnlyForDeploymentPostprocessing = 0;
  740. };
  741. 3C0CB354255E56C000718A03 /* Frameworks */ = {
  742. isa = PBXFrameworksBuildPhase;
  743. buildActionMask = 2147483647;
  744. files = (
  745. );
  746. runOnlyForDeploymentPostprocessing = 0;
  747. };
  748. /* End PBXFrameworksBuildPhase section */
  749. /* Begin PBXGroup section */
  750. 3C0CB328255E56BF00718A03 = {
  751. isa = PBXGroup;
  752. children = (
  753. 3C0CB333255E56BF00718A03 /* RA TradeFiling */,
  754. 3C0CB34F255E56C000718A03 /* RA TradeFilingTests */,
  755. 3C0CB35A255E56C000718A03 /* RA TradeFilingUITests */,
  756. 3C0CB332255E56BF00718A03 /* Products */,
  757. );
  758. sourceTree = "<group>";
  759. };
  760. 3C0CB332255E56BF00718A03 /* Products */ = {
  761. isa = PBXGroup;
  762. children = (
  763. 3C0CB331255E56BF00718A03 /* RA TradeFiling.app */,
  764. 3C0CB34C255E56C000718A03 /* RA TradeFilingTests.xctest */,
  765. 3C0CB357255E56C000718A03 /* RA TradeFilingUITests.xctest */,
  766. );
  767. name = Products;
  768. sourceTree = "<group>";
  769. };
  770. 3C0CB333255E56BF00718A03 /* RA TradeFiling */ = {
  771. isa = PBXGroup;
  772. children = (
  773. 3C2C27F4263691EC009460F5 /* TFEditor */,
  774. 3C2C27A326366447009460F5 /* Appearance */,
  775. 3C76711125B7C26300588DB5 /* SignUp */,
  776. 3C7670FC25B6ABC100588DB5 /* About */,
  777. 3C7670BF25AC257F00588DB5 /* Localize */,
  778. 3C5F8D6A257F545A00CFD26A /* Share */,
  779. 3C5F8CD525777E5800CFD26A /* CustomFields */,
  780. 3C5F8C822567B72800CFD26A /* FAKE_DATA */,
  781. 3C5F8C722566609B00CFD26A /* DataProvider */,
  782. 3C7F37F72564C4810033BF82 /* RASingleton.h */,
  783. 3C7F37F82564C4810033BF82 /* RASingleton.m */,
  784. 3C7F37962564C2900033BF82 /* Message */,
  785. 3C7F37382563CD9A0033BF82 /* Utils */,
  786. 3C7F37162563CB710033BF82 /* Common */,
  787. 3C0CB3D2256273CB00718A03 /* Network */,
  788. 3C0CB3C42562738C00718A03 /* StaticModelist */,
  789. 3C0CB395255E819700718A03 /* Result */,
  790. 3C0CB394255E818D00718A03 /* Detail */,
  791. 3C0CB393255E818100718A03 /* Search */,
  792. 3C0CB392255E817700718A03 /* Home */,
  793. 3C0CB38B255E617800718A03 /* My */,
  794. 3C0CB384255E610200718A03 /* Login */,
  795. 3C0CB37F255E5CF900718A03 /* const.h */,
  796. 3C0CB380255E5D0E00718A03 /* config.h */,
  797. 3C0CB36C255E585D00718A03 /* Tab Root */,
  798. 3C0CB334255E56BF00718A03 /* AppDelegate.h */,
  799. 3C0CB335255E56BF00718A03 /* AppDelegate.m */,
  800. 3C0CB337255E56BF00718A03 /* SceneDelegate.h */,
  801. 3C0CB338255E56BF00718A03 /* SceneDelegate.m */,
  802. 3C0CB33A255E56BF00718A03 /* ViewController.h */,
  803. 3C0CB33B255E56BF00718A03 /* ViewController.m */,
  804. 3C7670322595932D00588DB5 /* TFNavigationController.h */,
  805. 3C7670332595932D00588DB5 /* TFNavigationController.m */,
  806. 3C0CB33D255E56BF00718A03 /* Main.storyboard */,
  807. 3C0CB340255E56BF00718A03 /* Assets.xcassets */,
  808. 3C0CB342255E56BF00718A03 /* LaunchScreen.storyboard */,
  809. 3C0CB345255E56BF00718A03 /* Info.plist */,
  810. 3C0CB346255E56BF00718A03 /* main.m */,
  811. );
  812. path = "RA TradeFiling";
  813. sourceTree = "<group>";
  814. };
  815. 3C0CB34F255E56C000718A03 /* RA TradeFilingTests */ = {
  816. isa = PBXGroup;
  817. children = (
  818. 3C0CB350255E56C000718A03 /* RA_TradeFilingTests.m */,
  819. 3C0CB352255E56C000718A03 /* Info.plist */,
  820. );
  821. path = "RA TradeFilingTests";
  822. sourceTree = "<group>";
  823. };
  824. 3C0CB35A255E56C000718A03 /* RA TradeFilingUITests */ = {
  825. isa = PBXGroup;
  826. children = (
  827. 3C0CB35B255E56C000718A03 /* RA_TradeFilingUITests.m */,
  828. 3C0CB35D255E56C000718A03 /* Info.plist */,
  829. );
  830. path = "RA TradeFilingUITests";
  831. sourceTree = "<group>";
  832. };
  833. 3C0CB36C255E585D00718A03 /* Tab Root */ = {
  834. isa = PBXGroup;
  835. children = (
  836. 3C0CB373255E599C00718A03 /* RootViewController.h */,
  837. 3C0CB374255E599C00718A03 /* RootViewController.m */,
  838. 3C0CB379255E5BEA00718A03 /* TFRootViewController.h */,
  839. 3C0CB37A255E5BEA00718A03 /* TFRootViewController.m */,
  840. );
  841. path = "Tab Root";
  842. sourceTree = "<group>";
  843. };
  844. 3C0CB384255E610200718A03 /* Login */ = {
  845. isa = PBXGroup;
  846. children = (
  847. 3C7F38042564C5440033BF82 /* RetrievePasswordViewController.h */,
  848. 3C7F38032564C5440033BF82 /* RetrievePasswordViewController.m */,
  849. 3C0CB386255E613200718A03 /* LoginViewController.h */,
  850. 3C0CB385255E613200718A03 /* LoginViewController.m */,
  851. 3C0CB3B3255E825B00718A03 /* Login.storyboard */,
  852. );
  853. path = Login;
  854. sourceTree = "<group>";
  855. };
  856. 3C0CB38B255E617800718A03 /* My */ = {
  857. isa = PBXGroup;
  858. children = (
  859. 3C76708725A6DD7400588DB5 /* ChangePasswordViewController.h */,
  860. 3C76708625A6DD7400588DB5 /* ChangePasswordViewController.m */,
  861. 3C5F8BDF2565055300CFD26A /* SavedSearchViewController.h */,
  862. 3C5F8BE02565055300CFD26A /* SavedSearchViewController.m */,
  863. 3C5F8BD92565053600CFD26A /* SavedDetailViewController.h */,
  864. 3C5F8BDA2565053700CFD26A /* SavedDetailViewController.m */,
  865. 3C5F8BF2256505FC00CFD26A /* CellItemHistory.h */,
  866. 3C5F8BF3256505FC00CFD26A /* CellItemHistory.m */,
  867. 3C0CB38C255E618800718A03 /* MylistViewController.h */,
  868. 3C0CB38D255E618800718A03 /* MylistViewController.m */,
  869. 3C0CB3AE255E821500718A03 /* My.storyboard */,
  870. 3C5F8C86256B935E00CFD26A /* my.json */,
  871. 3C97FE66270058E4005DB50C /* my_d.json */,
  872. );
  873. path = My;
  874. sourceTree = "<group>";
  875. };
  876. 3C0CB392255E817700718A03 /* Home */ = {
  877. isa = PBXGroup;
  878. children = (
  879. 3C7F381C2564C6980033BF82 /* RAHomeSectionHeaderView.h */,
  880. 3C7F381B2564C6980033BF82 /* RAHomeSectionHeaderView.m */,
  881. 3C7F37902564C2720033BF82 /* RAHomeHeaderView.h */,
  882. 3C7F37912564C2720033BF82 /* RAHomeHeaderView.m */,
  883. 3C7F37782564C1E10033BF82 /* RABadgeNumberView.h */,
  884. 3C7F37792564C1E10033BF82 /* RABadgeNumberView.m */,
  885. 3C0CB3BE256253D800718A03 /* RABaseViewController.h */,
  886. 3C0CB3BF256253D900718A03 /* RABaseViewController.m */,
  887. 3C0CB3A0255E81CC00718A03 /* RAHomeViewController.h */,
  888. 3C0CB3A2255E81CC00718A03 /* RAHomeViewController.m */,
  889. 3C0CB39D255E81CC00718A03 /* RAHomeViewController+HomeTableDataSource.h */,
  890. 3C0CB3A1255E81CC00718A03 /* RAHomeViewController+HomeTableDataSource.m */,
  891. 3C0CB39E255E81CC00718A03 /* RAHomeViewController+HomeTableDelegate.h */,
  892. 3C0CB39F255E81CC00718A03 /* RAHomeViewController+HomeTableDelegate.m */,
  893. 3C767063259B200F00588DB5 /* HomeDashEmptyCell.h */,
  894. 3C767064259B200F00588DB5 /* HomeDashEmptyCell.m */,
  895. 3C767065259B200F00588DB5 /* HomeDashEmptyCell.xib */,
  896. 3C0CB397255E81BD00718A03 /* Home.storyboard */,
  897. 3C0CB396255E81BD00718A03 /* HomeHeader.xib */,
  898. 3C5F8C91256D079200CFD26A /* ButtonCollectionView.h */,
  899. 3C5F8C92256D079200CFD26A /* ButtonCollectionView.m */,
  900. 3C5F8C8B256CFF6F00CFD26A /* CollectionViewButtonCell.h */,
  901. 3C5F8C8C256CFF6F00CFD26A /* CollectionViewButtonCell.m */,
  902. 3C5F8CA7256F919900CFD26A /* FunctionPanel.json */,
  903. 3C5F8C9C256E3A5900CFD26A /* CollectionViewButtonCell.xib */,
  904. 3C5F8CA1256F847300CFD26A /* FunctionSettingViewController.h */,
  905. 3C5F8CA2256F847300CFD26A /* FunctionSettingViewController.m */,
  906. 3C5F8CC02576220400CFD26A /* DashboardModel.h */,
  907. 3C5F8CC12576220400CFD26A /* DashboardModel.m */,
  908. 3C5F8D8D2580B4E500CFD26A /* CompanySelectViewController.h */,
  909. 3C5F8D8E2580B4E500CFD26A /* CompanySelectViewController.m */,
  910. 3C452FBC25BE9BA00035AF5F /* DashCellPending */,
  911. 3C452FBD25BE9BB10035AF5F /* DashCellError */,
  912. );
  913. path = Home;
  914. sourceTree = "<group>";
  915. };
  916. 3C0CB393255E818100718A03 /* Search */ = {
  917. isa = PBXGroup;
  918. children = (
  919. 3C5F8C2B256509AA00CFD26A /* SearchTableAdapterJson.h */,
  920. 3C5F8C2C256509AA00CFD26A /* SearchTableAdapterJson.m */,
  921. 3C5F8C252565099300CFD26A /* MyAutocompletionCellFactory.h */,
  922. 3C5F8C262565099300CFD26A /* MyAutocompletionCellFactory.m */,
  923. 3C5F8C1F2565097600CFD26A /* MySuggestion.h */,
  924. 3C5F8C202565097600CFD26A /* MySuggestion.m */,
  925. 3C5F8C1A2565095900CFD26A /* MyAutocompleteItemsSource.h */,
  926. 3C5F8C192565095900CFD26A /* MyAutocompleteItemsSource.m */,
  927. 3C5F8C132565092C00CFD26A /* MyAutocompleteView.h */,
  928. 3C5F8C142565092C00CFD26A /* MyAutocompleteView.m */,
  929. 3C5F8C0D256508D400CFD26A /* SearchViewController.h */,
  930. 3C5F8C0E256508D400CFD26A /* SearchViewController.m */,
  931. 3C0CB3B8255E829000718A03 /* SearchlistViewController.h */,
  932. 3C0CB3B9255E829000718A03 /* SearchlistViewController.m */,
  933. 3C0CB3A9255E81F300718A03 /* Search.storyboard */,
  934. 3C5F8C3725650A8500CFD26A /* TableCellBool.h */,
  935. 3C5F8C3825650A8500CFD26A /* TableCellBool.m */,
  936. 3C5F8C3925650A8500CFD26A /* TableCellDate.h */,
  937. 3C5F8C3A25650A8500CFD26A /* TableCellDate.m */,
  938. 3C5F8C3525650A8500CFD26A /* TableCellEdit.h */,
  939. 3C5F8C3625650A8500CFD26A /* TableCellEdit.m */,
  940. 3C5F8CCD25777A2100CFD26A /* search_acem1.json */,
  941. 3C5F8CE12578807100CFD26A /* search_aci.json */,
  942. 3C5F8CE32578807100CFD26A /* search_emanifest.json */,
  943. 3C5F8CE22578807100CFD26A /* search_isf.json */,
  944. 3C243180258B016C00555555 /* search_customer.json */,
  945. );
  946. path = Search;
  947. sourceTree = "<group>";
  948. };
  949. 3C0CB394255E818D00718A03 /* Detail */ = {
  950. isa = PBXGroup;
  951. children = (
  952. 3C5F8D7E257F55BD00CFD26A /* TabBarController.h */,
  953. 3C5F8D7D257F55BD00CFD26A /* TabBarController.m */,
  954. 3C5F8D49257E2D8700CFD26A /* DetailContent.h */,
  955. 3C5F8D4A257E2D8700CFD26A /* DetailContent.m */,
  956. 3C5F8D2C257E2A6A00CFD26A /* DetailTabBarController.h */,
  957. 3C5F8D2B257E2A6A00CFD26A /* DetailTabBarController.m */,
  958. 3C5F8D32257E2A8C00CFD26A /* DetailPageViewController.h */,
  959. 3C5F8D31257E2A8C00CFD26A /* DetailPageViewController.m */,
  960. 3C5F8D37257E2AEF00CFD26A /* DetailCellKVNew.h */,
  961. 3C833CBC25C944FE006F9BEF /* DetailCellContainerCA.h */,
  962. 3C833CBD25C944FE006F9BEF /* DetailCellContainerCA.m */,
  963. 3C76707825A453AD00588DB5 /* DetailCellContainer.h */,
  964. 3C76707925A453AD00588DB5 /* DetailCellContainer.m */,
  965. 3C5F8D38257E2AEF00CFD26A /* DetailCellKVNew.m */,
  966. 3C5F8D3E257E2B3600CFD26A /* DetailCellList.h */,
  967. 3C5F8D3D257E2B3600CFD26A /* DetailCellList.m */,
  968. 3C5F8D43257E2B4500CFD26A /* DetailCellWeb.h */,
  969. 3C5F8D44257E2B4500CFD26A /* DetailCellWeb.m */,
  970. 3C5F8D83257F5CA800CFD26A /* Detail.storyboard */,
  971. );
  972. path = Detail;
  973. sourceTree = "<group>";
  974. };
  975. 3C0CB395255E819700718A03 /* Result */ = {
  976. isa = PBXGroup;
  977. children = (
  978. 3C5F8CF3257A1EE100CFD26A /* ResultViewController+TableDelegate.h */,
  979. 3C5F8CF4257A1EE100CFD26A /* ResultViewController+TableDelegate.m */,
  980. 3C5F8CEE257A1DC900CFD26A /* ResultViewController+TableDataSource.h */,
  981. 3C5F8CED257A1DC900CFD26A /* ResultViewController+TableDataSource.m */,
  982. 3C5F8C5825650BD800CFD26A /* LPShareActivity.h */,
  983. 3C5F8C5725650BD800CFD26A /* LPShareActivity.m */,
  984. 3C5F8BFE256506B900CFD26A /* MyQLPreviewController.h */,
  985. 3C5F8BFF256506BA00CFD26A /* MyQLPreviewController.m */,
  986. 3C5F8C5E25650C0F00CFD26A /* ResultAddition.h */,
  987. 3C5F8C5D25650C0F00CFD26A /* ResultAddition.m */,
  988. 3C5F8BB72565013B00CFD26A /* ResultBaseModel.h */,
  989. 3C5F8BB62565013B00CFD26A /* ResultBaseModel.m */,
  990. 3C5F8B922565000200CFD26A /* ResultProtocol.h */,
  991. 3C5F8B532564FDD100CFD26A /* Result.storyboard */,
  992. 3C5F8B542564FDD100CFD26A /* ResultViewController.h */,
  993. 3C5F8B522564FDD100CFD26A /* ResultViewController.m */,
  994. 3C5F8B8C2564FFC700CFD26A /* ResultViewController+QuickLook.h */,
  995. 3C5F8B8D2564FFC700CFD26A /* ResultViewController+QuickLook.m */,
  996. 3C5F8B972565001700CFD26A /* ResultMenuItem.h */,
  997. 3C5F8B962565001700CFD26A /* ResultMenuItem.m */,
  998. 3C5F8B9C2565003600CFD26A /* ResultPresenter.h */,
  999. 3C5F8B9D2565003600CFD26A /* ResultPresenter.m */,
  1000. 3C5F8BC5256503EC00CFD26A /* ResultAdditionView.h */,
  1001. 3C5F8BC6256503ED00CFD26A /* ResultAdditionView.m */,
  1002. 3C5F8BC7256503ED00CFD26A /* ApexResultAdditionView.xib */,
  1003. 3C7670462599B1E000588DB5 /* ResulteManifestModel.h */,
  1004. 3C7670472599B1E000588DB5 /* ResulteManifestModel.m */,
  1005. 3C76704F2599B29D00588DB5 /* ResulteManifestCell.h */,
  1006. 3C7670502599B29D00588DB5 /* ResulteManifestCell.m */,
  1007. 3C7670552599B2C700588DB5 /* ResulteManifestCell.xib */,
  1008. 3C5F8BBE2565017E00CFD26A /* ResultACIModel.h */,
  1009. 3C5F8BBF2565017E00CFD26A /* ResultACIModel.m */,
  1010. 3C5F8D932583500900CFD26A /* ResultACICell.h */,
  1011. 3C5F8D942583500A00CFD26A /* ResultACICell.m */,
  1012. 3C5F8D952583500A00CFD26A /* ResultACICell.xib */,
  1013. 3C5F8DC125836A9E00CFD26A /* ResultACEM1Model.h */,
  1014. 3C5F8DC225836A9F00CFD26A /* ResultACEM1Model.m */,
  1015. 3C5F8C4325650B0E00CFD26A /* ResultACEM1Cell.h */,
  1016. 3C5F8C4125650B0E00CFD26A /* ResultACEM1Cell.m */,
  1017. 3C5F8C4225650B0E00CFD26A /* ResultACEM1Cell.xib */,
  1018. 3C2431B0258B48AA00555555 /* ResultISFModel.h */,
  1019. 3C2431B1258B48AA00555555 /* ResultISFModel.m */,
  1020. 3C24319F258B3C7A00555555 /* ResultISFCell.h */,
  1021. 3C2431A0258B3C7A00555555 /* ResultISFCell.m */,
  1022. 3C2431A1258B3C7A00555555 /* ResultISFCell.xib */,
  1023. 3C243172258AFBE900555555 /* ResultCustomerModel.h */,
  1024. 3C243173258AFBE900555555 /* ResultCustomerModel.m */,
  1025. 3C24316A258AF60000555555 /* ResultCustomerCell.h */,
  1026. 3C24316B258AF60000555555 /* ResultCustomerCell.m */,
  1027. 3C24316C258AF60000555555 /* ResultCustomerCell.xib */,
  1028. );
  1029. path = Result;
  1030. sourceTree = "<group>";
  1031. };
  1032. 3C0CB3C42562738C00718A03 /* StaticModelist */ = {
  1033. isa = PBXGroup;
  1034. children = (
  1035. 3C0CB3C52562739F00718A03 /* StaticModelistViewController.h */,
  1036. 3C0CB3C62562739F00718A03 /* StaticModelistViewController.m */,
  1037. 3C0CB3CA2562739F00718A03 /* StaticModelistViewController.xib */,
  1038. 3C0CB3C72562739F00718A03 /* StaticModeTableViewCell.h */,
  1039. 3C0CB3C92562739F00718A03 /* StaticModeTableViewCell.m */,
  1040. 3C0CB3C82562739F00718A03 /* StaticModeTableViewCell.xib */,
  1041. );
  1042. path = StaticModelist;
  1043. sourceTree = "<group>";
  1044. };
  1045. 3C0CB3D2256273CB00718A03 /* Network */ = {
  1046. isa = PBXGroup;
  1047. children = (
  1048. 3C7F37702564C13E0033BF82 /* RANetworkTaskDelegate.h */,
  1049. 3C7F376F2564C13E0033BF82 /* RANetworkTaskDelegate.m */,
  1050. 3C7F37692564C11E0033BF82 /* Reachability.h */,
  1051. 3C7F37662564C11E0033BF82 /* Reachability.m */,
  1052. 3C7F37272563CC5F0033BF82 /* NetworkUtils.h */,
  1053. 3C7F37262563CC5F0033BF82 /* NetworkUtils.m */,
  1054. );
  1055. path = Network;
  1056. sourceTree = "<group>";
  1057. };
  1058. 3C2C26C32635143A009460F5 /* Editor */ = {
  1059. isa = PBXGroup;
  1060. children = (
  1061. 3C5FBF47263A8C2F00130F65 /* EditorCell */,
  1062. 3C5FBF3F263A4CF100130F65 /* CommonEditor.storyboard */,
  1063. 3C2C26C4263555AB009460F5 /* autocomplete */,
  1064. 3C2C26E426355750009460F5 /* ActionCell */,
  1065. 3C2C26D326355708009460F5 /* BannerCell */,
  1066. 3C2C26F02635579F009460F5 /* EditCell */,
  1067. 3C2C26FC263557D9009460F5 /* EnumCell */,
  1068. 3C2C270826355804009460F5 /* LabelCell */,
  1069. 3C2C27142635586C009460F5 /* MActionCell */,
  1070. 3C2C2720263558BD009460F5 /* ModelCell */,
  1071. 3C2C2750263559B6009460F5 /* RangeCell */,
  1072. 3C2C272C263558EA009460F5 /* SignatureCell */,
  1073. 3C2C273826355934009460F5 /* SwitchCell */,
  1074. 3C2C274426355973009460F5 /* TextViewCell */,
  1075. 3C2C275C263559F6009460F5 /* WebCell */,
  1076. 3C2C26CE263556C1009460F5 /* CommonEditorTableContainerView.h */,
  1077. 3C2C26CD263556C1009460F5 /* CommonEditorTableContainerView.m */,
  1078. 3C2C277D2636623F009460F5 /* CommonEditorViewController.h */,
  1079. 3C2C277E2636623F009460F5 /* CommonEditorViewController.m */,
  1080. 3C2C27EE26366B3B009460F5 /* DefaultTableHeaderView.h */,
  1081. 3C2C27EF26366B3C009460F5 /* DefaultTableHeaderView.m */,
  1082. );
  1083. name = Editor;
  1084. sourceTree = "<group>";
  1085. };
  1086. 3C2C26C4263555AB009460F5 /* autocomplete */ = {
  1087. isa = PBXGroup;
  1088. children = (
  1089. 3C2C26C6263555D4009460F5 /* CommonEditorAutoCompleteView.h */,
  1090. 3C2C26C7263555D4009460F5 /* CommonEditorAutoCompleteView.m */,
  1091. 3C2C26C5263555D4009460F5 /* CommonEditorAutoCompleteView.xib */,
  1092. );
  1093. name = autocomplete;
  1094. sourceTree = "<group>";
  1095. };
  1096. 3C2C26D326355708009460F5 /* BannerCell */ = {
  1097. isa = PBXGroup;
  1098. children = (
  1099. 3C2C26DD2635573B009460F5 /* CommonEditorBannerCell.h */,
  1100. 3C2C26DC2635573B009460F5 /* CommonEditorBannerCell.m */,
  1101. 3C2C26DB2635573B009460F5 /* CommonEditorBannerItemCell.h */,
  1102. 3C2C26DE2635573B009460F5 /* CommonEditorBannerItemCell.m */,
  1103. 3C2C26D426355728009460F5 /* Phone_Banner_Cell.xib */,
  1104. 3C2C26D526355728009460F5 /* Phone_Banner_Item_Cell.xib */,
  1105. );
  1106. name = BannerCell;
  1107. sourceTree = "<group>";
  1108. };
  1109. 3C2C26E426355750009460F5 /* ActionCell */ = {
  1110. isa = PBXGroup;
  1111. children = (
  1112. 3C2C26EA2635578F009460F5 /* CommonEditorCellAction.h */,
  1113. 3C2C26EB2635578F009460F5 /* CommonEditorCellAction.m */,
  1114. 3C2C26E52635577F009460F5 /* Phone_Action_Cell.xib */,
  1115. );
  1116. name = ActionCell;
  1117. sourceTree = "<group>";
  1118. };
  1119. 3C2C26F02635579F009460F5 /* EditCell */ = {
  1120. isa = PBXGroup;
  1121. children = (
  1122. 3C2C26F7263557C5009460F5 /* Phone_Edit_Cell.xib */,
  1123. 3C2C26F2263557B8009460F5 /* CommonEditorCellEdit.h */,
  1124. 3C2C26F1263557B8009460F5 /* CommonEditorCellEdit.m */,
  1125. );
  1126. name = EditCell;
  1127. sourceTree = "<group>";
  1128. };
  1129. 3C2C26FC263557D9009460F5 /* EnumCell */ = {
  1130. isa = PBXGroup;
  1131. children = (
  1132. 3C2C2703263557F8009460F5 /* CommonEditorCellEnum.h */,
  1133. 3C2C2702263557F8009460F5 /* CommonEditorCellEnum.m */,
  1134. 3C2C26FD263557E8009460F5 /* Phone_Enum_Cell.xib */,
  1135. );
  1136. name = EnumCell;
  1137. sourceTree = "<group>";
  1138. };
  1139. 3C2C270826355804009460F5 /* LabelCell */ = {
  1140. isa = PBXGroup;
  1141. children = (
  1142. 3C2C270F2635581E009460F5 /* Phone_Label_Cell.xib */,
  1143. 3C2C270A26355810009460F5 /* CommonEditorCellLabel.h */,
  1144. 3C2C270926355810009460F5 /* CommonEditorCellLabel.m */,
  1145. );
  1146. name = LabelCell;
  1147. sourceTree = "<group>";
  1148. };
  1149. 3C2C27142635586C009460F5 /* MActionCell */ = {
  1150. isa = PBXGroup;
  1151. children = (
  1152. 3C2C271B263558A0009460F5 /* CommonEditorCellMAction.h */,
  1153. 3C2C271A263558A0009460F5 /* CommonEditorCellMAction.m */,
  1154. 3C2C271526355893009460F5 /* Phone_MAction_Cell.xib */,
  1155. );
  1156. name = MActionCell;
  1157. sourceTree = "<group>";
  1158. };
  1159. 3C2C2720263558BD009460F5 /* ModelCell */ = {
  1160. isa = PBXGroup;
  1161. children = (
  1162. 3C2C2727263558DA009460F5 /* Phone_Model_Cell.xib */,
  1163. 3C2C2721263558CE009460F5 /* CommonEditorCellModel.h */,
  1164. 3C2C2722263558CE009460F5 /* CommonEditorCellModel.m */,
  1165. );
  1166. name = ModelCell;
  1167. sourceTree = "<group>";
  1168. };
  1169. 3C2C272C263558EA009460F5 /* SignatureCell */ = {
  1170. isa = PBXGroup;
  1171. children = (
  1172. 3C2C272D263558FA009460F5 /* Phone_Signature_Cell.xib */,
  1173. 3C2C273326355918009460F5 /* CommonEditorCellSignature.h */,
  1174. 3C2C273226355918009460F5 /* CommonEditorCellSignature.m */,
  1175. );
  1176. name = SignatureCell;
  1177. sourceTree = "<group>";
  1178. };
  1179. 3C2C273826355934009460F5 /* SwitchCell */ = {
  1180. isa = PBXGroup;
  1181. children = (
  1182. 3C2C273F2635595E009460F5 /* Phone_Switch_Cell.xib */,
  1183. 3C2C27392635594A009460F5 /* CommonEditorCellSwitch.h */,
  1184. 3C2C273A2635594A009460F5 /* CommonEditorCellSwitch.m */,
  1185. );
  1186. name = SwitchCell;
  1187. sourceTree = "<group>";
  1188. };
  1189. 3C2C274426355973009460F5 /* TextViewCell */ = {
  1190. isa = PBXGroup;
  1191. children = (
  1192. 3C2C274B263559A4009460F5 /* Phone_TextView_Cell.xib */,
  1193. 3C2C274526355996009460F5 /* CommonEditorCellTextView.h */,
  1194. 3C2C274626355996009460F5 /* CommonEditorCellTextView.m */,
  1195. );
  1196. name = TextViewCell;
  1197. sourceTree = "<group>";
  1198. };
  1199. 3C2C2750263559B6009460F5 /* RangeCell */ = {
  1200. isa = PBXGroup;
  1201. children = (
  1202. 3C2C2756263559D6009460F5 /* CommonEditorRangeCell.h */,
  1203. 3C2C2757263559D6009460F5 /* CommonEditorRangeCell.m */,
  1204. 3C2C2751263559C1009460F5 /* Phone_Range_Cell.xib */,
  1205. );
  1206. name = RangeCell;
  1207. sourceTree = "<group>";
  1208. };
  1209. 3C2C275C263559F6009460F5 /* WebCell */ = {
  1210. isa = PBXGroup;
  1211. children = (
  1212. 3C2C276326355A17009460F5 /* Phone_Web_Cell.xib */,
  1213. 3C2C275E26355A09009460F5 /* CommonEditorWebCell.h */,
  1214. 3C2C275D26355A08009460F5 /* CommonEditorWebCell.m */,
  1215. );
  1216. name = WebCell;
  1217. sourceTree = "<group>";
  1218. };
  1219. 3C2C276826355A3D009460F5 /* youtube */ = {
  1220. isa = PBXGroup;
  1221. children = (
  1222. 3C2C276926355A50009460F5 /* RAYTPlayer.h */,
  1223. 3C2C276A26355A50009460F5 /* RAYTPlayer.m */,
  1224. 3C2C276B26355A50009460F5 /* ytplayer.html */,
  1225. );
  1226. name = youtube;
  1227. sourceTree = "<group>";
  1228. };
  1229. 3C2C278326366283009460F5 /* signature */ = {
  1230. isa = PBXGroup;
  1231. children = (
  1232. 3C2C278F26366294009460F5 /* Signature.xcassets */,
  1233. 3C2C27862636628D009460F5 /* signature.storyboard */,
  1234. 3C2C27852636628D009460F5 /* SignatureView.h */,
  1235. 3C2C27872636628D009460F5 /* SignatureView.m */,
  1236. 3C2C27842636628D009460F5 /* SignatureViewController.h */,
  1237. 3C2C27882636628D009460F5 /* SignatureViewController.m */,
  1238. );
  1239. name = signature;
  1240. sourceTree = "<group>";
  1241. };
  1242. 3C2C27A326366447009460F5 /* Appearance */ = {
  1243. isa = PBXGroup;
  1244. children = (
  1245. 3C2C27A626366464009460F5 /* default_appearance.json */,
  1246. 3C2C27A526366464009460F5 /* DefaultAppearance.h */,
  1247. 3C2C27A426366464009460F5 /* DefaultAppearance.m */,
  1248. );
  1249. path = Appearance;
  1250. sourceTree = "<group>";
  1251. };
  1252. 3C2C27C92636660A009460F5 /* PhotoList */ = {
  1253. isa = PBXGroup;
  1254. children = (
  1255. 3C2C27D8263666DF009460F5 /* ContentPreviewController.h */,
  1256. 3C2C27D7263666DF009460F5 /* ContentPreviewController.m */,
  1257. 3C2C27DD263666E8009460F5 /* PhotoList.storyboard */,
  1258. 3C2C27E5263666F2009460F5 /* PhotoPreviewCell.h */,
  1259. 3C2C27E2263666F2009460F5 /* PhotoPreviewCell.m */,
  1260. 3C2C27E3263666F2009460F5 /* VideoPreviewCell.h */,
  1261. 3C2C27E4263666F2009460F5 /* VideoPreviewCell.m */,
  1262. );
  1263. name = PhotoList;
  1264. sourceTree = "<group>";
  1265. };
  1266. 3C2C27F4263691EC009460F5 /* TFEditor */ = {
  1267. isa = PBXGroup;
  1268. children = (
  1269. 3C2C27FE2636B8C4009460F5 /* TFEditor.storyboard */,
  1270. 3C5FBF342636B9CE00130F65 /* TFEditorViewController.h */,
  1271. 3C5FBF352636B9CE00130F65 /* TFEditorViewController.m */,
  1272. );
  1273. path = TFEditor;
  1274. sourceTree = "<group>";
  1275. };
  1276. 3C452FBC25BE9BA00035AF5F /* DashCellPending */ = {
  1277. isa = PBXGroup;
  1278. children = (
  1279. 3C452F3925B9795C0035AF5F /* HomeDashISFModelP.h */,
  1280. 3C452F3A25B9795C0035AF5F /* HomeDashISFModelP.m */,
  1281. 3C452F3125B9766C0035AF5F /* HomeDashISFCellP.h */,
  1282. 3C452F3225B9766C0035AF5F /* HomeDashISFCellP.m */,
  1283. 3C452F3325B9766C0035AF5F /* HomeDashISFCellP.xib */,
  1284. 3C452F4225BA73F70035AF5F /* HomeDashACEM1ModelP.h */,
  1285. 3C452F4325BA73F70035AF5F /* HomeDashACEM1ModelP.m */,
  1286. 3C452F4825BA74610035AF5F /* HomeDashACEM1CellP.h */,
  1287. 3C452F4925BA74610035AF5F /* HomeDashACEM1CellP.m */,
  1288. 3C452F4A25BA74610035AF5F /* HomeDashACEM1CellP.xib */,
  1289. 3C452F6725BAA5790035AF5F /* HomeDashACIModelP.h */,
  1290. 3C452F6825BAA5790035AF5F /* HomeDashACIModelP.m */,
  1291. 3C452F5C25BAA5570035AF5F /* HomeDashACICellP.h */,
  1292. 3C452F5D25BAA5570035AF5F /* HomeDashACICellP.m */,
  1293. 3C452F5E25BAA5570035AF5F /* HomeDashACICellP.xib */,
  1294. 3C452F6D25BABA2B0035AF5F /* HomeDasheManifestModelP.h */,
  1295. 3C452F6E25BABA2B0035AF5F /* HomeDasheManifestModelP.m */,
  1296. 3C452F7325BABA740035AF5F /* HomeDasheManifestCellP.h */,
  1297. 3C452F7425BABA740035AF5F /* HomeDasheManifestCellP.m */,
  1298. 3C452F7525BABA740035AF5F /* HomeDasheManifestCellP.xib */,
  1299. );
  1300. path = DashCellPending;
  1301. sourceTree = "<group>";
  1302. };
  1303. 3C452FBD25BE9BB10035AF5F /* DashCellError */ = {
  1304. isa = PBXGroup;
  1305. children = (
  1306. 3C452F7B25BE73190035AF5F /* HomeDashISFCellE.h */,
  1307. 3C452F7C25BE73190035AF5F /* HomeDashISFCellE.m */,
  1308. 3C452F7D25BE73190035AF5F /* HomeDashISFCellE.xib */,
  1309. 3C452F8325BE733A0035AF5F /* HomeDashISFModelE.h */,
  1310. 3C452F8425BE733A0035AF5F /* HomeDashISFModelE.m */,
  1311. 3C452F9525BE97430035AF5F /* HomeDashACEM1CellE.h */,
  1312. 3C452F9625BE97430035AF5F /* HomeDashACEM1CellE.m */,
  1313. 3C452F9725BE97430035AF5F /* HomeDashACEM1CellE.xib */,
  1314. 3C452F8C25BE971C0035AF5F /* HomeDashACEM1ModelE.h */,
  1315. 3C452F8D25BE971C0035AF5F /* HomeDashACEM1ModelE.m */,
  1316. 3C452F9D25BE98270035AF5F /* HomeDashACICellE.h */,
  1317. 3C452F9E25BE98270035AF5F /* HomeDashACICellE.m */,
  1318. 3C452F9F25BE98270035AF5F /* HomeDashACICellE.xib */,
  1319. 3C452FAD25BE985C0035AF5F /* HomeDashACIModelE.h */,
  1320. 3C452FAE25BE985C0035AF5F /* HomeDashACIModelE.m */,
  1321. 3C452FA525BE98410035AF5F /* HomeDasheManifestCellE.h */,
  1322. 3C452FA625BE98410035AF5F /* HomeDasheManifestCellE.m */,
  1323. 3C452FA725BE98410035AF5F /* HomeDasheManifestCellE.xib */,
  1324. 3C452FB325BE987C0035AF5F /* HomeDasheManifestModelE.h */,
  1325. 3C452FB425BE987C0035AF5F /* HomeDasheManifestModelE.m */,
  1326. );
  1327. path = DashCellError;
  1328. sourceTree = "<group>";
  1329. };
  1330. 3C5F8C722566609B00CFD26A /* DataProvider */ = {
  1331. isa = PBXGroup;
  1332. children = (
  1333. 3C7F37FE2564C4C80033BF82 /* RADataProvider.h */,
  1334. 3C7F37FD2564C4C80033BF82 /* RADataProvider.m */,
  1335. 3C5F8C73256660E900CFD26A /* OnlineDataProvider.h */,
  1336. 3C5F8C74256660E900CFD26A /* OnlineDataProvider.m */,
  1337. 3C5F8C792566610A00CFD26A /* OfflineDataProvider.h */,
  1338. 3C5F8C7A2566610A00CFD26A /* OfflineDataProvider.m */,
  1339. );
  1340. path = DataProvider;
  1341. sourceTree = "<group>";
  1342. };
  1343. 3C5F8C822567B72800CFD26A /* FAKE_DATA */ = {
  1344. isa = PBXGroup;
  1345. children = (
  1346. 3C5F8D0F257A265500CFD26A /* result_acem1.json */,
  1347. 3C5F8D12257A265500CFD26A /* result_aci.json */,
  1348. 3C5F8D10257A265500CFD26A /* result_emanifest.json */,
  1349. 3C5F8D11257A265500CFD26A /* result_isf.json */,
  1350. 3C243185258B019B00555555 /* result_customer.json */,
  1351. 3C833CD125CBF10A006F9BEF /* fake_export.pdf */,
  1352. 3C5F8CB22574C92200CFD26A /* home.json */,
  1353. 3C5F8D1A257A2BCB00CFD26A /* searchresult_aci.json */,
  1354. 3C5F8DB92583655200CFD26A /* searchresult_emanifest.json */,
  1355. 3C5F8D88258079B900CFD26A /* login.json */,
  1356. 3C2431512589EF7400555555 /* searchresult_isf.json */,
  1357. 3C2431562589F26100555555 /* searchresult_acem1.json */,
  1358. 3C24317B258B00A800555555 /* searchresult_customer.json */,
  1359. 3C7670382595BE2900588DB5 /* detail.json */,
  1360. 3C7670AC25A84C8600588DB5 /* detail_customer.json */,
  1361. 3C76706E25A2F4F000588DB5 /* log_isf.json */,
  1362. 3C76709525A84C0C00588DB5 /* log_acem1.json */,
  1363. 3C7670A225A84C3600588DB5 /* log_emanifest.json */,
  1364. 3C7670A725A84C5900588DB5 /* log_hblclose.json */,
  1365. 3C76709D25A84C1E00588DB5 /* log_aci.json */,
  1366. 3C76707325A2F60C00588DB5 /* container.json */,
  1367. 3C833CA825C7D6CB006F9BEF /* detail_acem1.json */,
  1368. 3C833CAD25C92665006F9BEF /* detail_isf.json */,
  1369. 3C833CB225C941AB006F9BEF /* detail_aci.json */,
  1370. 3C833CB725C94289006F9BEF /* detail_emanifest.json */,
  1371. 3C5FBF3A2637E83300130F65 /* edit_isf.json */,
  1372. 3C97FE6A2701C0B6005DB50C /* edit_notification_setting.json */,
  1373. 3C5FBF62263BAD3A00130F65 /* edit_party.json */,
  1374. 3C02E835264E610E008DA531 /* enum_cadedate.json */,
  1375. );
  1376. path = FAKE_DATA;
  1377. sourceTree = "<group>";
  1378. };
  1379. 3C5F8CD525777E5800CFD26A /* CustomFields */ = {
  1380. isa = PBXGroup;
  1381. children = (
  1382. 3C5F8C04256506DC00CFD26A /* CustomizeFieldViewController.h */,
  1383. 3C5F8C05256506DC00CFD26A /* CustomizeFieldViewController.m */,
  1384. 3C5F8CD625777E7300CFD26A /* Fields.storyboard */,
  1385. );
  1386. path = CustomFields;
  1387. sourceTree = "<group>";
  1388. };
  1389. 3C5F8D6A257F545A00CFD26A /* Share */ = {
  1390. isa = PBXGroup;
  1391. children = (
  1392. 3C5F8D6C257F546B00CFD26A /* DetailShareItemProvider.h */,
  1393. 3C5F8D6B257F546B00CFD26A /* DetailShareItemProvider.m */,
  1394. );
  1395. path = Share;
  1396. sourceTree = "<group>";
  1397. };
  1398. 3C5FBF47263A8C2F00130F65 /* EditorCell */ = {
  1399. isa = PBXGroup;
  1400. children = (
  1401. 3C51496D273E070300F78617 /* CommonEditorCellEditor.h */,
  1402. 3C51496E273E070300F78617 /* CommonEditorCellEditor.m */,
  1403. 3C51496F273E070300F78617 /* Phone_Editor_Cell.xib */,
  1404. );
  1405. name = EditorCell;
  1406. sourceTree = "<group>";
  1407. };
  1408. 3C70C0AA2A317F15008C2400 /* MessageBox */ = {
  1409. isa = PBXGroup;
  1410. children = (
  1411. 3C70C0AB2A317F15008C2400 /* MessageBox.h */,
  1412. 3C70C0AC2A317F15008C2400 /* PopWaitAlert.h */,
  1413. 3C70C0AD2A317F15008C2400 /* RAPopviewContainer.h */,
  1414. 3C70C0AE2A317F15008C2400 /* PopWaitAlert.m */,
  1415. 3C70C0AF2A317F15008C2400 /* MessageBox.m */,
  1416. 3C70C0B02A317F15008C2400 /* RAPopviewContainer.m */,
  1417. );
  1418. name = MessageBox;
  1419. path = ../../common/MessageBox;
  1420. sourceTree = "<group>";
  1421. };
  1422. 3C7670BF25AC257F00588DB5 /* Localize */ = {
  1423. isa = PBXGroup;
  1424. children = (
  1425. 3C7670D625AC268300588DB5 /* Localizable.strings */,
  1426. 3C7670E325AC275700588DB5 /* Localizable.strings */,
  1427. );
  1428. path = Localize;
  1429. sourceTree = "<group>";
  1430. };
  1431. 3C7670FC25B6ABC100588DB5 /* About */ = {
  1432. isa = PBXGroup;
  1433. children = (
  1434. 3C7670FD25B6ABE900588DB5 /* About.storyboard */,
  1435. 3C76710225B6AFF800588DB5 /* AboutViewController.h */,
  1436. 3C76710325B6AFF800588DB5 /* AboutViewController.m */,
  1437. );
  1438. path = About;
  1439. sourceTree = "<group>";
  1440. };
  1441. 3C76711125B7C26300588DB5 /* SignUp */ = {
  1442. isa = PBXGroup;
  1443. children = (
  1444. 3C76711225B7C28600588DB5 /* AgreementViewController.h */,
  1445. 3C76711325B7C28600588DB5 /* AgreementViewController.m */,
  1446. 3C76711B25B7C29800588DB5 /* SignUp.storyboard */,
  1447. 3C76710B25B6D94100588DB5 /* SignupViewController.h */,
  1448. 3C76710C25B6D94100588DB5 /* SignupViewController.m */,
  1449. );
  1450. path = SignUp;
  1451. sourceTree = "<group>";
  1452. };
  1453. 3C7F37162563CB710033BF82 /* Common */ = {
  1454. isa = PBXGroup;
  1455. children = (
  1456. 3C5FBF53263AA5D800130F65 /* DatePickerViewController.h */,
  1457. 3C5FBF55263AA5D800130F65 /* DatePickerViewController.m */,
  1458. 3C5FBF56263AA5D800130F65 /* MonthPickerViewController.h */,
  1459. 3C5FBF54263AA5D800130F65 /* MonthPickerViewController.m */,
  1460. 3C2C27C92636660A009460F5 /* PhotoList */,
  1461. 3C2C27C3263665C4009460F5 /* RTLabel.h */,
  1462. 3C2C27C4263665C4009460F5 /* RTLabel.m */,
  1463. 3C2C27B52636657C009460F5 /* EnumModel.h */,
  1464. 3C2C27BA2636657C009460F5 /* EnumModel.m */,
  1465. 3C2C27B82636657C009460F5 /* EnumSelectAndSort.storyboard */,
  1466. 3C02E83A2653B487008DA531 /* EnumSelectOnlineViewController.h */,
  1467. 3C02E8392653B487008DA531 /* EnumSelectOnlineViewController.m */,
  1468. 3C2C27B72636657C009460F5 /* EnumSelectAndSortCell.h */,
  1469. 3C2C27BB2636657C009460F5 /* EnumSelectAndSortCell.m */,
  1470. 3C2C27B62636657C009460F5 /* EnumSelectAndSortViewController.h */,
  1471. 3C2C27B92636657C009460F5 /* EnumSelectAndSortViewController.m */,
  1472. 3C2C27AC2636652F009460F5 /* EnumSelectorCell.h */,
  1473. 3C2C27AD2636652F009460F5 /* EnumSelectorCell.m */,
  1474. 3C02E834264E5FAC008DA531 /* EnumSelectDelegate.h */,
  1475. 3C2C27AE2636652F009460F5 /* EnumSelectViewController.h */,
  1476. 3C2C27AF2636652F009460F5 /* EnumSelectViewController.m */,
  1477. 3C2C279E263663FA009460F5 /* CustomIOSAlertView.h */,
  1478. 3C2C279D263663FA009460F5 /* CustomIOSAlertView.m */,
  1479. 3C2C2797263663B1009460F5 /* StrikethroughLabel.h */,
  1480. 3C2C2795263663B1009460F5 /* StrikethroughLabel.m */,
  1481. 3C2C2796263663B1009460F5 /* TouchImageView.h */,
  1482. 3C2C2794263663B1009460F5 /* TouchImageView.m */,
  1483. 3C2C278326366283009460F5 /* signature */,
  1484. 3C2C276826355A3D009460F5 /* youtube */,
  1485. 3C2C26C32635143A009460F5 /* Editor */,
  1486. 3C5F8D71257F54FB00CFD26A /* MDHTMLLabel.h */,
  1487. 3C5F8D72257F54FB00CFD26A /* MDHTMLLabel.m */,
  1488. 3C5F8D77257F550D00CFD26A /* LineView.h */,
  1489. 3C5F8D78257F550D00CFD26A /* LineView.m */,
  1490. 3C5F8BCE2565042E00CFD26A /* UIView+RAConstraint.h */,
  1491. 3C5F8BCD2565042E00CFD26A /* UIView+RAConstraint.m */,
  1492. 3C5F8BB1256500F900CFD26A /* NSData+RAImageType.h */,
  1493. 3C5F8BB0256500F900CFD26A /* NSData+RAImageType.m */,
  1494. 3C7F38382564C7EB0033BF82 /* WebViewController.h */,
  1495. 3C7F38372564C7EB0033BF82 /* WebViewController.m */,
  1496. 3C5F8D64257F542500CFD26A /* UIScrollView+JLRefresh.h */,
  1497. 3C5F8D65257F542500CFD26A /* UIScrollView+JLRefresh.m */,
  1498. 3C5F8D5B257F541300CFD26A /* UIView+JLExtension.h */,
  1499. 3C5F8D5C257F541300CFD26A /* UIView+JLExtension.m */,
  1500. 3C5F8B462564F8D300CFD26A /* JLRefreshBasis.h */,
  1501. 3C5F8B472564F8D300CFD26A /* JLRefreshBasis.m */,
  1502. 3C7F382B2564C78C0033BF82 /* JLRefreshFooter.h */,
  1503. 3C7F382C2564C78C0033BF82 /* JLRefreshFooter.m */,
  1504. 3C5F8BD42565049400CFD26A /* JLRefreshHeader.h */,
  1505. 3C5F8BD32565049300CFD26A /* JLRefreshHeader.m */,
  1506. 3C5F8C6D2565196A00CFD26A /* JLPresentationController.h */,
  1507. 3C5F8C6C2565196A00CFD26A /* JLPresentationController.m */,
  1508. 3C5F8C5125650B9700CFD26A /* JLCustomerNavigationAlertController.h */,
  1509. 3C5F8C5225650B9700CFD26A /* JLCustomerNavigationAlertController.m */,
  1510. 3C7F38212564C70F0033BF82 /* JLCustomerAlertController.h */,
  1511. 3C7F38222564C70F0033BF82 /* JLCustomerAlertController.m */,
  1512. 3C7F37F22564C44D0033BF82 /* UIImage+RedAnt.h */,
  1513. 3C7F37F12564C44D0033BF82 /* UIImage+RedAnt.m */,
  1514. 3C7F37DD2564C3DD0033BF82 /* RAEmptyDataView.h */,
  1515. 3C7F37DF2564C3DD0033BF82 /* RAEmptyDataView.m */,
  1516. 3C7F37DC2564C3DD0033BF82 /* UIScrollView+Empty.h */,
  1517. 3C7F37DE2564C3DD0033BF82 /* UIScrollView+Empty.m */,
  1518. 3C7F378A2564C2400033BF82 /* RAProgressHUD.h */,
  1519. 3C7F378B2564C2400033BF82 /* RAProgressHUD.m */,
  1520. 3C7F37522564C0690033BF82 /* RAEmptyView.h */,
  1521. 3C7F37512564C0690033BF82 /* RAEmptyView.m */,
  1522. 3C5F8D52257F53F300CFD26A /* UIView+Toast.h */,
  1523. 3C5F8D53257F53F300CFD26A /* UIView+Toast.m */,
  1524. 3C02E83726539642008DA531 /* wkweb.storyboard */,
  1525. 3C92A176264677A700344B9B /* common_const.h */,
  1526. );
  1527. name = Common;
  1528. sourceTree = "<group>";
  1529. };
  1530. 3C7F37382563CD9A0033BF82 /* Utils */ = {
  1531. isa = PBXGroup;
  1532. children = (
  1533. 3C70C0AA2A317F15008C2400 /* MessageBox */,
  1534. 3C2C277126355AAF009460F5 /* FileCache.h */,
  1535. 3C2C277226355AAF009460F5 /* FileCache.m */,
  1536. 3C5F8C6325650C3F00CFD26A /* RAConvertor.h */,
  1537. 3C5F8C6425650C3F00CFD26A /* RAConvertor.m */,
  1538. 3CAB3FD92564F27D00CB554D /* RAUtils.h */,
  1539. 3CAB3FDA2564F27D00CB554D /* RAUtils.m */,
  1540. 3C7F37392563CDA70033BF82 /* AES */,
  1541. );
  1542. name = Utils;
  1543. sourceTree = "<group>";
  1544. };
  1545. 3C7F37392563CDA70033BF82 /* AES */ = {
  1546. isa = PBXGroup;
  1547. children = (
  1548. 3C7F373E2563CDB70033BF82 /* AESCrypt.h */,
  1549. 3C7F37422563CDB70033BF82 /* AESCrypt.m */,
  1550. 3C7F373C2563CDB70033BF82 /* LICENSE */,
  1551. 3C7F37412563CDB70033BF82 /* NSData+Base64.h */,
  1552. 3C7F37402563CDB70033BF82 /* NSData+Base64.m */,
  1553. 3C7F373A2563CDB70033BF82 /* NSData+CommonCrypto.h */,
  1554. 3C7F373B2563CDB70033BF82 /* NSData+CommonCrypto.m */,
  1555. 3C7F373D2563CDB70033BF82 /* NSString+Base64.h */,
  1556. 3C7F373F2563CDB70033BF82 /* NSString+Base64.m */,
  1557. );
  1558. path = AES;
  1559. sourceTree = "<group>";
  1560. };
  1561. 3C7F37962564C2900033BF82 /* Message */ = {
  1562. isa = PBXGroup;
  1563. children = (
  1564. );
  1565. path = Message;
  1566. sourceTree = "<group>";
  1567. };
  1568. /* End PBXGroup section */
  1569. /* Begin PBXNativeTarget section */
  1570. 3C0CB330255E56BF00718A03 /* RA TradeFiling */ = {
  1571. isa = PBXNativeTarget;
  1572. buildConfigurationList = 3C0CB360255E56C000718A03 /* Build configuration list for PBXNativeTarget "RA TradeFiling" */;
  1573. buildPhases = (
  1574. 3C0CB32D255E56BF00718A03 /* Sources */,
  1575. 3C0CB32E255E56BF00718A03 /* Frameworks */,
  1576. 3C0CB32F255E56BF00718A03 /* Resources */,
  1577. );
  1578. buildRules = (
  1579. );
  1580. dependencies = (
  1581. );
  1582. name = "RA TradeFiling";
  1583. productName = "RA TradeFiling";
  1584. productReference = 3C0CB331255E56BF00718A03 /* RA TradeFiling.app */;
  1585. productType = "com.apple.product-type.application";
  1586. };
  1587. 3C0CB34B255E56C000718A03 /* RA TradeFilingTests */ = {
  1588. isa = PBXNativeTarget;
  1589. buildConfigurationList = 3C0CB363255E56C000718A03 /* Build configuration list for PBXNativeTarget "RA TradeFilingTests" */;
  1590. buildPhases = (
  1591. 3C0CB348255E56C000718A03 /* Sources */,
  1592. 3C0CB349255E56C000718A03 /* Frameworks */,
  1593. 3C0CB34A255E56C000718A03 /* Resources */,
  1594. );
  1595. buildRules = (
  1596. );
  1597. dependencies = (
  1598. 3C0CB34E255E56C000718A03 /* PBXTargetDependency */,
  1599. );
  1600. name = "RA TradeFilingTests";
  1601. productName = "RA TradeFilingTests";
  1602. productReference = 3C0CB34C255E56C000718A03 /* RA TradeFilingTests.xctest */;
  1603. productType = "com.apple.product-type.bundle.unit-test";
  1604. };
  1605. 3C0CB356255E56C000718A03 /* RA TradeFilingUITests */ = {
  1606. isa = PBXNativeTarget;
  1607. buildConfigurationList = 3C0CB366255E56C000718A03 /* Build configuration list for PBXNativeTarget "RA TradeFilingUITests" */;
  1608. buildPhases = (
  1609. 3C0CB353255E56C000718A03 /* Sources */,
  1610. 3C0CB354255E56C000718A03 /* Frameworks */,
  1611. 3C0CB355255E56C000718A03 /* Resources */,
  1612. );
  1613. buildRules = (
  1614. );
  1615. dependencies = (
  1616. 3C0CB359255E56C000718A03 /* PBXTargetDependency */,
  1617. );
  1618. name = "RA TradeFilingUITests";
  1619. productName = "RA TradeFilingUITests";
  1620. productReference = 3C0CB357255E56C000718A03 /* RA TradeFilingUITests.xctest */;
  1621. productType = "com.apple.product-type.bundle.ui-testing";
  1622. };
  1623. /* End PBXNativeTarget section */
  1624. /* Begin PBXProject section */
  1625. 3C0CB329255E56BF00718A03 /* Project object */ = {
  1626. isa = PBXProject;
  1627. attributes = {
  1628. BuildIndependentTargetsInParallel = YES;
  1629. LastUpgradeCheck = 1540;
  1630. TargetAttributes = {
  1631. 3C0CB330255E56BF00718A03 = {
  1632. CreatedOnToolsVersion = 12.1;
  1633. };
  1634. 3C0CB34B255E56C000718A03 = {
  1635. CreatedOnToolsVersion = 12.1;
  1636. TestTargetID = 3C0CB330255E56BF00718A03;
  1637. };
  1638. 3C0CB356255E56C000718A03 = {
  1639. CreatedOnToolsVersion = 12.1;
  1640. TestTargetID = 3C0CB330255E56BF00718A03;
  1641. };
  1642. };
  1643. };
  1644. buildConfigurationList = 3C0CB32C255E56BF00718A03 /* Build configuration list for PBXProject "RA TradeFiling" */;
  1645. compatibilityVersion = "Xcode 9.3";
  1646. developmentRegion = en;
  1647. hasScannedForEncodings = 0;
  1648. knownRegions = (
  1649. en,
  1650. Base,
  1651. "zh-Hans",
  1652. );
  1653. mainGroup = 3C0CB328255E56BF00718A03;
  1654. productRefGroup = 3C0CB332255E56BF00718A03 /* Products */;
  1655. projectDirPath = "";
  1656. projectRoot = "";
  1657. targets = (
  1658. 3C0CB330255E56BF00718A03 /* RA TradeFiling */,
  1659. 3C0CB34B255E56C000718A03 /* RA TradeFilingTests */,
  1660. 3C0CB356255E56C000718A03 /* RA TradeFilingUITests */,
  1661. );
  1662. };
  1663. /* End PBXProject section */
  1664. /* Begin PBXResourcesBuildPhase section */
  1665. 3C0CB32F255E56BF00718A03 /* Resources */ = {
  1666. isa = PBXResourcesBuildPhase;
  1667. buildActionMask = 2147483647;
  1668. files = (
  1669. 3C2C26C8263555D4009460F5 /* CommonEditorAutoCompleteView.xib in Resources */,
  1670. 3C767067259B200F00588DB5 /* HomeDashEmptyCell.xib in Resources */,
  1671. 3C452FA125BE98270035AF5F /* HomeDashACICellE.xib in Resources */,
  1672. 3C76707425A2F60C00588DB5 /* container.json in Resources */,
  1673. 3C2431A3258B3C7A00555555 /* ResultISFCell.xib in Resources */,
  1674. 3C24317C258B00A800555555 /* searchresult_customer.json in Resources */,
  1675. 3C514971273E070300F78617 /* Phone_Editor_Cell.xib in Resources */,
  1676. 3C452F3525B9766C0035AF5F /* HomeDashISFCellP.xib in Resources */,
  1677. 3C5F8BC9256503ED00CFD26A /* ApexResultAdditionView.xib in Resources */,
  1678. 3C5F8C87256B935E00CFD26A /* my.json in Resources */,
  1679. 3C5F8D16257A265600CFD26A /* result_aci.json in Resources */,
  1680. 3C0CB3B4255E825B00718A03 /* Login.storyboard in Resources */,
  1681. 3C0CB344255E56BF00718A03 /* LaunchScreen.storyboard in Resources */,
  1682. 3C833CAE25C92665006F9BEF /* detail_isf.json in Resources */,
  1683. 3C2C27102635581E009460F5 /* Phone_Label_Cell.xib in Resources */,
  1684. 3C7670E125AC275700588DB5 /* Localizable.strings in Resources */,
  1685. 3C5F8D84257F5CA800CFD26A /* Detail.storyboard in Resources */,
  1686. 3C2C271626355893009460F5 /* Phone_MAction_Cell.xib in Resources */,
  1687. 3C2C26D726355728009460F5 /* Phone_Banner_Item_Cell.xib in Resources */,
  1688. 3C5FBF40263A4CF100130F65 /* CommonEditor.storyboard in Resources */,
  1689. 3C76706F25A2F4F000588DB5 /* log_isf.json in Resources */,
  1690. 3C0CB399255E81BD00718A03 /* Home.storyboard in Resources */,
  1691. 3C7670A325A84C3600588DB5 /* log_emanifest.json in Resources */,
  1692. 3C76709E25A84C1E00588DB5 /* log_aci.json in Resources */,
  1693. 3C5F8D13257A265600CFD26A /* result_acem1.json in Resources */,
  1694. 3C76709625A84C0C00588DB5 /* log_acem1.json in Resources */,
  1695. 3C5F8C4525650B0E00CFD26A /* ResultACEM1Cell.xib in Resources */,
  1696. 3C0CB398255E81BD00718A03 /* HomeHeader.xib in Resources */,
  1697. 3C2C27892636628D009460F5 /* signature.storyboard in Resources */,
  1698. 3C5F8CE42578807100CFD26A /* search_aci.json in Resources */,
  1699. 3C2C274C263559A4009460F5 /* Phone_TextView_Cell.xib in Resources */,
  1700. 3C452F4C25BA74610035AF5F /* HomeDashACEM1CellP.xib in Resources */,
  1701. 3C5FBF3B2637E83300130F65 /* edit_isf.json in Resources */,
  1702. 3C2C27FF2636B8C4009460F5 /* TFEditor.storyboard in Resources */,
  1703. 3C833CA925C7D6CB006F9BEF /* detail_acem1.json in Resources */,
  1704. 3C5F8DBA2583655200CFD26A /* searchresult_emanifest.json in Resources */,
  1705. 3C7670AD25A84C8600588DB5 /* detail_customer.json in Resources */,
  1706. 3C2C27402635595E009460F5 /* Phone_Switch_Cell.xib in Resources */,
  1707. 3C452F7F25BE73190035AF5F /* HomeDashISFCellE.xib in Resources */,
  1708. 3C5F8D972583500A00CFD26A /* ResultACICell.xib in Resources */,
  1709. 3C5F8D89258079BA00CFD26A /* login.json in Resources */,
  1710. 3C2431572589F26100555555 /* searchresult_acem1.json in Resources */,
  1711. 3C5F8CA8256F919900CFD26A /* FunctionPanel.json in Resources */,
  1712. 3C0CB3CC2562739F00718A03 /* StaticModeTableViewCell.xib in Resources */,
  1713. 3C5F8D14257A265600CFD26A /* result_emanifest.json in Resources */,
  1714. 3C5F8CE52578807100CFD26A /* search_isf.json in Resources */,
  1715. 3C2C2752263559C1009460F5 /* Phone_Range_Cell.xib in Resources */,
  1716. 3C97FE6B2701C0B6005DB50C /* edit_notification_setting.json in Resources */,
  1717. 3C243186258B019B00555555 /* result_customer.json in Resources */,
  1718. 3C2C26E62635577F009460F5 /* Phone_Action_Cell.xib in Resources */,
  1719. 3C5F8CD725777E7300CFD26A /* Fields.storyboard in Resources */,
  1720. 3C5F8CB32574C92300CFD26A /* home.json in Resources */,
  1721. 3C24316E258AF60000555555 /* ResultCustomerCell.xib in Resources */,
  1722. 3C7670FE25B6ABE900588DB5 /* About.storyboard in Resources */,
  1723. 3C5F8CE62578807100CFD26A /* search_emanifest.json in Resources */,
  1724. 3C7670D825AC268300588DB5 /* Localizable.strings in Resources */,
  1725. 3C7F37442563CDB70033BF82 /* LICENSE in Resources */,
  1726. 3C76711C25B7C29800588DB5 /* SignUp.storyboard in Resources */,
  1727. 3C5F8D15257A265600CFD26A /* result_isf.json in Resources */,
  1728. 3C5F8C9D256E3A5900CFD26A /* CollectionViewButtonCell.xib in Resources */,
  1729. 3C02E836264E610E008DA531 /* enum_cadedate.json in Resources */,
  1730. 3C452F9925BE97430035AF5F /* HomeDashACEM1CellE.xib in Resources */,
  1731. 3C2C276D26355A50009460F5 /* ytplayer.html in Resources */,
  1732. 3C0CB341255E56BF00718A03 /* Assets.xcassets in Resources */,
  1733. 3C5F8B562564FDD100CFD26A /* Result.storyboard in Resources */,
  1734. 3C5F8D1B257A2BCB00CFD26A /* searchresult_aci.json in Resources */,
  1735. 3C2C27BC2636657C009460F5 /* EnumSelectAndSort.storyboard in Resources */,
  1736. 3C833CB325C941AB006F9BEF /* detail_aci.json in Resources */,
  1737. 3C452F7725BABA740035AF5F /* HomeDasheManifestCellP.xib in Resources */,
  1738. 3C7670A825A84C5900588DB5 /* log_hblclose.json in Resources */,
  1739. 3C0CB3CE2562739F00718A03 /* StaticModelistViewController.xib in Resources */,
  1740. 3C2C26FE263557E8009460F5 /* Phone_Enum_Cell.xib in Resources */,
  1741. 3C243181258B016C00555555 /* search_customer.json in Resources */,
  1742. 3C5FBF63263BAD3A00130F65 /* edit_party.json in Resources */,
  1743. 3C2C2728263558DB009460F5 /* Phone_Model_Cell.xib in Resources */,
  1744. 3C0CB3AA255E81F300718A03 /* Search.storyboard in Resources */,
  1745. 3C7670562599B2C700588DB5 /* ResulteManifestCell.xib in Resources */,
  1746. 3C2431522589EF7400555555 /* searchresult_isf.json in Resources */,
  1747. 3C2C26D626355728009460F5 /* Phone_Banner_Cell.xib in Resources */,
  1748. 3C97FE67270058E4005DB50C /* my_d.json in Resources */,
  1749. 3C2C27DE263666E8009460F5 /* PhotoList.storyboard in Resources */,
  1750. 3C2C279026366294009460F5 /* Signature.xcassets in Resources */,
  1751. 3C2C272E263558FA009460F5 /* Phone_Signature_Cell.xib in Resources */,
  1752. 3C452F6025BAA5570035AF5F /* HomeDashACICellP.xib in Resources */,
  1753. 3C5F8CCE25777A2100CFD26A /* search_acem1.json in Resources */,
  1754. 3C2C276426355A17009460F5 /* Phone_Web_Cell.xib in Resources */,
  1755. 3C0CB33F255E56BF00718A03 /* Main.storyboard in Resources */,
  1756. 3C2C26F8263557C5009460F5 /* Phone_Edit_Cell.xib in Resources */,
  1757. 3C452FA925BE98410035AF5F /* HomeDasheManifestCellE.xib in Resources */,
  1758. 3C2C27A826366464009460F5 /* default_appearance.json in Resources */,
  1759. 3C7670392595BE2A00588DB5 /* detail.json in Resources */,
  1760. 3C02E83826539642008DA531 /* wkweb.storyboard in Resources */,
  1761. 3C833CD225CBF10B006F9BEF /* fake_export.pdf in Resources */,
  1762. 3C0CB3AF255E821500718A03 /* My.storyboard in Resources */,
  1763. 3C833CB825C94289006F9BEF /* detail_emanifest.json in Resources */,
  1764. );
  1765. runOnlyForDeploymentPostprocessing = 0;
  1766. };
  1767. 3C0CB34A255E56C000718A03 /* Resources */ = {
  1768. isa = PBXResourcesBuildPhase;
  1769. buildActionMask = 2147483647;
  1770. files = (
  1771. );
  1772. runOnlyForDeploymentPostprocessing = 0;
  1773. };
  1774. 3C0CB355255E56C000718A03 /* Resources */ = {
  1775. isa = PBXResourcesBuildPhase;
  1776. buildActionMask = 2147483647;
  1777. files = (
  1778. );
  1779. runOnlyForDeploymentPostprocessing = 0;
  1780. };
  1781. /* End PBXResourcesBuildPhase section */
  1782. /* Begin PBXSourcesBuildPhase section */
  1783. 3C0CB32D255E56BF00718A03 /* Sources */ = {
  1784. isa = PBXSourcesBuildPhase;
  1785. buildActionMask = 2147483647;
  1786. files = (
  1787. 3C76710D25B6D94100588DB5 /* SignupViewController.m in Sources */,
  1788. 3C76707A25A453AD00588DB5 /* DetailCellContainer.m in Sources */,
  1789. 3C5F8C3C25650A8500CFD26A /* TableCellBool.m in Sources */,
  1790. 3C2C26C9263555D4009460F5 /* CommonEditorAutoCompleteView.m in Sources */,
  1791. 3C452F3425B9766C0035AF5F /* HomeDashISFCellP.m in Sources */,
  1792. 3C7F37E02564C3DD0033BF82 /* UIScrollView+Empty.m in Sources */,
  1793. 3C5F8C6E2565196A00CFD26A /* JLPresentationController.m in Sources */,
  1794. 3C2C26F3263557B8009460F5 /* CommonEditorCellEdit.m in Sources */,
  1795. 3C5F8C8D256CFF6F00CFD26A /* CollectionViewButtonCell.m in Sources */,
  1796. 3C2C27E7263666F2009460F5 /* VideoPreviewCell.m in Sources */,
  1797. 3C0CB37B255E5BEA00718A03 /* TFRootViewController.m in Sources */,
  1798. 3C0CB3A3255E81CC00718A03 /* RAHomeViewController+HomeTableDelegate.m in Sources */,
  1799. 3C243174258AFBE900555555 /* ResultCustomerModel.m in Sources */,
  1800. 3C5F8BB82565013B00CFD26A /* ResultBaseModel.m in Sources */,
  1801. 3C5F8CEF257A1DC900CFD26A /* ResultViewController+TableDataSource.m in Sources */,
  1802. 3C5F8C00256506BA00CFD26A /* MyQLPreviewController.m in Sources */,
  1803. 3C5F8B8E2564FFC700CFD26A /* ResultViewController+QuickLook.m in Sources */,
  1804. 3C0CB3CD2562739F00718A03 /* StaticModeTableViewCell.m in Sources */,
  1805. 3C5F8D66257F542500CFD26A /* UIScrollView+JLRefresh.m in Sources */,
  1806. 3C7F37462563CDB70033BF82 /* NSData+Base64.m in Sources */,
  1807. 3C0CB33C255E56BF00718A03 /* ViewController.m in Sources */,
  1808. 3C7F38392564C7EB0033BF82 /* WebViewController.m in Sources */,
  1809. 3C452F5F25BAA5570035AF5F /* HomeDashACICellP.m in Sources */,
  1810. 3C7F37E12564C3DD0033BF82 /* RAEmptyDataView.m in Sources */,
  1811. 3C2C27BD2636657C009460F5 /* EnumSelectAndSortViewController.m in Sources */,
  1812. 3C452F8525BE733A0035AF5F /* HomeDashISFModelE.m in Sources */,
  1813. 3C2C27B02636652F009460F5 /* EnumSelectorCell.m in Sources */,
  1814. 3C5F8BE12565055400CFD26A /* SavedSearchViewController.m in Sources */,
  1815. 3CAB3FDB2564F27D00CB554D /* RAUtils.m in Sources */,
  1816. 3C514970273E070300F78617 /* CommonEditorCellEditor.m in Sources */,
  1817. 3C452F8E25BE971C0035AF5F /* HomeDashACEM1ModelE.m in Sources */,
  1818. 3C5F8C7B2566610A00CFD26A /* OfflineDataProvider.m in Sources */,
  1819. 3C2C273426355918009460F5 /* CommonEditorCellSignature.m in Sources */,
  1820. 3C2C278A2636628D009460F5 /* SignatureView.m in Sources */,
  1821. 3C5F8C75256660E900CFD26A /* OnlineDataProvider.m in Sources */,
  1822. 3C452F4425BA73F70035AF5F /* HomeDashACEM1ModelP.m in Sources */,
  1823. 3C2C27C5263665C4009460F5 /* RTLabel.m in Sources */,
  1824. 3C2C273B2635594A009460F5 /* CommonEditorCellSwitch.m in Sources */,
  1825. 3C833CBE25C944FE006F9BEF /* DetailCellContainerCA.m in Sources */,
  1826. 3C5F8C212565097600CFD26A /* MySuggestion.m in Sources */,
  1827. 3C5F8CC22576220400CFD26A /* DashboardModel.m in Sources */,
  1828. 3C2C271C263558A0009460F5 /* CommonEditorCellMAction.m in Sources */,
  1829. 3C5F8D54257F53F300CFD26A /* UIView+Toast.m in Sources */,
  1830. 3C5F8D4B257E2D8700CFD26A /* DetailContent.m in Sources */,
  1831. 3C5F8C2D256509AA00CFD26A /* SearchTableAdapterJson.m in Sources */,
  1832. 3C5F8D2D257E2A6A00CFD26A /* DetailTabBarController.m in Sources */,
  1833. 3C5F8D8F2580B4E500CFD26A /* CompanySelectViewController.m in Sources */,
  1834. 3C76711425B7C28600588DB5 /* AgreementViewController.m in Sources */,
  1835. 3C2C27BF2636657C009460F5 /* EnumSelectAndSortCell.m in Sources */,
  1836. 3C5FBF58263AA5D800130F65 /* DatePickerViewController.m in Sources */,
  1837. 3C2C27F026366B3C009460F5 /* DefaultTableHeaderView.m in Sources */,
  1838. 3C5F8C3B25650A8500CFD26A /* TableCellEdit.m in Sources */,
  1839. 3C5F8C152565092C00CFD26A /* MyAutocompleteView.m in Sources */,
  1840. 3C2C2798263663B1009460F5 /* TouchImageView.m in Sources */,
  1841. 3C5F8D73257F54FB00CFD26A /* MDHTMLLabel.m in Sources */,
  1842. 3C7F37452563CDB70033BF82 /* NSString+Base64.m in Sources */,
  1843. 3C7F38232564C70F0033BF82 /* JLCustomerAlertController.m in Sources */,
  1844. 3C5F8DC325836A9F00CFD26A /* ResultACEM1Model.m in Sources */,
  1845. 3C2C27D9263666DF009460F5 /* ContentPreviewController.m in Sources */,
  1846. 3C7F37F32564C44D0033BF82 /* UIImage+RedAnt.m in Sources */,
  1847. 3C7F37532564C0690033BF82 /* RAEmptyView.m in Sources */,
  1848. 3C7F381D2564C6980033BF82 /* RAHomeSectionHeaderView.m in Sources */,
  1849. 3C5F8BB2256500F900CFD26A /* NSData+RAImageType.m in Sources */,
  1850. 3C5F8BCF2565042F00CFD26A /* UIView+RAConstraint.m in Sources */,
  1851. 3C5F8D5D257F541400CFD26A /* UIView+JLExtension.m in Sources */,
  1852. 3C0CB38E255E618800718A03 /* MylistViewController.m in Sources */,
  1853. 3C2C2758263559D6009460F5 /* CommonEditorRangeCell.m in Sources */,
  1854. 3C5FBF57263AA5D800130F65 /* MonthPickerViewController.m in Sources */,
  1855. 3C7F37712564C13F0033BF82 /* RANetworkTaskDelegate.m in Sources */,
  1856. 3C0CB336255E56BF00718A03 /* AppDelegate.m in Sources */,
  1857. 3C452FB525BE987C0035AF5F /* HomeDasheManifestModelE.m in Sources */,
  1858. 3C5F8C5925650BD800CFD26A /* LPShareActivity.m in Sources */,
  1859. 3C452F4B25BA74610035AF5F /* HomeDashACEM1CellP.m in Sources */,
  1860. 3C0CB3A5255E81CC00718A03 /* RAHomeViewController.m in Sources */,
  1861. 3C2431A2258B3C7A00555555 /* ResultISFCell.m in Sources */,
  1862. 3C767066259B200F00588DB5 /* HomeDashEmptyCell.m in Sources */,
  1863. 3C5F8B552564FDD100CFD26A /* ResultViewController.m in Sources */,
  1864. 3C5F8C272565099300CFD26A /* MyAutocompletionCellFactory.m in Sources */,
  1865. 3C452FA825BE98410035AF5F /* HomeDasheManifestCellE.m in Sources */,
  1866. 3C70C0B12A317F15008C2400 /* PopWaitAlert.m in Sources */,
  1867. 3C0CB3BA255E829000718A03 /* SearchlistViewController.m in Sources */,
  1868. 3C2C270B26355810009460F5 /* CommonEditorCellLabel.m in Sources */,
  1869. 3C7F382D2564C78C0033BF82 /* JLRefreshFooter.m in Sources */,
  1870. 3C7670342595932D00588DB5 /* TFNavigationController.m in Sources */,
  1871. 3C5F8CA3256F847400CFD26A /* FunctionSettingViewController.m in Sources */,
  1872. 3C7F37282563CC5F0033BF82 /* NetworkUtils.m in Sources */,
  1873. 3C5F8BC12565017E00CFD26A /* ResultACIModel.m in Sources */,
  1874. 3C5FBF362636B9CE00130F65 /* TFEditorViewController.m in Sources */,
  1875. 3C5F8BC8256503ED00CFD26A /* ResultAdditionView.m in Sources */,
  1876. 3C452F3B25B9795C0035AF5F /* HomeDashISFModelP.m in Sources */,
  1877. 3C5F8C06256506DC00CFD26A /* CustomizeFieldViewController.m in Sources */,
  1878. 3C2C275F26355A09009460F5 /* CommonEditorWebCell.m in Sources */,
  1879. 3C2C27B12636652F009460F5 /* EnumSelectViewController.m in Sources */,
  1880. 3C452F7625BABA740035AF5F /* HomeDasheManifestCellP.m in Sources */,
  1881. 3C2C27A726366464009460F5 /* DefaultAppearance.m in Sources */,
  1882. 3C5F8D39257E2AEF00CFD26A /* DetailCellKVNew.m in Sources */,
  1883. 3C5F8D45257E2B4500CFD26A /* DetailCellWeb.m in Sources */,
  1884. 3C2C26DF2635573B009460F5 /* CommonEditorBannerCell.m in Sources */,
  1885. 3C7F37472563CDB70033BF82 /* AESCrypt.m in Sources */,
  1886. 3C7F37432563CDB70033BF82 /* NSData+CommonCrypto.m in Sources */,
  1887. 3C0CB347255E56BF00718A03 /* main.m in Sources */,
  1888. 3C5F8D79257F550D00CFD26A /* LineView.m in Sources */,
  1889. 3C2C276C26355A50009460F5 /* RAYTPlayer.m in Sources */,
  1890. 3C76710425B6AFF800588DB5 /* AboutViewController.m in Sources */,
  1891. 3C5F8C93256D079200CFD26A /* ButtonCollectionView.m in Sources */,
  1892. 3C5F8D962583500A00CFD26A /* ResultACICell.m in Sources */,
  1893. 3C7670482599B1E000588DB5 /* ResulteManifestModel.m in Sources */,
  1894. 3C2C26CF263556C1009460F5 /* CommonEditorTableContainerView.m in Sources */,
  1895. 3C7F38052564C5440033BF82 /* RetrievePasswordViewController.m in Sources */,
  1896. 3C5F8C6525650C3F00CFD26A /* RAConvertor.m in Sources */,
  1897. 3C7F378C2564C2400033BF82 /* RAProgressHUD.m in Sources */,
  1898. 3C7F37922564C2720033BF82 /* RAHomeHeaderView.m in Sources */,
  1899. 3C7F377A2564C1E10033BF82 /* RABadgeNumberView.m in Sources */,
  1900. 3C5F8CF5257A1EE100CFD26A /* ResultViewController+TableDelegate.m in Sources */,
  1901. 3C7670512599B29D00588DB5 /* ResulteManifestCell.m in Sources */,
  1902. 3C5F8B982565001700CFD26A /* ResultMenuItem.m in Sources */,
  1903. 3C2C2723263558CE009460F5 /* CommonEditorCellModel.m in Sources */,
  1904. 3C5F8C0F256508D400CFD26A /* SearchViewController.m in Sources */,
  1905. 3C5F8C5F25650C0F00CFD26A /* ResultAddition.m in Sources */,
  1906. 3C2C277326355AAF009460F5 /* FileCache.m in Sources */,
  1907. 3C5F8BDB2565053700CFD26A /* SavedDetailViewController.m in Sources */,
  1908. 3C5F8D33257E2A8C00CFD26A /* DetailPageViewController.m in Sources */,
  1909. 3C5F8D6D257F546B00CFD26A /* DetailShareItemProvider.m in Sources */,
  1910. 3C5F8B482564F8D300CFD26A /* JLRefreshBasis.m in Sources */,
  1911. 3C5F8B9E2565003600CFD26A /* ResultPresenter.m in Sources */,
  1912. 3C5F8C5325650B9700CFD26A /* JLCustomerNavigationAlertController.m in Sources */,
  1913. 3C2C27BE2636657C009460F5 /* EnumModel.m in Sources */,
  1914. 3C452FA025BE98270035AF5F /* HomeDashACICellE.m in Sources */,
  1915. 3C0CB3C0256253D900718A03 /* RABaseViewController.m in Sources */,
  1916. 3C2C26E02635573B009460F5 /* CommonEditorBannerItemCell.m in Sources */,
  1917. 3C5F8C3D25650A8500CFD26A /* TableCellDate.m in Sources */,
  1918. 3C5F8BF4256505FC00CFD26A /* CellItemHistory.m in Sources */,
  1919. 3C24316D258AF60000555555 /* ResultCustomerCell.m in Sources */,
  1920. 3C452FAF25BE985C0035AF5F /* HomeDashACIModelE.m in Sources */,
  1921. 3C0CB387255E613200718A03 /* LoginViewController.m in Sources */,
  1922. 3C2C2704263557F8009460F5 /* CommonEditorCellEnum.m in Sources */,
  1923. 3C0CB339255E56BF00718A03 /* SceneDelegate.m in Sources */,
  1924. 3C0CB375255E599C00718A03 /* RootViewController.m in Sources */,
  1925. 3C2C277F2636623F009460F5 /* CommonEditorViewController.m in Sources */,
  1926. 3C2C279F263663FA009460F5 /* CustomIOSAlertView.m in Sources */,
  1927. 3C2C278B2636628D009460F5 /* SignatureViewController.m in Sources */,
  1928. 3C7F37F92564C4810033BF82 /* RASingleton.m in Sources */,
  1929. 3C7F37FF2564C4C80033BF82 /* RADataProvider.m in Sources */,
  1930. 3C452F6925BAA5790035AF5F /* HomeDashACIModelP.m in Sources */,
  1931. 3C5F8BD52565049400CFD26A /* JLRefreshHeader.m in Sources */,
  1932. 3C452F6F25BABA2B0035AF5F /* HomeDasheManifestModelP.m in Sources */,
  1933. 3C2C27E6263666F2009460F5 /* PhotoPreviewCell.m in Sources */,
  1934. 3C2C2799263663B1009460F5 /* StrikethroughLabel.m in Sources */,
  1935. 3C452F9825BE97430035AF5F /* HomeDashACEM1CellE.m in Sources */,
  1936. 3C02E83B2653B488008DA531 /* EnumSelectOnlineViewController.m in Sources */,
  1937. 3C2C26EC2635578F009460F5 /* CommonEditorCellAction.m in Sources */,
  1938. 3C70C0B32A317F15008C2400 /* RAPopviewContainer.m in Sources */,
  1939. 3C76708825A6DD7400588DB5 /* ChangePasswordViewController.m in Sources */,
  1940. 3C2C274726355996009460F5 /* CommonEditorCellTextView.m in Sources */,
  1941. 3C2431B2258B48AA00555555 /* ResultISFModel.m in Sources */,
  1942. 3C0CB3A4255E81CC00718A03 /* RAHomeViewController+HomeTableDataSource.m in Sources */,
  1943. 3C5F8C1B2565095900CFD26A /* MyAutocompleteItemsSource.m in Sources */,
  1944. 3C5F8D3F257E2B3600CFD26A /* DetailCellList.m in Sources */,
  1945. 3C7F376A2564C11E0033BF82 /* Reachability.m in Sources */,
  1946. 3C5F8D7F257F55BD00CFD26A /* TabBarController.m in Sources */,
  1947. 3C452F7E25BE73190035AF5F /* HomeDashISFCellE.m in Sources */,
  1948. 3C0CB3CB2562739F00718A03 /* StaticModelistViewController.m in Sources */,
  1949. 3C5F8C4425650B0E00CFD26A /* ResultACEM1Cell.m in Sources */,
  1950. 3C70C0B22A317F15008C2400 /* MessageBox.m in Sources */,
  1951. );
  1952. runOnlyForDeploymentPostprocessing = 0;
  1953. };
  1954. 3C0CB348255E56C000718A03 /* Sources */ = {
  1955. isa = PBXSourcesBuildPhase;
  1956. buildActionMask = 2147483647;
  1957. files = (
  1958. 3C0CB351255E56C000718A03 /* RA_TradeFilingTests.m in Sources */,
  1959. );
  1960. runOnlyForDeploymentPostprocessing = 0;
  1961. };
  1962. 3C0CB353255E56C000718A03 /* Sources */ = {
  1963. isa = PBXSourcesBuildPhase;
  1964. buildActionMask = 2147483647;
  1965. files = (
  1966. 3C0CB35C255E56C000718A03 /* RA_TradeFilingUITests.m in Sources */,
  1967. );
  1968. runOnlyForDeploymentPostprocessing = 0;
  1969. };
  1970. /* End PBXSourcesBuildPhase section */
  1971. /* Begin PBXTargetDependency section */
  1972. 3C0CB34E255E56C000718A03 /* PBXTargetDependency */ = {
  1973. isa = PBXTargetDependency;
  1974. target = 3C0CB330255E56BF00718A03 /* RA TradeFiling */;
  1975. targetProxy = 3C0CB34D255E56C000718A03 /* PBXContainerItemProxy */;
  1976. };
  1977. 3C0CB359255E56C000718A03 /* PBXTargetDependency */ = {
  1978. isa = PBXTargetDependency;
  1979. target = 3C0CB330255E56BF00718A03 /* RA TradeFiling */;
  1980. targetProxy = 3C0CB358255E56C000718A03 /* PBXContainerItemProxy */;
  1981. };
  1982. /* End PBXTargetDependency section */
  1983. /* Begin PBXVariantGroup section */
  1984. 3C0CB33D255E56BF00718A03 /* Main.storyboard */ = {
  1985. isa = PBXVariantGroup;
  1986. children = (
  1987. 3C0CB33E255E56BF00718A03 /* Base */,
  1988. 3C7670B725AC254B00588DB5 /* zh-Hans */,
  1989. );
  1990. name = Main.storyboard;
  1991. sourceTree = "<group>";
  1992. };
  1993. 3C0CB342255E56BF00718A03 /* LaunchScreen.storyboard */ = {
  1994. isa = PBXVariantGroup;
  1995. children = (
  1996. 3C0CB343255E56BF00718A03 /* Base */,
  1997. 3C7670B825AC254C00588DB5 /* zh-Hans */,
  1998. );
  1999. name = LaunchScreen.storyboard;
  2000. sourceTree = "<group>";
  2001. };
  2002. 3C7670D625AC268300588DB5 /* Localizable.strings */ = {
  2003. isa = PBXVariantGroup;
  2004. children = (
  2005. 3C7670D725AC268300588DB5 /* en */,
  2006. );
  2007. name = Localizable.strings;
  2008. sourceTree = "<group>";
  2009. };
  2010. 3C7670E325AC275700588DB5 /* Localizable.strings */ = {
  2011. isa = PBXVariantGroup;
  2012. children = (
  2013. 3C7670E225AC275700588DB5 /* zh-Hans */,
  2014. );
  2015. name = Localizable.strings;
  2016. sourceTree = "<group>";
  2017. };
  2018. /* End PBXVariantGroup section */
  2019. /* Begin XCBuildConfiguration section */
  2020. 3C0CB35E255E56C000718A03 /* Debug */ = {
  2021. isa = XCBuildConfiguration;
  2022. buildSettings = {
  2023. ALWAYS_SEARCH_USER_PATHS = NO;
  2024. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2025. CLANG_ANALYZER_NONNULL = YES;
  2026. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2027. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2028. CLANG_CXX_LIBRARY = "libc++";
  2029. CLANG_ENABLE_MODULES = YES;
  2030. CLANG_ENABLE_OBJC_ARC = YES;
  2031. CLANG_ENABLE_OBJC_WEAK = YES;
  2032. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2033. CLANG_WARN_BOOL_CONVERSION = YES;
  2034. CLANG_WARN_COMMA = YES;
  2035. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2036. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2037. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2038. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2039. CLANG_WARN_EMPTY_BODY = YES;
  2040. CLANG_WARN_ENUM_CONVERSION = YES;
  2041. CLANG_WARN_INFINITE_RECURSION = YES;
  2042. CLANG_WARN_INT_CONVERSION = YES;
  2043. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2044. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2045. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2046. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2047. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2048. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2049. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2050. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2051. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2052. CLANG_WARN_UNREACHABLE_CODE = YES;
  2053. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2054. COPY_PHASE_STRIP = NO;
  2055. DEBUG_INFORMATION_FORMAT = dwarf;
  2056. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2057. ENABLE_TESTABILITY = YES;
  2058. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2059. GCC_C_LANGUAGE_STANDARD = gnu11;
  2060. GCC_DYNAMIC_NO_PIC = NO;
  2061. GCC_NO_COMMON_BLOCKS = YES;
  2062. GCC_OPTIMIZATION_LEVEL = 0;
  2063. GCC_PREPROCESSOR_DEFINITIONS = (
  2064. "DEBUG=1",
  2065. "$(inherited)",
  2066. );
  2067. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2068. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2069. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2070. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2071. GCC_WARN_UNUSED_FUNCTION = YES;
  2072. GCC_WARN_UNUSED_VARIABLE = YES;
  2073. IPHONEOS_DEPLOYMENT_TARGET = 17.5;
  2074. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2075. MTL_FAST_MATH = YES;
  2076. ONLY_ACTIVE_ARCH = YES;
  2077. SDKROOT = iphoneos;
  2078. };
  2079. name = Debug;
  2080. };
  2081. 3C0CB35F255E56C000718A03 /* Release */ = {
  2082. isa = XCBuildConfiguration;
  2083. buildSettings = {
  2084. ALWAYS_SEARCH_USER_PATHS = NO;
  2085. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2086. CLANG_ANALYZER_NONNULL = YES;
  2087. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2088. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2089. CLANG_CXX_LIBRARY = "libc++";
  2090. CLANG_ENABLE_MODULES = YES;
  2091. CLANG_ENABLE_OBJC_ARC = YES;
  2092. CLANG_ENABLE_OBJC_WEAK = YES;
  2093. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2094. CLANG_WARN_BOOL_CONVERSION = YES;
  2095. CLANG_WARN_COMMA = YES;
  2096. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2097. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2098. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2099. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2100. CLANG_WARN_EMPTY_BODY = YES;
  2101. CLANG_WARN_ENUM_CONVERSION = YES;
  2102. CLANG_WARN_INFINITE_RECURSION = YES;
  2103. CLANG_WARN_INT_CONVERSION = YES;
  2104. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2105. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2106. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2107. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2108. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2109. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2110. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2111. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2112. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2113. CLANG_WARN_UNREACHABLE_CODE = YES;
  2114. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2115. COPY_PHASE_STRIP = NO;
  2116. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2117. ENABLE_NS_ASSERTIONS = NO;
  2118. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2119. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2120. GCC_C_LANGUAGE_STANDARD = gnu11;
  2121. GCC_NO_COMMON_BLOCKS = YES;
  2122. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2123. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2124. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2125. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2126. GCC_WARN_UNUSED_FUNCTION = YES;
  2127. GCC_WARN_UNUSED_VARIABLE = YES;
  2128. IPHONEOS_DEPLOYMENT_TARGET = 17.5;
  2129. MTL_ENABLE_DEBUG_INFO = NO;
  2130. MTL_FAST_MATH = YES;
  2131. SDKROOT = iphoneos;
  2132. VALIDATE_PRODUCT = YES;
  2133. };
  2134. name = Release;
  2135. };
  2136. 3C0CB361255E56C000718A03 /* Debug */ = {
  2137. isa = XCBuildConfiguration;
  2138. buildSettings = {
  2139. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2140. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2141. CODE_SIGN_STYLE = Automatic;
  2142. CURRENT_PROJECT_VERSION = 50030;
  2143. DEVELOPMENT_TEAM = HXWLAA5YN5;
  2144. GCC_OPTIMIZATION_LEVEL = 0;
  2145. INFOPLIST_FILE = "RA TradeFiling/Info.plist";
  2146. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  2147. LD_RUNPATH_SEARCH_PATHS = (
  2148. "$(inherited)",
  2149. "@executable_path/Frameworks",
  2150. );
  2151. MARKETING_VERSION = 1.16;
  2152. PRODUCT_BUNDLE_IDENTIFIER = "USAI.RA-TradeFiling";
  2153. PRODUCT_NAME = "$(TARGET_NAME)";
  2154. TARGETED_DEVICE_FAMILY = 1;
  2155. };
  2156. name = Debug;
  2157. };
  2158. 3C0CB362255E56C000718A03 /* Release */ = {
  2159. isa = XCBuildConfiguration;
  2160. buildSettings = {
  2161. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2162. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2163. CODE_SIGN_STYLE = Automatic;
  2164. CURRENT_PROJECT_VERSION = 50030;
  2165. DEVELOPMENT_TEAM = HXWLAA5YN5;
  2166. GCC_OPTIMIZATION_LEVEL = s;
  2167. INFOPLIST_FILE = "RA TradeFiling/Info.plist";
  2168. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  2169. LD_RUNPATH_SEARCH_PATHS = (
  2170. "$(inherited)",
  2171. "@executable_path/Frameworks",
  2172. );
  2173. MARKETING_VERSION = 1.16;
  2174. PRODUCT_BUNDLE_IDENTIFIER = "USAI.RA-TradeFiling";
  2175. PRODUCT_NAME = "$(TARGET_NAME)";
  2176. TARGETED_DEVICE_FAMILY = 1;
  2177. };
  2178. name = Release;
  2179. };
  2180. 3C0CB364255E56C000718A03 /* Debug */ = {
  2181. isa = XCBuildConfiguration;
  2182. buildSettings = {
  2183. BUNDLE_LOADER = "$(TEST_HOST)";
  2184. CODE_SIGN_STYLE = Automatic;
  2185. DEVELOPMENT_TEAM = HXWLAA5YN5;
  2186. INFOPLIST_FILE = "RA TradeFilingTests/Info.plist";
  2187. IPHONEOS_DEPLOYMENT_TARGET = 14.1;
  2188. LD_RUNPATH_SEARCH_PATHS = (
  2189. "$(inherited)",
  2190. "@executable_path/Frameworks",
  2191. "@loader_path/Frameworks",
  2192. );
  2193. PRODUCT_BUNDLE_IDENTIFIER = "USAI.RA-TradeFilingTests";
  2194. PRODUCT_NAME = "$(TARGET_NAME)";
  2195. TARGETED_DEVICE_FAMILY = "1,2";
  2196. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RA TradeFiling.app/RA TradeFiling";
  2197. };
  2198. name = Debug;
  2199. };
  2200. 3C0CB365255E56C000718A03 /* Release */ = {
  2201. isa = XCBuildConfiguration;
  2202. buildSettings = {
  2203. BUNDLE_LOADER = "$(TEST_HOST)";
  2204. CODE_SIGN_STYLE = Automatic;
  2205. DEVELOPMENT_TEAM = HXWLAA5YN5;
  2206. INFOPLIST_FILE = "RA TradeFilingTests/Info.plist";
  2207. IPHONEOS_DEPLOYMENT_TARGET = 14.1;
  2208. LD_RUNPATH_SEARCH_PATHS = (
  2209. "$(inherited)",
  2210. "@executable_path/Frameworks",
  2211. "@loader_path/Frameworks",
  2212. );
  2213. PRODUCT_BUNDLE_IDENTIFIER = "USAI.RA-TradeFilingTests";
  2214. PRODUCT_NAME = "$(TARGET_NAME)";
  2215. TARGETED_DEVICE_FAMILY = "1,2";
  2216. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RA TradeFiling.app/RA TradeFiling";
  2217. };
  2218. name = Release;
  2219. };
  2220. 3C0CB367255E56C000718A03 /* Debug */ = {
  2221. isa = XCBuildConfiguration;
  2222. buildSettings = {
  2223. CODE_SIGN_STYLE = Automatic;
  2224. DEVELOPMENT_TEAM = HXWLAA5YN5;
  2225. INFOPLIST_FILE = "RA TradeFilingUITests/Info.plist";
  2226. LD_RUNPATH_SEARCH_PATHS = (
  2227. "$(inherited)",
  2228. "@executable_path/Frameworks",
  2229. "@loader_path/Frameworks",
  2230. );
  2231. PRODUCT_BUNDLE_IDENTIFIER = "USAI.RA-TradeFilingUITests";
  2232. PRODUCT_NAME = "$(TARGET_NAME)";
  2233. TARGETED_DEVICE_FAMILY = "1,2";
  2234. TEST_TARGET_NAME = "RA TradeFiling";
  2235. };
  2236. name = Debug;
  2237. };
  2238. 3C0CB368255E56C000718A03 /* Release */ = {
  2239. isa = XCBuildConfiguration;
  2240. buildSettings = {
  2241. CODE_SIGN_STYLE = Automatic;
  2242. DEVELOPMENT_TEAM = HXWLAA5YN5;
  2243. INFOPLIST_FILE = "RA TradeFilingUITests/Info.plist";
  2244. LD_RUNPATH_SEARCH_PATHS = (
  2245. "$(inherited)",
  2246. "@executable_path/Frameworks",
  2247. "@loader_path/Frameworks",
  2248. );
  2249. PRODUCT_BUNDLE_IDENTIFIER = "USAI.RA-TradeFilingUITests";
  2250. PRODUCT_NAME = "$(TARGET_NAME)";
  2251. TARGETED_DEVICE_FAMILY = "1,2";
  2252. TEST_TARGET_NAME = "RA TradeFiling";
  2253. };
  2254. name = Release;
  2255. };
  2256. /* End XCBuildConfiguration section */
  2257. /* Begin XCConfigurationList section */
  2258. 3C0CB32C255E56BF00718A03 /* Build configuration list for PBXProject "RA TradeFiling" */ = {
  2259. isa = XCConfigurationList;
  2260. buildConfigurations = (
  2261. 3C0CB35E255E56C000718A03 /* Debug */,
  2262. 3C0CB35F255E56C000718A03 /* Release */,
  2263. );
  2264. defaultConfigurationIsVisible = 0;
  2265. defaultConfigurationName = Release;
  2266. };
  2267. 3C0CB360255E56C000718A03 /* Build configuration list for PBXNativeTarget "RA TradeFiling" */ = {
  2268. isa = XCConfigurationList;
  2269. buildConfigurations = (
  2270. 3C0CB361255E56C000718A03 /* Debug */,
  2271. 3C0CB362255E56C000718A03 /* Release */,
  2272. );
  2273. defaultConfigurationIsVisible = 0;
  2274. defaultConfigurationName = Release;
  2275. };
  2276. 3C0CB363255E56C000718A03 /* Build configuration list for PBXNativeTarget "RA TradeFilingTests" */ = {
  2277. isa = XCConfigurationList;
  2278. buildConfigurations = (
  2279. 3C0CB364255E56C000718A03 /* Debug */,
  2280. 3C0CB365255E56C000718A03 /* Release */,
  2281. );
  2282. defaultConfigurationIsVisible = 0;
  2283. defaultConfigurationName = Release;
  2284. };
  2285. 3C0CB366255E56C000718A03 /* Build configuration list for PBXNativeTarget "RA TradeFilingUITests" */ = {
  2286. isa = XCConfigurationList;
  2287. buildConfigurations = (
  2288. 3C0CB367255E56C000718A03 /* Debug */,
  2289. 3C0CB368255E56C000718A03 /* Release */,
  2290. );
  2291. defaultConfigurationIsVisible = 0;
  2292. defaultConfigurationName = Release;
  2293. };
  2294. /* End XCConfigurationList section */
  2295. };
  2296. rootObject = 3C0CB329255E56BF00718A03 /* Project object */;
  2297. }