project.pbxproj 270 KB

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