project.pbxproj 254 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 50;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 0A110C4CD931995B8E8BF7C5 /* Pods_RainbowPlanet.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D469F6C3768252BCB7001EDD /* Pods_RainbowPlanet.framework */; };
  10. A70B2C042283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C032283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift */; };
  11. A70B2C072284305400B2449F /* ProductModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C062284305400B2449F /* ProductModel.swift */; };
  12. A70B2C102286A3BC00B2449F /* ProductDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C0F2286A3BC00B2449F /* ProductDetailModel.swift */; };
  13. A70B2C1D2286B52400B2449F /* ProductDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C1B2286B52400B2449F /* ProductDetailViewController.swift */; };
  14. A70B2C202286B54500B2449F /* ProductDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C1F2286B54500B2449F /* ProductDetailView.swift */; };
  15. A70B2C222286BF5900B2449F /* ProductDetailTableViewHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C212286BF5900B2449F /* ProductDetailTableViewHeaderView.swift */; };
  16. A70B2C252286C03800B2449F /* NXLPageControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C242286C03800B2449F /* NXLPageControl.swift */; };
  17. A70B2C272286C5D600B2449F /* ProductDetailFSPagerViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C262286C5D600B2449F /* ProductDetailFSPagerViewCell.swift */; };
  18. A70B2C292286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C282286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift */; };
  19. A70B2C2D2286E29900B2449F /* ProductModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A70B2C2C2286E29900B2449F /* ProductModule.xcassets */; };
  20. A70B2C3322880BB700B2449F /* ProductDetailProductLabelTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C3222880BB700B2449F /* ProductDetailProductLabelTableViewCell.swift */; };
  21. A70B2C35228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C34228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift */; };
  22. A70B2C372288177300B2449F /* ProductDetailProductLabelIconCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C362288177300B2449F /* ProductDetailProductLabelIconCollectionViewCell.swift */; };
  23. A70B2C3E228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C3D228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift */; };
  24. A70B2C402288312900B2449F /* ProductDetailSectionHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C3F2288312900B2449F /* ProductDetailSectionHeader.swift */; };
  25. A70B2C4322883B4E00B2449F /* ProductDetailShopTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C4222883B4E00B2449F /* ProductDetailShopTableViewCell.swift */; };
  26. A70B2C46228840B100B2449F /* ProductDetailHotSellTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C45228840B100B2449F /* ProductDetailHotSellTableViewCell.swift */; };
  27. A70B2C492288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C482288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift */; };
  28. A70B2C4C228845E800B2449F /* ProductDetailParameterTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C4B228845E800B2449F /* ProductDetailParameterTableViewCell.swift */; };
  29. A70B2C4E22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C4D22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift */; };
  30. A70B2C532288584500B2449F /* ShareView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C522288584500B2449F /* ShareView.swift */; };
  31. A70B2C5522885AF500B2449F /* ShareCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5422885AF500B2449F /* ShareCollectionViewCell.swift */; };
  32. A70B2C5A22886ADF00B2449F /* ShopViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5922886ADF00B2449F /* ShopViewController.swift */; };
  33. A70B2C5C22886B0000B2449F /* ShopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5B22886B0000B2449F /* ShopView.swift */; };
  34. A70B2C5E22886F4D00B2449F /* ShopViewTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5D22886F4D00B2449F /* ShopViewTableViewCell.swift */; };
  35. A70B2C60228870CE00B2449F /* ShopSectionHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5F228870CE00B2449F /* ShopSectionHeaderView.swift */; };
  36. A70B2C64228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C63228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift */; };
  37. A70B2C6722887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C6622887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift */; };
  38. A70B2C6B2288815300B2449F /* PickHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C6A2288815300B2449F /* PickHeaderView.swift */; };
  39. A70B2C6D2288815E00B2449F /* PickViewOneComponentsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C6C2288815E00B2449F /* PickViewOneComponentsView.swift */; };
  40. A70B2C732289019200B2449F /* ProductDetailSkuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C722289019200B2449F /* ProductDetailSkuView.swift */; };
  41. A70B2C75228920BA00B2449F /* ProductDetailSkuSectionHeaerCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C74228920BA00B2449F /* ProductDetailSkuSectionHeaerCollectionReusableView.swift */; };
  42. A70B842E228F97EC00882BC5 /* ProcuctDetailSelectSkuTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B842D228F97EC00882BC5 /* ProcuctDetailSelectSkuTableViewCell.swift */; };
  43. A70EBBC022561179000AD74F /* Extension+UITableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70EBBBF22561179000AD74F /* Extension+UITableView.swift */; };
  44. A7146349228EFCE20066099B /* ORSKUDataFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = A7146347228EFCE20066099B /* ORSKUDataFilter.m */; };
  45. A714634E228F020A0066099B /* ORSKUDataFilterSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = A714634D228F020A0066099B /* ORSKUDataFilterSwift.swift */; };
  46. A71738A622897892000AEA6A /* SwiftMoyaServiceShopApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71738A522897892000AEA6A /* SwiftMoyaServiceShopApi.swift */; };
  47. A71738A822897E96000AEA6A /* SwiftMoyaNetWorkServiceShop.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71738A722897E96000AEA6A /* SwiftMoyaNetWorkServiceShop.swift */; };
  48. A71738AB22898660000AEA6A /* ShopModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71738AA22898660000AEA6A /* ShopModel.swift */; };
  49. A71738AD228AB7B2000AEA6A /* ProductCommentListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71738AC228AB7B2000AEA6A /* ProductCommentListModel.swift */; };
  50. A7190167227543DB00104A50 /* baidu_cityid_rel.json in Resources */ = {isa = PBXBuildFile; fileRef = A7190166227543DB00104A50 /* baidu_cityid_rel.json */; };
  51. A71901692275464000104A50 /* ProvinceCityAreaView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71901682275464000104A50 /* ProvinceCityAreaView.swift */; };
  52. A719016B22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A719016A22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift */; };
  53. A71901702275EF9900104A50 /* NXLRealm.swift in Sources */ = {isa = PBXBuildFile; fileRef = A719016F2275EF9900104A50 /* NXLRealm.swift */; };
  54. A71901752275F71F00104A50 /* BaiduToCityModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71901742275F71F00104A50 /* BaiduToCityModel.swift */; };
  55. A71AA50C2272126A008FF1A5 /* EditAddressFooterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA50B2272126A008FF1A5 /* EditAddressFooterView.swift */; };
  56. A71AA5102272156A008FF1A5 /* ExpressAddressListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA50F2272156A008FF1A5 /* ExpressAddressListViewController.swift */; };
  57. A71AA513227215B5008FF1A5 /* ExpressAddressListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA512227215B5008FF1A5 /* ExpressAddressListView.swift */; };
  58. A71AA5152272160A008FF1A5 /* ExpressAddressListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA5142272160A008FF1A5 /* ExpressAddressListTableViewCell.swift */; };
  59. A71AA519227219D7008FF1A5 /* EditExpressAddressViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA518227219D7008FF1A5 /* EditExpressAddressViewController.swift */; };
  60. A71AA51C227219EF008FF1A5 /* EditExpressAddressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA51B227219EF008FF1A5 /* EditExpressAddressView.swift */; };
  61. A71AA51F22729F35008FF1A5 /* AuthorizationSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA51E22729F35008FF1A5 /* AuthorizationSwift.swift */; };
  62. A71AA5212272E527008FF1A5 /* Extension+UINavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA5202272E527008FF1A5 /* Extension+UINavigationController.swift */; };
  63. A71AA52622732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA52522732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift */; };
  64. A71AA52822732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA52722732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift */; };
  65. A71AF0A6226EDDC8001730FE /* SearchViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0A5226EDDC8001730FE /* SearchViewController.swift */; };
  66. A71AF0AA226EDDF5001730FE /* SearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0A9226EDDF5001730FE /* SearchView.swift */; };
  67. A71AF0AC226EDE37001730FE /* SearchNavigationbarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0AB226EDE37001730FE /* SearchNavigationbarView.swift */; };
  68. A71AF0AE226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0AD226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift */; };
  69. A71AF0B0226EF185001730FE /* SearchCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0AF226EF185001730FE /* SearchCollectionViewCell.swift */; };
  70. A71AF0B6226EF99A001730FE /* SearchResultViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0B5226EF99A001730FE /* SearchResultViewController.swift */; };
  71. A71AF0B8226EF9EC001730FE /* SearchResultNavigationbarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0B7226EF9EC001730FE /* SearchResultNavigationbarView.swift */; };
  72. A71AF0BA226F00F8001730FE /* SearchResultView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0B9226F00F8001730FE /* SearchResultView.swift */; };
  73. A71AF0BC226F099B001730FE /* ProductHBigTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0BB226F099B001730FE /* ProductHBigTableViewCell.swift */; };
  74. A71AF0BE226F1792001730FE /* ShoppingMallModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A71AF0BD226F1792001730FE /* ShoppingMallModule.xcassets */; };
  75. A71D2A602265673A00A55D16 /* RegisterLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71D2A5F2265673A00A55D16 /* RegisterLoginView.swift */; };
  76. A7274C50228EE5F0000E3A07 /* PhotoAndCameraManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C4F228EE5EF000E3A07 /* PhotoAndCameraManager.swift */; };
  77. A7274C59228EE636000E3A07 /* LBXScanNetAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C52228EE635000E3A07 /* LBXScanNetAnimation.swift */; };
  78. A7274C5A228EE636000E3A07 /* LBXScanView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C53228EE635000E3A07 /* LBXScanView.swift */; };
  79. A7274C5B228EE636000E3A07 /* LBXScanViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C54228EE635000E3A07 /* LBXScanViewController.swift */; };
  80. A7274C5C228EE636000E3A07 /* LBXScanLineAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C55228EE635000E3A07 /* LBXScanLineAnimation.swift */; };
  81. A7274C5D228EE636000E3A07 /* LBXScanViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C56228EE635000E3A07 /* LBXScanViewStyle.swift */; };
  82. A7274C5E228EE636000E3A07 /* LBXPermissions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C57228EE635000E3A07 /* LBXPermissions.swift */; };
  83. A7274C5F228EE636000E3A07 /* LBXScanWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7274C58228EE635000E3A07 /* LBXScanWrapper.swift */; };
  84. A72843FC224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72843FB224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift */; };
  85. A7284401224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284400224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift */; };
  86. A7284404224DBFBD00F82F30 /* UserModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284403224DBFBD00F82F30 /* UserModel.swift */; };
  87. A7284440224DFACD00F82F30 /* InfoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A728443F224DFACD00F82F30 /* InfoModel.swift */; };
  88. A7284A522252EE9A000BAEC4 /* RootModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A512252EE9A000BAEC4 /* RootModel.swift */; };
  89. A7284A542252FB5C000BAEC4 /* PaginationModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A532252FB5C000BAEC4 /* PaginationModel.swift */; };
  90. A7284A7322546460000BAEC4 /* SwiftMoyaServicePayApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A7222546460000BAEC4 /* SwiftMoyaServicePayApi.swift */; };
  91. A7284A75225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A74225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift */; };
  92. A7284A7722547333000BAEC4 /* AlipayResultModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A7622547333000BAEC4 /* AlipayResultModel.swift */; };
  93. A729B5A82266F2E0004AE098 /* AlertSheetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5A72266F2E0004AE098 /* AlertSheetView.swift */; };
  94. A729B5AA2266F6FD004AE098 /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A729B5A92266F6FD004AE098 /* Launch Screen.storyboard */; };
  95. A729B5AD2266FF45004AE098 /* BindPhoneNumberView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5AC2266FF45004AE098 /* BindPhoneNumberView.swift */; };
  96. A729B5B022671310004AE098 /* MobileLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5AF22671310004AE098 /* MobileLoginView.swift */; };
  97. A729B5B42267254B004AE098 /* PasswordLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5B32267254B004AE098 /* PasswordLoginViewController.swift */; };
  98. A729B5B72267270B004AE098 /* PasswordLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5B62267270B004AE098 /* PasswordLoginView.swift */; };
  99. A72A726722321DBD00B21995 /* LocationModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726322321DBD00B21995 /* LocationModel.swift */; };
  100. A72A726822321DBD00B21995 /* UMManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726522321DBD00B21995 /* UMManager.swift */; };
  101. A72A72A922321DE000B21995 /* NumberKeyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727222321DDE00B21995 /* NumberKeyboard.swift */; };
  102. A72A72AA22321DE000B21995 /* Log.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727422321DDE00B21995 /* Log.swift */; };
  103. A72A72AB22321DE000B21995 /* SwiftProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727622321DDE00B21995 /* SwiftProgressHUD.swift */; };
  104. A72A72AC22321DE000B21995 /* Regex.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727822321DDF00B21995 /* Regex.swift */; };
  105. A72A72AE22321DE000B21995 /* CountdownButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727C22321DDF00B21995 /* CountdownButton.swift */; };
  106. A72A72AF22321DE000B21995 /* AppInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727E22321DDF00B21995 /* AppInfo.swift */; };
  107. A72A72B022321DE000B21995 /* CGView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728022321DDF00B21995 /* CGView.swift */; };
  108. A72A72B422321DE000B21995 /* Extension+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728C22321DE000B21995 /* Extension+UIImage.swift */; };
  109. A72A72B522321DE000B21995 /* Extension+UITextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728D22321DE000B21995 /* Extension+UITextView.swift */; };
  110. A72A72B622321DE000B21995 /* Extension+NSRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728E22321DE000B21995 /* Extension+NSRange.swift */; };
  111. A72A72B722321DE000B21995 /* Extension+NSMutableAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728F22321DE000B21995 /* Extension+NSMutableAttributedString.swift */; };
  112. A72A72B822321DE000B21995 /* Extension+UserDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729022321DE000B21995 /* Extension+UserDefaults.swift */; };
  113. A72A72B922321DE000B21995 /* Extension+Array.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729122321DE000B21995 /* Extension+Array.swift */; };
  114. A72A72BA22321DE000B21995 /* Extension+String.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729222321DE000B21995 /* Extension+String.swift */; };
  115. A72A72BB22321DE000B21995 /* Extension+UILabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729322321DE000B21995 /* Extension+UILabel.swift */; };
  116. A72A72BC22321DE000B21995 /* Extension+UIAlertController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729422321DE000B21995 /* Extension+UIAlertController.swift */; };
  117. A72A72BD22321DE000B21995 /* Extension+UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729722321DE000B21995 /* Extension+UIColor.swift */; };
  118. A72A72BE22321DE000B21995 /* Extension+RxTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729822321DE000B21995 /* Extension+RxTimer.swift */; };
  119. A72A72BF22321DE000B21995 /* Extension+UIButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729922321DE000B21995 /* Extension+UIButton.swift */; };
  120. A72A72C022321DE000B21995 /* Extension+UIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729A22321DE000B21995 /* Extension+UIView.swift */; };
  121. A72A72C322321DE000B21995 /* Extension+Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729D22321DE000B21995 /* Extension+Date.swift */; };
  122. A72A72C422321DE000B21995 /* Extension+CAGradientLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729E22321DE000B21995 /* Extension+CAGradientLayer.swift */; };
  123. A72A72C522321DE000B21995 /* WKWebViewConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72A022321DE000B21995 /* WKWebViewConfig.swift */; };
  124. A72A72C622321DE000B21995 /* WebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72A122321DE000B21995 /* WebView.swift */; };
  125. A72A72CF22321E2700B21995 /* NotificationCenterMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72C722321E2500B21995 /* NotificationCenterMacro.swift */; };
  126. A72A72D022321E2700B21995 /* FontMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72C822321E2500B21995 /* FontMacro.swift */; };
  127. A72A72D122321E2700B21995 /* HTMLURLMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72C922321E2600B21995 /* HTMLURLMacro.swift */; };
  128. A72A72D222321E2700B21995 /* Common.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CA22321E2600B21995 /* Common.swift */; };
  129. A72A72D322321E2700B21995 /* CacheMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CB22321E2600B21995 /* CacheMacro.swift */; };
  130. A72A72D422321E2700B21995 /* EnumMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CC22321E2600B21995 /* EnumMacro.swift */; };
  131. A72A72D522321E2700B21995 /* ColorMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CD22321E2600B21995 /* ColorMacro.swift */; };
  132. A72A72D622321E2700B21995 /* ThirdPartyMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CE22321E2700B21995 /* ThirdPartyMacro.swift */; };
  133. A72A72F022321E8800B21995 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72EF22321E8800B21995 /* CoreMotion.framework */; };
  134. A72A72F222321E9300B21995 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F122321E9300B21995 /* CFNetwork.framework */; };
  135. A72A72F422321E9A00B21995 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F322321E9A00B21995 /* Foundation.framework */; };
  136. A72A72F622321EA000B21995 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F522321EA000B21995 /* UIKit.framework */; };
  137. A72A72F822321EB600B21995 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F722321EB600B21995 /* CoreGraphics.framework */; };
  138. A72A72FA22321EBF00B21995 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F922321EBF00B21995 /* CoreText.framework */; };
  139. A72A72FC22321ECE00B21995 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72FB22321ECD00B21995 /* CoreTelephony.framework */; };
  140. A72A72FE22321EE200B21995 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72FD22321EE200B21995 /* QuartzCore.framework */; };
  141. A72A730022321EE900B21995 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72FF22321EE900B21995 /* SystemConfiguration.framework */; };
  142. A72A730222321EEE00B21995 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A730122321EEE00B21995 /* libz.tbd */; };
  143. A72A730422321EFA00B21995 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A730322321EFA00B21995 /* libc++.tbd */; };
  144. A72A73142232475E00B21995 /* AlipayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A73132232475E00B21995 /* AlipayManager.swift */; };
  145. A72A73162232481600B21995 /* WeChatpayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A73152232481600B21995 /* WeChatpayManager.swift */; };
  146. A72A7333223256E100B21995 /* PayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A7332223256E100B21995 /* PayManager.swift */; };
  147. A72A733522325A4B00B21995 /* AppDelegate+HandleOpen.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A733422325A4B00B21995 /* AppDelegate+HandleOpen.swift */; };
  148. A72A7386223396CB00B21995 /* SwiftMoyaNetWorkManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A7382223396CB00B21995 /* SwiftMoyaNetWorkManager.swift */; };
  149. A72A7388223396CB00B21995 /* ApiMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A7384223396CB00B21995 /* ApiMacro.swift */; };
  150. A72C01222275404A0065E0C3 /* ProvinceCityAreaModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72C01202275404A0065E0C3 /* ProvinceCityAreaModel.swift */; };
  151. A72C01232275404A0065E0C3 /* province_city_area.json in Resources */ = {isa = PBXBuildFile; fileRef = A72C01212275404A0065E0C3 /* province_city_area.json */; };
  152. A738D202225AD6AD00EEE860 /* Extension+UICollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A738D201225AD6AD00EEE860 /* Extension+UICollectionView.swift */; };
  153. A738D205225AF90D00EEE860 /* WeChatpayOrderModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A738D204225AF90D00EEE860 /* WeChatpayOrderModel.swift */; };
  154. A738D66F225D9BD900EEE860 /* UMLoginModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A738D66E225D9BD900EEE860 /* UMLoginModel.swift */; };
  155. A73D7C682268A032002A4CE3 /* SwiftyStarRatingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A73D7C672268A032002A4CE3 /* SwiftyStarRatingView.swift */; };
  156. A75414FD224B5F28002480B5 /* MobileLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A75414FB224B5F28002480B5 /* MobileLoginViewController.swift */; };
  157. A7541502224C5ECB002480B5 /* BaiduMapManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7541501224C5ECA002480B5 /* BaiduMapManager.swift */; };
  158. A754150F224CACF9002480B5 /* SwiftSign.swift in Sources */ = {isa = PBXBuildFile; fileRef = A754150B224CACF9002480B5 /* SwiftSign.swift */; };
  159. A757C92E22744ACE00226355 /* AddressManagerListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A757C92D22744ACE00226355 /* AddressManagerListModel.swift */; };
  160. A757C9302274839900226355 /* SelfMentionAddressListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A757C92F2274839900226355 /* SelfMentionAddressListModel.swift */; };
  161. A757C9342274882E00226355 /* UIScrollView+MJRefreshEX.m in Sources */ = {isa = PBXBuildFile; fileRef = A757C9322274882E00226355 /* UIScrollView+MJRefreshEX.m */; };
  162. A7636AC52268139C00374F9E /* LocationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7636AC42268139C00374F9E /* LocationViewController.swift */; };
  163. A7636AC822682BAF00374F9E /* LocationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7636AC722682BAF00374F9E /* LocationView.swift */; };
  164. A76390EB2248E27A0067EEE0 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A76390EA2248E27A0067EEE0 /* UserNotifications.framework */; };
  165. A771F07C226D4E1C007999DB /* AddressPOITableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A771F07B226D4E1C007999DB /* AddressPOITableViewCell.swift */; };
  166. A775CBFE2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A775CBFD2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift */; };
  167. A775CC00223774A300EBDCF8 /* ShoppingMallView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A775CBFF223774A300EBDCF8 /* ShoppingMallView.swift */; };
  168. A775CC0322377C6500EBDCF8 /* EmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A775CC0222377C6500EBDCF8 /* EmptyView.swift */; };
  169. A7778C9722438F5D00C7C47A /* AlipaySDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = A7778C8F22438F5C00C7C47A /* AlipaySDK.bundle */; };
  170. A7778C9822438F5D00C7C47A /* AlipaySDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7778C9022438F5C00C7C47A /* AlipaySDK.framework */; };
  171. A7778C9922438F5D00C7C47A /* README.txt in Resources */ = {isa = PBXBuildFile; fileRef = A7778C9422438F5D00C7C47A /* README.txt */; };
  172. A7778C9A22438F5D00C7C47A /* libWeChatSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A7778C9622438F5D00C7C47A /* libWeChatSDK.a */; };
  173. A7778CA72243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CA62243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift */; };
  174. A7778CA92244904500C7C47A /* Extension+Gifu.GIFImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CA82244904500C7C47A /* Extension+Gifu.GIFImageView.swift */; };
  175. A7778CAB2244B12500C7C47A /* CountDownManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CAA2244B12500C7C47A /* CountDownManager.swift */; };
  176. A7778CB32244D73400C7C47A /* RegisterLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CB12244D73400C7C47A /* RegisterLoginViewController.swift */; };
  177. A7778CB82244E97A00C7C47A /* BindPhoneNumberViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CB72244E97A00C7C47A /* BindPhoneNumberViewController.swift */; };
  178. A7778CBA2244F14B00C7C47A /* Extension+UIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CB92244F14B00C7C47A /* Extension+UIViewController.swift */; };
  179. A7778CC52246035700C7C47A /* PhoneCountryAreaViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CC42246035700C7C47A /* PhoneCountryAreaViewController.swift */; };
  180. A7778CD522460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CD422460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift */; };
  181. A7778CDD2246121500C7C47A /* PhoneCountryAreaListMdoel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CDC2246121500C7C47A /* PhoneCountryAreaListMdoel.swift */; };
  182. A7778CDF22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CDE22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift */; };
  183. A77F2C612231FB49001BD3F6 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C602231FB49001BD3F6 /* AppDelegate.swift */; };
  184. A77F2C682231FB4A001BD3F6 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A77F2C672231FB4A001BD3F6 /* Assets.xcassets */; };
  185. A77F2C762231FB4A001BD3F6 /* RainbowPlanetTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C752231FB4A001BD3F6 /* RainbowPlanetTests.swift */; };
  186. A77F2C812231FB4A001BD3F6 /* RainbowPlanetUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C802231FB4A001BD3F6 /* RainbowPlanetUITests.swift */; };
  187. A77F2C982231FD25001BD3F6 /* BaseNavigationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C972231FD25001BD3F6 /* BaseNavigationViewController.swift */; };
  188. A77F2C9C2231FDCF001BD3F6 /* BaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C9B2231FDCF001BD3F6 /* BaseView.swift */; };
  189. A77F2C9E2231FDDC001BD3F6 /* BaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C9D2231FDDC001BD3F6 /* BaseViewController.swift */; };
  190. A77F2CA02231FE45001BD3F6 /* BaseWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C9F2231FE45001BD3F6 /* BaseWebViewController.swift */; };
  191. A77F2CB52232010F001BD3F6 /* ShoppingMallViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CA72232010F001BD3F6 /* ShoppingMallViewController.swift */; };
  192. A77F2CB72232010F001BD3F6 /* MineViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CAD2232010F001BD3F6 /* MineViewController.swift */; };
  193. A77F2CB92232010F001BD3F6 /* ShoppingCartViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CB32232010F001BD3F6 /* ShoppingCartViewController.swift */; };
  194. A77F2CC3223203BA001BD3F6 /* AppDelegate+Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC2223203BA001BD3F6 /* AppDelegate+Window.swift */; };
  195. A77F2CC722320627001BD3F6 /* WRNavigationBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC522320627001BD3F6 /* WRNavigationBar.swift */; };
  196. A77F2CC822320627001BD3F6 /* WRCustomNavigationBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC622320627001BD3F6 /* WRCustomNavigationBar.swift */; };
  197. A77F2CCA223209F2001BD3F6 /* BaseTabbarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC9223209F2001BD3F6 /* BaseTabbarViewController.swift */; };
  198. A7824AFB2271EA2600ABA381 /* SelfMentionContactsListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824AFA2271EA2600ABA381 /* SelfMentionContactsListView.swift */; };
  199. A7824AFD2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824AFC2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift */; };
  200. A7824B002271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824AFF2271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift */; };
  201. A7824B042271F10300ABA381 /* EditSelfMentionContactsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824B032271F10300ABA381 /* EditSelfMentionContactsView.swift */; };
  202. A7824B062271F25400ABA381 /* EditAddressTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824B052271F25400ABA381 /* EditAddressTableViewCell.swift */; };
  203. A7824B082271F53A00ABA381 /* EditSetDefaultTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824B072271F53A00ABA381 /* EditSetDefaultTableViewCell.swift */; };
  204. A79057022276C9770037F823 /* SetPasswordModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A79057012276C9770037F823 /* SetPasswordModel.swift */; };
  205. A79057062276EA3D0037F823 /* OpenCityListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A79057052276EA3D0037F823 /* OpenCityListModel.swift */; };
  206. A79057082276FEB00037F823 /* SelfMentionContactsModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A79057072276FEB00037F823 /* SelfMentionContactsModel.swift */; };
  207. A7A98DFD227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98DFC227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift */; };
  208. A7A98DFF227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98DFE227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift */; };
  209. A7A98E02227E8900005306E9 /* ProductSearchListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E01227E8900005306E9 /* ProductSearchListModel.swift */; };
  210. A7A98E05227EB891005306E9 /* CategoryViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E04227EB891005306E9 /* CategoryViewController.swift */; };
  211. A7A98E09227EB8DD005306E9 /* CategoryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E08227EB8DD005306E9 /* CategoryView.swift */; };
  212. A7A98E0B227EBD04005306E9 /* CategorySearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E0A227EBD04005306E9 /* CategorySearchView.swift */; };
  213. A7A98E0E227EC0C6005306E9 /* CategoryTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E0D227EC0C6005306E9 /* CategoryTableViewCell.swift */; };
  214. A7A98E10227EC531005306E9 /* ProductHSmallTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E0F227EC531005306E9 /* ProductHSmallTableViewCell.swift */; };
  215. A7A98E12227ECA11005306E9 /* ProductSearchModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E11227ECA11005306E9 /* ProductSearchModel.swift */; };
  216. A7A98E14227ED0E2005306E9 /* CategoryListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E13227ED0E2005306E9 /* CategoryListModel.swift */; };
  217. A7A98E17227EED76005306E9 /* SpecialViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E16227EED76005306E9 /* SpecialViewController.swift */; };
  218. A7A98E1B227EEE49005306E9 /* SpecialView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E1A227EEE49005306E9 /* SpecialView.swift */; };
  219. A7A98E1D227EF1CB005306E9 /* SpecialBannerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E1C227EF1CB005306E9 /* SpecialBannerView.swift */; };
  220. A7A98E28227FD6C6005306E9 /* ShoppingMallListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E27227FD6C6005306E9 /* ShoppingMallListViewController.swift */; };
  221. A7A98E2D22801642005306E9 /* SwiftMoyaServiceCMSApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E2C22801642005306E9 /* SwiftMoyaServiceCMSApi.swift */; };
  222. A7A98E2F228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E2E228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift */; };
  223. A7A98E3122801B10005306E9 /* ShoppingMallListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E3022801B10005306E9 /* ShoppingMallListView.swift */; };
  224. A7A98E332280272A005306E9 /* ShoppingMallBannerTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E322280272A005306E9 /* ShoppingMallBannerTableViewCell.swift */; };
  225. A7A98E3622802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E3522802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift */; };
  226. A7A98E3A2280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E392280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift */; };
  227. A7A98E3C228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E3B228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift */; };
  228. A7A98E41228046C5005306E9 /* ShoppingMallSepcialTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E40228046C4005306E9 /* ShoppingMallSepcialTableViewCell.swift */; };
  229. A7A98E4322804851005306E9 /* ShoppingMallSepcialFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E4222804851005306E9 /* ShoppingMallSepcialFlowLayout.swift */; };
  230. A7A98E4522804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E4422804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift */; };
  231. A7B4E71F228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E71E228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift */; };
  232. A7B4E721228151F40012914A /* ProductFloorTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E720228151F40012914A /* ProductFloorTitleView.swift */; };
  233. A7B4E723228154750012914A /* ProductFloorBannerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E722228154750012914A /* ProductFloorBannerView.swift */; };
  234. A7B4E728228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E727228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift */; };
  235. A7B4E72D228176060012914A /* ProductMallBarChartCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E72C228176060012914A /* ProductMallBarChartCollectionViewCell.swift */; };
  236. A7B4E72F2281773F0012914A /* ProductFloorCenterTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E72E2281773F0012914A /* ProductFloorCenterTitleView.swift */; };
  237. A7B4E7352281907A0012914A /* CMSModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E7342281907A0012914A /* CMSModel.swift */; };
  238. A7B4E738228191CC0012914A /* CommondModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E737228191CC0012914A /* CommondModel.swift */; };
  239. A7B4E73A228192D20012914A /* CMSTemplateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E739228192D10012914A /* CMSTemplateModel.swift */; };
  240. A7B4E754228278320012914A /* ShoppingMallFloorTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E753228278320012914A /* ShoppingMallFloorTableViewCell.swift */; };
  241. A7B4E756228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E755228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift */; };
  242. A7B4E7582282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E7572282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift */; };
  243. A7B4E75A228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E759228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift */; };
  244. A7BB684F2268DCEC00AB07A2 /* SelfRecommendationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB684D2268DCEC00AB07A2 /* SelfRecommendationViewController.swift */; };
  245. A7BB68552268DE8600AB07A2 /* SelfRecommendationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB68542268DE8600AB07A2 /* SelfRecommendationView.swift */; };
  246. A7BB6857226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB6856226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift */; };
  247. A7BB685922696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB685822696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift */; };
  248. A7BB68662269B1DD00AB07A2 /* AddressPOIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB68632269B1DD00AB07A2 /* AddressPOIView.swift */; };
  249. A7BB68672269B1DD00AB07A2 /* AddressPOIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB68652269B1DD00AB07A2 /* AddressPOIViewController.swift */; };
  250. A7C3DD1A226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C3DD19226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift */; };
  251. A7C3DD1C226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C3DD1B226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift */; };
  252. A7CC74D4226FF1AA003C4F38 /* MineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74D3226FF1AA003C4F38 /* MineView.swift */; };
  253. A7CC74D6226FF421003C4F38 /* MineNavigationBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74D5226FF421003C4F38 /* MineNavigationBarView.swift */; };
  254. A7CC74D822700359003C4F38 /* MineTableViewHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74D722700359003C4F38 /* MineTableViewHeaderView.swift */; };
  255. A7CC74DA22702E41003C4F38 /* MineOrderTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74D922702E41003C4F38 /* MineOrderTableViewCell.swift */; };
  256. A7CC74DC2270352F003C4F38 /* MineOrderCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74DB2270352F003C4F38 /* MineOrderCollectionViewCell.swift */; };
  257. A7CC74DE22703B4A003C4F38 /* MineModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7CC74DD22703B4A003C4F38 /* MineModule.xcassets */; };
  258. A7CC74E0227042A4003C4F38 /* MineServiceTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74DF227042A4003C4F38 /* MineServiceTableViewCell.swift */; };
  259. A7CC74E222704429003C4F38 /* MineServiceCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74E122704429003C4F38 /* MineServiceCollectionViewCell.swift */; };
  260. A7CC74E62270628B003C4F38 /* DeliveryMethodTypeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74E52270628B003C4F38 /* DeliveryMethodTypeModel.swift */; };
  261. A7CC74EA22706ACD003C4F38 /* MessageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74E922706ACD003C4F38 /* MessageViewController.swift */; };
  262. A7CC74EF22706CCA003C4F38 /* MessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74EE22706CCA003C4F38 /* MessageView.swift */; };
  263. A7CC74F122706FE3003C4F38 /* MessageOneCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74F022706FE3003C4F38 /* MessageOneCollectionViewCell.swift */; };
  264. A7CC74F3227070D2003C4F38 /* MessageTwoCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74F2227070D2003C4F38 /* MessageTwoCollectionViewCell.swift */; };
  265. A7CC750622714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC750522714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift */; };
  266. A7CC750A22715755003C4F38 /* MessageDetailesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC750922715755003C4F38 /* MessageDetailesViewController.swift */; };
  267. A7CC750D227157DA003C4F38 /* MessageDetailesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC750C227157DA003C4F38 /* MessageDetailesView.swift */; };
  268. A7CC750F22715AAC003C4F38 /* MessageDetailesTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC750E22715AAC003C4F38 /* MessageDetailesTableViewCell.swift */; };
  269. A7CC751122715AE3003C4F38 /* MessageDetailesTimeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751022715AE3003C4F38 /* MessageDetailesTimeView.swift */; };
  270. A7CC7516227161D5003C4F38 /* SetViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC7515227161D5003C4F38 /* SetViewController.swift */; };
  271. A7CC751822716202003C4F38 /* SetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751722716202003C4F38 /* SetView.swift */; };
  272. A7CC751A22716254003C4F38 /* SetTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751922716254003C4F38 /* SetTableViewCell.swift */; };
  273. A7CC751C22716426003C4F38 /* SetLogoutTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751B22716426003C4F38 /* SetLogoutTableViewCell.swift */; };
  274. A7CC751F227190C5003C4F38 /* AccountSecurityViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751E227190C5003C4F38 /* AccountSecurityViewController.swift */; };
  275. A7CC7524227190FB003C4F38 /* AccountSecurityView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC7523227190FB003C4F38 /* AccountSecurityView.swift */; };
  276. A7CC7526227196A8003C4F38 /* AccountSecurityTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC7525227196A8003C4F38 /* AccountSecurityTableViewCell.swift */; };
  277. A7CC7528227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC7527227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift */; };
  278. A7CC752C2271A1AE003C4F38 /* SetPasswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC752B2271A1AE003C4F38 /* SetPasswordViewController.swift */; };
  279. A7CC752F2271A1F2003C4F38 /* SetPasswordView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC752E2271A1F2003C4F38 /* SetPasswordView.swift */; };
  280. A7CC75332271ABB0003C4F38 /* AddressManagerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75322271ABB0003C4F38 /* AddressManagerViewController.swift */; };
  281. A7CC75362271AC14003C4F38 /* AddressManagerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75352271AC14003C4F38 /* AddressManagerView.swift */; };
  282. A7CC75382271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75372271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift */; };
  283. A7CC753A2271B98B003C4F38 /* AddressManagerAddTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75392271B98B003C4F38 /* AddressManagerAddTableViewCell.swift */; };
  284. A7CC753C2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC753B2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift */; };
  285. A7CC753E2271C4C2003C4F38 /* AddressManagerExpressTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC753D2271C4C2003C4F38 /* AddressManagerExpressTableViewCell.swift */; };
  286. A7CC75432271E038003C4F38 /* SelfMentionContactsListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75422271E038003C4F38 /* SelfMentionContactsListViewController.swift */; };
  287. A7D4608E227616F800A5A54E /* SQLiteManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D4608D227616F800A5A54E /* SQLiteManager.swift */; };
  288. A7D46090227617D200A5A54E /* SQLModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D4608F227617D200A5A54E /* SQLModel.swift */; };
  289. A7D46092227619CD00A5A54E /* BaiduToCityFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D46091227619CC00A5A54E /* BaiduToCityFactory.swift */; };
  290. A7D460942276854500A5A54E /* BaiduToCity2Model.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D460932276854500A5A54E /* BaiduToCity2Model.swift */; };
  291. A7DC467F22783A47001F3EFC /* EditExpressAddressTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7DC467E22783A47001F3EFC /* EditExpressAddressTableViewCell.swift */; };
  292. A7FF1555228AC27600A85748 /* ProductAllCommentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1554228AC27600A85748 /* ProductAllCommentView.swift */; };
  293. A7FF1557228AC3E800A85748 /* ProductAllCommentViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1556228AC3E800A85748 /* ProductAllCommentViewController.swift */; };
  294. A7FF1560228C693D00A85748 /* OrderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF155F228C693D00A85748 /* OrderViewController.swift */; };
  295. A7FF1564228C696B00A85748 /* OrderListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1563228C696B00A85748 /* OrderListView.swift */; };
  296. A7FF1566228C6DF200A85748 /* OrderShopAndStatusTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1565228C6DF200A85748 /* OrderShopAndStatusTableViewCell.swift */; };
  297. A7FF1568228C6E2300A85748 /* OrderDeliveryModeAndTimeTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1567228C6E2300A85748 /* OrderDeliveryModeAndTimeTableViewCell.swift */; };
  298. A7FF156A228C6E3600A85748 /* OrderProductTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1569228C6E3600A85748 /* OrderProductTableViewCell.swift */; };
  299. A7FF156C228C6E5E00A85748 /* OrderTotalAmountTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF156B228C6E5E00A85748 /* OrderTotalAmountTableViewCell.swift */; };
  300. A7FF156E228C6EAE00A85748 /* OrderDeliveryModeTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF156D228C6EAE00A85748 /* OrderDeliveryModeTableViewCell.swift */; };
  301. A7FF1570228C6EF200A85748 /* OrderDeliveryModeAndButtonTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF156F228C6EF200A85748 /* OrderDeliveryModeAndButtonTableViewCell.swift */; };
  302. A7FF1572228C7D4600A85748 /* OrderButtonTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1571228C7D4600A85748 /* OrderButtonTableViewCell.swift */; };
  303. A7FF1577228C824300A85748 /* OrderModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7FF1576228C824300A85748 /* OrderModule.xcassets */; };
  304. A7FF1579228C82CE00A85748 /* OrderDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1578228C82CE00A85748 /* OrderDetailViewController.swift */; };
  305. A7FF157D228C837100A85748 /* OrderDetailStatusTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF157C228C837100A85748 /* OrderDetailStatusTableViewCell.swift */; };
  306. A7FF1583228C843700A85748 /* OrderDetailExpressSelfMentionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1582228C843700A85748 /* OrderDetailExpressSelfMentionTableViewCell.swift */; };
  307. A7FF1585228C847300A85748 /* OrderDetailContactAddressTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1584228C847300A85748 /* OrderDetailContactAddressTableViewCell.swift */; };
  308. A7FF1587228C851100A85748 /* OrderDetailInfoTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1586228C851100A85748 /* OrderDetailInfoTableViewCell.swift */; };
  309. A7FF1589228C854900A85748 /* OrderDetailBottomView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1588228C854900A85748 /* OrderDetailBottomView.swift */; };
  310. A7FF158C228C911C00A85748 /* OrderRefunddetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF158B228C911C00A85748 /* OrderRefunddetailsViewController.swift */; };
  311. A7FF1592228C918100A85748 /* OrderRefunddetailsStatusTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1591228C918100A85748 /* OrderRefunddetailsStatusTableViewCell.swift */; };
  312. A7FF1594228C919A00A85748 /* OrderRefunddetailsTipsTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1593228C919A00A85748 /* OrderRefunddetailsTipsTableViewCell.swift */; };
  313. A7FF1596228CFA8100A85748 /* OrderListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1595228CFA8100A85748 /* OrderListViewController.swift */; };
  314. A7FF1598228D092A00A85748 /* OrderListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF1597228D092A00A85748 /* OrderListModel.swift */; };
  315. A7FF159C228D9E3D00A85748 /* OrderRefundDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FF159B228D9E3C00A85748 /* OrderRefundDetailModel.swift */; };
  316. BD1DC6C5228CFD0B00B89C57 /* SwiftMoyaNetWorkServiceOrder.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1DC6C3228CFD0B00B89C57 /* SwiftMoyaNetWorkServiceOrder.swift */; };
  317. BD1DC6C6228CFD0B00B89C57 /* SwiftMoyaServiceOrderApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1DC6C4228CFD0B00B89C57 /* SwiftMoyaServiceOrderApi.swift */; };
  318. BD1DC6C9228D005000B89C57 /* OrderCreateParameterModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1DC6C8228D005000B89C57 /* OrderCreateParameterModel.swift */; };
  319. BD1DC6CB228D157000B89C57 /* OrderCreateBackModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1DC6CA228D157000B89C57 /* OrderCreateBackModel.swift */; };
  320. BD1DC6CD228D160D00B89C57 /* OrderPurchaseModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1DC6CC228D160D00B89C57 /* OrderPurchaseModel.swift */; };
  321. BD20F1CB2283C12000677D8E /* ShoppingCartListNoneItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1CA2283C12000677D8E /* ShoppingCartListNoneItemCell.swift */; };
  322. BD20F1CD2283C51300677D8E /* ShoppingCartFinishPayController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1CC2283C51300677D8E /* ShoppingCartFinishPayController.swift */; };
  323. BD20F1CF2283CE2300677D8E /* ShoppingCartFinishPayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1CE2283CE2300677D8E /* ShoppingCartFinishPayView.swift */; };
  324. BD20F1D32283D0ED00677D8E /* ShoppingCartPaySuccessCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1D22283D0ED00677D8E /* ShoppingCartPaySuccessCell.swift */; };
  325. BD20F1D52283D15500677D8E /* ShoppingCartPayFailureCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1D42283D15500677D8E /* ShoppingCartPayFailureCell.swift */; };
  326. BD20F1D82283D2AA00677D8E /* ShoppingCartModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BD20F1D72283D2AA00677D8E /* ShoppingCartModule.xcassets */; };
  327. BD3474F522857B85000908C5 /* CommonPayHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD3474F422857B85000908C5 /* CommonPayHeader.swift */; };
  328. BD7AB83622841A8B0030646A /* ShoppingCartPayOrderItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB83522841A8B0030646A /* ShoppingCartPayOrderItemCell.swift */; };
  329. BD7AB838228420310030646A /* ShoppingCartPayOrderHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB837228420310030646A /* ShoppingCartPayOrderHeader.swift */; };
  330. BD7AB83A2284288D0030646A /* ShoppingCartPayOrderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB8392284288D0030646A /* ShoppingCartPayOrderFooter.swift */; };
  331. BD7AB83D228438020030646A /* OrderPayExpressInfoShowCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB83C228438020030646A /* OrderPayExpressInfoShowCell.swift */; };
  332. BD7AB83F228438290030646A /* OrderPayExpressAddInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB83E228438290030646A /* OrderPayExpressAddInfoCell.swift */; };
  333. BD7AB841228438C80030646A /* OrderPaySelfPickAddressCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB840228438C80030646A /* OrderPaySelfPickAddressCell.swift */; };
  334. BD7AB8432284390B0030646A /* OrderPaySelfPickInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB8422284390B0030646A /* OrderPaySelfPickInfoCell.swift */; };
  335. BD7AB8452284398A0030646A /* OrderPaySelfPickAddInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB8442284398A0030646A /* OrderPaySelfPickAddInfoCell.swift */; };
  336. BDAA40F7228E947500CF841D /* OrderApplyRefundAccountCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAA40F6228E947500CF841D /* OrderApplyRefundAccountCell.swift */; };
  337. BDAA40F9228E9ADA00CF841D /* OrderApplyRefundReasonCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAA40F8228E9ADA00CF841D /* OrderApplyRefundReasonCell.swift */; };
  338. BDAA40FB228E9CC300CF841D /* OrderApplyRefundNoteInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAA40FA228E9CC300CF841D /* OrderApplyRefundNoteInfoCell.swift */; };
  339. BDAA40FD228E9CD600CF841D /* OrderApplyRefundPhoneCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAA40FC228E9CD600CF841D /* OrderApplyRefundPhoneCell.swift */; };
  340. BDAA40FF228EA37900CF841D /* OrderApplyRefundPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAA40FE228EA37900CF841D /* OrderApplyRefundPhotoCell.swift */; };
  341. BDD4FB1222840597006FE833 /* ShoppingCartPayOrderController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDD4FB1122840597006FE833 /* ShoppingCartPayOrderController.swift */; };
  342. BDD4FB1422840954006FE833 /* ShoppingCartOrderPayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDD4FB1322840954006FE833 /* ShoppingCartOrderPayView.swift */; };
  343. BDD4FB1722840DD3006FE833 /* OrderPayAcountView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDD4FB1622840DD3006FE833 /* OrderPayAcountView.swift */; };
  344. BDDF3B28228EBB72003A7D16 /* ProductRefundReasonModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDDF3B27228EBB72003A7D16 /* ProductRefundReasonModel.swift */; };
  345. BDE3045D22851E4F001D050F /* ProductCartListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDE3045C22851E4F001D050F /* ProductCartListModel.swift */; };
  346. BDE3045F228554CA001D050F /* ProductCartAmountModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDE3045E228554CA001D050F /* ProductCartAmountModel.swift */; };
  347. BDEF7791228571DC00ED0AC0 /* CommonPayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDEF7790228571DC00ED0AC0 /* CommonPayView.swift */; };
  348. BDEF7793228575A800ED0AC0 /* CommonPayCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDEF7792228575A800ED0AC0 /* CommonPayCell.swift */; };
  349. BDF45F0D228C00B8004E2682 /* DefaultContactInfoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF45F0C228C00B8004E2682 /* DefaultContactInfoModel.swift */; };
  350. BDF47D7A228271F600941AB9 /* ShoppingCartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D79228271F600941AB9 /* ShoppingCartView.swift */; };
  351. BDF47D7E22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D7D22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift */; };
  352. BDF47D80228288F900941AB9 /* ShoppingCartAccountView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D7F228288F900941AB9 /* ShoppingCartAccountView.swift */; };
  353. BDF47D822282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D812282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift */; };
  354. BDF47D852282C59F00941AB9 /* ShoppingCartListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D842282C59F00941AB9 /* ShoppingCartListTableViewCell.swift */; };
  355. BDF47D872282C92200941AB9 /* ShoppingCartListTableViewHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D862282C92200941AB9 /* ShoppingCartListTableViewHeader.swift */; };
  356. BDF8629C228E4125000DEF84 /* OrderCommentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF8629B228E4125000DEF84 /* OrderCommentController.swift */; };
  357. BDF862A1228E41CC000DEF84 /* OrderLogisticsController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF8629E228E41CC000DEF84 /* OrderLogisticsController.swift */; };
  358. BDF862A2228E41CC000DEF84 /* OrderLogisticsInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF862A0228E41CC000DEF84 /* OrderLogisticsInfoCell.swift */; };
  359. BDF862A7228E42FA000DEF84 /* OrderApplyRefundController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF862A6228E42FA000DEF84 /* OrderApplyRefundController.swift */; };
  360. BDF862AA228E43A4000DEF84 /* OrderCommentTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF862A9228E43A4000DEF84 /* OrderCommentTableViewCell.swift */; };
  361. BDF862AC228E5112000DEF84 /* OrderCommentAddImgCollectionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF862AB228E5112000DEF84 /* OrderCommentAddImgCollectionCell.swift */; };
  362. BDF862AE228E57E1000DEF84 /* OrderCommentDefaultCollectionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF862AD228E57E1000DEF84 /* OrderCommentDefaultCollectionCell.swift */; };
  363. BDF862B1228E6690000DEF84 /* OrderApplyRefundProductCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF862B0228E6690000DEF84 /* OrderApplyRefundProductCell.swift */; };
  364. /* End PBXBuildFile section */
  365. /* Begin PBXContainerItemProxy section */
  366. A77F2C722231FB4A001BD3F6 /* PBXContainerItemProxy */ = {
  367. isa = PBXContainerItemProxy;
  368. containerPortal = A77F2C552231FB49001BD3F6 /* Project object */;
  369. proxyType = 1;
  370. remoteGlobalIDString = A77F2C5C2231FB49001BD3F6;
  371. remoteInfo = RainbowPlanet;
  372. };
  373. A77F2C7D2231FB4A001BD3F6 /* PBXContainerItemProxy */ = {
  374. isa = PBXContainerItemProxy;
  375. containerPortal = A77F2C552231FB49001BD3F6 /* Project object */;
  376. proxyType = 1;
  377. remoteGlobalIDString = A77F2C5C2231FB49001BD3F6;
  378. remoteInfo = RainbowPlanet;
  379. };
  380. /* End PBXContainerItemProxy section */
  381. /* Begin PBXFileReference section */
  382. 57C497E128081597F165C771 /* Pods-RainbowPlanet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RainbowPlanet.release.xcconfig"; path = "Pods/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet.release.xcconfig"; sourceTree = "<group>"; };
  383. 88DF1EFD2E202DA7C627E8A7 /* Pods_RainbowPlanetUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RainbowPlanetUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  384. A70B2C032283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorFullLeftHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  385. A70B2C062284305400B2449F /* ProductModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductModel.swift; sourceTree = "<group>"; };
  386. A70B2C0F2286A3BC00B2449F /* ProductDetailModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductDetailModel.swift; sourceTree = "<group>"; };
  387. A70B2C1B2286B52400B2449F /* ProductDetailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailViewController.swift; sourceTree = "<group>"; };
  388. A70B2C1F2286B54500B2449F /* ProductDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailView.swift; sourceTree = "<group>"; };
  389. A70B2C212286BF5900B2449F /* ProductDetailTableViewHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailTableViewHeaderView.swift; sourceTree = "<group>"; };
  390. A70B2C242286C03800B2449F /* NXLPageControl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NXLPageControl.swift; sourceTree = "<group>"; };
  391. A70B2C262286C5D600B2449F /* ProductDetailFSPagerViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailFSPagerViewCell.swift; sourceTree = "<group>"; };
  392. A70B2C282286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailProductInfoTableViewCell.swift; sourceTree = "<group>"; };
  393. A70B2C2C2286E29900B2449F /* ProductModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ProductModule.xcassets; sourceTree = "<group>"; };
  394. A70B2C3222880BB700B2449F /* ProductDetailProductLabelTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailProductLabelTableViewCell.swift; sourceTree = "<group>"; };
  395. A70B2C34228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailProductSkuLabelCollectionViewCell.swift; sourceTree = "<group>"; };
  396. A70B2C362288177300B2449F /* ProductDetailProductLabelIconCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailProductLabelIconCollectionViewCell.swift; sourceTree = "<group>"; };
  397. A70B2C3D228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailEvaluationTableViewCell.swift; sourceTree = "<group>"; };
  398. A70B2C3F2288312900B2449F /* ProductDetailSectionHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailSectionHeader.swift; sourceTree = "<group>"; };
  399. A70B2C4222883B4E00B2449F /* ProductDetailShopTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailShopTableViewCell.swift; sourceTree = "<group>"; };
  400. A70B2C45228840B100B2449F /* ProductDetailHotSellTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailHotSellTableViewCell.swift; sourceTree = "<group>"; };
  401. A70B2C482288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailHotSellCollectionViewCell.swift; sourceTree = "<group>"; };
  402. A70B2C4B228845E800B2449F /* ProductDetailParameterTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailParameterTableViewCell.swift; sourceTree = "<group>"; };
  403. A70B2C4D22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailDescriptionTableViewCell.swift; sourceTree = "<group>"; };
  404. A70B2C522288584500B2449F /* ShareView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareView.swift; sourceTree = "<group>"; };
  405. A70B2C5422885AF500B2449F /* ShareCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareCollectionViewCell.swift; sourceTree = "<group>"; };
  406. A70B2C5922886ADF00B2449F /* ShopViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopViewController.swift; sourceTree = "<group>"; };
  407. A70B2C5B22886B0000B2449F /* ShopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopView.swift; sourceTree = "<group>"; };
  408. A70B2C5D22886F4D00B2449F /* ShopViewTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopViewTableViewCell.swift; sourceTree = "<group>"; };
  409. A70B2C5F228870CE00B2449F /* ShopSectionHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopSectionHeaderView.swift; sourceTree = "<group>"; };
  410. A70B2C63228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopViewShopInfoTableViewCell.swift; sourceTree = "<group>"; };
  411. A70B2C6622887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailEvaluationListTableViewCell.swift; sourceTree = "<group>"; };
  412. A70B2C6A2288815300B2449F /* PickHeaderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PickHeaderView.swift; sourceTree = "<group>"; };
  413. A70B2C6C2288815E00B2449F /* PickViewOneComponentsView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PickViewOneComponentsView.swift; sourceTree = "<group>"; };
  414. A70B2C722289019200B2449F /* ProductDetailSkuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailSkuView.swift; sourceTree = "<group>"; };
  415. A70B2C74228920BA00B2449F /* ProductDetailSkuSectionHeaerCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailSkuSectionHeaerCollectionReusableView.swift; sourceTree = "<group>"; };
  416. A70B842D228F97EC00882BC5 /* ProcuctDetailSelectSkuTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProcuctDetailSelectSkuTableViewCell.swift; sourceTree = "<group>"; };
  417. A70EBBBF22561179000AD74F /* Extension+UITableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UITableView.swift"; sourceTree = "<group>"; };
  418. A7146347228EFCE20066099B /* ORSKUDataFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ORSKUDataFilter.m; sourceTree = "<group>"; };
  419. A7146348228EFCE20066099B /* ORSKUDataFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ORSKUDataFilter.h; sourceTree = "<group>"; };
  420. A714634D228F020A0066099B /* ORSKUDataFilterSwift.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ORSKUDataFilterSwift.swift; sourceTree = "<group>"; };
  421. A71738A522897892000AEA6A /* SwiftMoyaServiceShopApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceShopApi.swift; sourceTree = "<group>"; };
  422. A71738A722897E96000AEA6A /* SwiftMoyaNetWorkServiceShop.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceShop.swift; sourceTree = "<group>"; };
  423. A71738AA22898660000AEA6A /* ShopModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShopModel.swift; sourceTree = "<group>"; };
  424. A71738AC228AB7B2000AEA6A /* ProductCommentListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductCommentListModel.swift; sourceTree = "<group>"; };
  425. A7190166227543DB00104A50 /* baidu_cityid_rel.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = baidu_cityid_rel.json; sourceTree = "<group>"; };
  426. A71901682275464000104A50 /* ProvinceCityAreaView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProvinceCityAreaView.swift; sourceTree = "<group>"; };
  427. A719016A22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProvinceCityAreaTableViewCell.swift; sourceTree = "<group>"; };
  428. A719016F2275EF9900104A50 /* NXLRealm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NXLRealm.swift; sourceTree = "<group>"; };
  429. A71901742275F71F00104A50 /* BaiduToCityModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaiduToCityModel.swift; sourceTree = "<group>"; };
  430. A71AA50B2272126A008FF1A5 /* EditAddressFooterView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditAddressFooterView.swift; sourceTree = "<group>"; };
  431. A71AA50F2272156A008FF1A5 /* ExpressAddressListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExpressAddressListViewController.swift; sourceTree = "<group>"; };
  432. A71AA512227215B5008FF1A5 /* ExpressAddressListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExpressAddressListView.swift; sourceTree = "<group>"; };
  433. A71AA5142272160A008FF1A5 /* ExpressAddressListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExpressAddressListTableViewCell.swift; sourceTree = "<group>"; };
  434. A71AA518227219D7008FF1A5 /* EditExpressAddressViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditExpressAddressViewController.swift; sourceTree = "<group>"; };
  435. A71AA51B227219EF008FF1A5 /* EditExpressAddressView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditExpressAddressView.swift; sourceTree = "<group>"; };
  436. A71AA51E22729F35008FF1A5 /* AuthorizationSwift.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AuthorizationSwift.swift; sourceTree = "<group>"; };
  437. A71AA5202272E527008FF1A5 /* Extension+UINavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UINavigationController.swift"; sourceTree = "<group>"; };
  438. A71AA52522732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceConfigApi.swift; sourceTree = "<group>"; };
  439. A71AA52722732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceConfig.swift; sourceTree = "<group>"; };
  440. A71AF0A5226EDDC8001730FE /* SearchViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchViewController.swift; sourceTree = "<group>"; };
  441. A71AF0A9226EDDF5001730FE /* SearchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchView.swift; sourceTree = "<group>"; };
  442. A71AF0AB226EDE37001730FE /* SearchNavigationbarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchNavigationbarView.swift; sourceTree = "<group>"; };
  443. A71AF0AD226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  444. A71AF0AF226EF185001730FE /* SearchCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchCollectionViewCell.swift; sourceTree = "<group>"; };
  445. A71AF0B5226EF99A001730FE /* SearchResultViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultViewController.swift; sourceTree = "<group>"; };
  446. A71AF0B7226EF9EC001730FE /* SearchResultNavigationbarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultNavigationbarView.swift; sourceTree = "<group>"; };
  447. A71AF0B9226F00F8001730FE /* SearchResultView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultView.swift; sourceTree = "<group>"; };
  448. A71AF0BB226F099B001730FE /* ProductHBigTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductHBigTableViewCell.swift; sourceTree = "<group>"; };
  449. A71AF0BD226F1792001730FE /* ShoppingMallModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ShoppingMallModule.xcassets; sourceTree = "<group>"; };
  450. A71D2A5F2265673A00A55D16 /* RegisterLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RegisterLoginView.swift; sourceTree = "<group>"; };
  451. A7274C4F228EE5EF000E3A07 /* PhotoAndCameraManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PhotoAndCameraManager.swift; sourceTree = "<group>"; };
  452. A7274C52228EE635000E3A07 /* LBXScanNetAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanNetAnimation.swift; sourceTree = "<group>"; };
  453. A7274C53228EE635000E3A07 /* LBXScanView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanView.swift; sourceTree = "<group>"; };
  454. A7274C54228EE635000E3A07 /* LBXScanViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanViewController.swift; sourceTree = "<group>"; };
  455. A7274C55228EE635000E3A07 /* LBXScanLineAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanLineAnimation.swift; sourceTree = "<group>"; };
  456. A7274C56228EE635000E3A07 /* LBXScanViewStyle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanViewStyle.swift; sourceTree = "<group>"; };
  457. A7274C57228EE635000E3A07 /* LBXPermissions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXPermissions.swift; sourceTree = "<group>"; };
  458. A7274C58228EE635000E3A07 /* LBXScanWrapper.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanWrapper.swift; sourceTree = "<group>"; };
  459. A72843FB224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceUserApi.swift; sourceTree = "<group>"; };
  460. A7284400224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceUser.swift; sourceTree = "<group>"; };
  461. A7284403224DBFBD00F82F30 /* UserModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserModel.swift; sourceTree = "<group>"; };
  462. A728443F224DFACD00F82F30 /* InfoModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InfoModel.swift; sourceTree = "<group>"; };
  463. A7284A512252EE9A000BAEC4 /* RootModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RootModel.swift; sourceTree = "<group>"; };
  464. A7284A532252FB5C000BAEC4 /* PaginationModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PaginationModel.swift; sourceTree = "<group>"; };
  465. A7284A7222546460000BAEC4 /* SwiftMoyaServicePayApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServicePayApi.swift; sourceTree = "<group>"; };
  466. A7284A74225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServicePay.swift; sourceTree = "<group>"; };
  467. A7284A7622547333000BAEC4 /* AlipayResultModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlipayResultModel.swift; sourceTree = "<group>"; };
  468. A729B5A72266F2E0004AE098 /* AlertSheetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertSheetView.swift; sourceTree = "<group>"; };
  469. A729B5A92266F6FD004AE098 /* Launch Screen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = "<group>"; };
  470. A729B5AC2266FF45004AE098 /* BindPhoneNumberView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BindPhoneNumberView.swift; sourceTree = "<group>"; };
  471. A729B5AF22671310004AE098 /* MobileLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MobileLoginView.swift; sourceTree = "<group>"; };
  472. A729B5B32267254B004AE098 /* PasswordLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PasswordLoginViewController.swift; sourceTree = "<group>"; };
  473. A729B5B62267270B004AE098 /* PasswordLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PasswordLoginView.swift; sourceTree = "<group>"; };
  474. A72A726022321D3400B21995 /* RainbowPlanet-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RainbowPlanet-Bridging-Header.h"; sourceTree = "<group>"; };
  475. A72A726322321DBD00B21995 /* LocationModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocationModel.swift; sourceTree = "<group>"; };
  476. A72A726522321DBD00B21995 /* UMManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UMManager.swift; sourceTree = "<group>"; };
  477. A72A727222321DDE00B21995 /* NumberKeyboard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NumberKeyboard.swift; sourceTree = "<group>"; };
  478. A72A727422321DDE00B21995 /* Log.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Log.swift; sourceTree = "<group>"; };
  479. A72A727622321DDE00B21995 /* SwiftProgressHUD.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftProgressHUD.swift; sourceTree = "<group>"; };
  480. A72A727822321DDF00B21995 /* Regex.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Regex.swift; sourceTree = "<group>"; };
  481. A72A727C22321DDF00B21995 /* CountdownButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CountdownButton.swift; sourceTree = "<group>"; };
  482. A72A727E22321DDF00B21995 /* AppInfo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppInfo.swift; sourceTree = "<group>"; };
  483. A72A728022321DDF00B21995 /* CGView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGView.swift; sourceTree = "<group>"; };
  484. A72A728C22321DE000B21995 /* Extension+UIImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIImage.swift"; sourceTree = "<group>"; };
  485. A72A728D22321DE000B21995 /* Extension+UITextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UITextView.swift"; sourceTree = "<group>"; };
  486. A72A728E22321DE000B21995 /* Extension+NSRange.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+NSRange.swift"; sourceTree = "<group>"; };
  487. A72A728F22321DE000B21995 /* Extension+NSMutableAttributedString.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+NSMutableAttributedString.swift"; sourceTree = "<group>"; };
  488. A72A729022321DE000B21995 /* Extension+UserDefaults.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UserDefaults.swift"; sourceTree = "<group>"; };
  489. A72A729122321DE000B21995 /* Extension+Array.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+Array.swift"; sourceTree = "<group>"; };
  490. A72A729222321DE000B21995 /* Extension+String.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+String.swift"; sourceTree = "<group>"; };
  491. A72A729322321DE000B21995 /* Extension+UILabel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UILabel.swift"; sourceTree = "<group>"; };
  492. A72A729422321DE000B21995 /* Extension+UIAlertController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIAlertController.swift"; sourceTree = "<group>"; };
  493. A72A729722321DE000B21995 /* Extension+UIColor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIColor.swift"; sourceTree = "<group>"; };
  494. A72A729822321DE000B21995 /* Extension+RxTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+RxTimer.swift"; sourceTree = "<group>"; };
  495. A72A729922321DE000B21995 /* Extension+UIButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIButton.swift"; sourceTree = "<group>"; };
  496. A72A729A22321DE000B21995 /* Extension+UIView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIView.swift"; sourceTree = "<group>"; };
  497. A72A729D22321DE000B21995 /* Extension+Date.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+Date.swift"; sourceTree = "<group>"; };
  498. A72A729E22321DE000B21995 /* Extension+CAGradientLayer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+CAGradientLayer.swift"; sourceTree = "<group>"; };
  499. A72A72A022321DE000B21995 /* WKWebViewConfig.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WKWebViewConfig.swift; sourceTree = "<group>"; };
  500. A72A72A122321DE000B21995 /* WebView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WebView.swift; sourceTree = "<group>"; };
  501. A72A72C722321E2500B21995 /* NotificationCenterMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationCenterMacro.swift; sourceTree = "<group>"; };
  502. A72A72C822321E2500B21995 /* FontMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FontMacro.swift; sourceTree = "<group>"; };
  503. A72A72C922321E2600B21995 /* HTMLURLMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HTMLURLMacro.swift; sourceTree = "<group>"; };
  504. A72A72CA22321E2600B21995 /* Common.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Common.swift; sourceTree = "<group>"; };
  505. A72A72CB22321E2600B21995 /* CacheMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CacheMacro.swift; sourceTree = "<group>"; };
  506. A72A72CC22321E2600B21995 /* EnumMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EnumMacro.swift; sourceTree = "<group>"; };
  507. A72A72CD22321E2600B21995 /* ColorMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorMacro.swift; sourceTree = "<group>"; };
  508. A72A72CE22321E2700B21995 /* ThirdPartyMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ThirdPartyMacro.swift; sourceTree = "<group>"; };
  509. A72A72EF22321E8800B21995 /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
  510. A72A72F122321E9300B21995 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
  511. A72A72F322321E9A00B21995 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  512. A72A72F522321EA000B21995 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  513. A72A72F722321EB600B21995 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  514. A72A72F922321EBF00B21995 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  515. A72A72FB22321ECD00B21995 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
  516. A72A72FD22321EE200B21995 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  517. A72A72FF22321EE900B21995 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  518. A72A730122321EEE00B21995 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  519. A72A730322321EFA00B21995 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  520. A72A73132232475E00B21995 /* AlipayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlipayManager.swift; sourceTree = "<group>"; };
  521. A72A73152232481600B21995 /* WeChatpayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WeChatpayManager.swift; sourceTree = "<group>"; };
  522. A72A7332223256E100B21995 /* PayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PayManager.swift; sourceTree = "<group>"; };
  523. A72A733422325A4B00B21995 /* AppDelegate+HandleOpen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+HandleOpen.swift"; sourceTree = "<group>"; };
  524. A72A73592233577000B21995 /* libc++.1.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.1.tbd"; path = "usr/lib/libc++.1.tbd"; sourceTree = SDKROOT; };
  525. A72A7382223396CB00B21995 /* SwiftMoyaNetWorkManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkManager.swift; sourceTree = "<group>"; };
  526. A72A7384223396CB00B21995 /* ApiMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApiMacro.swift; sourceTree = "<group>"; };
  527. A72C01202275404A0065E0C3 /* ProvinceCityAreaModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProvinceCityAreaModel.swift; sourceTree = "<group>"; };
  528. A72C01212275404A0065E0C3 /* province_city_area.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = province_city_area.json; sourceTree = "<group>"; };
  529. A738D201225AD6AD00EEE860 /* Extension+UICollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UICollectionView.swift"; sourceTree = "<group>"; };
  530. A738D204225AF90D00EEE860 /* WeChatpayOrderModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WeChatpayOrderModel.swift; sourceTree = "<group>"; };
  531. A738D66E225D9BD900EEE860 /* UMLoginModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UMLoginModel.swift; sourceTree = "<group>"; };
  532. A73D7C672268A032002A4CE3 /* SwiftyStarRatingView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftyStarRatingView.swift; sourceTree = "<group>"; };
  533. A75414FB224B5F28002480B5 /* MobileLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MobileLoginViewController.swift; sourceTree = "<group>"; };
  534. A7541501224C5ECA002480B5 /* BaiduMapManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaiduMapManager.swift; sourceTree = "<group>"; };
  535. A754150B224CACF9002480B5 /* SwiftSign.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftSign.swift; sourceTree = "<group>"; };
  536. A757C92D22744ACE00226355 /* AddressManagerListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddressManagerListModel.swift; sourceTree = "<group>"; };
  537. A757C92F2274839900226355 /* SelfMentionAddressListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SelfMentionAddressListModel.swift; sourceTree = "<group>"; };
  538. A757C9322274882E00226355 /* UIScrollView+MJRefreshEX.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJRefreshEX.m"; sourceTree = "<group>"; };
  539. A757C9332274882E00226355 /* UIScrollView+MJRefreshEX.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJRefreshEX.h"; sourceTree = "<group>"; };
  540. A7636AC42268139C00374F9E /* LocationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationViewController.swift; sourceTree = "<group>"; };
  541. A7636AC722682BAF00374F9E /* LocationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationView.swift; sourceTree = "<group>"; };
  542. A76390EA2248E27A0067EEE0 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
  543. A771F07B226D4E1C007999DB /* AddressPOITableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressPOITableViewCell.swift; sourceTree = "<group>"; };
  544. A775CBFD2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallNavigationBarView.swift; sourceTree = "<group>"; };
  545. A775CBFF223774A300EBDCF8 /* ShoppingMallView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallView.swift; sourceTree = "<group>"; };
  546. A775CC0222377C6500EBDCF8 /* EmptyView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmptyView.swift; sourceTree = "<group>"; };
  547. A7778C8F22438F5C00C7C47A /* AlipaySDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AlipaySDK.bundle; sourceTree = "<group>"; };
  548. A7778C9022438F5C00C7C47A /* AlipaySDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AlipaySDK.framework; sourceTree = "<group>"; };
  549. A7778C9222438F5D00C7C47A /* WXApi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApi.h; sourceTree = "<group>"; };
  550. A7778C9322438F5D00C7C47A /* WXApiObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApiObject.h; sourceTree = "<group>"; };
  551. A7778C9422438F5D00C7C47A /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
  552. A7778C9522438F5D00C7C47A /* WechatAuthSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WechatAuthSDK.h; sourceTree = "<group>"; };
  553. A7778C9622438F5D00C7C47A /* libWeChatSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libWeChatSDK.a; sourceTree = "<group>"; };
  554. A7778CA62243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IQKeyboardManagerSwiftManager.swift; sourceTree = "<group>"; };
  555. A7778CA82244904500C7C47A /* Extension+Gifu.GIFImageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+Gifu.GIFImageView.swift"; sourceTree = "<group>"; };
  556. A7778CAA2244B12500C7C47A /* CountDownManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CountDownManager.swift; sourceTree = "<group>"; };
  557. A7778CB12244D73400C7C47A /* RegisterLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RegisterLoginViewController.swift; sourceTree = "<group>"; };
  558. A7778CB72244E97A00C7C47A /* BindPhoneNumberViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BindPhoneNumberViewController.swift; sourceTree = "<group>"; };
  559. A7778CB92244F14B00C7C47A /* Extension+UIViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UIViewController.swift"; sourceTree = "<group>"; };
  560. A7778CC42246035700C7C47A /* PhoneCountryAreaViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaViewController.swift; sourceTree = "<group>"; };
  561. A7778CD422460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaTableViewCell.swift; sourceTree = "<group>"; };
  562. A7778CDC2246121500C7C47A /* PhoneCountryAreaListMdoel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaListMdoel.swift; sourceTree = "<group>"; };
  563. A7778CDE22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaSectionHeaderView.swift; sourceTree = "<group>"; };
  564. A77F2C5D2231FB49001BD3F6 /* RainbowPlanet.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RainbowPlanet.app; sourceTree = BUILT_PRODUCTS_DIR; };
  565. A77F2C602231FB49001BD3F6 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  566. A77F2C672231FB4A001BD3F6 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  567. A77F2C6C2231FB4A001BD3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  568. A77F2C712231FB4A001BD3F6 /* RainbowPlanetTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RainbowPlanetTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  569. A77F2C752231FB4A001BD3F6 /* RainbowPlanetTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RainbowPlanetTests.swift; sourceTree = "<group>"; };
  570. A77F2C772231FB4A001BD3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  571. A77F2C7C2231FB4A001BD3F6 /* RainbowPlanetUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RainbowPlanetUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  572. A77F2C802231FB4A001BD3F6 /* RainbowPlanetUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RainbowPlanetUITests.swift; sourceTree = "<group>"; };
  573. A77F2C822231FB4A001BD3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  574. A77F2C972231FD25001BD3F6 /* BaseNavigationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseNavigationViewController.swift; sourceTree = "<group>"; };
  575. A77F2C9B2231FDCF001BD3F6 /* BaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseView.swift; sourceTree = "<group>"; };
  576. A77F2C9D2231FDDC001BD3F6 /* BaseViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseViewController.swift; sourceTree = "<group>"; };
  577. A77F2C9F2231FE45001BD3F6 /* BaseWebViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseWebViewController.swift; sourceTree = "<group>"; };
  578. A77F2CA72232010F001BD3F6 /* ShoppingMallViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingMallViewController.swift; sourceTree = "<group>"; };
  579. A77F2CAD2232010F001BD3F6 /* MineViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MineViewController.swift; sourceTree = "<group>"; };
  580. A77F2CB32232010F001BD3F6 /* ShoppingCartViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingCartViewController.swift; sourceTree = "<group>"; };
  581. A77F2CC2223203BA001BD3F6 /* AppDelegate+Window.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Window.swift"; sourceTree = "<group>"; };
  582. A77F2CC522320627001BD3F6 /* WRNavigationBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WRNavigationBar.swift; sourceTree = "<group>"; };
  583. A77F2CC622320627001BD3F6 /* WRCustomNavigationBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WRCustomNavigationBar.swift; sourceTree = "<group>"; };
  584. A77F2CC9223209F2001BD3F6 /* BaseTabbarViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseTabbarViewController.swift; sourceTree = "<group>"; };
  585. A7824AFA2271EA2600ABA381 /* SelfMentionContactsListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfMentionContactsListView.swift; sourceTree = "<group>"; };
  586. A7824AFC2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfMentionContactsListTableViewCell.swift; sourceTree = "<group>"; };
  587. A7824AFF2271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditSelfMentionContactsViewController.swift; sourceTree = "<group>"; };
  588. A7824B032271F10300ABA381 /* EditSelfMentionContactsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditSelfMentionContactsView.swift; sourceTree = "<group>"; };
  589. A7824B052271F25400ABA381 /* EditAddressTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditAddressTableViewCell.swift; sourceTree = "<group>"; };
  590. A7824B072271F53A00ABA381 /* EditSetDefaultTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditSetDefaultTableViewCell.swift; sourceTree = "<group>"; };
  591. A79057012276C9770037F823 /* SetPasswordModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SetPasswordModel.swift; sourceTree = "<group>"; };
  592. A79057052276EA3D0037F823 /* OpenCityListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OpenCityListModel.swift; sourceTree = "<group>"; };
  593. A79057072276FEB00037F823 /* SelfMentionContactsModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SelfMentionContactsModel.swift; sourceTree = "<group>"; };
  594. A7A59A7722363CCB00417FA4 /* RainbowPlanet.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = RainbowPlanet.entitlements; sourceTree = "<group>"; };
  595. A7A98DFC227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceProductApi.swift; sourceTree = "<group>"; };
  596. A7A98DFE227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceProduct.swift; sourceTree = "<group>"; };
  597. A7A98E01227E8900005306E9 /* ProductSearchListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductSearchListModel.swift; sourceTree = "<group>"; };
  598. A7A98E04227EB891005306E9 /* CategoryViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryViewController.swift; sourceTree = "<group>"; };
  599. A7A98E08227EB8DD005306E9 /* CategoryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryView.swift; sourceTree = "<group>"; };
  600. A7A98E0A227EBD04005306E9 /* CategorySearchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategorySearchView.swift; sourceTree = "<group>"; };
  601. A7A98E0D227EC0C6005306E9 /* CategoryTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryTableViewCell.swift; sourceTree = "<group>"; };
  602. A7A98E0F227EC531005306E9 /* ProductHSmallTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductHSmallTableViewCell.swift; sourceTree = "<group>"; };
  603. A7A98E11227ECA11005306E9 /* ProductSearchModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductSearchModel.swift; sourceTree = "<group>"; };
  604. A7A98E13227ED0E2005306E9 /* CategoryListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CategoryListModel.swift; sourceTree = "<group>"; };
  605. A7A98E16227EED76005306E9 /* SpecialViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpecialViewController.swift; sourceTree = "<group>"; };
  606. A7A98E1A227EEE49005306E9 /* SpecialView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpecialView.swift; sourceTree = "<group>"; };
  607. A7A98E1C227EF1CB005306E9 /* SpecialBannerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpecialBannerView.swift; sourceTree = "<group>"; };
  608. A7A98E27227FD6C6005306E9 /* ShoppingMallListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallListViewController.swift; sourceTree = "<group>"; };
  609. A7A98E2C22801642005306E9 /* SwiftMoyaServiceCMSApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceCMSApi.swift; sourceTree = "<group>"; };
  610. A7A98E2E228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceCMS.swift; sourceTree = "<group>"; };
  611. A7A98E3022801B10005306E9 /* ShoppingMallListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallListView.swift; sourceTree = "<group>"; };
  612. A7A98E322280272A005306E9 /* ShoppingMallBannerTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallBannerTableViewCell.swift; sourceTree = "<group>"; };
  613. A7A98E3522802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallBannerFSPagerViewCell.swift; sourceTree = "<group>"; };
  614. A7A98E392280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallCategoryTableViewCell.swift; sourceTree = "<group>"; };
  615. A7A98E3B228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallCategoryCollectionViewCell.swift; sourceTree = "<group>"; };
  616. A7A98E40228046C4005306E9 /* ShoppingMallSepcialTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallSepcialTableViewCell.swift; sourceTree = "<group>"; };
  617. A7A98E4222804851005306E9 /* ShoppingMallSepcialFlowLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallSepcialFlowLayout.swift; sourceTree = "<group>"; };
  618. A7A98E4422804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallSepcialCollectionViewCell.swift; sourceTree = "<group>"; };
  619. A7B4E71E228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductSlidingLeftRightCollectionViewCell.swift; sourceTree = "<group>"; };
  620. A7B4E720228151F40012914A /* ProductFloorTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorTitleView.swift; sourceTree = "<group>"; };
  621. A7B4E722228154750012914A /* ProductFloorBannerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorBannerView.swift; sourceTree = "<group>"; };
  622. A7B4E727228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductRightSideleftPictureCollectionViewCell.swift; sourceTree = "<group>"; };
  623. A7B4E72C228176060012914A /* ProductMallBarChartCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductMallBarChartCollectionViewCell.swift; sourceTree = "<group>"; };
  624. A7B4E72E2281773F0012914A /* ProductFloorCenterTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorCenterTitleView.swift; sourceTree = "<group>"; };
  625. A7B4E7342281907A0012914A /* CMSModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CMSModel.swift; sourceTree = "<group>"; };
  626. A7B4E737228191CC0012914A /* CommondModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommondModel.swift; sourceTree = "<group>"; };
  627. A7B4E739228192D10012914A /* CMSTemplateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CMSTemplateModel.swift; sourceTree = "<group>"; };
  628. A7B4E753228278320012914A /* ShoppingMallFloorTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallFloorTableViewCell.swift; sourceTree = "<group>"; };
  629. A7B4E755228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallSlidingLeftRightBgCollectionViewCell.swift; sourceTree = "<group>"; };
  630. A7B4E7572282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorLeftHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  631. A7B4E759228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorCenterHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  632. A7BB684D2268DCEC00AB07A2 /* SelfRecommendationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfRecommendationViewController.swift; sourceTree = "<group>"; };
  633. A7BB68542268DE8600AB07A2 /* SelfRecommendationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfRecommendationView.swift; sourceTree = "<group>"; };
  634. A7BB6856226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfRecommendationHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  635. A7BB685822696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfRecommendationCollectionViewCell.swift; sourceTree = "<group>"; };
  636. A7BB68632269B1DD00AB07A2 /* AddressPOIView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddressPOIView.swift; sourceTree = "<group>"; };
  637. A7BB68652269B1DD00AB07A2 /* AddressPOIViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddressPOIViewController.swift; sourceTree = "<group>"; };
  638. A7C3DD19226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceSMSApi.swift; sourceTree = "<group>"; };
  639. A7C3DD1B226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceSMS.swift; sourceTree = "<group>"; };
  640. A7CC74D3226FF1AA003C4F38 /* MineView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineView.swift; sourceTree = "<group>"; };
  641. A7CC74D5226FF421003C4F38 /* MineNavigationBarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineNavigationBarView.swift; sourceTree = "<group>"; };
  642. A7CC74D722700359003C4F38 /* MineTableViewHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineTableViewHeaderView.swift; sourceTree = "<group>"; };
  643. A7CC74D922702E41003C4F38 /* MineOrderTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineOrderTableViewCell.swift; sourceTree = "<group>"; };
  644. A7CC74DB2270352F003C4F38 /* MineOrderCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineOrderCollectionViewCell.swift; sourceTree = "<group>"; };
  645. A7CC74DD22703B4A003C4F38 /* MineModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = MineModule.xcassets; sourceTree = "<group>"; };
  646. A7CC74DF227042A4003C4F38 /* MineServiceTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineServiceTableViewCell.swift; sourceTree = "<group>"; };
  647. A7CC74E122704429003C4F38 /* MineServiceCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineServiceCollectionViewCell.swift; sourceTree = "<group>"; };
  648. A7CC74E52270628B003C4F38 /* DeliveryMethodTypeModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeliveryMethodTypeModel.swift; sourceTree = "<group>"; };
  649. A7CC74E922706ACD003C4F38 /* MessageViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageViewController.swift; sourceTree = "<group>"; };
  650. A7CC74EE22706CCA003C4F38 /* MessageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageView.swift; sourceTree = "<group>"; };
  651. A7CC74F022706FE3003C4F38 /* MessageOneCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageOneCollectionViewCell.swift; sourceTree = "<group>"; };
  652. A7CC74F2227070D2003C4F38 /* MessageTwoCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageTwoCollectionViewCell.swift; sourceTree = "<group>"; };
  653. A7CC750522714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageNoticeHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  654. A7CC750922715755003C4F38 /* MessageDetailesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDetailesViewController.swift; sourceTree = "<group>"; };
  655. A7CC750C227157DA003C4F38 /* MessageDetailesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDetailesView.swift; sourceTree = "<group>"; };
  656. A7CC750E22715AAC003C4F38 /* MessageDetailesTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDetailesTableViewCell.swift; sourceTree = "<group>"; };
  657. A7CC751022715AE3003C4F38 /* MessageDetailesTimeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDetailesTimeView.swift; sourceTree = "<group>"; };
  658. A7CC7515227161D5003C4F38 /* SetViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetViewController.swift; sourceTree = "<group>"; };
  659. A7CC751722716202003C4F38 /* SetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetView.swift; sourceTree = "<group>"; };
  660. A7CC751922716254003C4F38 /* SetTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetTableViewCell.swift; sourceTree = "<group>"; };
  661. A7CC751B22716426003C4F38 /* SetLogoutTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetLogoutTableViewCell.swift; sourceTree = "<group>"; };
  662. A7CC751E227190C5003C4F38 /* AccountSecurityViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountSecurityViewController.swift; sourceTree = "<group>"; };
  663. A7CC7523227190FB003C4F38 /* AccountSecurityView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountSecurityView.swift; sourceTree = "<group>"; };
  664. A7CC7525227196A8003C4F38 /* AccountSecurityTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountSecurityTableViewCell.swift; sourceTree = "<group>"; };
  665. A7CC7527227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountSecuritySetTableViewCell.swift; sourceTree = "<group>"; };
  666. A7CC752B2271A1AE003C4F38 /* SetPasswordViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetPasswordViewController.swift; sourceTree = "<group>"; };
  667. A7CC752E2271A1F2003C4F38 /* SetPasswordView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetPasswordView.swift; sourceTree = "<group>"; };
  668. A7CC75322271ABB0003C4F38 /* AddressManagerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerViewController.swift; sourceTree = "<group>"; };
  669. A7CC75352271AC14003C4F38 /* AddressManagerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerView.swift; sourceTree = "<group>"; };
  670. A7CC75372271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerSelfMentionExpressHeaderView.swift; sourceTree = "<group>"; };
  671. A7CC75392271B98B003C4F38 /* AddressManagerAddTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerAddTableViewCell.swift; sourceTree = "<group>"; };
  672. A7CC753B2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerSelfMentionTableViewCell.swift; sourceTree = "<group>"; };
  673. A7CC753D2271C4C2003C4F38 /* AddressManagerExpressTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerExpressTableViewCell.swift; sourceTree = "<group>"; };
  674. A7CC75422271E038003C4F38 /* SelfMentionContactsListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfMentionContactsListViewController.swift; sourceTree = "<group>"; };
  675. A7D4608D227616F800A5A54E /* SQLiteManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SQLiteManager.swift; sourceTree = "<group>"; };
  676. A7D4608F227617D200A5A54E /* SQLModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SQLModel.swift; sourceTree = "<group>"; };
  677. A7D46091227619CC00A5A54E /* BaiduToCityFactory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaiduToCityFactory.swift; sourceTree = "<group>"; };
  678. A7D460932276854500A5A54E /* BaiduToCity2Model.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaiduToCity2Model.swift; sourceTree = "<group>"; };
  679. A7DC467E22783A47001F3EFC /* EditExpressAddressTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditExpressAddressTableViewCell.swift; sourceTree = "<group>"; };
  680. A7E03A30F40582782EC5DA89 /* Pods_RainbowPlanetTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RainbowPlanetTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  681. A7FF1554228AC27600A85748 /* ProductAllCommentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductAllCommentView.swift; sourceTree = "<group>"; };
  682. A7FF1556228AC3E800A85748 /* ProductAllCommentViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductAllCommentViewController.swift; sourceTree = "<group>"; };
  683. A7FF155F228C693D00A85748 /* OrderViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderViewController.swift; sourceTree = "<group>"; };
  684. A7FF1563228C696B00A85748 /* OrderListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderListView.swift; sourceTree = "<group>"; };
  685. A7FF1565228C6DF200A85748 /* OrderShopAndStatusTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderShopAndStatusTableViewCell.swift; sourceTree = "<group>"; };
  686. A7FF1567228C6E2300A85748 /* OrderDeliveryModeAndTimeTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDeliveryModeAndTimeTableViewCell.swift; sourceTree = "<group>"; };
  687. A7FF1569228C6E3600A85748 /* OrderProductTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderProductTableViewCell.swift; sourceTree = "<group>"; };
  688. A7FF156B228C6E5E00A85748 /* OrderTotalAmountTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderTotalAmountTableViewCell.swift; sourceTree = "<group>"; };
  689. A7FF156D228C6EAE00A85748 /* OrderDeliveryModeTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDeliveryModeTableViewCell.swift; sourceTree = "<group>"; };
  690. A7FF156F228C6EF200A85748 /* OrderDeliveryModeAndButtonTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDeliveryModeAndButtonTableViewCell.swift; sourceTree = "<group>"; };
  691. A7FF1571228C7D4600A85748 /* OrderButtonTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderButtonTableViewCell.swift; sourceTree = "<group>"; };
  692. A7FF1576228C824300A85748 /* OrderModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = OrderModule.xcassets; sourceTree = "<group>"; };
  693. A7FF1578228C82CE00A85748 /* OrderDetailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailViewController.swift; sourceTree = "<group>"; };
  694. A7FF157C228C837100A85748 /* OrderDetailStatusTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailStatusTableViewCell.swift; sourceTree = "<group>"; };
  695. A7FF1582228C843700A85748 /* OrderDetailExpressSelfMentionTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailExpressSelfMentionTableViewCell.swift; sourceTree = "<group>"; };
  696. A7FF1584228C847300A85748 /* OrderDetailContactAddressTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailContactAddressTableViewCell.swift; sourceTree = "<group>"; };
  697. A7FF1586228C851100A85748 /* OrderDetailInfoTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailInfoTableViewCell.swift; sourceTree = "<group>"; };
  698. A7FF1588228C854900A85748 /* OrderDetailBottomView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailBottomView.swift; sourceTree = "<group>"; };
  699. A7FF158B228C911C00A85748 /* OrderRefunddetailsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderRefunddetailsViewController.swift; sourceTree = "<group>"; };
  700. A7FF1591228C918100A85748 /* OrderRefunddetailsStatusTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderRefunddetailsStatusTableViewCell.swift; sourceTree = "<group>"; };
  701. A7FF1593228C919A00A85748 /* OrderRefunddetailsTipsTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderRefunddetailsTipsTableViewCell.swift; sourceTree = "<group>"; };
  702. A7FF1595228CFA8100A85748 /* OrderListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderListViewController.swift; sourceTree = "<group>"; };
  703. A7FF1597228D092A00A85748 /* OrderListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OrderListModel.swift; sourceTree = "<group>"; };
  704. A7FF159B228D9E3C00A85748 /* OrderRefundDetailModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OrderRefundDetailModel.swift; sourceTree = "<group>"; };
  705. BD1DC6C3228CFD0B00B89C57 /* SwiftMoyaNetWorkServiceOrder.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceOrder.swift; sourceTree = "<group>"; };
  706. BD1DC6C4228CFD0B00B89C57 /* SwiftMoyaServiceOrderApi.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceOrderApi.swift; sourceTree = "<group>"; };
  707. BD1DC6C8228D005000B89C57 /* OrderCreateParameterModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCreateParameterModel.swift; sourceTree = "<group>"; };
  708. BD1DC6CA228D157000B89C57 /* OrderCreateBackModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCreateBackModel.swift; sourceTree = "<group>"; };
  709. BD1DC6CC228D160D00B89C57 /* OrderPurchaseModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPurchaseModel.swift; sourceTree = "<group>"; };
  710. BD20F1CA2283C12000677D8E /* ShoppingCartListNoneItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartListNoneItemCell.swift; sourceTree = "<group>"; };
  711. BD20F1CC2283C51300677D8E /* ShoppingCartFinishPayController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartFinishPayController.swift; sourceTree = "<group>"; };
  712. BD20F1CE2283CE2300677D8E /* ShoppingCartFinishPayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartFinishPayView.swift; sourceTree = "<group>"; };
  713. BD20F1D22283D0ED00677D8E /* ShoppingCartPaySuccessCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPaySuccessCell.swift; sourceTree = "<group>"; };
  714. BD20F1D42283D15500677D8E /* ShoppingCartPayFailureCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayFailureCell.swift; sourceTree = "<group>"; };
  715. BD20F1D72283D2AA00677D8E /* ShoppingCartModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ShoppingCartModule.xcassets; sourceTree = "<group>"; };
  716. BD3474F422857B85000908C5 /* CommonPayHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonPayHeader.swift; sourceTree = "<group>"; };
  717. BD7AB83522841A8B0030646A /* ShoppingCartPayOrderItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayOrderItemCell.swift; sourceTree = "<group>"; };
  718. BD7AB837228420310030646A /* ShoppingCartPayOrderHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayOrderHeader.swift; sourceTree = "<group>"; };
  719. BD7AB8392284288D0030646A /* ShoppingCartPayOrderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayOrderFooter.swift; sourceTree = "<group>"; };
  720. BD7AB83C228438020030646A /* OrderPayExpressInfoShowCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPayExpressInfoShowCell.swift; sourceTree = "<group>"; };
  721. BD7AB83E228438290030646A /* OrderPayExpressAddInfoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPayExpressAddInfoCell.swift; sourceTree = "<group>"; };
  722. BD7AB840228438C80030646A /* OrderPaySelfPickAddressCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPaySelfPickAddressCell.swift; sourceTree = "<group>"; };
  723. BD7AB8422284390B0030646A /* OrderPaySelfPickInfoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPaySelfPickInfoCell.swift; sourceTree = "<group>"; };
  724. BD7AB8442284398A0030646A /* OrderPaySelfPickAddInfoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPaySelfPickAddInfoCell.swift; sourceTree = "<group>"; };
  725. BD9052C044FD3AE4E62D3929 /* Pods-RainbowPlanet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RainbowPlanet.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet.debug.xcconfig"; sourceTree = "<group>"; };
  726. BDAA40F6228E947500CF841D /* OrderApplyRefundAccountCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundAccountCell.swift; sourceTree = "<group>"; };
  727. BDAA40F8228E9ADA00CF841D /* OrderApplyRefundReasonCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundReasonCell.swift; sourceTree = "<group>"; };
  728. BDAA40FA228E9CC300CF841D /* OrderApplyRefundNoteInfoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundNoteInfoCell.swift; sourceTree = "<group>"; };
  729. BDAA40FC228E9CD600CF841D /* OrderApplyRefundPhoneCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundPhoneCell.swift; sourceTree = "<group>"; };
  730. BDAA40FE228EA37900CF841D /* OrderApplyRefundPhotoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundPhotoCell.swift; sourceTree = "<group>"; };
  731. BDD4FB1122840597006FE833 /* ShoppingCartPayOrderController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayOrderController.swift; sourceTree = "<group>"; };
  732. BDD4FB1322840954006FE833 /* ShoppingCartOrderPayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartOrderPayView.swift; sourceTree = "<group>"; };
  733. BDD4FB1622840DD3006FE833 /* OrderPayAcountView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPayAcountView.swift; sourceTree = "<group>"; };
  734. BDDF3B27228EBB72003A7D16 /* ProductRefundReasonModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductRefundReasonModel.swift; sourceTree = "<group>"; };
  735. BDE3045C22851E4F001D050F /* ProductCartListModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductCartListModel.swift; sourceTree = "<group>"; };
  736. BDE3045E228554CA001D050F /* ProductCartAmountModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductCartAmountModel.swift; sourceTree = "<group>"; };
  737. BDEF7790228571DC00ED0AC0 /* CommonPayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonPayView.swift; sourceTree = "<group>"; };
  738. BDEF7792228575A800ED0AC0 /* CommonPayCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonPayCell.swift; sourceTree = "<group>"; };
  739. BDF45F0C228C00B8004E2682 /* DefaultContactInfoModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DefaultContactInfoModel.swift; sourceTree = "<group>"; };
  740. BDF47D79228271F600941AB9 /* ShoppingCartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartView.swift; sourceTree = "<group>"; };
  741. BDF47D7D22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductSlidingTopBottomCollectionViewCell.swift; sourceTree = "<group>"; };
  742. BDF47D7F228288F900941AB9 /* ShoppingCartAccountView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartAccountView.swift; sourceTree = "<group>"; };
  743. BDF47D812282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartHotSaleTableViewCell.swift; sourceTree = "<group>"; };
  744. BDF47D842282C59F00941AB9 /* ShoppingCartListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartListTableViewCell.swift; sourceTree = "<group>"; };
  745. BDF47D862282C92200941AB9 /* ShoppingCartListTableViewHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartListTableViewHeader.swift; sourceTree = "<group>"; };
  746. BDF8629B228E4125000DEF84 /* OrderCommentController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCommentController.swift; sourceTree = "<group>"; };
  747. BDF8629E228E41CC000DEF84 /* OrderLogisticsController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OrderLogisticsController.swift; sourceTree = "<group>"; };
  748. BDF862A0228E41CC000DEF84 /* OrderLogisticsInfoCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OrderLogisticsInfoCell.swift; sourceTree = "<group>"; };
  749. BDF862A6228E42FA000DEF84 /* OrderApplyRefundController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundController.swift; sourceTree = "<group>"; };
  750. BDF862A9228E43A4000DEF84 /* OrderCommentTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCommentTableViewCell.swift; sourceTree = "<group>"; };
  751. BDF862AB228E5112000DEF84 /* OrderCommentAddImgCollectionCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCommentAddImgCollectionCell.swift; sourceTree = "<group>"; };
  752. BDF862AD228E57E1000DEF84 /* OrderCommentDefaultCollectionCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderCommentDefaultCollectionCell.swift; sourceTree = "<group>"; };
  753. BDF862B0228E6690000DEF84 /* OrderApplyRefundProductCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderApplyRefundProductCell.swift; sourceTree = "<group>"; };
  754. D469F6C3768252BCB7001EDD /* Pods_RainbowPlanet.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RainbowPlanet.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  755. /* End PBXFileReference section */
  756. /* Begin PBXFrameworksBuildPhase section */
  757. A77F2C5A2231FB49001BD3F6 /* Frameworks */ = {
  758. isa = PBXFrameworksBuildPhase;
  759. buildActionMask = 2147483647;
  760. files = (
  761. A76390EB2248E27A0067EEE0 /* UserNotifications.framework in Frameworks */,
  762. A7778C9A22438F5D00C7C47A /* libWeChatSDK.a in Frameworks */,
  763. A72A730422321EFA00B21995 /* libc++.tbd in Frameworks */,
  764. A72A730222321EEE00B21995 /* libz.tbd in Frameworks */,
  765. A72A730022321EE900B21995 /* SystemConfiguration.framework in Frameworks */,
  766. A72A72FE22321EE200B21995 /* QuartzCore.framework in Frameworks */,
  767. A72A72FC22321ECE00B21995 /* CoreTelephony.framework in Frameworks */,
  768. A72A72FA22321EBF00B21995 /* CoreText.framework in Frameworks */,
  769. A72A72F822321EB600B21995 /* CoreGraphics.framework in Frameworks */,
  770. A72A72F622321EA000B21995 /* UIKit.framework in Frameworks */,
  771. A72A72F422321E9A00B21995 /* Foundation.framework in Frameworks */,
  772. A72A72F222321E9300B21995 /* CFNetwork.framework in Frameworks */,
  773. A7778C9822438F5D00C7C47A /* AlipaySDK.framework in Frameworks */,
  774. A72A72F022321E8800B21995 /* CoreMotion.framework in Frameworks */,
  775. 0A110C4CD931995B8E8BF7C5 /* Pods_RainbowPlanet.framework in Frameworks */,
  776. );
  777. runOnlyForDeploymentPostprocessing = 0;
  778. };
  779. A77F2C6E2231FB4A001BD3F6 /* Frameworks */ = {
  780. isa = PBXFrameworksBuildPhase;
  781. buildActionMask = 2147483647;
  782. files = (
  783. );
  784. runOnlyForDeploymentPostprocessing = 0;
  785. };
  786. A77F2C792231FB4A001BD3F6 /* Frameworks */ = {
  787. isa = PBXFrameworksBuildPhase;
  788. buildActionMask = 2147483647;
  789. files = (
  790. );
  791. runOnlyForDeploymentPostprocessing = 0;
  792. };
  793. /* End PBXFrameworksBuildPhase section */
  794. /* Begin PBXGroup section */
  795. 618631008656829220117ED1 /* Pods */ = {
  796. isa = PBXGroup;
  797. children = (
  798. BD9052C044FD3AE4E62D3929 /* Pods-RainbowPlanet.debug.xcconfig */,
  799. 57C497E128081597F165C771 /* Pods-RainbowPlanet.release.xcconfig */,
  800. );
  801. name = Pods;
  802. sourceTree = "<group>";
  803. };
  804. A70B2C0522841F1B00B2449F /* FloorCell */ = {
  805. isa = PBXGroup;
  806. children = (
  807. A7B4E71B22812D390012914A /* ShoppingMallSlidingLeftRight */,
  808. );
  809. path = FloorCell;
  810. sourceTree = "<group>";
  811. };
  812. A70B2C112286B10000B2449F /* ProductDetail */ = {
  813. isa = PBXGroup;
  814. children = (
  815. A70B2C192286B4ED00B2449F /* View */,
  816. A70B2C1A2286B4F900B2449F /* ViewController */,
  817. );
  818. path = ProductDetail;
  819. sourceTree = "<group>";
  820. };
  821. A70B2C122286B14C00B2449F /* ProductView */ = {
  822. isa = PBXGroup;
  823. children = (
  824. A7B4E732228177BC0012914A /* ProductCollectionReusableView */,
  825. A70B2C182286B48600B2449F /* TableViewCell */,
  826. A70B2C132286B1C500B2449F /* CollectionViewCell */,
  827. );
  828. path = ProductView;
  829. sourceTree = "<group>";
  830. };
  831. A70B2C132286B1C500B2449F /* CollectionViewCell */ = {
  832. isa = PBXGroup;
  833. children = (
  834. A70B2C472288413E00B2449F /* ProductDetailHotSell */,
  835. A70B2C172286B47B00B2449F /* ProductSlidingTopBottom */,
  836. A70B2C162286B44600B2449F /* ProductMallBarChart */,
  837. A70B2C152286B44600B2449F /* ProductMallRightSideleftPicture */,
  838. A70B2C142286B41000B2449F /* ProductMallSlidingLeftRight */,
  839. );
  840. path = CollectionViewCell;
  841. sourceTree = "<group>";
  842. };
  843. A70B2C142286B41000B2449F /* ProductMallSlidingLeftRight */ = {
  844. isa = PBXGroup;
  845. children = (
  846. A7B4E71E228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift */,
  847. );
  848. path = ProductMallSlidingLeftRight;
  849. sourceTree = "<group>";
  850. };
  851. A70B2C152286B44600B2449F /* ProductMallRightSideleftPicture */ = {
  852. isa = PBXGroup;
  853. children = (
  854. A7B4E727228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift */,
  855. );
  856. path = ProductMallRightSideleftPicture;
  857. sourceTree = "<group>";
  858. };
  859. A70B2C162286B44600B2449F /* ProductMallBarChart */ = {
  860. isa = PBXGroup;
  861. children = (
  862. A7B4E72C228176060012914A /* ProductMallBarChartCollectionViewCell.swift */,
  863. );
  864. path = ProductMallBarChart;
  865. sourceTree = "<group>";
  866. };
  867. A70B2C172286B47B00B2449F /* ProductSlidingTopBottom */ = {
  868. isa = PBXGroup;
  869. children = (
  870. BDF47D7D22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift */,
  871. );
  872. path = ProductSlidingTopBottom;
  873. sourceTree = "<group>";
  874. };
  875. A70B2C182286B48600B2449F /* TableViewCell */ = {
  876. isa = PBXGroup;
  877. children = (
  878. A71AF0BB226F099B001730FE /* ProductHBigTableViewCell.swift */,
  879. A7A98E0F227EC531005306E9 /* ProductHSmallTableViewCell.swift */,
  880. );
  881. path = TableViewCell;
  882. sourceTree = "<group>";
  883. };
  884. A70B2C192286B4ED00B2449F /* View */ = {
  885. isa = PBXGroup;
  886. children = (
  887. A70B2C702289016600B2449F /* ProductDetailSkuView */,
  888. A70B2C39228819CA00B2449F /* Cell */,
  889. A70B2C1F2286B54500B2449F /* ProductDetailView.swift */,
  890. );
  891. path = View;
  892. sourceTree = "<group>";
  893. };
  894. A70B2C1A2286B4F900B2449F /* ViewController */ = {
  895. isa = PBXGroup;
  896. children = (
  897. A70B2C1B2286B52400B2449F /* ProductDetailViewController.swift */,
  898. );
  899. path = ViewController;
  900. sourceTree = "<group>";
  901. };
  902. A70B2C232286C03800B2449F /* NXLPageControl */ = {
  903. isa = PBXGroup;
  904. children = (
  905. A70B2C242286C03800B2449F /* NXLPageControl.swift */,
  906. );
  907. path = NXLPageControl;
  908. sourceTree = "<group>";
  909. };
  910. A70B2C38228819B500B2449F /* ProductDetailProductLabel */ = {
  911. isa = PBXGroup;
  912. children = (
  913. A70B2C3222880BB700B2449F /* ProductDetailProductLabelTableViewCell.swift */,
  914. A70B2C362288177300B2449F /* ProductDetailProductLabelIconCollectionViewCell.swift */,
  915. );
  916. path = ProductDetailProductLabel;
  917. sourceTree = "<group>";
  918. };
  919. A70B2C39228819CA00B2449F /* Cell */ = {
  920. isa = PBXGroup;
  921. children = (
  922. A70B842C228F97AE00882BC5 /* ProcuctDetailSelectSku */,
  923. A70B2C3A228819DC00B2449F /* ProductDetailProductInfo */,
  924. A70B2C38228819B500B2449F /* ProductDetailProductLabel */,
  925. A70B2C3C2288259200B2449F /* ProductDetailEvaluation */,
  926. A70B2C4122883B2F00B2449F /* ProductDetailShop */,
  927. A70B2C442288408E00B2449F /* ProductDetailHotSell */,
  928. A70B2C4A228845B200B2449F /* ProductDetailParameter */,
  929. A70B2C4F22884EF100B2449F /* ProductDetailDescription */,
  930. );
  931. path = Cell;
  932. sourceTree = "<group>";
  933. };
  934. A70B2C3A228819DC00B2449F /* ProductDetailProductInfo */ = {
  935. isa = PBXGroup;
  936. children = (
  937. A70B2C282286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift */,
  938. );
  939. path = ProductDetailProductInfo;
  940. sourceTree = "<group>";
  941. };
  942. A70B2C3B228819E900B2449F /* ProductDetailHeader */ = {
  943. isa = PBXGroup;
  944. children = (
  945. A70B2C212286BF5900B2449F /* ProductDetailTableViewHeaderView.swift */,
  946. A70B2C262286C5D600B2449F /* ProductDetailFSPagerViewCell.swift */,
  947. A70B2C3F2288312900B2449F /* ProductDetailSectionHeader.swift */,
  948. );
  949. path = ProductDetailHeader;
  950. sourceTree = "<group>";
  951. };
  952. A70B2C3C2288259200B2449F /* ProductDetailEvaluation */ = {
  953. isa = PBXGroup;
  954. children = (
  955. A70B2C3D228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift */,
  956. );
  957. path = ProductDetailEvaluation;
  958. sourceTree = "<group>";
  959. };
  960. A70B2C4122883B2F00B2449F /* ProductDetailShop */ = {
  961. isa = PBXGroup;
  962. children = (
  963. A70B2C4222883B4E00B2449F /* ProductDetailShopTableViewCell.swift */,
  964. );
  965. path = ProductDetailShop;
  966. sourceTree = "<group>";
  967. };
  968. A70B2C442288408E00B2449F /* ProductDetailHotSell */ = {
  969. isa = PBXGroup;
  970. children = (
  971. A70B2C45228840B100B2449F /* ProductDetailHotSellTableViewCell.swift */,
  972. );
  973. path = ProductDetailHotSell;
  974. sourceTree = "<group>";
  975. };
  976. A70B2C472288413E00B2449F /* ProductDetailHotSell */ = {
  977. isa = PBXGroup;
  978. children = (
  979. A70B2C482288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift */,
  980. );
  981. path = ProductDetailHotSell;
  982. sourceTree = "<group>";
  983. };
  984. A70B2C4A228845B200B2449F /* ProductDetailParameter */ = {
  985. isa = PBXGroup;
  986. children = (
  987. A70B2C4B228845E800B2449F /* ProductDetailParameterTableViewCell.swift */,
  988. );
  989. path = ProductDetailParameter;
  990. sourceTree = "<group>";
  991. };
  992. A70B2C4F22884EF100B2449F /* ProductDetailDescription */ = {
  993. isa = PBXGroup;
  994. children = (
  995. A70B2C4D22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift */,
  996. );
  997. path = ProductDetailDescription;
  998. sourceTree = "<group>";
  999. };
  1000. A70B2C502288581600B2449F /* ShareModule */ = {
  1001. isa = PBXGroup;
  1002. children = (
  1003. A70B2C512288582800B2449F /* View */,
  1004. );
  1005. path = ShareModule;
  1006. sourceTree = "<group>";
  1007. };
  1008. A70B2C512288582800B2449F /* View */ = {
  1009. isa = PBXGroup;
  1010. children = (
  1011. A70B2C522288584500B2449F /* ShareView.swift */,
  1012. A70B2C5422885AF500B2449F /* ShareCollectionViewCell.swift */,
  1013. );
  1014. path = View;
  1015. sourceTree = "<group>";
  1016. };
  1017. A70B2C5622886AAA00B2449F /* Shop */ = {
  1018. isa = PBXGroup;
  1019. children = (
  1020. A70B2C5822886ACC00B2449F /* ViewController */,
  1021. A70B2C5722886AC700B2449F /* View */,
  1022. );
  1023. path = Shop;
  1024. sourceTree = "<group>";
  1025. };
  1026. A70B2C5722886AC700B2449F /* View */ = {
  1027. isa = PBXGroup;
  1028. children = (
  1029. A70B2C5B22886B0000B2449F /* ShopView.swift */,
  1030. A70B2C5D22886F4D00B2449F /* ShopViewTableViewCell.swift */,
  1031. A70B2C63228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift */,
  1032. A70B2C5F228870CE00B2449F /* ShopSectionHeaderView.swift */,
  1033. );
  1034. path = View;
  1035. sourceTree = "<group>";
  1036. };
  1037. A70B2C5822886ACC00B2449F /* ViewController */ = {
  1038. isa = PBXGroup;
  1039. children = (
  1040. A70B2C5922886ADF00B2449F /* ShopViewController.swift */,
  1041. );
  1042. path = ViewController;
  1043. sourceTree = "<group>";
  1044. };
  1045. A70B2C692288810700B2449F /* PickView */ = {
  1046. isa = PBXGroup;
  1047. children = (
  1048. A70B2C6A2288815300B2449F /* PickHeaderView.swift */,
  1049. A70B2C6C2288815E00B2449F /* PickViewOneComponentsView.swift */,
  1050. );
  1051. path = PickView;
  1052. sourceTree = "<group>";
  1053. };
  1054. A70B2C702289016600B2449F /* ProductDetailSkuView */ = {
  1055. isa = PBXGroup;
  1056. children = (
  1057. A70B2C722289019200B2449F /* ProductDetailSkuView.swift */,
  1058. A70B2C74228920BA00B2449F /* ProductDetailSkuSectionHeaerCollectionReusableView.swift */,
  1059. A70B2C34228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift */,
  1060. A70B2C3B228819E900B2449F /* ProductDetailHeader */,
  1061. );
  1062. path = ProductDetailSkuView;
  1063. sourceTree = "<group>";
  1064. };
  1065. A70B842C228F97AE00882BC5 /* ProcuctDetailSelectSku */ = {
  1066. isa = PBXGroup;
  1067. children = (
  1068. A70B842D228F97EC00882BC5 /* ProcuctDetailSelectSkuTableViewCell.swift */,
  1069. );
  1070. path = ProcuctDetailSelectSku;
  1071. sourceTree = "<group>";
  1072. };
  1073. A7146346228EFCE20066099B /* SKUDataFilter */ = {
  1074. isa = PBXGroup;
  1075. children = (
  1076. A7146348228EFCE20066099B /* ORSKUDataFilter.h */,
  1077. A7146347228EFCE20066099B /* ORSKUDataFilter.m */,
  1078. A714634D228F020A0066099B /* ORSKUDataFilterSwift.swift */,
  1079. );
  1080. path = SKUDataFilter;
  1081. sourceTree = "<group>";
  1082. };
  1083. A71738A42289787C000AEA6A /* SwiftMoyaServiceShop */ = {
  1084. isa = PBXGroup;
  1085. children = (
  1086. A71738A522897892000AEA6A /* SwiftMoyaServiceShopApi.swift */,
  1087. A71738A722897E96000AEA6A /* SwiftMoyaNetWorkServiceShop.swift */,
  1088. );
  1089. path = SwiftMoyaServiceShop;
  1090. sourceTree = "<group>";
  1091. };
  1092. A71738A922898651000AEA6A /* ShopModel */ = {
  1093. isa = PBXGroup;
  1094. children = (
  1095. A71738AA22898660000AEA6A /* ShopModel.swift */,
  1096. );
  1097. path = ShopModel;
  1098. sourceTree = "<group>";
  1099. };
  1100. A71901622275411C00104A50 /* ProvinceCityArea */ = {
  1101. isa = PBXGroup;
  1102. children = (
  1103. A71901652275417400104A50 /* Model */,
  1104. A71901632275413100104A50 /* View */,
  1105. );
  1106. path = ProvinceCityArea;
  1107. sourceTree = "<group>";
  1108. };
  1109. A71901632275413100104A50 /* View */ = {
  1110. isa = PBXGroup;
  1111. children = (
  1112. A71901682275464000104A50 /* ProvinceCityAreaView.swift */,
  1113. A719016A22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift */,
  1114. );
  1115. path = View;
  1116. sourceTree = "<group>";
  1117. };
  1118. A71901652275417400104A50 /* Model */ = {
  1119. isa = PBXGroup;
  1120. children = (
  1121. A72C01202275404A0065E0C3 /* ProvinceCityAreaModel.swift */,
  1122. );
  1123. path = Model;
  1124. sourceTree = "<group>";
  1125. };
  1126. A719016E2275EF7A00104A50 /* NXLRealm */ = {
  1127. isa = PBXGroup;
  1128. children = (
  1129. A719016F2275EF9900104A50 /* NXLRealm.swift */,
  1130. );
  1131. path = NXLRealm;
  1132. sourceTree = "<group>";
  1133. };
  1134. A71901712275F56C00104A50 /* BaiduToCityFactory */ = {
  1135. isa = PBXGroup;
  1136. children = (
  1137. A7D460932276854500A5A54E /* BaiduToCity2Model.swift */,
  1138. A7D46091227619CC00A5A54E /* BaiduToCityFactory.swift */,
  1139. A71901742275F71F00104A50 /* BaiduToCityModel.swift */,
  1140. );
  1141. path = BaiduToCityFactory;
  1142. sourceTree = "<group>";
  1143. };
  1144. A71AA50D22721537008FF1A5 /* ExpressAddressList */ = {
  1145. isa = PBXGroup;
  1146. children = (
  1147. A71AA511227215A9008FF1A5 /* View */,
  1148. A71AA50E22721559008FF1A5 /* ViewController */,
  1149. );
  1150. path = ExpressAddressList;
  1151. sourceTree = "<group>";
  1152. };
  1153. A71AA50E22721559008FF1A5 /* ViewController */ = {
  1154. isa = PBXGroup;
  1155. children = (
  1156. A71AA50F2272156A008FF1A5 /* ExpressAddressListViewController.swift */,
  1157. );
  1158. path = ViewController;
  1159. sourceTree = "<group>";
  1160. };
  1161. A71AA511227215A9008FF1A5 /* View */ = {
  1162. isa = PBXGroup;
  1163. children = (
  1164. A71AA512227215B5008FF1A5 /* ExpressAddressListView.swift */,
  1165. A71AA5142272160A008FF1A5 /* ExpressAddressListTableViewCell.swift */,
  1166. );
  1167. path = View;
  1168. sourceTree = "<group>";
  1169. };
  1170. A71AA51622721980008FF1A5 /* EditExpressAddress */ = {
  1171. isa = PBXGroup;
  1172. children = (
  1173. A71AA51A227219DA008FF1A5 /* View */,
  1174. A71AA517227219B7008FF1A5 /* ViewController */,
  1175. );
  1176. path = EditExpressAddress;
  1177. sourceTree = "<group>";
  1178. };
  1179. A71AA517227219B7008FF1A5 /* ViewController */ = {
  1180. isa = PBXGroup;
  1181. children = (
  1182. A71AA518227219D7008FF1A5 /* EditExpressAddressViewController.swift */,
  1183. );
  1184. path = ViewController;
  1185. sourceTree = "<group>";
  1186. };
  1187. A71AA51A227219DA008FF1A5 /* View */ = {
  1188. isa = PBXGroup;
  1189. children = (
  1190. A71AA51B227219EF008FF1A5 /* EditExpressAddressView.swift */,
  1191. A7DC467E22783A47001F3EFC /* EditExpressAddressTableViewCell.swift */,
  1192. );
  1193. path = View;
  1194. sourceTree = "<group>";
  1195. };
  1196. A71AA51D22729F0B008FF1A5 /* AuthorizationSwift */ = {
  1197. isa = PBXGroup;
  1198. children = (
  1199. A71AA51E22729F35008FF1A5 /* AuthorizationSwift.swift */,
  1200. );
  1201. path = AuthorizationSwift;
  1202. sourceTree = "<group>";
  1203. };
  1204. A71AA5242273202E008FF1A5 /* SwiftMoyaServiceConfig */ = {
  1205. isa = PBXGroup;
  1206. children = (
  1207. A71AA52522732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift */,
  1208. A71AA52722732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift */,
  1209. );
  1210. path = SwiftMoyaServiceConfig;
  1211. sourceTree = "<group>";
  1212. };
  1213. A71AF0A3226E9D8A001730FE /* SearchModule */ = {
  1214. isa = PBXGroup;
  1215. children = (
  1216. A71AF0B2226EF953001730FE /* SearchResult */,
  1217. A71AF0B1226EF947001730FE /* Search */,
  1218. );
  1219. path = SearchModule;
  1220. sourceTree = "<group>";
  1221. };
  1222. A71AF0A7226EDDCC001730FE /* ViewController */ = {
  1223. isa = PBXGroup;
  1224. children = (
  1225. A71AF0A5226EDDC8001730FE /* SearchViewController.swift */,
  1226. );
  1227. path = ViewController;
  1228. sourceTree = "<group>";
  1229. };
  1230. A71AF0A8226EDDE0001730FE /* View */ = {
  1231. isa = PBXGroup;
  1232. children = (
  1233. A71AF0AB226EDE37001730FE /* SearchNavigationbarView.swift */,
  1234. A71AF0A9226EDDF5001730FE /* SearchView.swift */,
  1235. A71AF0AD226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift */,
  1236. A71AF0AF226EF185001730FE /* SearchCollectionViewCell.swift */,
  1237. );
  1238. path = View;
  1239. sourceTree = "<group>";
  1240. };
  1241. A71AF0B1226EF947001730FE /* Search */ = {
  1242. isa = PBXGroup;
  1243. children = (
  1244. A71AF0A8226EDDE0001730FE /* View */,
  1245. A71AF0A7226EDDCC001730FE /* ViewController */,
  1246. );
  1247. path = Search;
  1248. sourceTree = "<group>";
  1249. };
  1250. A71AF0B2226EF953001730FE /* SearchResult */ = {
  1251. isa = PBXGroup;
  1252. children = (
  1253. A71AF0B3226EF983001730FE /* View */,
  1254. A71AF0B4226EF989001730FE /* ViewController */,
  1255. );
  1256. path = SearchResult;
  1257. sourceTree = "<group>";
  1258. };
  1259. A71AF0B3226EF983001730FE /* View */ = {
  1260. isa = PBXGroup;
  1261. children = (
  1262. A71AF0B7226EF9EC001730FE /* SearchResultNavigationbarView.swift */,
  1263. A71AF0B9226F00F8001730FE /* SearchResultView.swift */,
  1264. );
  1265. path = View;
  1266. sourceTree = "<group>";
  1267. };
  1268. A71AF0B4226EF989001730FE /* ViewController */ = {
  1269. isa = PBXGroup;
  1270. children = (
  1271. A71AF0B5226EF99A001730FE /* SearchResultViewController.swift */,
  1272. );
  1273. path = ViewController;
  1274. sourceTree = "<group>";
  1275. };
  1276. A71D2A5E2265671100A55D16 /* View */ = {
  1277. isa = PBXGroup;
  1278. children = (
  1279. A71D2A5F2265673A00A55D16 /* RegisterLoginView.swift */,
  1280. );
  1281. path = View;
  1282. sourceTree = "<group>";
  1283. };
  1284. A71D2A612265756E00A55D16 /* SwiftMoyaServiceApi */ = {
  1285. isa = PBXGroup;
  1286. children = (
  1287. A71738A42289787C000AEA6A /* SwiftMoyaServiceShop */,
  1288. A7A98E29228015BA005306E9 /* SwiftMoyaServiceCMS */,
  1289. A7A98DFB227E84D0005306E9 /* SwiftMoyaServiceProduct */,
  1290. A71AA5242273202E008FF1A5 /* SwiftMoyaServiceConfig */,
  1291. A72843FD224DB79400F82F30 /* SwiftMoyaServiceUser */,
  1292. A7C3DD182264229900FA262E /* SwiftMoyaServiceSMS */,
  1293. BD1DC6C2228CFD0B00B89C57 /* SwiftMoyaServiceOrder */,
  1294. A7284A7122546441000BAEC4 /* SwiftMoyaServicePay */,
  1295. );
  1296. path = SwiftMoyaServiceApi;
  1297. sourceTree = "<group>";
  1298. };
  1299. A7274C4E228EE5EF000E3A07 /* PhotoAndCameraManager */ = {
  1300. isa = PBXGroup;
  1301. children = (
  1302. A7274C4F228EE5EF000E3A07 /* PhotoAndCameraManager.swift */,
  1303. );
  1304. path = PhotoAndCameraManager;
  1305. sourceTree = "<group>";
  1306. };
  1307. A7274C51228EE635000E3A07 /* SwiftScan */ = {
  1308. isa = PBXGroup;
  1309. children = (
  1310. A7274C52228EE635000E3A07 /* LBXScanNetAnimation.swift */,
  1311. A7274C53228EE635000E3A07 /* LBXScanView.swift */,
  1312. A7274C54228EE635000E3A07 /* LBXScanViewController.swift */,
  1313. A7274C55228EE635000E3A07 /* LBXScanLineAnimation.swift */,
  1314. A7274C56228EE635000E3A07 /* LBXScanViewStyle.swift */,
  1315. A7274C57228EE635000E3A07 /* LBXPermissions.swift */,
  1316. A7274C58228EE635000E3A07 /* LBXScanWrapper.swift */,
  1317. );
  1318. path = SwiftScan;
  1319. sourceTree = "<group>";
  1320. };
  1321. A72843FD224DB79400F82F30 /* SwiftMoyaServiceUser */ = {
  1322. isa = PBXGroup;
  1323. children = (
  1324. A72843FB224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift */,
  1325. A7284400224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift */,
  1326. );
  1327. path = SwiftMoyaServiceUser;
  1328. sourceTree = "<group>";
  1329. };
  1330. A7284402224DBE3500F82F30 /* UserModel */ = {
  1331. isa = PBXGroup;
  1332. children = (
  1333. A7284403224DBFBD00F82F30 /* UserModel.swift */,
  1334. A7CC74E52270628B003C4F38 /* DeliveryMethodTypeModel.swift */,
  1335. A757C92D22744ACE00226355 /* AddressManagerListModel.swift */,
  1336. A79057012276C9770037F823 /* SetPasswordModel.swift */,
  1337. A79057072276FEB00037F823 /* SelfMentionContactsModel.swift */,
  1338. BDF45F0C228C00B8004E2682 /* DefaultContactInfoModel.swift */,
  1339. );
  1340. path = UserModel;
  1341. sourceTree = "<group>";
  1342. };
  1343. A7284A502252EB28000BAEC4 /* SwiftMoyaNetWorkManager */ = {
  1344. isa = PBXGroup;
  1345. children = (
  1346. A72A7384223396CB00B21995 /* ApiMacro.swift */,
  1347. A72A7382223396CB00B21995 /* SwiftMoyaNetWorkManager.swift */,
  1348. );
  1349. path = SwiftMoyaNetWorkManager;
  1350. sourceTree = "<group>";
  1351. };
  1352. A7284A6B2253BE57000BAEC4 /* Reactor */ = {
  1353. isa = PBXGroup;
  1354. children = (
  1355. );
  1356. path = Reactor;
  1357. sourceTree = "<group>";
  1358. };
  1359. A7284A7122546441000BAEC4 /* SwiftMoyaServicePay */ = {
  1360. isa = PBXGroup;
  1361. children = (
  1362. A7284A7222546460000BAEC4 /* SwiftMoyaServicePayApi.swift */,
  1363. A7284A74225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift */,
  1364. );
  1365. path = SwiftMoyaServicePay;
  1366. sourceTree = "<group>";
  1367. };
  1368. A7284A782254A900000BAEC4 /* BaiduMapManager */ = {
  1369. isa = PBXGroup;
  1370. children = (
  1371. A7541501224C5ECA002480B5 /* BaiduMapManager.swift */,
  1372. A72A726322321DBD00B21995 /* LocationModel.swift */,
  1373. );
  1374. path = BaiduMapManager;
  1375. sourceTree = "<group>";
  1376. };
  1377. A729B5A52266DBC9004AE098 /* CommonModules */ = {
  1378. isa = PBXGroup;
  1379. children = (
  1380. A70B2C692288810700B2449F /* PickView */,
  1381. A70B2C502288581600B2449F /* ShareModule */,
  1382. A72C011F2275399D0065E0C3 /* ProvinceCityAreaModules */,
  1383. A7636ABD2268123B00374F9E /* LocationModule */,
  1384. A71AF0A3226E9D8A001730FE /* SearchModule */,
  1385. );
  1386. path = CommonModules;
  1387. sourceTree = "<group>";
  1388. };
  1389. A729B5A62266DBFA004AE098 /* AlertSheetView */ = {
  1390. isa = PBXGroup;
  1391. children = (
  1392. A729B5A72266F2E0004AE098 /* AlertSheetView.swift */,
  1393. );
  1394. path = AlertSheetView;
  1395. sourceTree = "<group>";
  1396. };
  1397. A729B5AB2266FF35004AE098 /* View */ = {
  1398. isa = PBXGroup;
  1399. children = (
  1400. A729B5AC2266FF45004AE098 /* BindPhoneNumberView.swift */,
  1401. );
  1402. path = View;
  1403. sourceTree = "<group>";
  1404. };
  1405. A729B5AE226712FF004AE098 /* View */ = {
  1406. isa = PBXGroup;
  1407. children = (
  1408. A729B5AF22671310004AE098 /* MobileLoginView.swift */,
  1409. );
  1410. path = View;
  1411. sourceTree = "<group>";
  1412. };
  1413. A729B5B122672401004AE098 /* PasswordLogin */ = {
  1414. isa = PBXGroup;
  1415. children = (
  1416. A729B5B52267269E004AE098 /* View */,
  1417. A729B5B222672523004AE098 /* ViewController */,
  1418. );
  1419. path = PasswordLogin;
  1420. sourceTree = "<group>";
  1421. };
  1422. A729B5B222672523004AE098 /* ViewController */ = {
  1423. isa = PBXGroup;
  1424. children = (
  1425. A729B5B32267254B004AE098 /* PasswordLoginViewController.swift */,
  1426. );
  1427. path = ViewController;
  1428. sourceTree = "<group>";
  1429. };
  1430. A729B5B52267269E004AE098 /* View */ = {
  1431. isa = PBXGroup;
  1432. children = (
  1433. A729B5B62267270B004AE098 /* PasswordLoginView.swift */,
  1434. );
  1435. path = View;
  1436. sourceTree = "<group>";
  1437. };
  1438. A72A7252223219BD00B21995 /* Service */ = {
  1439. isa = PBXGroup;
  1440. children = (
  1441. A738D203225AEAD000EEE860 /* Model */,
  1442. A72A7380223396CB00B21995 /* SwiftMoyaService */,
  1443. );
  1444. path = Service;
  1445. sourceTree = "<group>";
  1446. };
  1447. A72A725322321A6900B21995 /* Lib */ = {
  1448. isa = PBXGroup;
  1449. children = (
  1450. A7778C8E22438F5C00C7C47A /* AlipaySDK */,
  1451. A7778C9122438F5D00C7C47A /* WeChatSDK */,
  1452. );
  1453. path = Lib;
  1454. sourceTree = "<group>";
  1455. };
  1456. A72A725422321B9400B21995 /* Manager */ = {
  1457. isa = PBXGroup;
  1458. children = (
  1459. A7778CA52243A03400C7C47A /* IQKeyboardManagerSwiftManager */,
  1460. A72A730522321F1D00B21995 /* PayManager */,
  1461. A72A726122321DBD00B21995 /* MapManager */,
  1462. A72A726422321DBD00B21995 /* UMManager */,
  1463. );
  1464. path = Manager;
  1465. sourceTree = "<group>";
  1466. };
  1467. A72A725922321C5E00B21995 /* Macro */ = {
  1468. isa = PBXGroup;
  1469. children = (
  1470. A72A72CA22321E2600B21995 /* Common.swift */,
  1471. A72A72CB22321E2600B21995 /* CacheMacro.swift */,
  1472. A72A72CD22321E2600B21995 /* ColorMacro.swift */,
  1473. A72A72CC22321E2600B21995 /* EnumMacro.swift */,
  1474. A72A72C822321E2500B21995 /* FontMacro.swift */,
  1475. A72A72C922321E2600B21995 /* HTMLURLMacro.swift */,
  1476. A72A72C722321E2500B21995 /* NotificationCenterMacro.swift */,
  1477. A72A72CE22321E2700B21995 /* ThirdPartyMacro.swift */,
  1478. A72A726022321D3400B21995 /* RainbowPlanet-Bridging-Header.h */,
  1479. );
  1480. path = Macro;
  1481. sourceTree = "<group>";
  1482. };
  1483. A72A726122321DBD00B21995 /* MapManager */ = {
  1484. isa = PBXGroup;
  1485. children = (
  1486. A7284A782254A900000BAEC4 /* BaiduMapManager */,
  1487. );
  1488. path = MapManager;
  1489. sourceTree = "<group>";
  1490. };
  1491. A72A726422321DBD00B21995 /* UMManager */ = {
  1492. isa = PBXGroup;
  1493. children = (
  1494. A72A726522321DBD00B21995 /* UMManager.swift */,
  1495. A738D66E225D9BD900EEE860 /* UMLoginModel.swift */,
  1496. );
  1497. path = UMManager;
  1498. sourceTree = "<group>";
  1499. };
  1500. A72A727122321DDE00B21995 /* NumberKeyboard */ = {
  1501. isa = PBXGroup;
  1502. children = (
  1503. A72A727222321DDE00B21995 /* NumberKeyboard.swift */,
  1504. );
  1505. path = NumberKeyboard;
  1506. sourceTree = "<group>";
  1507. };
  1508. A72A727322321DDE00B21995 /* Log */ = {
  1509. isa = PBXGroup;
  1510. children = (
  1511. A72A727422321DDE00B21995 /* Log.swift */,
  1512. );
  1513. path = Log;
  1514. sourceTree = "<group>";
  1515. };
  1516. A72A727522321DDE00B21995 /* SwiftProgressHUD */ = {
  1517. isa = PBXGroup;
  1518. children = (
  1519. A72A727622321DDE00B21995 /* SwiftProgressHUD.swift */,
  1520. );
  1521. path = SwiftProgressHUD;
  1522. sourceTree = "<group>";
  1523. };
  1524. A72A727722321DDF00B21995 /* Regex */ = {
  1525. isa = PBXGroup;
  1526. children = (
  1527. A72A727822321DDF00B21995 /* Regex.swift */,
  1528. );
  1529. path = Regex;
  1530. sourceTree = "<group>";
  1531. };
  1532. A72A727B22321DDF00B21995 /* Countdown */ = {
  1533. isa = PBXGroup;
  1534. children = (
  1535. A72A727C22321DDF00B21995 /* CountdownButton.swift */,
  1536. A7778CAA2244B12500C7C47A /* CountDownManager.swift */,
  1537. );
  1538. path = Countdown;
  1539. sourceTree = "<group>";
  1540. };
  1541. A72A727D22321DDF00B21995 /* AppInfo */ = {
  1542. isa = PBXGroup;
  1543. children = (
  1544. A72A727E22321DDF00B21995 /* AppInfo.swift */,
  1545. );
  1546. path = AppInfo;
  1547. sourceTree = "<group>";
  1548. };
  1549. A72A727F22321DDF00B21995 /* CGView */ = {
  1550. isa = PBXGroup;
  1551. children = (
  1552. A72A728022321DDF00B21995 /* CGView.swift */,
  1553. );
  1554. path = CGView;
  1555. sourceTree = "<group>";
  1556. };
  1557. A72A728B22321DE000B21995 /* Extension */ = {
  1558. isa = PBXGroup;
  1559. children = (
  1560. A72A728C22321DE000B21995 /* Extension+UIImage.swift */,
  1561. A72A728D22321DE000B21995 /* Extension+UITextView.swift */,
  1562. A72A729322321DE000B21995 /* Extension+UILabel.swift */,
  1563. A7778CB92244F14B00C7C47A /* Extension+UIViewController.swift */,
  1564. A72A729422321DE000B21995 /* Extension+UIAlertController.swift */,
  1565. A70EBBBF22561179000AD74F /* Extension+UITableView.swift */,
  1566. A738D201225AD6AD00EEE860 /* Extension+UICollectionView.swift */,
  1567. A71AA5202272E527008FF1A5 /* Extension+UINavigationController.swift */,
  1568. A72A729922321DE000B21995 /* Extension+UIButton.swift */,
  1569. A72A729722321DE000B21995 /* Extension+UIColor.swift */,
  1570. A72A729A22321DE000B21995 /* Extension+UIView.swift */,
  1571. A72A728F22321DE000B21995 /* Extension+NSMutableAttributedString.swift */,
  1572. A72A729222321DE000B21995 /* Extension+String.swift */,
  1573. A72A728E22321DE000B21995 /* Extension+NSRange.swift */,
  1574. A72A729122321DE000B21995 /* Extension+Array.swift */,
  1575. A72A729022321DE000B21995 /* Extension+UserDefaults.swift */,
  1576. A72A729D22321DE000B21995 /* Extension+Date.swift */,
  1577. A72A729E22321DE000B21995 /* Extension+CAGradientLayer.swift */,
  1578. A7778CA82244904500C7C47A /* Extension+Gifu.GIFImageView.swift */,
  1579. A72A729822321DE000B21995 /* Extension+RxTimer.swift */,
  1580. );
  1581. path = Extension;
  1582. sourceTree = "<group>";
  1583. };
  1584. A72A729F22321DE000B21995 /* WKWebView */ = {
  1585. isa = PBXGroup;
  1586. children = (
  1587. A72A72A022321DE000B21995 /* WKWebViewConfig.swift */,
  1588. A72A72A122321DE000B21995 /* WebView.swift */,
  1589. );
  1590. path = WKWebView;
  1591. sourceTree = "<group>";
  1592. };
  1593. A72A730522321F1D00B21995 /* PayManager */ = {
  1594. isa = PBXGroup;
  1595. children = (
  1596. BDEF778F228571C200ED0AC0 /* PayManagerView */,
  1597. A72A7331223256D700B21995 /* PayManager */,
  1598. A72A730622321F2900B21995 /* AlipayManager */,
  1599. A72A730722321F3700B21995 /* WeChatpayManager */,
  1600. );
  1601. path = PayManager;
  1602. sourceTree = "<group>";
  1603. };
  1604. A72A730622321F2900B21995 /* AlipayManager */ = {
  1605. isa = PBXGroup;
  1606. children = (
  1607. A72A73132232475E00B21995 /* AlipayManager.swift */,
  1608. A7284A7622547333000BAEC4 /* AlipayResultModel.swift */,
  1609. );
  1610. path = AlipayManager;
  1611. sourceTree = "<group>";
  1612. };
  1613. A72A730722321F3700B21995 /* WeChatpayManager */ = {
  1614. isa = PBXGroup;
  1615. children = (
  1616. A72A73152232481600B21995 /* WeChatpayManager.swift */,
  1617. A738D204225AF90D00EEE860 /* WeChatpayOrderModel.swift */,
  1618. );
  1619. path = WeChatpayManager;
  1620. sourceTree = "<group>";
  1621. };
  1622. A72A7331223256D700B21995 /* PayManager */ = {
  1623. isa = PBXGroup;
  1624. children = (
  1625. A72A7332223256E100B21995 /* PayManager.swift */,
  1626. );
  1627. path = PayManager;
  1628. sourceTree = "<group>";
  1629. };
  1630. A72A73722233966800B21995 /* RootModel */ = {
  1631. isa = PBXGroup;
  1632. children = (
  1633. A7284A512252EE9A000BAEC4 /* RootModel.swift */,
  1634. A728443F224DFACD00F82F30 /* InfoModel.swift */,
  1635. A7284A532252FB5C000BAEC4 /* PaginationModel.swift */,
  1636. );
  1637. path = RootModel;
  1638. sourceTree = "<group>";
  1639. };
  1640. A72A7380223396CB00B21995 /* SwiftMoyaService */ = {
  1641. isa = PBXGroup;
  1642. children = (
  1643. A79057042276D6250037F823 /* SwiftMoyaServiceManger */,
  1644. A71D2A612265756E00A55D16 /* SwiftMoyaServiceApi */,
  1645. );
  1646. path = SwiftMoyaService;
  1647. sourceTree = "<group>";
  1648. };
  1649. A72C011E227539800065E0C3 /* Src */ = {
  1650. isa = PBXGroup;
  1651. children = (
  1652. A7190166227543DB00104A50 /* baidu_cityid_rel.json */,
  1653. A72C01212275404A0065E0C3 /* province_city_area.json */,
  1654. );
  1655. path = Src;
  1656. sourceTree = "<group>";
  1657. };
  1658. A72C011F2275399D0065E0C3 /* ProvinceCityAreaModules */ = {
  1659. isa = PBXGroup;
  1660. children = (
  1661. A71901622275411C00104A50 /* ProvinceCityArea */,
  1662. );
  1663. path = ProvinceCityAreaModules;
  1664. sourceTree = "<group>";
  1665. };
  1666. A738D203225AEAD000EEE860 /* Model */ = {
  1667. isa = PBXGroup;
  1668. children = (
  1669. A72A73722233966800B21995 /* RootModel */,
  1670. A71738A922898651000AEA6A /* ShopModel */,
  1671. A7B4E736228190810012914A /* CommonModel */,
  1672. A7A98E00227E88E8005306E9 /* ProductModel */,
  1673. BD1DC6C7228D002200B89C57 /* OrderModel */,
  1674. A79057032276D5FE0037F823 /* ConfigModel */,
  1675. A7284402224DBE3500F82F30 /* UserModel */,
  1676. A7B4E733228190630012914A /* CMSModel */,
  1677. );
  1678. path = Model;
  1679. sourceTree = "<group>";
  1680. };
  1681. A73D7C662268A032002A4CE3 /* SwiftyStarRatingView */ = {
  1682. isa = PBXGroup;
  1683. children = (
  1684. A73D7C672268A032002A4CE3 /* SwiftyStarRatingView.swift */,
  1685. );
  1686. path = SwiftyStarRatingView;
  1687. sourceTree = "<group>";
  1688. };
  1689. A75414F9224B5EFC002480B5 /* MobileLogin */ = {
  1690. isa = PBXGroup;
  1691. children = (
  1692. A729B5AE226712FF004AE098 /* View */,
  1693. A75414FA224B5F17002480B5 /* ViewController */,
  1694. );
  1695. path = MobileLogin;
  1696. sourceTree = "<group>";
  1697. };
  1698. A75414FA224B5F17002480B5 /* ViewController */ = {
  1699. isa = PBXGroup;
  1700. children = (
  1701. A75414FB224B5F28002480B5 /* MobileLoginViewController.swift */,
  1702. );
  1703. path = ViewController;
  1704. sourceTree = "<group>";
  1705. };
  1706. A7541507224CACF9002480B5 /* SwiftSign */ = {
  1707. isa = PBXGroup;
  1708. children = (
  1709. A754150B224CACF9002480B5 /* SwiftSign.swift */,
  1710. );
  1711. path = SwiftSign;
  1712. sourceTree = "<group>";
  1713. };
  1714. A757C9312274882E00226355 /* MJRefreshEX */ = {
  1715. isa = PBXGroup;
  1716. children = (
  1717. A757C9322274882E00226355 /* UIScrollView+MJRefreshEX.m */,
  1718. A757C9332274882E00226355 /* UIScrollView+MJRefreshEX.h */,
  1719. );
  1720. path = MJRefreshEX;
  1721. sourceTree = "<group>";
  1722. };
  1723. A7636ABD2268123B00374F9E /* LocationModule */ = {
  1724. isa = PBXGroup;
  1725. children = (
  1726. A7BB68612269B1DD00AB07A2 /* AddressPOI */,
  1727. A7BB68512268DCF800AB07A2 /* SelfRecommendation */,
  1728. A7636ABE2268125300374F9E /* Location */,
  1729. );
  1730. path = LocationModule;
  1731. sourceTree = "<group>";
  1732. };
  1733. A7636ABE2268125300374F9E /* Location */ = {
  1734. isa = PBXGroup;
  1735. children = (
  1736. A7636AC6226815BA00374F9E /* View */,
  1737. A7636ABF226812BD00374F9E /* ViewController */,
  1738. );
  1739. path = Location;
  1740. sourceTree = "<group>";
  1741. };
  1742. A7636ABF226812BD00374F9E /* ViewController */ = {
  1743. isa = PBXGroup;
  1744. children = (
  1745. A7636AC42268139C00374F9E /* LocationViewController.swift */,
  1746. );
  1747. path = ViewController;
  1748. sourceTree = "<group>";
  1749. };
  1750. A7636AC6226815BA00374F9E /* View */ = {
  1751. isa = PBXGroup;
  1752. children = (
  1753. A7636AC722682BAF00374F9E /* LocationView.swift */,
  1754. );
  1755. path = View;
  1756. sourceTree = "<group>";
  1757. };
  1758. A775CBFC2237483E00EBDCF8 /* View */ = {
  1759. isa = PBXGroup;
  1760. children = (
  1761. A7B4E730228177A90012914A /* ShoppingMallFloor */,
  1762. A7A98E3E22804647005306E9 /* ShoppingMallSepcial */,
  1763. A7A98E38228030F8005306E9 /* ShoppingMallCategory */,
  1764. A7A98E3422802A60005306E9 /* ShoppingMallBanner */,
  1765. A775CBFD2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift */,
  1766. A775CBFF223774A300EBDCF8 /* ShoppingMallView.swift */,
  1767. A7A98E3022801B10005306E9 /* ShoppingMallListView.swift */,
  1768. );
  1769. path = View;
  1770. sourceTree = "<group>";
  1771. };
  1772. A775CC0122377AB700EBDCF8 /* EmptyView */ = {
  1773. isa = PBXGroup;
  1774. children = (
  1775. A775CC0222377C6500EBDCF8 /* EmptyView.swift */,
  1776. );
  1777. path = EmptyView;
  1778. sourceTree = "<group>";
  1779. };
  1780. A7778C8E22438F5C00C7C47A /* AlipaySDK */ = {
  1781. isa = PBXGroup;
  1782. children = (
  1783. A7778C8F22438F5C00C7C47A /* AlipaySDK.bundle */,
  1784. A7778C9022438F5C00C7C47A /* AlipaySDK.framework */,
  1785. );
  1786. path = AlipaySDK;
  1787. sourceTree = "<group>";
  1788. };
  1789. A7778C9122438F5D00C7C47A /* WeChatSDK */ = {
  1790. isa = PBXGroup;
  1791. children = (
  1792. A7778C9222438F5D00C7C47A /* WXApi.h */,
  1793. A7778C9322438F5D00C7C47A /* WXApiObject.h */,
  1794. A7778C9422438F5D00C7C47A /* README.txt */,
  1795. A7778C9522438F5D00C7C47A /* WechatAuthSDK.h */,
  1796. A7778C9622438F5D00C7C47A /* libWeChatSDK.a */,
  1797. );
  1798. path = WeChatSDK;
  1799. sourceTree = "<group>";
  1800. };
  1801. A7778CA52243A03400C7C47A /* IQKeyboardManagerSwiftManager */ = {
  1802. isa = PBXGroup;
  1803. children = (
  1804. A7778CA62243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift */,
  1805. );
  1806. path = IQKeyboardManagerSwiftManager;
  1807. sourceTree = "<group>";
  1808. };
  1809. A7778CAC2244BC2600C7C47A /* RegisterLogin */ = {
  1810. isa = PBXGroup;
  1811. children = (
  1812. A71D2A5E2265671100A55D16 /* View */,
  1813. A7778CAD2244BEFF00C7C47A /* ViewController */,
  1814. );
  1815. path = RegisterLogin;
  1816. sourceTree = "<group>";
  1817. };
  1818. A7778CAD2244BEFF00C7C47A /* ViewController */ = {
  1819. isa = PBXGroup;
  1820. children = (
  1821. A7778CB12244D73400C7C47A /* RegisterLoginViewController.swift */,
  1822. );
  1823. path = ViewController;
  1824. sourceTree = "<group>";
  1825. };
  1826. A7778CB52244E93E00C7C47A /* BindPhoneNumber */ = {
  1827. isa = PBXGroup;
  1828. children = (
  1829. A729B5AB2266FF35004AE098 /* View */,
  1830. A7778CB62244E96700C7C47A /* ViewController */,
  1831. );
  1832. path = BindPhoneNumber;
  1833. sourceTree = "<group>";
  1834. };
  1835. A7778CB62244E96700C7C47A /* ViewController */ = {
  1836. isa = PBXGroup;
  1837. children = (
  1838. A7778CB72244E97A00C7C47A /* BindPhoneNumberViewController.swift */,
  1839. );
  1840. path = ViewController;
  1841. sourceTree = "<group>";
  1842. };
  1843. A7778CC32246030200C7C47A /* PhoneCountryArea */ = {
  1844. isa = PBXGroup;
  1845. children = (
  1846. A7284A6B2253BE57000BAEC4 /* Reactor */,
  1847. A7778CE022461DA300C7C47A /* Model */,
  1848. A7778CD322460CED00C7C47A /* View */,
  1849. A7778CCC224608EA00C7C47A /* ViewController */,
  1850. );
  1851. path = PhoneCountryArea;
  1852. sourceTree = "<group>";
  1853. };
  1854. A7778CCC224608EA00C7C47A /* ViewController */ = {
  1855. isa = PBXGroup;
  1856. children = (
  1857. A7778CC42246035700C7C47A /* PhoneCountryAreaViewController.swift */,
  1858. );
  1859. path = ViewController;
  1860. sourceTree = "<group>";
  1861. };
  1862. A7778CD322460CED00C7C47A /* View */ = {
  1863. isa = PBXGroup;
  1864. children = (
  1865. A7778CD422460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift */,
  1866. A7778CDE22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift */,
  1867. );
  1868. path = View;
  1869. sourceTree = "<group>";
  1870. };
  1871. A7778CE022461DA300C7C47A /* Model */ = {
  1872. isa = PBXGroup;
  1873. children = (
  1874. A7778CDC2246121500C7C47A /* PhoneCountryAreaListMdoel.swift */,
  1875. );
  1876. path = Model;
  1877. sourceTree = "<group>";
  1878. };
  1879. A77F2C542231FB49001BD3F6 = {
  1880. isa = PBXGroup;
  1881. children = (
  1882. A77F2C5F2231FB49001BD3F6 /* RainbowPlanet */,
  1883. A77F2C742231FB4A001BD3F6 /* RainbowPlanetTests */,
  1884. A77F2C7F2231FB4A001BD3F6 /* RainbowPlanetUITests */,
  1885. A77F2C5E2231FB49001BD3F6 /* Products */,
  1886. 618631008656829220117ED1 /* Pods */,
  1887. FA8AAFBADE8BD144A5C36FDB /* Frameworks */,
  1888. );
  1889. sourceTree = "<group>";
  1890. };
  1891. A77F2C5E2231FB49001BD3F6 /* Products */ = {
  1892. isa = PBXGroup;
  1893. children = (
  1894. A77F2C5D2231FB49001BD3F6 /* RainbowPlanet.app */,
  1895. A77F2C712231FB4A001BD3F6 /* RainbowPlanetTests.xctest */,
  1896. A77F2C7C2231FB4A001BD3F6 /* RainbowPlanetUITests.xctest */,
  1897. );
  1898. name = Products;
  1899. sourceTree = "<group>";
  1900. };
  1901. A77F2C5F2231FB49001BD3F6 /* RainbowPlanet */ = {
  1902. isa = PBXGroup;
  1903. children = (
  1904. A7A59A7722363CCB00417FA4 /* RainbowPlanet.entitlements */,
  1905. A77F2C8E2231FC5C001BD3F6 /* AppDelegate */,
  1906. A77F2C8F2231FC65001BD3F6 /* Base */,
  1907. A77F2CA22232010F001BD3F6 /* Modules */,
  1908. A72A7252223219BD00B21995 /* Service */,
  1909. A72A725422321B9400B21995 /* Manager */,
  1910. A72A725922321C5E00B21995 /* Macro */,
  1911. A77F2CBC2232022A001BD3F6 /* Tools */,
  1912. A72A725322321A6900B21995 /* Lib */,
  1913. A72C011E227539800065E0C3 /* Src */,
  1914. A77F2CBB223201DC001BD3F6 /* Supporting Files */,
  1915. );
  1916. path = RainbowPlanet;
  1917. sourceTree = "<group>";
  1918. };
  1919. A77F2C742231FB4A001BD3F6 /* RainbowPlanetTests */ = {
  1920. isa = PBXGroup;
  1921. children = (
  1922. A77F2C752231FB4A001BD3F6 /* RainbowPlanetTests.swift */,
  1923. A77F2C772231FB4A001BD3F6 /* Info.plist */,
  1924. );
  1925. path = RainbowPlanetTests;
  1926. sourceTree = "<group>";
  1927. };
  1928. A77F2C7F2231FB4A001BD3F6 /* RainbowPlanetUITests */ = {
  1929. isa = PBXGroup;
  1930. children = (
  1931. A77F2C802231FB4A001BD3F6 /* RainbowPlanetUITests.swift */,
  1932. A77F2C822231FB4A001BD3F6 /* Info.plist */,
  1933. );
  1934. path = RainbowPlanetUITests;
  1935. sourceTree = "<group>";
  1936. };
  1937. A77F2C8E2231FC5C001BD3F6 /* AppDelegate */ = {
  1938. isa = PBXGroup;
  1939. children = (
  1940. A77F2C602231FB49001BD3F6 /* AppDelegate.swift */,
  1941. A77F2CC2223203BA001BD3F6 /* AppDelegate+Window.swift */,
  1942. A72A733422325A4B00B21995 /* AppDelegate+HandleOpen.swift */,
  1943. );
  1944. path = AppDelegate;
  1945. sourceTree = "<group>";
  1946. };
  1947. A77F2C8F2231FC65001BD3F6 /* Base */ = {
  1948. isa = PBXGroup;
  1949. children = (
  1950. A77F2C902231FC75001BD3F6 /* BaseTabbarViewController */,
  1951. A77F2C912231FC85001BD3F6 /* BaseNavigationController */,
  1952. A77F2C942231FCD2001BD3F6 /* BaseWebViewController */,
  1953. A77F2C922231FCA2001BD3F6 /* BaseViewController */,
  1954. A77F2C932231FCC5001BD3F6 /* BaseView */,
  1955. );
  1956. path = Base;
  1957. sourceTree = "<group>";
  1958. };
  1959. A77F2C902231FC75001BD3F6 /* BaseTabbarViewController */ = {
  1960. isa = PBXGroup;
  1961. children = (
  1962. A77F2CC9223209F2001BD3F6 /* BaseTabbarViewController.swift */,
  1963. );
  1964. path = BaseTabbarViewController;
  1965. sourceTree = "<group>";
  1966. };
  1967. A77F2C912231FC85001BD3F6 /* BaseNavigationController */ = {
  1968. isa = PBXGroup;
  1969. children = (
  1970. A77F2C972231FD25001BD3F6 /* BaseNavigationViewController.swift */,
  1971. );
  1972. path = BaseNavigationController;
  1973. sourceTree = "<group>";
  1974. };
  1975. A77F2C922231FCA2001BD3F6 /* BaseViewController */ = {
  1976. isa = PBXGroup;
  1977. children = (
  1978. A77F2C9D2231FDDC001BD3F6 /* BaseViewController.swift */,
  1979. );
  1980. path = BaseViewController;
  1981. sourceTree = "<group>";
  1982. };
  1983. A77F2C932231FCC5001BD3F6 /* BaseView */ = {
  1984. isa = PBXGroup;
  1985. children = (
  1986. A77F2C9B2231FDCF001BD3F6 /* BaseView.swift */,
  1987. );
  1988. path = BaseView;
  1989. sourceTree = "<group>";
  1990. };
  1991. A77F2C942231FCD2001BD3F6 /* BaseWebViewController */ = {
  1992. isa = PBXGroup;
  1993. children = (
  1994. A77F2C9F2231FE45001BD3F6 /* BaseWebViewController.swift */,
  1995. );
  1996. path = BaseWebViewController;
  1997. sourceTree = "<group>";
  1998. };
  1999. A77F2CA22232010F001BD3F6 /* Modules */ = {
  2000. isa = PBXGroup;
  2001. children = (
  2002. A7FF155A228C689C00A85748 /* OrderModule */,
  2003. A77F2CAE2232010F001BD3F6 /* RegisterLoginModule */,
  2004. A77F2CA32232010F001BD3F6 /* ShoppingMallModule */,
  2005. A77F2CAF2232010F001BD3F6 /* ShoppingCartModule */,
  2006. A77F2CA92232010F001BD3F6 /* MineModule */,
  2007. A729B5A52266DBC9004AE098 /* CommonModules */,
  2008. );
  2009. path = Modules;
  2010. sourceTree = "<group>";
  2011. };
  2012. A77F2CA32232010F001BD3F6 /* ShoppingMallModule */ = {
  2013. isa = PBXGroup;
  2014. children = (
  2015. A7FF1550228AC22700A85748 /* ProductAllComment */,
  2016. A70B2C122286B14C00B2449F /* ProductView */,
  2017. A77F2CA42232010F001BD3F6 /* ShoppingMall */,
  2018. A70B2C112286B10000B2449F /* ProductDetail */,
  2019. A70B2C5622886AAA00B2449F /* Shop */,
  2020. A7A98E03227EB7FD005306E9 /* Category */,
  2021. A7A98E15227EECEA005306E9 /* Special */,
  2022. );
  2023. path = ShoppingMallModule;
  2024. sourceTree = "<group>";
  2025. };
  2026. A77F2CA42232010F001BD3F6 /* ShoppingMall */ = {
  2027. isa = PBXGroup;
  2028. children = (
  2029. A775CBFC2237483E00EBDCF8 /* View */,
  2030. A77F2CA52232010F001BD3F6 /* ViewController */,
  2031. );
  2032. path = ShoppingMall;
  2033. sourceTree = "<group>";
  2034. };
  2035. A77F2CA52232010F001BD3F6 /* ViewController */ = {
  2036. isa = PBXGroup;
  2037. children = (
  2038. A77F2CA72232010F001BD3F6 /* ShoppingMallViewController.swift */,
  2039. A7A98E27227FD6C6005306E9 /* ShoppingMallListViewController.swift */,
  2040. );
  2041. path = ViewController;
  2042. sourceTree = "<group>";
  2043. };
  2044. A77F2CA92232010F001BD3F6 /* MineModule */ = {
  2045. isa = PBXGroup;
  2046. children = (
  2047. A77F2CAA2232010F001BD3F6 /* Mine */,
  2048. A7CC75302271AB6C003C4F38 /* AddressManager */,
  2049. A71AA50D22721537008FF1A5 /* ExpressAddressList */,
  2050. A71AA51622721980008FF1A5 /* EditExpressAddress */,
  2051. A7CC753F2271DFF3003C4F38 /* SelfMentionContactsList */,
  2052. A7824AFE2271F0C500ABA381 /* EditSelfMentionContacts */,
  2053. A7CC75292271A169003C4F38 /* SetPassword */,
  2054. A7CC751D22719091003C4F38 /* AccountSecurity */,
  2055. A7CC751222716194003C4F38 /* Set */,
  2056. A7CC7507227151C7003C4F38 /* MessageDetailes */,
  2057. A7CC74E722706A06003C4F38 /* Message */,
  2058. );
  2059. path = MineModule;
  2060. sourceTree = "<group>";
  2061. };
  2062. A77F2CAA2232010F001BD3F6 /* Mine */ = {
  2063. isa = PBXGroup;
  2064. children = (
  2065. A7CC74D2226FF190003C4F38 /* View */,
  2066. A77F2CAB2232010F001BD3F6 /* ViewController */,
  2067. );
  2068. path = Mine;
  2069. sourceTree = "<group>";
  2070. };
  2071. A77F2CAB2232010F001BD3F6 /* ViewController */ = {
  2072. isa = PBXGroup;
  2073. children = (
  2074. A77F2CAD2232010F001BD3F6 /* MineViewController.swift */,
  2075. );
  2076. path = ViewController;
  2077. sourceTree = "<group>";
  2078. };
  2079. A77F2CAE2232010F001BD3F6 /* RegisterLoginModule */ = {
  2080. isa = PBXGroup;
  2081. children = (
  2082. A7778CAC2244BC2600C7C47A /* RegisterLogin */,
  2083. A7778CB52244E93E00C7C47A /* BindPhoneNumber */,
  2084. A75414F9224B5EFC002480B5 /* MobileLogin */,
  2085. A729B5B122672401004AE098 /* PasswordLogin */,
  2086. A7778CC32246030200C7C47A /* PhoneCountryArea */,
  2087. );
  2088. path = RegisterLoginModule;
  2089. sourceTree = "<group>";
  2090. };
  2091. A77F2CAF2232010F001BD3F6 /* ShoppingCartModule */ = {
  2092. isa = PBXGroup;
  2093. children = (
  2094. A77F2CB02232010F001BD3F6 /* ShoppingCart */,
  2095. BD3474F722859788000908C5 /* ShoppingCartPayOrder */,
  2096. BD3474FA228597E8000908C5 /* ShoppingCartFinishPay */,
  2097. );
  2098. path = ShoppingCartModule;
  2099. sourceTree = "<group>";
  2100. };
  2101. A77F2CB02232010F001BD3F6 /* ShoppingCart */ = {
  2102. isa = PBXGroup;
  2103. children = (
  2104. BDF47D782282645900941AB9 /* View */,
  2105. A77F2CB12232010F001BD3F6 /* ViewController */,
  2106. );
  2107. path = ShoppingCart;
  2108. sourceTree = "<group>";
  2109. };
  2110. A77F2CB12232010F001BD3F6 /* ViewController */ = {
  2111. isa = PBXGroup;
  2112. children = (
  2113. A77F2CB32232010F001BD3F6 /* ShoppingCartViewController.swift */,
  2114. );
  2115. path = ViewController;
  2116. sourceTree = "<group>";
  2117. };
  2118. A77F2CBB223201DC001BD3F6 /* Supporting Files */ = {
  2119. isa = PBXGroup;
  2120. children = (
  2121. A77F2C672231FB4A001BD3F6 /* Assets.xcassets */,
  2122. A71AF0BD226F1792001730FE /* ShoppingMallModule.xcassets */,
  2123. BD20F1D72283D2AA00677D8E /* ShoppingCartModule.xcassets */,
  2124. A7CC74DD22703B4A003C4F38 /* MineModule.xcassets */,
  2125. A70B2C2C2286E29900B2449F /* ProductModule.xcassets */,
  2126. A7FF1576228C824300A85748 /* OrderModule.xcassets */,
  2127. A729B5A92266F6FD004AE098 /* Launch Screen.storyboard */,
  2128. A77F2C6C2231FB4A001BD3F6 /* Info.plist */,
  2129. );
  2130. path = "Supporting Files";
  2131. sourceTree = "<group>";
  2132. };
  2133. A77F2CBC2232022A001BD3F6 /* Tools */ = {
  2134. isa = PBXGroup;
  2135. children = (
  2136. A7146346228EFCE20066099B /* SKUDataFilter */,
  2137. A7274C51228EE635000E3A07 /* SwiftScan */,
  2138. A7274C4E228EE5EF000E3A07 /* PhotoAndCameraManager */,
  2139. A70B2C232286C03800B2449F /* NXLPageControl */,
  2140. A7D4608C227616E600A5A54E /* FMDB */,
  2141. A71901712275F56C00104A50 /* BaiduToCityFactory */,
  2142. A719016E2275EF7A00104A50 /* NXLRealm */,
  2143. A757C9312274882E00226355 /* MJRefreshEX */,
  2144. A71AA51D22729F0B008FF1A5 /* AuthorizationSwift */,
  2145. A73D7C662268A032002A4CE3 /* SwiftyStarRatingView */,
  2146. A729B5A62266DBFA004AE098 /* AlertSheetView */,
  2147. A72A727322321DDE00B21995 /* Log */,
  2148. A72A727D22321DDF00B21995 /* AppInfo */,
  2149. A72A727B22321DDF00B21995 /* Countdown */,
  2150. A72A727522321DDE00B21995 /* SwiftProgressHUD */,
  2151. A775CC0122377AB700EBDCF8 /* EmptyView */,
  2152. A72A727F22321DDF00B21995 /* CGView */,
  2153. A72A728B22321DE000B21995 /* Extension */,
  2154. A72A727122321DDE00B21995 /* NumberKeyboard */,
  2155. A72A727722321DDF00B21995 /* Regex */,
  2156. A77F2CC422320627001BD3F6 /* WRNavigationBar */,
  2157. A72A729F22321DE000B21995 /* WKWebView */,
  2158. );
  2159. path = Tools;
  2160. sourceTree = "<group>";
  2161. };
  2162. A77F2CC422320627001BD3F6 /* WRNavigationBar */ = {
  2163. isa = PBXGroup;
  2164. children = (
  2165. A77F2CC522320627001BD3F6 /* WRNavigationBar.swift */,
  2166. A77F2CC622320627001BD3F6 /* WRCustomNavigationBar.swift */,
  2167. );
  2168. path = WRNavigationBar;
  2169. sourceTree = "<group>";
  2170. };
  2171. A7824AFE2271F0C500ABA381 /* EditSelfMentionContacts */ = {
  2172. isa = PBXGroup;
  2173. children = (
  2174. A7824B022271F0E900ABA381 /* View */,
  2175. A7824B012271F0E000ABA381 /* ViewController */,
  2176. );
  2177. path = EditSelfMentionContacts;
  2178. sourceTree = "<group>";
  2179. };
  2180. A7824B012271F0E000ABA381 /* ViewController */ = {
  2181. isa = PBXGroup;
  2182. children = (
  2183. A7824AFF2271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift */,
  2184. );
  2185. path = ViewController;
  2186. sourceTree = "<group>";
  2187. };
  2188. A7824B022271F0E900ABA381 /* View */ = {
  2189. isa = PBXGroup;
  2190. children = (
  2191. A7824B032271F10300ABA381 /* EditSelfMentionContactsView.swift */,
  2192. A7824B052271F25400ABA381 /* EditAddressTableViewCell.swift */,
  2193. A7824B072271F53A00ABA381 /* EditSetDefaultTableViewCell.swift */,
  2194. A71AA50B2272126A008FF1A5 /* EditAddressFooterView.swift */,
  2195. );
  2196. path = View;
  2197. sourceTree = "<group>";
  2198. };
  2199. A79057032276D5FE0037F823 /* ConfigModel */ = {
  2200. isa = PBXGroup;
  2201. children = (
  2202. A79057052276EA3D0037F823 /* OpenCityListModel.swift */,
  2203. A757C92F2274839900226355 /* SelfMentionAddressListModel.swift */,
  2204. );
  2205. path = ConfigModel;
  2206. sourceTree = "<group>";
  2207. };
  2208. A79057042276D6250037F823 /* SwiftMoyaServiceManger */ = {
  2209. isa = PBXGroup;
  2210. children = (
  2211. A7541507224CACF9002480B5 /* SwiftSign */,
  2212. A7284A502252EB28000BAEC4 /* SwiftMoyaNetWorkManager */,
  2213. );
  2214. path = SwiftMoyaServiceManger;
  2215. sourceTree = "<group>";
  2216. };
  2217. A7A98DFB227E84D0005306E9 /* SwiftMoyaServiceProduct */ = {
  2218. isa = PBXGroup;
  2219. children = (
  2220. A7A98DFC227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift */,
  2221. A7A98DFE227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift */,
  2222. );
  2223. path = SwiftMoyaServiceProduct;
  2224. sourceTree = "<group>";
  2225. };
  2226. A7A98E00227E88E8005306E9 /* ProductModel */ = {
  2227. isa = PBXGroup;
  2228. children = (
  2229. A7A98E13227ED0E2005306E9 /* CategoryListModel.swift */,
  2230. A7A98E01227E8900005306E9 /* ProductSearchListModel.swift */,
  2231. A7A98E11227ECA11005306E9 /* ProductSearchModel.swift */,
  2232. A70B2C062284305400B2449F /* ProductModel.swift */,
  2233. A70B2C0F2286A3BC00B2449F /* ProductDetailModel.swift */,
  2234. BDE3045C22851E4F001D050F /* ProductCartListModel.swift */,
  2235. BDE3045E228554CA001D050F /* ProductCartAmountModel.swift */,
  2236. A71738AC228AB7B2000AEA6A /* ProductCommentListModel.swift */,
  2237. BDDF3B27228EBB72003A7D16 /* ProductRefundReasonModel.swift */,
  2238. );
  2239. path = ProductModel;
  2240. sourceTree = "<group>";
  2241. };
  2242. A7A98E03227EB7FD005306E9 /* Category */ = {
  2243. isa = PBXGroup;
  2244. children = (
  2245. A7A98E07227EB8CC005306E9 /* View */,
  2246. A7A98E06227EB8C7005306E9 /* ViewController */,
  2247. );
  2248. path = Category;
  2249. sourceTree = "<group>";
  2250. };
  2251. A7A98E06227EB8C7005306E9 /* ViewController */ = {
  2252. isa = PBXGroup;
  2253. children = (
  2254. A7A98E04227EB891005306E9 /* CategoryViewController.swift */,
  2255. );
  2256. path = ViewController;
  2257. sourceTree = "<group>";
  2258. };
  2259. A7A98E07227EB8CC005306E9 /* View */ = {
  2260. isa = PBXGroup;
  2261. children = (
  2262. A7A98E08227EB8DD005306E9 /* CategoryView.swift */,
  2263. A7A98E0A227EBD04005306E9 /* CategorySearchView.swift */,
  2264. A7A98E0D227EC0C6005306E9 /* CategoryTableViewCell.swift */,
  2265. );
  2266. path = View;
  2267. sourceTree = "<group>";
  2268. };
  2269. A7A98E15227EECEA005306E9 /* Special */ = {
  2270. isa = PBXGroup;
  2271. children = (
  2272. A7A98E19227EEE30005306E9 /* View */,
  2273. A7A98E18227EEE06005306E9 /* ViewController */,
  2274. );
  2275. path = Special;
  2276. sourceTree = "<group>";
  2277. };
  2278. A7A98E18227EEE06005306E9 /* ViewController */ = {
  2279. isa = PBXGroup;
  2280. children = (
  2281. A7A98E16227EED76005306E9 /* SpecialViewController.swift */,
  2282. );
  2283. path = ViewController;
  2284. sourceTree = "<group>";
  2285. };
  2286. A7A98E19227EEE30005306E9 /* View */ = {
  2287. isa = PBXGroup;
  2288. children = (
  2289. A7A98E1A227EEE49005306E9 /* SpecialView.swift */,
  2290. A7A98E1C227EF1CB005306E9 /* SpecialBannerView.swift */,
  2291. );
  2292. path = View;
  2293. sourceTree = "<group>";
  2294. };
  2295. A7A98E29228015BA005306E9 /* SwiftMoyaServiceCMS */ = {
  2296. isa = PBXGroup;
  2297. children = (
  2298. A7A98E2C22801642005306E9 /* SwiftMoyaServiceCMSApi.swift */,
  2299. A7A98E2E228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift */,
  2300. );
  2301. path = SwiftMoyaServiceCMS;
  2302. sourceTree = "<group>";
  2303. };
  2304. A7A98E3422802A60005306E9 /* ShoppingMallBanner */ = {
  2305. isa = PBXGroup;
  2306. children = (
  2307. A7A98E322280272A005306E9 /* ShoppingMallBannerTableViewCell.swift */,
  2308. A7A98E3522802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift */,
  2309. );
  2310. path = ShoppingMallBanner;
  2311. sourceTree = "<group>";
  2312. };
  2313. A7A98E38228030F8005306E9 /* ShoppingMallCategory */ = {
  2314. isa = PBXGroup;
  2315. children = (
  2316. A7A98E392280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift */,
  2317. A7A98E3B228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift */,
  2318. );
  2319. path = ShoppingMallCategory;
  2320. sourceTree = "<group>";
  2321. };
  2322. A7A98E3E22804647005306E9 /* ShoppingMallSepcial */ = {
  2323. isa = PBXGroup;
  2324. children = (
  2325. A7A98E40228046C4005306E9 /* ShoppingMallSepcialTableViewCell.swift */,
  2326. A7A98E4222804851005306E9 /* ShoppingMallSepcialFlowLayout.swift */,
  2327. A7A98E4422804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift */,
  2328. );
  2329. path = ShoppingMallSepcial;
  2330. sourceTree = "<group>";
  2331. };
  2332. A7B4E71B22812D390012914A /* ShoppingMallSlidingLeftRight */ = {
  2333. isa = PBXGroup;
  2334. children = (
  2335. A7B4E755228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift */,
  2336. );
  2337. path = ShoppingMallSlidingLeftRight;
  2338. sourceTree = "<group>";
  2339. };
  2340. A7B4E730228177A90012914A /* ShoppingMallFloor */ = {
  2341. isa = PBXGroup;
  2342. children = (
  2343. A7B4E752228276270012914A /* Floor */,
  2344. A70B2C0522841F1B00B2449F /* FloorCell */,
  2345. );
  2346. path = ShoppingMallFloor;
  2347. sourceTree = "<group>";
  2348. };
  2349. A7B4E732228177BC0012914A /* ProductCollectionReusableView */ = {
  2350. isa = PBXGroup;
  2351. children = (
  2352. A7B4E720228151F40012914A /* ProductFloorTitleView.swift */,
  2353. A7B4E72E2281773F0012914A /* ProductFloorCenterTitleView.swift */,
  2354. A7B4E722228154750012914A /* ProductFloorBannerView.swift */,
  2355. A70B2C032283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift */,
  2356. A7B4E7572282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift */,
  2357. A7B4E759228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift */,
  2358. );
  2359. path = ProductCollectionReusableView;
  2360. sourceTree = "<group>";
  2361. };
  2362. A7B4E733228190630012914A /* CMSModel */ = {
  2363. isa = PBXGroup;
  2364. children = (
  2365. A7B4E739228192D10012914A /* CMSTemplateModel.swift */,
  2366. A7B4E7342281907A0012914A /* CMSModel.swift */,
  2367. );
  2368. path = CMSModel;
  2369. sourceTree = "<group>";
  2370. };
  2371. A7B4E736228190810012914A /* CommonModel */ = {
  2372. isa = PBXGroup;
  2373. children = (
  2374. A7B4E737228191CC0012914A /* CommondModel.swift */,
  2375. );
  2376. path = CommonModel;
  2377. sourceTree = "<group>";
  2378. };
  2379. A7B4E752228276270012914A /* Floor */ = {
  2380. isa = PBXGroup;
  2381. children = (
  2382. A7B4E753228278320012914A /* ShoppingMallFloorTableViewCell.swift */,
  2383. );
  2384. path = Floor;
  2385. sourceTree = "<group>";
  2386. };
  2387. A7BB68512268DCF800AB07A2 /* SelfRecommendation */ = {
  2388. isa = PBXGroup;
  2389. children = (
  2390. A7BB68522268DE6400AB07A2 /* View */,
  2391. A7BB68532268DE7100AB07A2 /* ViewController */,
  2392. );
  2393. path = SelfRecommendation;
  2394. sourceTree = "<group>";
  2395. };
  2396. A7BB68522268DE6400AB07A2 /* View */ = {
  2397. isa = PBXGroup;
  2398. children = (
  2399. A7BB68542268DE8600AB07A2 /* SelfRecommendationView.swift */,
  2400. A7BB6856226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift */,
  2401. A7BB685822696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift */,
  2402. );
  2403. path = View;
  2404. sourceTree = "<group>";
  2405. };
  2406. A7BB68532268DE7100AB07A2 /* ViewController */ = {
  2407. isa = PBXGroup;
  2408. children = (
  2409. A7BB684D2268DCEC00AB07A2 /* SelfRecommendationViewController.swift */,
  2410. );
  2411. path = ViewController;
  2412. sourceTree = "<group>";
  2413. };
  2414. A7BB68612269B1DD00AB07A2 /* AddressPOI */ = {
  2415. isa = PBXGroup;
  2416. children = (
  2417. A7BB68622269B1DD00AB07A2 /* View */,
  2418. A7BB68642269B1DD00AB07A2 /* ViewController */,
  2419. );
  2420. path = AddressPOI;
  2421. sourceTree = "<group>";
  2422. };
  2423. A7BB68622269B1DD00AB07A2 /* View */ = {
  2424. isa = PBXGroup;
  2425. children = (
  2426. A7BB68632269B1DD00AB07A2 /* AddressPOIView.swift */,
  2427. A771F07B226D4E1C007999DB /* AddressPOITableViewCell.swift */,
  2428. );
  2429. path = View;
  2430. sourceTree = "<group>";
  2431. };
  2432. A7BB68642269B1DD00AB07A2 /* ViewController */ = {
  2433. isa = PBXGroup;
  2434. children = (
  2435. A7BB68652269B1DD00AB07A2 /* AddressPOIViewController.swift */,
  2436. );
  2437. path = ViewController;
  2438. sourceTree = "<group>";
  2439. };
  2440. A7C3DD182264229900FA262E /* SwiftMoyaServiceSMS */ = {
  2441. isa = PBXGroup;
  2442. children = (
  2443. A7C3DD19226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift */,
  2444. A7C3DD1B226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift */,
  2445. );
  2446. path = SwiftMoyaServiceSMS;
  2447. sourceTree = "<group>";
  2448. };
  2449. A7CC74D2226FF190003C4F38 /* View */ = {
  2450. isa = PBXGroup;
  2451. children = (
  2452. A7CC74D5226FF421003C4F38 /* MineNavigationBarView.swift */,
  2453. A7CC74D3226FF1AA003C4F38 /* MineView.swift */,
  2454. A7CC74D722700359003C4F38 /* MineTableViewHeaderView.swift */,
  2455. A7CC74D922702E41003C4F38 /* MineOrderTableViewCell.swift */,
  2456. A7CC74DB2270352F003C4F38 /* MineOrderCollectionViewCell.swift */,
  2457. A7CC74DF227042A4003C4F38 /* MineServiceTableViewCell.swift */,
  2458. A7CC74E122704429003C4F38 /* MineServiceCollectionViewCell.swift */,
  2459. );
  2460. path = View;
  2461. sourceTree = "<group>";
  2462. };
  2463. A7CC74E722706A06003C4F38 /* Message */ = {
  2464. isa = PBXGroup;
  2465. children = (
  2466. A7CC74EB22706CA9003C4F38 /* View */,
  2467. A7CC74E822706AAC003C4F38 /* ViewController */,
  2468. );
  2469. path = Message;
  2470. sourceTree = "<group>";
  2471. };
  2472. A7CC74E822706AAC003C4F38 /* ViewController */ = {
  2473. isa = PBXGroup;
  2474. children = (
  2475. A7CC74E922706ACD003C4F38 /* MessageViewController.swift */,
  2476. );
  2477. path = ViewController;
  2478. sourceTree = "<group>";
  2479. };
  2480. A7CC74EB22706CA9003C4F38 /* View */ = {
  2481. isa = PBXGroup;
  2482. children = (
  2483. A7CC74EE22706CCA003C4F38 /* MessageView.swift */,
  2484. A7CC750522714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift */,
  2485. A7CC74F022706FE3003C4F38 /* MessageOneCollectionViewCell.swift */,
  2486. A7CC74F2227070D2003C4F38 /* MessageTwoCollectionViewCell.swift */,
  2487. );
  2488. path = View;
  2489. sourceTree = "<group>";
  2490. };
  2491. A7CC7507227151C7003C4F38 /* MessageDetailes */ = {
  2492. isa = PBXGroup;
  2493. children = (
  2494. A7CC750B2271578F003C4F38 /* View */,
  2495. A7CC7508227151D0003C4F38 /* ViewController */,
  2496. );
  2497. path = MessageDetailes;
  2498. sourceTree = "<group>";
  2499. };
  2500. A7CC7508227151D0003C4F38 /* ViewController */ = {
  2501. isa = PBXGroup;
  2502. children = (
  2503. A7CC750922715755003C4F38 /* MessageDetailesViewController.swift */,
  2504. );
  2505. path = ViewController;
  2506. sourceTree = "<group>";
  2507. };
  2508. A7CC750B2271578F003C4F38 /* View */ = {
  2509. isa = PBXGroup;
  2510. children = (
  2511. A7CC750C227157DA003C4F38 /* MessageDetailesView.swift */,
  2512. A7CC750E22715AAC003C4F38 /* MessageDetailesTableViewCell.swift */,
  2513. A7CC751022715AE3003C4F38 /* MessageDetailesTimeView.swift */,
  2514. );
  2515. path = View;
  2516. sourceTree = "<group>";
  2517. };
  2518. A7CC751222716194003C4F38 /* Set */ = {
  2519. isa = PBXGroup;
  2520. children = (
  2521. A7CC7513227161B1003C4F38 /* View */,
  2522. A7CC7514227161B8003C4F38 /* ViewController */,
  2523. );
  2524. path = Set;
  2525. sourceTree = "<group>";
  2526. };
  2527. A7CC7513227161B1003C4F38 /* View */ = {
  2528. isa = PBXGroup;
  2529. children = (
  2530. A7CC751722716202003C4F38 /* SetView.swift */,
  2531. A7CC751922716254003C4F38 /* SetTableViewCell.swift */,
  2532. A7CC751B22716426003C4F38 /* SetLogoutTableViewCell.swift */,
  2533. );
  2534. path = View;
  2535. sourceTree = "<group>";
  2536. };
  2537. A7CC7514227161B8003C4F38 /* ViewController */ = {
  2538. isa = PBXGroup;
  2539. children = (
  2540. A7CC7515227161D5003C4F38 /* SetViewController.swift */,
  2541. );
  2542. path = ViewController;
  2543. sourceTree = "<group>";
  2544. };
  2545. A7CC751D22719091003C4F38 /* AccountSecurity */ = {
  2546. isa = PBXGroup;
  2547. children = (
  2548. A7CC7522227190EF003C4F38 /* View */,
  2549. A7CC7521227190E8003C4F38 /* ViewController */,
  2550. );
  2551. path = AccountSecurity;
  2552. sourceTree = "<group>";
  2553. };
  2554. A7CC7521227190E8003C4F38 /* ViewController */ = {
  2555. isa = PBXGroup;
  2556. children = (
  2557. A7CC751E227190C5003C4F38 /* AccountSecurityViewController.swift */,
  2558. );
  2559. path = ViewController;
  2560. sourceTree = "<group>";
  2561. };
  2562. A7CC7522227190EF003C4F38 /* View */ = {
  2563. isa = PBXGroup;
  2564. children = (
  2565. A7CC7523227190FB003C4F38 /* AccountSecurityView.swift */,
  2566. A7CC7525227196A8003C4F38 /* AccountSecurityTableViewCell.swift */,
  2567. A7CC7527227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift */,
  2568. );
  2569. path = View;
  2570. sourceTree = "<group>";
  2571. };
  2572. A7CC75292271A169003C4F38 /* SetPassword */ = {
  2573. isa = PBXGroup;
  2574. children = (
  2575. A7CC752D2271A1E5003C4F38 /* View */,
  2576. A7CC752A2271A184003C4F38 /* ViewController */,
  2577. );
  2578. path = SetPassword;
  2579. sourceTree = "<group>";
  2580. };
  2581. A7CC752A2271A184003C4F38 /* ViewController */ = {
  2582. isa = PBXGroup;
  2583. children = (
  2584. A7CC752B2271A1AE003C4F38 /* SetPasswordViewController.swift */,
  2585. );
  2586. path = ViewController;
  2587. sourceTree = "<group>";
  2588. };
  2589. A7CC752D2271A1E5003C4F38 /* View */ = {
  2590. isa = PBXGroup;
  2591. children = (
  2592. A7CC752E2271A1F2003C4F38 /* SetPasswordView.swift */,
  2593. );
  2594. path = View;
  2595. sourceTree = "<group>";
  2596. };
  2597. A7CC75302271AB6C003C4F38 /* AddressManager */ = {
  2598. isa = PBXGroup;
  2599. children = (
  2600. A7CC75342271ABFB003C4F38 /* View */,
  2601. A7CC75312271AB83003C4F38 /* ViewController */,
  2602. );
  2603. path = AddressManager;
  2604. sourceTree = "<group>";
  2605. };
  2606. A7CC75312271AB83003C4F38 /* ViewController */ = {
  2607. isa = PBXGroup;
  2608. children = (
  2609. A7CC75322271ABB0003C4F38 /* AddressManagerViewController.swift */,
  2610. );
  2611. path = ViewController;
  2612. sourceTree = "<group>";
  2613. };
  2614. A7CC75342271ABFB003C4F38 /* View */ = {
  2615. isa = PBXGroup;
  2616. children = (
  2617. A7CC75352271AC14003C4F38 /* AddressManagerView.swift */,
  2618. A7CC75392271B98B003C4F38 /* AddressManagerAddTableViewCell.swift */,
  2619. A7CC753B2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift */,
  2620. A7CC753D2271C4C2003C4F38 /* AddressManagerExpressTableViewCell.swift */,
  2621. A7CC75372271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift */,
  2622. );
  2623. path = View;
  2624. sourceTree = "<group>";
  2625. };
  2626. A7CC753F2271DFF3003C4F38 /* SelfMentionContactsList */ = {
  2627. isa = PBXGroup;
  2628. children = (
  2629. A7CC75412271E023003C4F38 /* View */,
  2630. A7CC75402271E01D003C4F38 /* ViewController */,
  2631. );
  2632. path = SelfMentionContactsList;
  2633. sourceTree = "<group>";
  2634. };
  2635. A7CC75402271E01D003C4F38 /* ViewController */ = {
  2636. isa = PBXGroup;
  2637. children = (
  2638. A7CC75422271E038003C4F38 /* SelfMentionContactsListViewController.swift */,
  2639. );
  2640. path = ViewController;
  2641. sourceTree = "<group>";
  2642. };
  2643. A7CC75412271E023003C4F38 /* View */ = {
  2644. isa = PBXGroup;
  2645. children = (
  2646. A7824AFA2271EA2600ABA381 /* SelfMentionContactsListView.swift */,
  2647. A7824AFC2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift */,
  2648. );
  2649. path = View;
  2650. sourceTree = "<group>";
  2651. };
  2652. A7D4608C227616E600A5A54E /* FMDB */ = {
  2653. isa = PBXGroup;
  2654. children = (
  2655. A7D4608D227616F800A5A54E /* SQLiteManager.swift */,
  2656. A7D4608F227617D200A5A54E /* SQLModel.swift */,
  2657. );
  2658. path = FMDB;
  2659. sourceTree = "<group>";
  2660. };
  2661. A7FF1550228AC22700A85748 /* ProductAllComment */ = {
  2662. isa = PBXGroup;
  2663. children = (
  2664. A7FF1553228AC25000A85748 /* ViewController */,
  2665. A7FF1552228AC24B00A85748 /* View */,
  2666. );
  2667. path = ProductAllComment;
  2668. sourceTree = "<group>";
  2669. };
  2670. A7FF1552228AC24B00A85748 /* View */ = {
  2671. isa = PBXGroup;
  2672. children = (
  2673. A7FF1554228AC27600A85748 /* ProductAllCommentView.swift */,
  2674. A70B2C6622887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift */,
  2675. );
  2676. path = View;
  2677. sourceTree = "<group>";
  2678. };
  2679. A7FF1553228AC25000A85748 /* ViewController */ = {
  2680. isa = PBXGroup;
  2681. children = (
  2682. A7FF1556228AC3E800A85748 /* ProductAllCommentViewController.swift */,
  2683. );
  2684. path = ViewController;
  2685. sourceTree = "<group>";
  2686. };
  2687. A7FF155A228C689C00A85748 /* OrderModule */ = {
  2688. isa = PBXGroup;
  2689. children = (
  2690. A7FF155B228C68B200A85748 /* Order */,
  2691. A7FF155C228C68C900A85748 /* OrderDetail */,
  2692. A7FF158A228C910600A85748 /* OrderRefunddetails */,
  2693. BD77BE1B228D8D320060E23C /* OrderLogistics */,
  2694. BD77BE18228D8C2E0060E23C /* OrderComment */,
  2695. BDF862A3228E4266000DEF84 /* OrderApplyRefund */,
  2696. );
  2697. path = OrderModule;
  2698. sourceTree = "<group>";
  2699. };
  2700. A7FF155B228C68B200A85748 /* Order */ = {
  2701. isa = PBXGroup;
  2702. children = (
  2703. A7FF155E228C692000A85748 /* View */,
  2704. A7FF155D228C691900A85748 /* ViewController */,
  2705. );
  2706. path = Order;
  2707. sourceTree = "<group>";
  2708. };
  2709. A7FF155C228C68C900A85748 /* OrderDetail */ = {
  2710. isa = PBXGroup;
  2711. children = (
  2712. A7FF1573228C81DD00A85748 /* View */,
  2713. A7FF1574228C81E300A85748 /* ViewController */,
  2714. );
  2715. path = OrderDetail;
  2716. sourceTree = "<group>";
  2717. };
  2718. A7FF155D228C691900A85748 /* ViewController */ = {
  2719. isa = PBXGroup;
  2720. children = (
  2721. A7FF155F228C693D00A85748 /* OrderViewController.swift */,
  2722. A7FF1595228CFA8100A85748 /* OrderListViewController.swift */,
  2723. );
  2724. path = ViewController;
  2725. sourceTree = "<group>";
  2726. };
  2727. A7FF155E228C692000A85748 /* View */ = {
  2728. isa = PBXGroup;
  2729. children = (
  2730. A7FF1563228C696B00A85748 /* OrderListView.swift */,
  2731. A7FF1565228C6DF200A85748 /* OrderShopAndStatusTableViewCell.swift */,
  2732. A7FF1567228C6E2300A85748 /* OrderDeliveryModeAndTimeTableViewCell.swift */,
  2733. A7FF1569228C6E3600A85748 /* OrderProductTableViewCell.swift */,
  2734. A7FF156B228C6E5E00A85748 /* OrderTotalAmountTableViewCell.swift */,
  2735. A7FF156D228C6EAE00A85748 /* OrderDeliveryModeTableViewCell.swift */,
  2736. A7FF156F228C6EF200A85748 /* OrderDeliveryModeAndButtonTableViewCell.swift */,
  2737. A7FF1571228C7D4600A85748 /* OrderButtonTableViewCell.swift */,
  2738. );
  2739. path = View;
  2740. sourceTree = "<group>";
  2741. };
  2742. A7FF1573228C81DD00A85748 /* View */ = {
  2743. isa = PBXGroup;
  2744. children = (
  2745. A7FF157C228C837100A85748 /* OrderDetailStatusTableViewCell.swift */,
  2746. A7FF1584228C847300A85748 /* OrderDetailContactAddressTableViewCell.swift */,
  2747. A7FF1582228C843700A85748 /* OrderDetailExpressSelfMentionTableViewCell.swift */,
  2748. A7FF1586228C851100A85748 /* OrderDetailInfoTableViewCell.swift */,
  2749. A7FF1588228C854900A85748 /* OrderDetailBottomView.swift */,
  2750. );
  2751. path = View;
  2752. sourceTree = "<group>";
  2753. };
  2754. A7FF1574228C81E300A85748 /* ViewController */ = {
  2755. isa = PBXGroup;
  2756. children = (
  2757. A7FF1578228C82CE00A85748 /* OrderDetailViewController.swift */,
  2758. );
  2759. path = ViewController;
  2760. sourceTree = "<group>";
  2761. };
  2762. A7FF158A228C910600A85748 /* OrderRefunddetails */ = {
  2763. isa = PBXGroup;
  2764. children = (
  2765. A7FF158E228C913000A85748 /* ViewController */,
  2766. A7FF158D228C912200A85748 /* View */,
  2767. );
  2768. path = OrderRefunddetails;
  2769. sourceTree = "<group>";
  2770. };
  2771. A7FF158D228C912200A85748 /* View */ = {
  2772. isa = PBXGroup;
  2773. children = (
  2774. A7FF1591228C918100A85748 /* OrderRefunddetailsStatusTableViewCell.swift */,
  2775. A7FF1593228C919A00A85748 /* OrderRefunddetailsTipsTableViewCell.swift */,
  2776. );
  2777. path = View;
  2778. sourceTree = "<group>";
  2779. };
  2780. A7FF158E228C913000A85748 /* ViewController */ = {
  2781. isa = PBXGroup;
  2782. children = (
  2783. A7FF158B228C911C00A85748 /* OrderRefunddetailsViewController.swift */,
  2784. );
  2785. path = ViewController;
  2786. sourceTree = "<group>";
  2787. };
  2788. BD1DC6C2228CFD0B00B89C57 /* SwiftMoyaServiceOrder */ = {
  2789. isa = PBXGroup;
  2790. children = (
  2791. BD1DC6C4228CFD0B00B89C57 /* SwiftMoyaServiceOrderApi.swift */,
  2792. BD1DC6C3228CFD0B00B89C57 /* SwiftMoyaNetWorkServiceOrder.swift */,
  2793. );
  2794. path = SwiftMoyaServiceOrder;
  2795. sourceTree = "<group>";
  2796. };
  2797. BD1DC6C7228D002200B89C57 /* OrderModel */ = {
  2798. isa = PBXGroup;
  2799. children = (
  2800. A7FF1597228D092A00A85748 /* OrderListModel.swift */,
  2801. BD1DC6C8228D005000B89C57 /* OrderCreateParameterModel.swift */,
  2802. BD1DC6CA228D157000B89C57 /* OrderCreateBackModel.swift */,
  2803. BD1DC6CC228D160D00B89C57 /* OrderPurchaseModel.swift */,
  2804. A7FF159B228D9E3C00A85748 /* OrderRefundDetailModel.swift */,
  2805. );
  2806. path = OrderModel;
  2807. sourceTree = "<group>";
  2808. };
  2809. BD3474F722859788000908C5 /* ShoppingCartPayOrder */ = {
  2810. isa = PBXGroup;
  2811. children = (
  2812. BD3474F9228597B6000908C5 /* View */,
  2813. BD3474F8228597AC000908C5 /* ViewController */,
  2814. );
  2815. path = ShoppingCartPayOrder;
  2816. sourceTree = "<group>";
  2817. };
  2818. BD3474F8228597AC000908C5 /* ViewController */ = {
  2819. isa = PBXGroup;
  2820. children = (
  2821. BDD4FB1122840597006FE833 /* ShoppingCartPayOrderController.swift */,
  2822. );
  2823. path = ViewController;
  2824. sourceTree = "<group>";
  2825. };
  2826. BD3474F9228597B6000908C5 /* View */ = {
  2827. isa = PBXGroup;
  2828. children = (
  2829. BD7AB83B228437940030646A /* AdressCell */,
  2830. BDD4FB1322840954006FE833 /* ShoppingCartOrderPayView.swift */,
  2831. BDD4FB1622840DD3006FE833 /* OrderPayAcountView.swift */,
  2832. BD7AB837228420310030646A /* ShoppingCartPayOrderHeader.swift */,
  2833. BD7AB8392284288D0030646A /* ShoppingCartPayOrderFooter.swift */,
  2834. BD7AB83522841A8B0030646A /* ShoppingCartPayOrderItemCell.swift */,
  2835. );
  2836. path = View;
  2837. sourceTree = "<group>";
  2838. };
  2839. BD3474FA228597E8000908C5 /* ShoppingCartFinishPay */ = {
  2840. isa = PBXGroup;
  2841. children = (
  2842. BD3474FB2285980D000908C5 /* View */,
  2843. BD3474FC22859815000908C5 /* ViewController */,
  2844. );
  2845. path = ShoppingCartFinishPay;
  2846. sourceTree = "<group>";
  2847. };
  2848. BD3474FB2285980D000908C5 /* View */ = {
  2849. isa = PBXGroup;
  2850. children = (
  2851. BD20F1CE2283CE2300677D8E /* ShoppingCartFinishPayView.swift */,
  2852. BD20F1D22283D0ED00677D8E /* ShoppingCartPaySuccessCell.swift */,
  2853. BD20F1D42283D15500677D8E /* ShoppingCartPayFailureCell.swift */,
  2854. );
  2855. path = View;
  2856. sourceTree = "<group>";
  2857. };
  2858. BD3474FC22859815000908C5 /* ViewController */ = {
  2859. isa = PBXGroup;
  2860. children = (
  2861. BD20F1CC2283C51300677D8E /* ShoppingCartFinishPayController.swift */,
  2862. );
  2863. path = ViewController;
  2864. sourceTree = "<group>";
  2865. };
  2866. BD77BE18228D8C2E0060E23C /* OrderComment */ = {
  2867. isa = PBXGroup;
  2868. children = (
  2869. BDF862A8228E438E000DEF84 /* View */,
  2870. BD77BE1A228D8C570060E23C /* ViewController */,
  2871. );
  2872. path = OrderComment;
  2873. sourceTree = "<group>";
  2874. };
  2875. BD77BE1A228D8C570060E23C /* ViewController */ = {
  2876. isa = PBXGroup;
  2877. children = (
  2878. BDF8629B228E4125000DEF84 /* OrderCommentController.swift */,
  2879. );
  2880. path = ViewController;
  2881. sourceTree = "<group>";
  2882. };
  2883. BD77BE1B228D8D320060E23C /* OrderLogistics */ = {
  2884. isa = PBXGroup;
  2885. children = (
  2886. BDF8629F228E41CC000DEF84 /* View */,
  2887. BDF8629D228E41CC000DEF84 /* ViewController */,
  2888. );
  2889. path = OrderLogistics;
  2890. sourceTree = "<group>";
  2891. };
  2892. BD7AB83B228437940030646A /* AdressCell */ = {
  2893. isa = PBXGroup;
  2894. children = (
  2895. BD7AB83C228438020030646A /* OrderPayExpressInfoShowCell.swift */,
  2896. BD7AB83E228438290030646A /* OrderPayExpressAddInfoCell.swift */,
  2897. BD7AB8442284398A0030646A /* OrderPaySelfPickAddInfoCell.swift */,
  2898. BD7AB840228438C80030646A /* OrderPaySelfPickAddressCell.swift */,
  2899. BD7AB8422284390B0030646A /* OrderPaySelfPickInfoCell.swift */,
  2900. );
  2901. path = AdressCell;
  2902. sourceTree = "<group>";
  2903. };
  2904. BDEF778F228571C200ED0AC0 /* PayManagerView */ = {
  2905. isa = PBXGroup;
  2906. children = (
  2907. BDEF7790228571DC00ED0AC0 /* CommonPayView.swift */,
  2908. BD3474F422857B85000908C5 /* CommonPayHeader.swift */,
  2909. BDEF7792228575A800ED0AC0 /* CommonPayCell.swift */,
  2910. );
  2911. path = PayManagerView;
  2912. sourceTree = "<group>";
  2913. };
  2914. BDF47D782282645900941AB9 /* View */ = {
  2915. isa = PBXGroup;
  2916. children = (
  2917. BDF47D882282D94D00941AB9 /* ShoppingCartList */,
  2918. BDF47D832282BF4300941AB9 /* ShoppingCartHotSale */,
  2919. BDF47D79228271F600941AB9 /* ShoppingCartView.swift */,
  2920. BDF47D7F228288F900941AB9 /* ShoppingCartAccountView.swift */,
  2921. );
  2922. path = View;
  2923. sourceTree = "<group>";
  2924. };
  2925. BDF47D832282BF4300941AB9 /* ShoppingCartHotSale */ = {
  2926. isa = PBXGroup;
  2927. children = (
  2928. BDF47D812282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift */,
  2929. );
  2930. path = ShoppingCartHotSale;
  2931. sourceTree = "<group>";
  2932. };
  2933. BDF47D882282D94D00941AB9 /* ShoppingCartList */ = {
  2934. isa = PBXGroup;
  2935. children = (
  2936. BDF47D862282C92200941AB9 /* ShoppingCartListTableViewHeader.swift */,
  2937. BDF47D842282C59F00941AB9 /* ShoppingCartListTableViewCell.swift */,
  2938. BD20F1CA2283C12000677D8E /* ShoppingCartListNoneItemCell.swift */,
  2939. );
  2940. path = ShoppingCartList;
  2941. sourceTree = "<group>";
  2942. };
  2943. BDF8629D228E41CC000DEF84 /* ViewController */ = {
  2944. isa = PBXGroup;
  2945. children = (
  2946. BDF8629E228E41CC000DEF84 /* OrderLogisticsController.swift */,
  2947. );
  2948. path = ViewController;
  2949. sourceTree = "<group>";
  2950. };
  2951. BDF8629F228E41CC000DEF84 /* View */ = {
  2952. isa = PBXGroup;
  2953. children = (
  2954. BDF862A0228E41CC000DEF84 /* OrderLogisticsInfoCell.swift */,
  2955. );
  2956. path = View;
  2957. sourceTree = "<group>";
  2958. };
  2959. BDF862A3228E4266000DEF84 /* OrderApplyRefund */ = {
  2960. isa = PBXGroup;
  2961. children = (
  2962. BDF862AF228E64D5000DEF84 /* View */,
  2963. BDF862A4228E42CA000DEF84 /* ViewController */,
  2964. );
  2965. path = OrderApplyRefund;
  2966. sourceTree = "<group>";
  2967. };
  2968. BDF862A4228E42CA000DEF84 /* ViewController */ = {
  2969. isa = PBXGroup;
  2970. children = (
  2971. BDF862A6228E42FA000DEF84 /* OrderApplyRefundController.swift */,
  2972. );
  2973. path = ViewController;
  2974. sourceTree = "<group>";
  2975. };
  2976. BDF862A8228E438E000DEF84 /* View */ = {
  2977. isa = PBXGroup;
  2978. children = (
  2979. BDF862A9228E43A4000DEF84 /* OrderCommentTableViewCell.swift */,
  2980. BDF862AB228E5112000DEF84 /* OrderCommentAddImgCollectionCell.swift */,
  2981. BDF862AD228E57E1000DEF84 /* OrderCommentDefaultCollectionCell.swift */,
  2982. );
  2983. path = View;
  2984. sourceTree = "<group>";
  2985. };
  2986. BDF862AF228E64D5000DEF84 /* View */ = {
  2987. isa = PBXGroup;
  2988. children = (
  2989. BDF862B0228E6690000DEF84 /* OrderApplyRefundProductCell.swift */,
  2990. BDAA40F6228E947500CF841D /* OrderApplyRefundAccountCell.swift */,
  2991. BDAA40F8228E9ADA00CF841D /* OrderApplyRefundReasonCell.swift */,
  2992. BDAA40FC228E9CD600CF841D /* OrderApplyRefundPhoneCell.swift */,
  2993. BDAA40FA228E9CC300CF841D /* OrderApplyRefundNoteInfoCell.swift */,
  2994. BDAA40FE228EA37900CF841D /* OrderApplyRefundPhotoCell.swift */,
  2995. );
  2996. path = View;
  2997. sourceTree = "<group>";
  2998. };
  2999. FA8AAFBADE8BD144A5C36FDB /* Frameworks */ = {
  3000. isa = PBXGroup;
  3001. children = (
  3002. A76390EA2248E27A0067EEE0 /* UserNotifications.framework */,
  3003. A72A73592233577000B21995 /* libc++.1.tbd */,
  3004. A72A730322321EFA00B21995 /* libc++.tbd */,
  3005. A72A730122321EEE00B21995 /* libz.tbd */,
  3006. A72A72FF22321EE900B21995 /* SystemConfiguration.framework */,
  3007. A72A72FD22321EE200B21995 /* QuartzCore.framework */,
  3008. A72A72FB22321ECD00B21995 /* CoreTelephony.framework */,
  3009. A72A72F922321EBF00B21995 /* CoreText.framework */,
  3010. A72A72F722321EB600B21995 /* CoreGraphics.framework */,
  3011. A72A72F522321EA000B21995 /* UIKit.framework */,
  3012. A72A72F322321E9A00B21995 /* Foundation.framework */,
  3013. A72A72F122321E9300B21995 /* CFNetwork.framework */,
  3014. A72A72EF22321E8800B21995 /* CoreMotion.framework */,
  3015. D469F6C3768252BCB7001EDD /* Pods_RainbowPlanet.framework */,
  3016. A7E03A30F40582782EC5DA89 /* Pods_RainbowPlanetTests.framework */,
  3017. 88DF1EFD2E202DA7C627E8A7 /* Pods_RainbowPlanetUITests.framework */,
  3018. );
  3019. name = Frameworks;
  3020. sourceTree = "<group>";
  3021. };
  3022. /* End PBXGroup section */
  3023. /* Begin PBXNativeTarget section */
  3024. A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */ = {
  3025. isa = PBXNativeTarget;
  3026. buildConfigurationList = A77F2C852231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanet" */;
  3027. buildPhases = (
  3028. D3A9893FB9EA18608E79E053 /* [CP] Check Pods Manifest.lock */,
  3029. A77F2C592231FB49001BD3F6 /* Sources */,
  3030. A77F2C5A2231FB49001BD3F6 /* Frameworks */,
  3031. A77F2C5B2231FB49001BD3F6 /* Resources */,
  3032. 696EB1DDE9DE019617B4DAD7 /* [CP] Embed Pods Frameworks */,
  3033. 59501F6F4334279DFBD164A0 /* [CP] Copy Pods Resources */,
  3034. );
  3035. buildRules = (
  3036. );
  3037. dependencies = (
  3038. );
  3039. name = RainbowPlanet;
  3040. productName = RainbowPlanet;
  3041. productReference = A77F2C5D2231FB49001BD3F6 /* RainbowPlanet.app */;
  3042. productType = "com.apple.product-type.application";
  3043. };
  3044. A77F2C702231FB4A001BD3F6 /* RainbowPlanetTests */ = {
  3045. isa = PBXNativeTarget;
  3046. buildConfigurationList = A77F2C882231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetTests" */;
  3047. buildPhases = (
  3048. A77F2C6D2231FB4A001BD3F6 /* Sources */,
  3049. A77F2C6E2231FB4A001BD3F6 /* Frameworks */,
  3050. A77F2C6F2231FB4A001BD3F6 /* Resources */,
  3051. );
  3052. buildRules = (
  3053. );
  3054. dependencies = (
  3055. A77F2C732231FB4A001BD3F6 /* PBXTargetDependency */,
  3056. );
  3057. name = RainbowPlanetTests;
  3058. productName = RainbowPlanetTests;
  3059. productReference = A77F2C712231FB4A001BD3F6 /* RainbowPlanetTests.xctest */;
  3060. productType = "com.apple.product-type.bundle.unit-test";
  3061. };
  3062. A77F2C7B2231FB4A001BD3F6 /* RainbowPlanetUITests */ = {
  3063. isa = PBXNativeTarget;
  3064. buildConfigurationList = A77F2C8B2231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetUITests" */;
  3065. buildPhases = (
  3066. A77F2C782231FB4A001BD3F6 /* Sources */,
  3067. A77F2C792231FB4A001BD3F6 /* Frameworks */,
  3068. A77F2C7A2231FB4A001BD3F6 /* Resources */,
  3069. );
  3070. buildRules = (
  3071. );
  3072. dependencies = (
  3073. A77F2C7E2231FB4A001BD3F6 /* PBXTargetDependency */,
  3074. );
  3075. name = RainbowPlanetUITests;
  3076. productName = RainbowPlanetUITests;
  3077. productReference = A77F2C7C2231FB4A001BD3F6 /* RainbowPlanetUITests.xctest */;
  3078. productType = "com.apple.product-type.bundle.ui-testing";
  3079. };
  3080. /* End PBXNativeTarget section */
  3081. /* Begin PBXProject section */
  3082. A77F2C552231FB49001BD3F6 /* Project object */ = {
  3083. isa = PBXProject;
  3084. attributes = {
  3085. LastSwiftUpdateCheck = 1010;
  3086. LastUpgradeCheck = 1010;
  3087. ORGANIZATIONNAME = RainbowPlanet;
  3088. TargetAttributes = {
  3089. A77F2C5C2231FB49001BD3F6 = {
  3090. CreatedOnToolsVersion = 10.1;
  3091. LastSwiftMigration = 1020;
  3092. SystemCapabilities = {
  3093. com.apple.BackgroundModes = {
  3094. enabled = 1;
  3095. };
  3096. com.apple.Push = {
  3097. enabled = 1;
  3098. };
  3099. };
  3100. };
  3101. A77F2C702231FB4A001BD3F6 = {
  3102. CreatedOnToolsVersion = 10.1;
  3103. LastSwiftMigration = 1020;
  3104. TestTargetID = A77F2C5C2231FB49001BD3F6;
  3105. };
  3106. A77F2C7B2231FB4A001BD3F6 = {
  3107. CreatedOnToolsVersion = 10.1;
  3108. LastSwiftMigration = 1020;
  3109. TestTargetID = A77F2C5C2231FB49001BD3F6;
  3110. };
  3111. };
  3112. };
  3113. buildConfigurationList = A77F2C582231FB49001BD3F6 /* Build configuration list for PBXProject "RainbowPlanet" */;
  3114. compatibilityVersion = "Xcode 9.3";
  3115. developmentRegion = en;
  3116. hasScannedForEncodings = 0;
  3117. knownRegions = (
  3118. en,
  3119. Base,
  3120. );
  3121. mainGroup = A77F2C542231FB49001BD3F6;
  3122. productRefGroup = A77F2C5E2231FB49001BD3F6 /* Products */;
  3123. projectDirPath = "";
  3124. projectRoot = "";
  3125. targets = (
  3126. A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */,
  3127. A77F2C702231FB4A001BD3F6 /* RainbowPlanetTests */,
  3128. A77F2C7B2231FB4A001BD3F6 /* RainbowPlanetUITests */,
  3129. );
  3130. };
  3131. /* End PBXProject section */
  3132. /* Begin PBXResourcesBuildPhase section */
  3133. A77F2C5B2231FB49001BD3F6 /* Resources */ = {
  3134. isa = PBXResourcesBuildPhase;
  3135. buildActionMask = 2147483647;
  3136. files = (
  3137. A7CC74DE22703B4A003C4F38 /* MineModule.xcassets in Resources */,
  3138. A70B2C2D2286E29900B2449F /* ProductModule.xcassets in Resources */,
  3139. A71AF0BE226F1792001730FE /* ShoppingMallModule.xcassets in Resources */,
  3140. A7778C9722438F5D00C7C47A /* AlipaySDK.bundle in Resources */,
  3141. A7190167227543DB00104A50 /* baidu_cityid_rel.json in Resources */,
  3142. A77F2C682231FB4A001BD3F6 /* Assets.xcassets in Resources */,
  3143. A72C01232275404A0065E0C3 /* province_city_area.json in Resources */,
  3144. A7FF1577228C824300A85748 /* OrderModule.xcassets in Resources */,
  3145. BD20F1D82283D2AA00677D8E /* ShoppingCartModule.xcassets in Resources */,
  3146. A7778C9922438F5D00C7C47A /* README.txt in Resources */,
  3147. A729B5AA2266F6FD004AE098 /* Launch Screen.storyboard in Resources */,
  3148. );
  3149. runOnlyForDeploymentPostprocessing = 0;
  3150. };
  3151. A77F2C6F2231FB4A001BD3F6 /* Resources */ = {
  3152. isa = PBXResourcesBuildPhase;
  3153. buildActionMask = 2147483647;
  3154. files = (
  3155. );
  3156. runOnlyForDeploymentPostprocessing = 0;
  3157. };
  3158. A77F2C7A2231FB4A001BD3F6 /* Resources */ = {
  3159. isa = PBXResourcesBuildPhase;
  3160. buildActionMask = 2147483647;
  3161. files = (
  3162. );
  3163. runOnlyForDeploymentPostprocessing = 0;
  3164. };
  3165. /* End PBXResourcesBuildPhase section */
  3166. /* Begin PBXShellScriptBuildPhase section */
  3167. 59501F6F4334279DFBD164A0 /* [CP] Copy Pods Resources */ = {
  3168. isa = PBXShellScriptBuildPhase;
  3169. buildActionMask = 2147483647;
  3170. files = (
  3171. );
  3172. inputFileListPaths = (
  3173. );
  3174. inputPaths = (
  3175. "${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-resources.sh",
  3176. "${PODS_ROOT}/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/mapapi.bundle",
  3177. "${PODS_ROOT}/UMCCommonLog/UMCommonLog/UMCommonLog.bundle",
  3178. "${PODS_ROOT}/UMCShare/UMShare/UMSocialUI/UMSocialSDKResources.bundle",
  3179. );
  3180. name = "[CP] Copy Pods Resources";
  3181. outputFileListPaths = (
  3182. );
  3183. outputPaths = (
  3184. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/mapapi.bundle",
  3185. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/UMCommonLog.bundle",
  3186. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/UMSocialSDKResources.bundle",
  3187. );
  3188. runOnlyForDeploymentPostprocessing = 0;
  3189. shellPath = /bin/sh;
  3190. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-resources.sh\"\n";
  3191. showEnvVarsInLog = 0;
  3192. };
  3193. 696EB1DDE9DE019617B4DAD7 /* [CP] Embed Pods Frameworks */ = {
  3194. isa = PBXShellScriptBuildPhase;
  3195. buildActionMask = 2147483647;
  3196. files = (
  3197. );
  3198. inputFileListPaths = (
  3199. );
  3200. inputPaths = (
  3201. "${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-frameworks.sh",
  3202. "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework",
  3203. "${BUILT_PRODUCTS_DIR}/Cache/Cache.framework",
  3204. "${BUILT_PRODUCTS_DIR}/DeviceKit/DeviceKit.framework",
  3205. "${BUILT_PRODUCTS_DIR}/FMDB/FMDB.framework",
  3206. "${BUILT_PRODUCTS_DIR}/FSPagerView/FSPagerView.framework",
  3207. "${BUILT_PRODUCTS_DIR}/FWPopupView/FWPopupView.framework",
  3208. "${BUILT_PRODUCTS_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework",
  3209. "${BUILT_PRODUCTS_DIR}/JXSegmentedView/JXSegmentedView.framework",
  3210. "${BUILT_PRODUCTS_DIR}/KeychainAccess/KeychainAccess.framework",
  3211. "${BUILT_PRODUCTS_DIR}/Kingfisher/Kingfisher.framework",
  3212. "${BUILT_PRODUCTS_DIR}/LYEmptyView/LYEmptyView.framework",
  3213. "${BUILT_PRODUCTS_DIR}/MBProgressHUD/MBProgressHUD.framework",
  3214. "${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework",
  3215. "${BUILT_PRODUCTS_DIR}/Moya/Moya.framework",
  3216. "${BUILT_PRODUCTS_DIR}/ObjectMapper/ObjectMapper.framework",
  3217. "${BUILT_PRODUCTS_DIR}/PPBadgeViewSwift/PPBadgeViewSwift.framework",
  3218. "${BUILT_PRODUCTS_DIR}/Realm/Realm.framework",
  3219. "${BUILT_PRODUCTS_DIR}/RealmSwift/RealmSwift.framework",
  3220. "${BUILT_PRODUCTS_DIR}/Result/Result.framework",
  3221. "${BUILT_PRODUCTS_DIR}/RichEditorView/RichEditorView.framework",
  3222. "${BUILT_PRODUCTS_DIR}/RxCocoa/RxCocoa.framework",
  3223. "${BUILT_PRODUCTS_DIR}/RxSwift/RxSwift.framework",
  3224. "${BUILT_PRODUCTS_DIR}/SnapKit/SnapKit.framework",
  3225. "${BUILT_PRODUCTS_DIR}/SwiftyJSON/SwiftyJSON.framework",
  3226. "${BUILT_PRODUCTS_DIR}/TangramKit/TangramKit.framework",
  3227. );
  3228. name = "[CP] Embed Pods Frameworks";
  3229. outputFileListPaths = (
  3230. );
  3231. outputPaths = (
  3232. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Alamofire.framework",
  3233. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Cache.framework",
  3234. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DeviceKit.framework",
  3235. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FMDB.framework",
  3236. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FSPagerView.framework",
  3237. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FWPopupView.framework",
  3238. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardManagerSwift.framework",
  3239. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JXSegmentedView.framework",
  3240. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/KeychainAccess.framework",
  3241. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Kingfisher.framework",
  3242. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LYEmptyView.framework",
  3243. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MBProgressHUD.framework",
  3244. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework",
  3245. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Moya.framework",
  3246. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ObjectMapper.framework",
  3247. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PPBadgeViewSwift.framework",
  3248. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Realm.framework",
  3249. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RealmSwift.framework",
  3250. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Result.framework",
  3251. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RichEditorView.framework",
  3252. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxCocoa.framework",
  3253. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxSwift.framework",
  3254. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SnapKit.framework",
  3255. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SwiftyJSON.framework",
  3256. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/TangramKit.framework",
  3257. );
  3258. runOnlyForDeploymentPostprocessing = 0;
  3259. shellPath = /bin/sh;
  3260. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-frameworks.sh\"\n";
  3261. showEnvVarsInLog = 0;
  3262. };
  3263. D3A9893FB9EA18608E79E053 /* [CP] Check Pods Manifest.lock */ = {
  3264. isa = PBXShellScriptBuildPhase;
  3265. buildActionMask = 2147483647;
  3266. files = (
  3267. );
  3268. inputFileListPaths = (
  3269. );
  3270. inputPaths = (
  3271. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  3272. "${PODS_ROOT}/Manifest.lock",
  3273. );
  3274. name = "[CP] Check Pods Manifest.lock";
  3275. outputFileListPaths = (
  3276. );
  3277. outputPaths = (
  3278. "$(DERIVED_FILE_DIR)/Pods-RainbowPlanet-checkManifestLockResult.txt",
  3279. );
  3280. runOnlyForDeploymentPostprocessing = 0;
  3281. shellPath = /bin/sh;
  3282. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  3283. showEnvVarsInLog = 0;
  3284. };
  3285. /* End PBXShellScriptBuildPhase section */
  3286. /* Begin PBXSourcesBuildPhase section */
  3287. A77F2C592231FB49001BD3F6 /* Sources */ = {
  3288. isa = PBXSourcesBuildPhase;
  3289. buildActionMask = 2147483647;
  3290. files = (
  3291. A70B2C3322880BB700B2449F /* ProductDetailProductLabelTableViewCell.swift in Sources */,
  3292. BDF45F0D228C00B8004E2682 /* DefaultContactInfoModel.swift in Sources */,
  3293. A72A72BA22321DE000B21995 /* Extension+String.swift in Sources */,
  3294. A77F2CA02231FE45001BD3F6 /* BaseWebViewController.swift in Sources */,
  3295. BD20F1D52283D15500677D8E /* ShoppingCartPayFailureCell.swift in Sources */,
  3296. A72A72C022321DE000B21995 /* Extension+UIView.swift in Sources */,
  3297. BD7AB83A2284288D0030646A /* ShoppingCartPayOrderFooter.swift in Sources */,
  3298. A72A72C522321DE000B21995 /* WKWebViewConfig.swift in Sources */,
  3299. A72A72BB22321DE000B21995 /* Extension+UILabel.swift in Sources */,
  3300. A70B2C372288177300B2449F /* ProductDetailProductLabelIconCollectionViewCell.swift in Sources */,
  3301. A77F2C9E2231FDDC001BD3F6 /* BaseViewController.swift in Sources */,
  3302. A7284A75225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift in Sources */,
  3303. A77F2CC722320627001BD3F6 /* WRNavigationBar.swift in Sources */,
  3304. A7274C5E228EE636000E3A07 /* LBXPermissions.swift in Sources */,
  3305. A7D46092227619CD00A5A54E /* BaiduToCityFactory.swift in Sources */,
  3306. A71AA51C227219EF008FF1A5 /* EditExpressAddressView.swift in Sources */,
  3307. BDAA40FB228E9CC300CF841D /* OrderApplyRefundNoteInfoCell.swift in Sources */,
  3308. A7CC751122715AE3003C4F38 /* MessageDetailesTimeView.swift in Sources */,
  3309. A7BB684F2268DCEC00AB07A2 /* SelfRecommendationViewController.swift in Sources */,
  3310. A7B4E7352281907A0012914A /* CMSModel.swift in Sources */,
  3311. A72A72BE22321DE000B21995 /* Extension+RxTimer.swift in Sources */,
  3312. A7CC74EA22706ACD003C4F38 /* MessageViewController.swift in Sources */,
  3313. BDF47D7E22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift in Sources */,
  3314. A7FF1589228C854900A85748 /* OrderDetailBottomView.swift in Sources */,
  3315. BD1DC6C5228CFD0B00B89C57 /* SwiftMoyaNetWorkServiceOrder.swift in Sources */,
  3316. BD7AB83D228438020030646A /* OrderPayExpressInfoShowCell.swift in Sources */,
  3317. A72A72C422321DE000B21995 /* Extension+CAGradientLayer.swift in Sources */,
  3318. A7778CA72243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift in Sources */,
  3319. A7B4E738228191CC0012914A /* CommondModel.swift in Sources */,
  3320. BD7AB841228438C80030646A /* OrderPaySelfPickAddressCell.swift in Sources */,
  3321. BDF862AC228E5112000DEF84 /* OrderCommentAddImgCollectionCell.swift in Sources */,
  3322. A7CC74D4226FF1AA003C4F38 /* MineView.swift in Sources */,
  3323. A71AA5152272160A008FF1A5 /* ExpressAddressListTableViewCell.swift in Sources */,
  3324. A72A72B722321DE000B21995 /* Extension+NSMutableAttributedString.swift in Sources */,
  3325. A7BB6857226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift in Sources */,
  3326. BDE3045F228554CA001D050F /* ProductCartAmountModel.swift in Sources */,
  3327. A7BB68672269B1DD00AB07A2 /* AddressPOIViewController.swift in Sources */,
  3328. A7284A7322546460000BAEC4 /* SwiftMoyaServicePayApi.swift in Sources */,
  3329. BDE3045D22851E4F001D050F /* ProductCartListModel.swift in Sources */,
  3330. A7A98DFF227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift in Sources */,
  3331. BDDF3B28228EBB72003A7D16 /* ProductRefundReasonModel.swift in Sources */,
  3332. A7CC74DC2270352F003C4F38 /* MineOrderCollectionViewCell.swift in Sources */,
  3333. BDD4FB1222840597006FE833 /* ShoppingCartPayOrderController.swift in Sources */,
  3334. A7284404224DBFBD00F82F30 /* UserModel.swift in Sources */,
  3335. A7CC74D822700359003C4F38 /* MineTableViewHeaderView.swift in Sources */,
  3336. A71D2A602265673A00A55D16 /* RegisterLoginView.swift in Sources */,
  3337. A73D7C682268A032002A4CE3 /* SwiftyStarRatingView.swift in Sources */,
  3338. A71AA5102272156A008FF1A5 /* ExpressAddressListViewController.swift in Sources */,
  3339. BDAA40FF228EA37900CF841D /* OrderApplyRefundPhotoCell.swift in Sources */,
  3340. A7A98E14227ED0E2005306E9 /* CategoryListModel.swift in Sources */,
  3341. A70B2C532288584500B2449F /* ShareView.swift in Sources */,
  3342. A71AF0AE226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift in Sources */,
  3343. A7636AC52268139C00374F9E /* LocationViewController.swift in Sources */,
  3344. A7D46090227617D200A5A54E /* SQLModel.swift in Sources */,
  3345. A72C01222275404A0065E0C3 /* ProvinceCityAreaModel.swift in Sources */,
  3346. A7FF1579228C82CE00A85748 /* OrderDetailViewController.swift in Sources */,
  3347. A7FF159C228D9E3D00A85748 /* OrderRefundDetailModel.swift in Sources */,
  3348. A7C3DD1C226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift in Sources */,
  3349. BDF862A2228E41CC000DEF84 /* OrderLogisticsInfoCell.swift in Sources */,
  3350. A72A7386223396CB00B21995 /* SwiftMoyaNetWorkManager.swift in Sources */,
  3351. A70B2C252286C03800B2449F /* NXLPageControl.swift in Sources */,
  3352. A7A98E12227ECA11005306E9 /* ProductSearchModel.swift in Sources */,
  3353. A71AF0B0226EF185001730FE /* SearchCollectionViewCell.swift in Sources */,
  3354. A7A98E1D227EF1CB005306E9 /* SpecialBannerView.swift in Sources */,
  3355. BDF47D852282C59F00941AB9 /* ShoppingCartListTableViewCell.swift in Sources */,
  3356. A77F2CCA223209F2001BD3F6 /* BaseTabbarViewController.swift in Sources */,
  3357. A70B2C1D2286B52400B2449F /* ProductDetailViewController.swift in Sources */,
  3358. A7CC75332271ABB0003C4F38 /* AddressManagerViewController.swift in Sources */,
  3359. A7FF158C228C911C00A85748 /* OrderRefunddetailsViewController.swift in Sources */,
  3360. A7CC750D227157DA003C4F38 /* MessageDetailesView.swift in Sources */,
  3361. BD7AB83622841A8B0030646A /* ShoppingCartPayOrderItemCell.swift in Sources */,
  3362. A71AA519227219D7008FF1A5 /* EditExpressAddressViewController.swift in Sources */,
  3363. A7FF1568228C6E2300A85748 /* OrderDeliveryModeAndTimeTableViewCell.swift in Sources */,
  3364. A71738A822897E96000AEA6A /* SwiftMoyaNetWorkServiceShop.swift in Sources */,
  3365. BD20F1CD2283C51300677D8E /* ShoppingCartFinishPayController.swift in Sources */,
  3366. A729B5B022671310004AE098 /* MobileLoginView.swift in Sources */,
  3367. A71AA50C2272126A008FF1A5 /* EditAddressFooterView.swift in Sources */,
  3368. A70B2C35228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift in Sources */,
  3369. A70B2C60228870CE00B2449F /* ShopSectionHeaderView.swift in Sources */,
  3370. A7CC7528227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift in Sources */,
  3371. A70B2C292286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift in Sources */,
  3372. A72A726822321DBD00B21995 /* UMManager.swift in Sources */,
  3373. A70B2C042283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift in Sources */,
  3374. A7B4E721228151F40012914A /* ProductFloorTitleView.swift in Sources */,
  3375. A729B5AD2266FF45004AE098 /* BindPhoneNumberView.swift in Sources */,
  3376. A7FF1592228C918100A85748 /* OrderRefunddetailsStatusTableViewCell.swift in Sources */,
  3377. A7CC74E62270628B003C4F38 /* DeliveryMethodTypeModel.swift in Sources */,
  3378. BDAA40FD228E9CD600CF841D /* OrderApplyRefundPhoneCell.swift in Sources */,
  3379. A71AA51F22729F35008FF1A5 /* AuthorizationSwift.swift in Sources */,
  3380. A7A98E3622802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift in Sources */,
  3381. A7824AFD2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift in Sources */,
  3382. BD7AB83F228438290030646A /* OrderPayExpressAddInfoCell.swift in Sources */,
  3383. A7CC74DA22702E41003C4F38 /* MineOrderTableViewCell.swift in Sources */,
  3384. A77F2CB92232010F001BD3F6 /* ShoppingCartViewController.swift in Sources */,
  3385. A72A72B822321DE000B21995 /* Extension+UserDefaults.swift in Sources */,
  3386. A719016B22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift in Sources */,
  3387. A729B5B72267270B004AE098 /* PasswordLoginView.swift in Sources */,
  3388. A7778CB82244E97A00C7C47A /* BindPhoneNumberViewController.swift in Sources */,
  3389. A754150F224CACF9002480B5 /* SwiftSign.swift in Sources */,
  3390. A72A72D322321E2700B21995 /* CacheMacro.swift in Sources */,
  3391. A71AF0BA226F00F8001730FE /* SearchResultView.swift in Sources */,
  3392. A77F2CB52232010F001BD3F6 /* ShoppingMallViewController.swift in Sources */,
  3393. A71AA513227215B5008FF1A5 /* ExpressAddressListView.swift in Sources */,
  3394. A70B2C202286B54500B2449F /* ProductDetailView.swift in Sources */,
  3395. A7B4E723228154750012914A /* ProductFloorBannerView.swift in Sources */,
  3396. A7DC467F22783A47001F3EFC /* EditExpressAddressTableViewCell.swift in Sources */,
  3397. A7A98E4522804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift in Sources */,
  3398. A7824B082271F53A00ABA381 /* EditSetDefaultTableViewCell.swift in Sources */,
  3399. A77F2CC3223203BA001BD3F6 /* AppDelegate+Window.swift in Sources */,
  3400. A7824B062271F25400ABA381 /* EditAddressTableViewCell.swift in Sources */,
  3401. A70B2C4C228845E800B2449F /* ProductDetailParameterTableViewCell.swift in Sources */,
  3402. A7FF156A228C6E3600A85748 /* OrderProductTableViewCell.swift in Sources */,
  3403. A70EBBC022561179000AD74F /* Extension+UITableView.swift in Sources */,
  3404. A72A72B022321DE000B21995 /* CGView.swift in Sources */,
  3405. A7A98E0B227EBD04005306E9 /* CategorySearchView.swift in Sources */,
  3406. A72A73142232475E00B21995 /* AlipayManager.swift in Sources */,
  3407. A7824B042271F10300ABA381 /* EditSelfMentionContactsView.swift in Sources */,
  3408. A7274C5B228EE636000E3A07 /* LBXScanViewController.swift in Sources */,
  3409. A7FF1566228C6DF200A85748 /* OrderShopAndStatusTableViewCell.swift in Sources */,
  3410. A7A98E332280272A005306E9 /* ShoppingMallBannerTableViewCell.swift in Sources */,
  3411. BDF862AA228E43A4000DEF84 /* OrderCommentTableViewCell.swift in Sources */,
  3412. A7B4E754228278320012914A /* ShoppingMallFloorTableViewCell.swift in Sources */,
  3413. BD3474F522857B85000908C5 /* CommonPayHeader.swift in Sources */,
  3414. A71AF0B6226EF99A001730FE /* SearchResultViewController.swift in Sources */,
  3415. A757C9302274839900226355 /* SelfMentionAddressListModel.swift in Sources */,
  3416. A72A72D522321E2700B21995 /* ColorMacro.swift in Sources */,
  3417. A72A7333223256E100B21995 /* PayManager.swift in Sources */,
  3418. A70B2C6722887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift in Sources */,
  3419. BD1DC6CD228D160D00B89C57 /* OrderPurchaseModel.swift in Sources */,
  3420. A775CC00223774A300EBDCF8 /* ShoppingMallView.swift in Sources */,
  3421. A7FF1555228AC27600A85748 /* ProductAllCommentView.swift in Sources */,
  3422. A7CC7526227196A8003C4F38 /* AccountSecurityTableViewCell.swift in Sources */,
  3423. A7CC74F122706FE3003C4F38 /* MessageOneCollectionViewCell.swift in Sources */,
  3424. A72A72D622321E2700B21995 /* ThirdPartyMacro.swift in Sources */,
  3425. BDF47D80228288F900941AB9 /* ShoppingCartAccountView.swift in Sources */,
  3426. A7284401224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift in Sources */,
  3427. A7B4E728228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift in Sources */,
  3428. BDEF7793228575A800ED0AC0 /* CommonPayCell.swift in Sources */,
  3429. A70B2C75228920BA00B2449F /* ProductDetailSkuSectionHeaerCollectionReusableView.swift in Sources */,
  3430. A72843FC224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift in Sources */,
  3431. A7CC750622714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift in Sources */,
  3432. A7C3DD1A226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift in Sources */,
  3433. A7284A7722547333000BAEC4 /* AlipayResultModel.swift in Sources */,
  3434. A72A72B422321DE000B21995 /* Extension+UIImage.swift in Sources */,
  3435. A7BB68552268DE8600AB07A2 /* SelfRecommendationView.swift in Sources */,
  3436. A72A72AF22321DE000B21995 /* AppInfo.swift in Sources */,
  3437. A7D460942276854500A5A54E /* BaiduToCity2Model.swift in Sources */,
  3438. A72A72D422321E2700B21995 /* EnumMacro.swift in Sources */,
  3439. A7FF1598228D092A00A85748 /* OrderListModel.swift in Sources */,
  3440. A7FF157D228C837100A85748 /* OrderDetailStatusTableViewCell.swift in Sources */,
  3441. A7A98E41228046C5005306E9 /* ShoppingMallSepcialTableViewCell.swift in Sources */,
  3442. A70B2C5E22886F4D00B2449F /* ShopViewTableViewCell.swift in Sources */,
  3443. A7CC753A2271B98B003C4F38 /* AddressManagerAddTableViewCell.swift in Sources */,
  3444. A7FF1570228C6EF200A85748 /* OrderDeliveryModeAndButtonTableViewCell.swift in Sources */,
  3445. A71AF0AC226EDE37001730FE /* SearchNavigationbarView.swift in Sources */,
  3446. A70B2C6D2288815E00B2449F /* PickViewOneComponentsView.swift in Sources */,
  3447. BDD4FB1422840954006FE833 /* ShoppingCartOrderPayView.swift in Sources */,
  3448. A70B2C222286BF5900B2449F /* ProductDetailTableViewHeaderView.swift in Sources */,
  3449. A7CC75432271E038003C4F38 /* SelfMentionContactsListViewController.swift in Sources */,
  3450. BDF47D872282C92200941AB9 /* ShoppingCartListTableViewHeader.swift in Sources */,
  3451. A70B2C46228840B100B2449F /* ProductDetailHotSellTableViewCell.swift in Sources */,
  3452. A7778CDF22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift in Sources */,
  3453. A7A98E2D22801642005306E9 /* SwiftMoyaServiceCMSApi.swift in Sources */,
  3454. A70B2C402288312900B2449F /* ProductDetailSectionHeader.swift in Sources */,
  3455. A7A98E3122801B10005306E9 /* ShoppingMallListView.swift in Sources */,
  3456. BD1DC6C6228CFD0B00B89C57 /* SwiftMoyaServiceOrderApi.swift in Sources */,
  3457. A7CC751A22716254003C4F38 /* SetTableViewCell.swift in Sources */,
  3458. BD20F1D32283D0ED00677D8E /* ShoppingCartPaySuccessCell.swift in Sources */,
  3459. A71AA52822732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift in Sources */,
  3460. A775CC0322377C6500EBDCF8 /* EmptyView.swift in Sources */,
  3461. A70B2C732289019200B2449F /* ProductDetailSkuView.swift in Sources */,
  3462. A70B2C4322883B4E00B2449F /* ProductDetailShopTableViewCell.swift in Sources */,
  3463. A70B2C102286A3BC00B2449F /* ProductDetailModel.swift in Sources */,
  3464. A72A72A922321DE000B21995 /* NumberKeyboard.swift in Sources */,
  3465. A79057082276FEB00037F823 /* SelfMentionContactsModel.swift in Sources */,
  3466. A70B2C272286C5D600B2449F /* ProductDetailFSPagerViewCell.swift in Sources */,
  3467. A7FF1585228C847300A85748 /* OrderDetailContactAddressTableViewCell.swift in Sources */,
  3468. A72A72AA22321DE000B21995 /* Log.swift in Sources */,
  3469. A72A72B622321DE000B21995 /* Extension+NSRange.swift in Sources */,
  3470. A75414FD224B5F28002480B5 /* MobileLoginViewController.swift in Sources */,
  3471. A771F07C226D4E1C007999DB /* AddressPOITableViewCell.swift in Sources */,
  3472. A70B842E228F97EC00882BC5 /* ProcuctDetailSelectSkuTableViewCell.swift in Sources */,
  3473. A72A72AE22321DE000B21995 /* CountdownButton.swift in Sources */,
  3474. A71738AD228AB7B2000AEA6A /* ProductCommentListModel.swift in Sources */,
  3475. A7A98E28227FD6C6005306E9 /* ShoppingMallListViewController.swift in Sources */,
  3476. A7B4E71F228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift in Sources */,
  3477. A77F2CB72232010F001BD3F6 /* MineViewController.swift in Sources */,
  3478. A7778CA92244904500C7C47A /* Extension+Gifu.GIFImageView.swift in Sources */,
  3479. A71738AB22898660000AEA6A /* ShopModel.swift in Sources */,
  3480. A7FF1557228AC3E800A85748 /* ProductAllCommentViewController.swift in Sources */,
  3481. A7A98E02227E8900005306E9 /* ProductSearchListModel.swift in Sources */,
  3482. A7A98E17227EED76005306E9 /* SpecialViewController.swift in Sources */,
  3483. A7778CB32244D73400C7C47A /* RegisterLoginViewController.swift in Sources */,
  3484. BD7AB8432284390B0030646A /* OrderPaySelfPickInfoCell.swift in Sources */,
  3485. A7274C5F228EE636000E3A07 /* LBXScanWrapper.swift in Sources */,
  3486. A7CC752F2271A1F2003C4F38 /* SetPasswordView.swift in Sources */,
  3487. A7A98E09227EB8DD005306E9 /* CategoryView.swift in Sources */,
  3488. A7CC75362271AC14003C4F38 /* AddressManagerView.swift in Sources */,
  3489. A7146349228EFCE20066099B /* ORSKUDataFilter.m in Sources */,
  3490. BDF8629C228E4125000DEF84 /* OrderCommentController.swift in Sources */,
  3491. A7B4E75A228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift in Sources */,
  3492. A71901752275F71F00104A50 /* BaiduToCityModel.swift in Sources */,
  3493. A7BB685922696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift in Sources */,
  3494. A7636AC822682BAF00374F9E /* LocationView.swift in Sources */,
  3495. A738D205225AF90D00EEE860 /* WeChatpayOrderModel.swift in Sources */,
  3496. A7274C5C228EE636000E3A07 /* LBXScanLineAnimation.swift in Sources */,
  3497. A7CC7524227190FB003C4F38 /* AccountSecurityView.swift in Sources */,
  3498. BD1DC6CB228D157000B89C57 /* OrderCreateBackModel.swift in Sources */,
  3499. A72A72BD22321DE000B21995 /* Extension+UIColor.swift in Sources */,
  3500. A7FF1596228CFA8100A85748 /* OrderListViewController.swift in Sources */,
  3501. A7A98E05227EB891005306E9 /* CategoryViewController.swift in Sources */,
  3502. A77F2CC822320627001BD3F6 /* WRCustomNavigationBar.swift in Sources */,
  3503. A7FF1564228C696B00A85748 /* OrderListView.swift in Sources */,
  3504. A7CC74EF22706CCA003C4F38 /* MessageView.swift in Sources */,
  3505. A70B2C072284305400B2449F /* ProductModel.swift in Sources */,
  3506. A7CC74E0227042A4003C4F38 /* MineServiceTableViewCell.swift in Sources */,
  3507. A72A72BC22321DE000B21995 /* Extension+UIAlertController.swift in Sources */,
  3508. A7BB68662269B1DD00AB07A2 /* AddressPOIView.swift in Sources */,
  3509. BDF862A7228E42FA000DEF84 /* OrderApplyRefundController.swift in Sources */,
  3510. A72A72C322321DE000B21995 /* Extension+Date.swift in Sources */,
  3511. A70B2C5522885AF500B2449F /* ShareCollectionViewCell.swift in Sources */,
  3512. A7A98E3A2280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift in Sources */,
  3513. A7778CAB2244B12500C7C47A /* CountDownManager.swift in Sources */,
  3514. A775CBFE2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift in Sources */,
  3515. A71AA5212272E527008FF1A5 /* Extension+UINavigationController.swift in Sources */,
  3516. A7CC751822716202003C4F38 /* SetView.swift in Sources */,
  3517. A7FF1594228C919A00A85748 /* OrderRefunddetailsTipsTableViewCell.swift in Sources */,
  3518. A7B4E73A228192D20012914A /* CMSTemplateModel.swift in Sources */,
  3519. A72A72C622321DE000B21995 /* WebView.swift in Sources */,
  3520. A72A72D122321E2700B21995 /* HTMLURLMacro.swift in Sources */,
  3521. BDF862A1228E41CC000DEF84 /* OrderLogisticsController.swift in Sources */,
  3522. A72A73162232481600B21995 /* WeChatpayManager.swift in Sources */,
  3523. A7CC750F22715AAC003C4F38 /* MessageDetailesTableViewCell.swift in Sources */,
  3524. A7B4E72D228176060012914A /* ProductMallBarChartCollectionViewCell.swift in Sources */,
  3525. A70B2C4E22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift in Sources */,
  3526. A7CC7516227161D5003C4F38 /* SetViewController.swift in Sources */,
  3527. A7778CBA2244F14B00C7C47A /* Extension+UIViewController.swift in Sources */,
  3528. A7CC752C2271A1AE003C4F38 /* SetPasswordViewController.swift in Sources */,
  3529. A7CC74E222704429003C4F38 /* MineServiceCollectionViewCell.swift in Sources */,
  3530. A738D202225AD6AD00EEE860 /* Extension+UICollectionView.swift in Sources */,
  3531. A7CC74D6226FF421003C4F38 /* MineNavigationBarView.swift in Sources */,
  3532. A71AF0BC226F099B001730FE /* ProductHBigTableViewCell.swift in Sources */,
  3533. A7A98E3C228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift in Sources */,
  3534. A71AF0AA226EDDF5001730FE /* SearchView.swift in Sources */,
  3535. A7FF1583228C843700A85748 /* OrderDetailExpressSelfMentionTableViewCell.swift in Sources */,
  3536. A7A98E0E227EC0C6005306E9 /* CategoryTableViewCell.swift in Sources */,
  3537. A7FF1572228C7D4600A85748 /* OrderButtonTableViewCell.swift in Sources */,
  3538. A7B4E72F2281773F0012914A /* ProductFloorCenterTitleView.swift in Sources */,
  3539. A7284A542252FB5C000BAEC4 /* PaginationModel.swift in Sources */,
  3540. A72A72D022321E2700B21995 /* FontMacro.swift in Sources */,
  3541. BD1DC6C9228D005000B89C57 /* OrderCreateParameterModel.swift in Sources */,
  3542. A71AA52622732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift in Sources */,
  3543. A77F2C982231FD25001BD3F6 /* BaseNavigationViewController.swift in Sources */,
  3544. A7274C5D228EE636000E3A07 /* LBXScanViewStyle.swift in Sources */,
  3545. A7A98E1B227EEE49005306E9 /* SpecialView.swift in Sources */,
  3546. BDF47D7A228271F600941AB9 /* ShoppingCartView.swift in Sources */,
  3547. A7824AFB2271EA2600ABA381 /* SelfMentionContactsListView.swift in Sources */,
  3548. A72A72AB22321DE000B21995 /* SwiftProgressHUD.swift in Sources */,
  3549. BDF862B1228E6690000DEF84 /* OrderApplyRefundProductCell.swift in Sources */,
  3550. A7CC751C22716426003C4F38 /* SetLogoutTableViewCell.swift in Sources */,
  3551. A7CC74F3227070D2003C4F38 /* MessageTwoCollectionViewCell.swift in Sources */,
  3552. A7778CD522460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift in Sources */,
  3553. A70B2C5C22886B0000B2449F /* ShopView.swift in Sources */,
  3554. A7CC750A22715755003C4F38 /* MessageDetailesViewController.swift in Sources */,
  3555. BDAA40F7228E947500CF841D /* OrderApplyRefundAccountCell.swift in Sources */,
  3556. A71AF0B8226EF9EC001730FE /* SearchResultNavigationbarView.swift in Sources */,
  3557. A70B2C5A22886ADF00B2449F /* ShopViewController.swift in Sources */,
  3558. BDF862AE228E57E1000DEF84 /* OrderCommentDefaultCollectionCell.swift in Sources */,
  3559. A70B2C3E228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift in Sources */,
  3560. A79057022276C9770037F823 /* SetPasswordModel.swift in Sources */,
  3561. A7274C5A228EE636000E3A07 /* LBXScanView.swift in Sources */,
  3562. A7FF1560228C693D00A85748 /* OrderViewController.swift in Sources */,
  3563. A729B5B42267254B004AE098 /* PasswordLoginViewController.swift in Sources */,
  3564. A7B4E7582282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift in Sources */,
  3565. A7D4608E227616F800A5A54E /* SQLiteManager.swift in Sources */,
  3566. A70B2C6B2288815300B2449F /* PickHeaderView.swift in Sources */,
  3567. A7274C50228EE5F0000E3A07 /* PhotoAndCameraManager.swift in Sources */,
  3568. A77F2C612231FB49001BD3F6 /* AppDelegate.swift in Sources */,
  3569. A729B5A82266F2E0004AE098 /* AlertSheetView.swift in Sources */,
  3570. A7CC75382271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift in Sources */,
  3571. A738D66F225D9BD900EEE860 /* UMLoginModel.swift in Sources */,
  3572. A7FF156C228C6E5E00A85748 /* OrderTotalAmountTableViewCell.swift in Sources */,
  3573. A71738A622897892000AEA6A /* SwiftMoyaServiceShopApi.swift in Sources */,
  3574. A72A726722321DBD00B21995 /* LocationModel.swift in Sources */,
  3575. A7A98E10227EC531005306E9 /* ProductHSmallTableViewCell.swift in Sources */,
  3576. A7A98DFD227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift in Sources */,
  3577. BD7AB8452284398A0030646A /* OrderPaySelfPickAddInfoCell.swift in Sources */,
  3578. A72A72D222321E2700B21995 /* Common.swift in Sources */,
  3579. A70B2C64228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift in Sources */,
  3580. BDEF7791228571DC00ED0AC0 /* CommonPayView.swift in Sources */,
  3581. A71AF0A6226EDDC8001730FE /* SearchViewController.swift in Sources */,
  3582. BD20F1CF2283CE2300677D8E /* ShoppingCartFinishPayView.swift in Sources */,
  3583. A7A98E4322804851005306E9 /* ShoppingMallSepcialFlowLayout.swift in Sources */,
  3584. A79057062276EA3D0037F823 /* OpenCityListModel.swift in Sources */,
  3585. BD7AB838228420310030646A /* ShoppingCartPayOrderHeader.swift in Sources */,
  3586. A7824B002271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift in Sources */,
  3587. A7CC751F227190C5003C4F38 /* AccountSecurityViewController.swift in Sources */,
  3588. A7284440224DFACD00F82F30 /* InfoModel.swift in Sources */,
  3589. A72A72B522321DE000B21995 /* Extension+UITextView.swift in Sources */,
  3590. BDF47D822282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift in Sources */,
  3591. A714634E228F020A0066099B /* ORSKUDataFilterSwift.swift in Sources */,
  3592. BD20F1CB2283C12000677D8E /* ShoppingCartListNoneItemCell.swift in Sources */,
  3593. A7B4E756228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift in Sources */,
  3594. A757C92E22744ACE00226355 /* AddressManagerListModel.swift in Sources */,
  3595. BDAA40F9228E9ADA00CF841D /* OrderApplyRefundReasonCell.swift in Sources */,
  3596. A7274C59228EE636000E3A07 /* LBXScanNetAnimation.swift in Sources */,
  3597. A7541502224C5ECB002480B5 /* BaiduMapManager.swift in Sources */,
  3598. A757C9342274882E00226355 /* UIScrollView+MJRefreshEX.m in Sources */,
  3599. A77F2C9C2231FDCF001BD3F6 /* BaseView.swift in Sources */,
  3600. A7A98E2F228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift in Sources */,
  3601. A7284A522252EE9A000BAEC4 /* RootModel.swift in Sources */,
  3602. A72A7388223396CB00B21995 /* ApiMacro.swift in Sources */,
  3603. A72A72B922321DE000B21995 /* Extension+Array.swift in Sources */,
  3604. A70B2C492288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift in Sources */,
  3605. A71901692275464000104A50 /* ProvinceCityAreaView.swift in Sources */,
  3606. A7CC753E2271C4C2003C4F38 /* AddressManagerExpressTableViewCell.swift in Sources */,
  3607. A7778CDD2246121500C7C47A /* PhoneCountryAreaListMdoel.swift in Sources */,
  3608. A72A733522325A4B00B21995 /* AppDelegate+HandleOpen.swift in Sources */,
  3609. A7FF156E228C6EAE00A85748 /* OrderDeliveryModeTableViewCell.swift in Sources */,
  3610. A72A72AC22321DE000B21995 /* Regex.swift in Sources */,
  3611. A7778CC52246035700C7C47A /* PhoneCountryAreaViewController.swift in Sources */,
  3612. A72A72CF22321E2700B21995 /* NotificationCenterMacro.swift in Sources */,
  3613. A72A72BF22321DE000B21995 /* Extension+UIButton.swift in Sources */,
  3614. A71901702275EF9900104A50 /* NXLRealm.swift in Sources */,
  3615. BDD4FB1722840DD3006FE833 /* OrderPayAcountView.swift in Sources */,
  3616. A7CC753C2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift in Sources */,
  3617. A7FF1587228C851100A85748 /* OrderDetailInfoTableViewCell.swift in Sources */,
  3618. );
  3619. runOnlyForDeploymentPostprocessing = 0;
  3620. };
  3621. A77F2C6D2231FB4A001BD3F6 /* Sources */ = {
  3622. isa = PBXSourcesBuildPhase;
  3623. buildActionMask = 2147483647;
  3624. files = (
  3625. A77F2C762231FB4A001BD3F6 /* RainbowPlanetTests.swift in Sources */,
  3626. );
  3627. runOnlyForDeploymentPostprocessing = 0;
  3628. };
  3629. A77F2C782231FB4A001BD3F6 /* Sources */ = {
  3630. isa = PBXSourcesBuildPhase;
  3631. buildActionMask = 2147483647;
  3632. files = (
  3633. A77F2C812231FB4A001BD3F6 /* RainbowPlanetUITests.swift in Sources */,
  3634. );
  3635. runOnlyForDeploymentPostprocessing = 0;
  3636. };
  3637. /* End PBXSourcesBuildPhase section */
  3638. /* Begin PBXTargetDependency section */
  3639. A77F2C732231FB4A001BD3F6 /* PBXTargetDependency */ = {
  3640. isa = PBXTargetDependency;
  3641. target = A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */;
  3642. targetProxy = A77F2C722231FB4A001BD3F6 /* PBXContainerItemProxy */;
  3643. };
  3644. A77F2C7E2231FB4A001BD3F6 /* PBXTargetDependency */ = {
  3645. isa = PBXTargetDependency;
  3646. target = A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */;
  3647. targetProxy = A77F2C7D2231FB4A001BD3F6 /* PBXContainerItemProxy */;
  3648. };
  3649. /* End PBXTargetDependency section */
  3650. /* Begin XCBuildConfiguration section */
  3651. A77F2C832231FB4A001BD3F6 /* Debug */ = {
  3652. isa = XCBuildConfiguration;
  3653. buildSettings = {
  3654. ALWAYS_SEARCH_USER_PATHS = NO;
  3655. CLANG_ANALYZER_NONNULL = YES;
  3656. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3657. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3658. CLANG_CXX_LIBRARY = "libc++";
  3659. CLANG_ENABLE_MODULES = YES;
  3660. CLANG_ENABLE_OBJC_ARC = YES;
  3661. CLANG_ENABLE_OBJC_WEAK = YES;
  3662. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3663. CLANG_WARN_BOOL_CONVERSION = YES;
  3664. CLANG_WARN_COMMA = YES;
  3665. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3666. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3667. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3668. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3669. CLANG_WARN_EMPTY_BODY = YES;
  3670. CLANG_WARN_ENUM_CONVERSION = YES;
  3671. CLANG_WARN_INFINITE_RECURSION = YES;
  3672. CLANG_WARN_INT_CONVERSION = YES;
  3673. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3674. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3675. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3676. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3677. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3678. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3679. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3680. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3681. CLANG_WARN_UNREACHABLE_CODE = YES;
  3682. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3683. CODE_SIGN_IDENTITY = "iPhone Developer";
  3684. COPY_PHASE_STRIP = NO;
  3685. DEBUG_INFORMATION_FORMAT = dwarf;
  3686. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3687. ENABLE_TESTABILITY = YES;
  3688. GCC_C_LANGUAGE_STANDARD = gnu11;
  3689. GCC_DYNAMIC_NO_PIC = NO;
  3690. GCC_NO_COMMON_BLOCKS = YES;
  3691. GCC_OPTIMIZATION_LEVEL = 0;
  3692. GCC_PREPROCESSOR_DEFINITIONS = (
  3693. "DEBUG=1",
  3694. "$(inherited)",
  3695. );
  3696. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3697. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3698. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3699. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3700. GCC_WARN_UNUSED_FUNCTION = YES;
  3701. GCC_WARN_UNUSED_VARIABLE = YES;
  3702. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3703. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3704. MTL_FAST_MATH = YES;
  3705. ONLY_ACTIVE_ARCH = YES;
  3706. SDKROOT = iphoneos;
  3707. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  3708. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3709. };
  3710. name = Debug;
  3711. };
  3712. A77F2C842231FB4A001BD3F6 /* Release */ = {
  3713. isa = XCBuildConfiguration;
  3714. buildSettings = {
  3715. ALWAYS_SEARCH_USER_PATHS = NO;
  3716. CLANG_ANALYZER_NONNULL = YES;
  3717. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3718. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3719. CLANG_CXX_LIBRARY = "libc++";
  3720. CLANG_ENABLE_MODULES = YES;
  3721. CLANG_ENABLE_OBJC_ARC = YES;
  3722. CLANG_ENABLE_OBJC_WEAK = YES;
  3723. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3724. CLANG_WARN_BOOL_CONVERSION = YES;
  3725. CLANG_WARN_COMMA = YES;
  3726. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3727. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3728. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3729. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3730. CLANG_WARN_EMPTY_BODY = YES;
  3731. CLANG_WARN_ENUM_CONVERSION = YES;
  3732. CLANG_WARN_INFINITE_RECURSION = YES;
  3733. CLANG_WARN_INT_CONVERSION = YES;
  3734. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3735. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3736. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3737. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3738. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3739. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3740. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3741. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3742. CLANG_WARN_UNREACHABLE_CODE = YES;
  3743. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3744. CODE_SIGN_IDENTITY = "iPhone Developer";
  3745. COPY_PHASE_STRIP = NO;
  3746. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3747. ENABLE_NS_ASSERTIONS = NO;
  3748. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3749. GCC_C_LANGUAGE_STANDARD = gnu11;
  3750. GCC_NO_COMMON_BLOCKS = YES;
  3751. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3752. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3753. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3754. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3755. GCC_WARN_UNUSED_FUNCTION = YES;
  3756. GCC_WARN_UNUSED_VARIABLE = YES;
  3757. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3758. MTL_ENABLE_DEBUG_INFO = NO;
  3759. MTL_FAST_MATH = YES;
  3760. SDKROOT = iphoneos;
  3761. SWIFT_COMPILATION_MODE = wholemodule;
  3762. SWIFT_OPTIMIZATION_LEVEL = "-O";
  3763. VALIDATE_PRODUCT = YES;
  3764. };
  3765. name = Release;
  3766. };
  3767. A77F2C862231FB4A001BD3F6 /* Debug */ = {
  3768. isa = XCBuildConfiguration;
  3769. baseConfigurationReference = BD9052C044FD3AE4E62D3929 /* Pods-RainbowPlanet.debug.xcconfig */;
  3770. buildSettings = {
  3771. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3772. CLANG_ENABLE_MODULES = YES;
  3773. CODE_SIGN_ENTITLEMENTS = RainbowPlanet/RainbowPlanet.entitlements;
  3774. CODE_SIGN_STYLE = Automatic;
  3775. DEFINES_MODULE = YES;
  3776. DEVELOPMENT_TEAM = B4UG6NNMLL;
  3777. ENABLE_BITCODE = YES;
  3778. FRAMEWORK_SEARCH_PATHS = (
  3779. "$(inherited)",
  3780. "$(PROJECT_DIR)/RainbowPlanet/Lib/AlipaySDK",
  3781. );
  3782. HEADER_SEARCH_PATHS = (
  3783. "$(inherited)",
  3784. "\"${PODS_ROOT}/Headers/Public\"",
  3785. "\"${PODS_ROOT}/Headers/Public/UMCShare\"",
  3786. "\"$(SRCROOT)/RainbowPlanet/Lib/AlipaySDK\"",
  3787. );
  3788. INFOPLIST_FILE = "$(SRCROOT)/RainbowPlanet/Supporting Files/Info.plist";
  3789. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3790. LD_RUNPATH_SEARCH_PATHS = (
  3791. "$(inherited)",
  3792. "@executable_path/Frameworks",
  3793. );
  3794. LIBRARY_SEARCH_PATHS = (
  3795. "$(inherited)",
  3796. "$(PROJECT_DIR)/RainbowPlanet/Lib/WeChatSDK",
  3797. );
  3798. OTHER_LDFLAGS = (
  3799. "$(inherited)",
  3800. "-ObjC",
  3801. "-l\"SocialQQ\"",
  3802. "-l\"SocialSina\"",
  3803. "-l\"SocialWeChat\"",
  3804. "-l\"c++\"",
  3805. "-l\"sqlite3\"",
  3806. "-l\"sqlite3.0\"",
  3807. "-l\"z\"",
  3808. "-framework",
  3809. "\"AdSupport\"",
  3810. "-framework",
  3811. "\"Alamofire\"",
  3812. "-framework",
  3813. "\"BMKLocationKit\"",
  3814. "-framework",
  3815. "\"CoreGraphics\"",
  3816. "-framework",
  3817. "\"CoreLocation\"",
  3818. "-framework",
  3819. "\"CoreTelephony\"",
  3820. "-framework",
  3821. "\"DeviceKit\"",
  3822. "-framework",
  3823. "\"Foundation\"",
  3824. "-framework",
  3825. "\"IQKeyboardManagerSwift\"",
  3826. "-framework",
  3827. "\"Kingfisher\"",
  3828. "-framework",
  3829. "\"MBProgressHUD\"",
  3830. "-framework",
  3831. "\"MJRefresh\"",
  3832. "-framework",
  3833. "\"Moya\"",
  3834. "-framework",
  3835. "\"ObjectMapper\"",
  3836. "-framework",
  3837. "\"Photos\"",
  3838. "-framework",
  3839. "\"QuartzCore\"",
  3840. "-framework",
  3841. "\"Result\"",
  3842. "-framework",
  3843. "\"RxCocoa\"",
  3844. "-framework",
  3845. "\"RxSwift\"",
  3846. "-framework",
  3847. "\"Security\"",
  3848. "-framework",
  3849. "\"SecurityEnvSDK\"",
  3850. "-framework",
  3851. "\"SnapKit\"",
  3852. "-framework",
  3853. "\"SwiftyJSON\"",
  3854. "-framework",
  3855. "\"SystemConfiguration\"",
  3856. "-framework",
  3857. "\"UIKit\"",
  3858. "-framework",
  3859. "\"UMAnalytics\"",
  3860. "-framework",
  3861. "\"UMCommon\"",
  3862. "-framework",
  3863. "\"UMCommonLog\"",
  3864. "-framework",
  3865. "\"UMPush\"",
  3866. "-framework",
  3867. "\"UMShare\"",
  3868. "-framework",
  3869. "\"UShareUI\"",
  3870. "-framework",
  3871. "\"UTDID\"",
  3872. "-framework",
  3873. "\"UserNotifications\"",
  3874. );
  3875. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.rainbowplanet;
  3876. PRODUCT_MODULE_NAME = RainbowPlanet;
  3877. PRODUCT_NAME = "$(TARGET_NAME)";
  3878. SWIFT_OBJC_BRIDGING_HEADER = "RainbowPlanet/Macro/RainbowPlanet-Bridging-Header.h";
  3879. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3880. SWIFT_VERSION = 5.0;
  3881. TARGETED_DEVICE_FAMILY = 1;
  3882. };
  3883. name = Debug;
  3884. };
  3885. A77F2C872231FB4A001BD3F6 /* Release */ = {
  3886. isa = XCBuildConfiguration;
  3887. baseConfigurationReference = 57C497E128081597F165C771 /* Pods-RainbowPlanet.release.xcconfig */;
  3888. buildSettings = {
  3889. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3890. CLANG_ENABLE_MODULES = YES;
  3891. CODE_SIGN_ENTITLEMENTS = RainbowPlanet/RainbowPlanet.entitlements;
  3892. CODE_SIGN_STYLE = Automatic;
  3893. DEFINES_MODULE = YES;
  3894. DEVELOPMENT_TEAM = B4UG6NNMLL;
  3895. ENABLE_BITCODE = YES;
  3896. FRAMEWORK_SEARCH_PATHS = (
  3897. "$(inherited)",
  3898. "$(PROJECT_DIR)/RainbowPlanet/Lib/AlipaySDK",
  3899. );
  3900. HEADER_SEARCH_PATHS = (
  3901. "$(inherited)",
  3902. "\"${PODS_ROOT}/Headers/Public\"",
  3903. "\"${PODS_ROOT}/Headers/Public/UMCShare\"",
  3904. "\"$(SRCROOT)/RainbowPlanet/Lib/AlipaySDK\"",
  3905. );
  3906. INFOPLIST_FILE = "$(SRCROOT)/RainbowPlanet/Supporting Files/Info.plist";
  3907. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3908. LD_RUNPATH_SEARCH_PATHS = (
  3909. "$(inherited)",
  3910. "@executable_path/Frameworks",
  3911. );
  3912. LIBRARY_SEARCH_PATHS = (
  3913. "$(inherited)",
  3914. "$(PROJECT_DIR)/RainbowPlanet/Lib/WeChatSDK",
  3915. );
  3916. OTHER_LDFLAGS = (
  3917. "$(inherited)",
  3918. "-ObjC",
  3919. "-l\"SocialQQ\"",
  3920. "-l\"SocialSina\"",
  3921. "-l\"SocialWeChat\"",
  3922. "-l\"c++\"",
  3923. "-l\"sqlite3\"",
  3924. "-l\"sqlite3.0\"",
  3925. "-l\"z\"",
  3926. "-framework",
  3927. "\"AdSupport\"",
  3928. "-framework",
  3929. "\"Alamofire\"",
  3930. "-framework",
  3931. "\"BMKLocationKit\"",
  3932. "-framework",
  3933. "\"CoreGraphics\"",
  3934. "-framework",
  3935. "\"CoreLocation\"",
  3936. "-framework",
  3937. "\"CoreTelephony\"",
  3938. "-framework",
  3939. "\"DeviceKit\"",
  3940. "-framework",
  3941. "\"Foundation\"",
  3942. "-framework",
  3943. "\"IQKeyboardManagerSwift\"",
  3944. "-framework",
  3945. "\"Kingfisher\"",
  3946. "-framework",
  3947. "\"MBProgressHUD\"",
  3948. "-framework",
  3949. "\"MJRefresh\"",
  3950. "-framework",
  3951. "\"Moya\"",
  3952. "-framework",
  3953. "\"ObjectMapper\"",
  3954. "-framework",
  3955. "\"Photos\"",
  3956. "-framework",
  3957. "\"QuartzCore\"",
  3958. "-framework",
  3959. "\"Result\"",
  3960. "-framework",
  3961. "\"RxCocoa\"",
  3962. "-framework",
  3963. "\"RxSwift\"",
  3964. "-framework",
  3965. "\"Security\"",
  3966. "-framework",
  3967. "\"SecurityEnvSDK\"",
  3968. "-framework",
  3969. "\"SnapKit\"",
  3970. "-framework",
  3971. "\"SwiftyJSON\"",
  3972. "-framework",
  3973. "\"SystemConfiguration\"",
  3974. "-framework",
  3975. "\"UIKit\"",
  3976. "-framework",
  3977. "\"UMAnalytics\"",
  3978. "-framework",
  3979. "\"UMCommon\"",
  3980. "-framework",
  3981. "\"UMCommonLog\"",
  3982. "-framework",
  3983. "\"UMPush\"",
  3984. "-framework",
  3985. "\"UMShare\"",
  3986. "-framework",
  3987. "\"UShareUI\"",
  3988. "-framework",
  3989. "\"UTDID\"",
  3990. "-framework",
  3991. "\"UserNotifications\"",
  3992. );
  3993. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.rainbowplanet;
  3994. PRODUCT_MODULE_NAME = RainbowPlanet;
  3995. PRODUCT_NAME = "$(TARGET_NAME)";
  3996. SWIFT_OBJC_BRIDGING_HEADER = "RainbowPlanet/Macro/RainbowPlanet-Bridging-Header.h";
  3997. SWIFT_VERSION = 5.0;
  3998. TARGETED_DEVICE_FAMILY = 1;
  3999. };
  4000. name = Release;
  4001. };
  4002. A77F2C892231FB4A001BD3F6 /* Debug */ = {
  4003. isa = XCBuildConfiguration;
  4004. buildSettings = {
  4005. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4006. BUNDLE_LOADER = "$(TEST_HOST)";
  4007. CODE_SIGN_STYLE = Automatic;
  4008. DEVELOPMENT_TEAM = B4UG6NNMLL;
  4009. INFOPLIST_FILE = RainbowPlanetTests/Info.plist;
  4010. LD_RUNPATH_SEARCH_PATHS = (
  4011. "$(inherited)",
  4012. "@executable_path/Frameworks",
  4013. "@loader_path/Frameworks",
  4014. );
  4015. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetTests;
  4016. PRODUCT_NAME = "$(TARGET_NAME)";
  4017. SWIFT_VERSION = 5.0;
  4018. TARGETED_DEVICE_FAMILY = "1,2";
  4019. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RainbowPlanet.app/RainbowPlanet";
  4020. };
  4021. name = Debug;
  4022. };
  4023. A77F2C8A2231FB4A001BD3F6 /* Release */ = {
  4024. isa = XCBuildConfiguration;
  4025. buildSettings = {
  4026. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4027. BUNDLE_LOADER = "$(TEST_HOST)";
  4028. CODE_SIGN_STYLE = Automatic;
  4029. DEVELOPMENT_TEAM = B4UG6NNMLL;
  4030. INFOPLIST_FILE = RainbowPlanetTests/Info.plist;
  4031. LD_RUNPATH_SEARCH_PATHS = (
  4032. "$(inherited)",
  4033. "@executable_path/Frameworks",
  4034. "@loader_path/Frameworks",
  4035. );
  4036. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetTests;
  4037. PRODUCT_NAME = "$(TARGET_NAME)";
  4038. SWIFT_VERSION = 5.0;
  4039. TARGETED_DEVICE_FAMILY = "1,2";
  4040. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RainbowPlanet.app/RainbowPlanet";
  4041. };
  4042. name = Release;
  4043. };
  4044. A77F2C8C2231FB4A001BD3F6 /* Debug */ = {
  4045. isa = XCBuildConfiguration;
  4046. buildSettings = {
  4047. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4048. CODE_SIGN_IDENTITY = "iPhone Developer";
  4049. CODE_SIGN_STYLE = Automatic;
  4050. DEVELOPMENT_TEAM = B4UG6NNMLL;
  4051. INFOPLIST_FILE = RainbowPlanetUITests/Info.plist;
  4052. LD_RUNPATH_SEARCH_PATHS = (
  4053. "$(inherited)",
  4054. "@executable_path/Frameworks",
  4055. "@loader_path/Frameworks",
  4056. );
  4057. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetUITests;
  4058. PRODUCT_NAME = "$(TARGET_NAME)";
  4059. PROVISIONING_PROFILE_SPECIFIER = "";
  4060. SWIFT_VERSION = 5.0;
  4061. TARGETED_DEVICE_FAMILY = "1,2";
  4062. TEST_TARGET_NAME = RainbowPlanet;
  4063. };
  4064. name = Debug;
  4065. };
  4066. A77F2C8D2231FB4A001BD3F6 /* Release */ = {
  4067. isa = XCBuildConfiguration;
  4068. buildSettings = {
  4069. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4070. CODE_SIGN_IDENTITY = "iPhone Developer";
  4071. CODE_SIGN_STYLE = Automatic;
  4072. DEVELOPMENT_TEAM = B4UG6NNMLL;
  4073. INFOPLIST_FILE = RainbowPlanetUITests/Info.plist;
  4074. LD_RUNPATH_SEARCH_PATHS = (
  4075. "$(inherited)",
  4076. "@executable_path/Frameworks",
  4077. "@loader_path/Frameworks",
  4078. );
  4079. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetUITests;
  4080. PRODUCT_NAME = "$(TARGET_NAME)";
  4081. PROVISIONING_PROFILE_SPECIFIER = "";
  4082. SWIFT_VERSION = 5.0;
  4083. TARGETED_DEVICE_FAMILY = "1,2";
  4084. TEST_TARGET_NAME = RainbowPlanet;
  4085. };
  4086. name = Release;
  4087. };
  4088. /* End XCBuildConfiguration section */
  4089. /* Begin XCConfigurationList section */
  4090. A77F2C582231FB49001BD3F6 /* Build configuration list for PBXProject "RainbowPlanet" */ = {
  4091. isa = XCConfigurationList;
  4092. buildConfigurations = (
  4093. A77F2C832231FB4A001BD3F6 /* Debug */,
  4094. A77F2C842231FB4A001BD3F6 /* Release */,
  4095. );
  4096. defaultConfigurationIsVisible = 0;
  4097. defaultConfigurationName = Release;
  4098. };
  4099. A77F2C852231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanet" */ = {
  4100. isa = XCConfigurationList;
  4101. buildConfigurations = (
  4102. A77F2C862231FB4A001BD3F6 /* Debug */,
  4103. A77F2C872231FB4A001BD3F6 /* Release */,
  4104. );
  4105. defaultConfigurationIsVisible = 0;
  4106. defaultConfigurationName = Release;
  4107. };
  4108. A77F2C882231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetTests" */ = {
  4109. isa = XCConfigurationList;
  4110. buildConfigurations = (
  4111. A77F2C892231FB4A001BD3F6 /* Debug */,
  4112. A77F2C8A2231FB4A001BD3F6 /* Release */,
  4113. );
  4114. defaultConfigurationIsVisible = 0;
  4115. defaultConfigurationName = Release;
  4116. };
  4117. A77F2C8B2231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetUITests" */ = {
  4118. isa = XCConfigurationList;
  4119. buildConfigurations = (
  4120. A77F2C8C2231FB4A001BD3F6 /* Debug */,
  4121. A77F2C8D2231FB4A001BD3F6 /* Release */,
  4122. );
  4123. defaultConfigurationIsVisible = 0;
  4124. defaultConfigurationName = Release;
  4125. };
  4126. /* End XCConfigurationList section */
  4127. };
  4128. rootObject = A77F2C552231FB49001BD3F6 /* Project object */;
  4129. }