project.pbxproj 269 KB

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