project.pbxproj 292 KB

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