project.pbxproj 455 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 55;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2723B5A227F1578300E0B90B /* CreateFansGroupViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B59B27F1577E00E0B90B /* CreateFansGroupViewController.m */; };
  10. 2723B5A327F1578300E0B90B /* KSChatListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B59C27F1577F00E0B90B /* KSChatListViewController.m */; };
  11. 2723B5A427F1578300E0B90B /* KSChatConversationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B59E27F1578000E0B90B /* KSChatConversationViewController.m */; };
  12. 2723B5A527F1578300E0B90B /* ChatAddressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A027F1578100E0B90B /* ChatAddressViewController.m */; };
  13. 2723B5BA27F157B100E0B90B /* ChatAddressHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5A627F157A200E0B90B /* ChatAddressHeaderView.xib */; };
  14. 2723B5BB27F157B100E0B90B /* ChatAddressBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A727F157A300E0B90B /* ChatAddressBodyView.m */; };
  15. 2723B5BC27F157B100E0B90B /* GroupCreateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A827F157A300E0B90B /* GroupCreateView.m */; };
  16. 2723B5BD27F157B100E0B90B /* KSChatListSearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A927F157A400E0B90B /* KSChatListSearchView.m */; };
  17. 2723B5BE27F157B100E0B90B /* ChatNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5AA27F157A500E0B90B /* ChatNavView.m */; };
  18. 2723B5BF27F157B100E0B90B /* GroupCreateView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5AB27F157A500E0B90B /* GroupCreateView.xib */; };
  19. 2723B5C027F157B100E0B90B /* ChatAddressHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5AE27F157A900E0B90B /* ChatAddressHeaderView.m */; };
  20. 2723B5C127F157B100E0B90B /* ContractListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5AF27F157AA00E0B90B /* ContractListCell.m */; };
  21. 2723B5C227F157B100E0B90B /* GroupListViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B127F157AD00E0B90B /* GroupListViewCell.xib */; };
  22. 2723B5C327F157B100E0B90B /* ChatNavView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B227F157AD00E0B90B /* ChatNavView.xib */; };
  23. 2723B5C427F157B100E0B90B /* KSChatListSearchView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B427F157AE00E0B90B /* KSChatListSearchView.xib */; };
  24. 2723B5C527F157B100E0B90B /* ContractListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B727F157B000E0B90B /* ContractListCell.xib */; };
  25. 2723B5C627F157B100E0B90B /* GroupListViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5B927F157B100E0B90B /* GroupListViewCell.m */; };
  26. 2723B5CD27F157BE00E0B90B /* GroupListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5C827F157B900E0B90B /* GroupListModel.m */; };
  27. 2723B5CE27F157BE00E0B90B /* KSRCloudMediaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5CA27F157BB00E0B90B /* KSRCloudMediaManager.m */; };
  28. 2723B5CF27F157BE00E0B90B /* GroupMemberModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5CC27F157BE00E0B90B /* GroupMemberModel.m */; };
  29. 2723B61827F157D500E0B90B /* KSSearchHistoryMessageController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5D327F157D300E0B90B /* KSSearchHistoryMessageController.m */; };
  30. 2723B61927F157D500E0B90B /* KSSearchResultModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5D627F157D300E0B90B /* KSSearchResultModel.m */; };
  31. 2723B61A27F157D500E0B90B /* KSSearchResultViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5D827F157D300E0B90B /* KSSearchResultViewCell.m */; };
  32. 2723B61B27F157D500E0B90B /* KSSearchRCLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5DA27F157D300E0B90B /* KSSearchRCLabel.m */; };
  33. 2723B61C27F157D500E0B90B /* KSRCSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5DB27F157D300E0B90B /* KSRCSearchBar.m */; };
  34. 2723B61D27F157D500E0B90B /* GroupNoticeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E027F157D400E0B90B /* GroupNoticeViewController.m */; };
  35. 2723B61E27F157D500E0B90B /* GroupNoticeEditController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E227F157D400E0B90B /* GroupNoticeEditController.m */; };
  36. 2723B61F27F157D500E0B90B /* GroupNoticeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E627F157D400E0B90B /* GroupNoticeModel.m */; };
  37. 2723B62027F157D500E0B90B /* GroupNoticeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E827F157D400E0B90B /* GroupNoticeCell.m */; };
  38. 2723B62127F157D500E0B90B /* NoticeEditBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5EA27F157D400E0B90B /* NoticeEditBodyView.xib */; };
  39. 2723B62227F157D500E0B90B /* LFPopupMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5ED27F157D400E0B90B /* LFPopupMenu.m */; };
  40. 2723B62327F157D500E0B90B /* LFPopupMenuDefaultConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5EE27F157D400E0B90B /* LFPopupMenuDefaultConfig.m */; };
  41. 2723B62427F157D500E0B90B /* NoticeEditBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F127F157D400E0B90B /* NoticeEditBodyView.m */; };
  42. 2723B62527F157D500E0B90B /* GroupNoticeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5F227F157D400E0B90B /* GroupNoticeCell.xib */; };
  43. 2723B62627F157D500E0B90B /* GroupApplyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F527F157D500E0B90B /* GroupApplyViewController.m */; };
  44. 2723B62727F157D500E0B90B /* GroupMemberViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F627F157D500E0B90B /* GroupMemberViewController.m */; };
  45. 2723B62827F157D500E0B90B /* KSSelectConversationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F727F157D500E0B90B /* KSSelectConversationViewController.m */; };
  46. 2723B62927F157D500E0B90B /* KSChatComplainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F927F157D500E0B90B /* KSChatComplainController.m */; };
  47. 2723B62A27F157D500E0B90B /* GroupSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5FC27F157D500E0B90B /* GroupSettingViewController.m */; };
  48. 2723B62B27F157D500E0B90B /* ApplyMemberModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60027F157D500E0B90B /* ApplyMemberModel.m */; };
  49. 2723B62C27F157D500E0B90B /* ApplyBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60427F157D500E0B90B /* ApplyBottomView.m */; };
  50. 2723B62D27F157D500E0B90B /* GroupApplyMemberCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60527F157D500E0B90B /* GroupApplyMemberCell.xib */; };
  51. 2723B62E27F157D500E0B90B /* GroupApplyChooseAllCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60727F157D500E0B90B /* GroupApplyChooseAllCell.xib */; };
  52. 2723B62F27F157D500E0B90B /* ChatComplainBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60827F157D500E0B90B /* ChatComplainBodyView.xib */; };
  53. 2723B63027F157D500E0B90B /* GroupApplyChooseAllCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60927F157D500E0B90B /* GroupApplyChooseAllCell.m */; };
  54. 2723B63127F157D500E0B90B /* GroupSettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60B27F157D500E0B90B /* GroupSettingBodyView.m */; };
  55. 2723B63227F157D500E0B90B /* GroupSettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60C27F157D500E0B90B /* GroupSettingBodyView.xib */; };
  56. 2723B63327F157D500E0B90B /* ChatComplainBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60F27F157D500E0B90B /* ChatComplainBodyView.m */; };
  57. 2723B63427F157D500E0B90B /* GroupApplyMemberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B61027F157D500E0B90B /* GroupApplyMemberCell.m */; };
  58. 2723B63527F157D500E0B90B /* GroupApplyChooseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B61227F157D500E0B90B /* GroupApplyChooseCell.xib */; };
  59. 2723B63627F157D500E0B90B /* GroupMemberListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B61327F157D500E0B90B /* GroupMemberListCell.m */; };
  60. 2723B63727F157D500E0B90B /* ApplyBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B61427F157D500E0B90B /* ApplyBottomView.xib */; };
  61. 2723B63827F157D500E0B90B /* GroupApplyChooseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B61627F157D500E0B90B /* GroupApplyChooseCell.m */; };
  62. 2723B63927F157D500E0B90B /* GroupMemberListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B61727F157D500E0B90B /* GroupMemberListCell.xib */; };
  63. 2723B63C27F159BA00E0B90B /* KSBaseTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B63A27F159BA00E0B90B /* KSBaseTableViewController.m */; };
  64. 2723B64427F15B5900E0B90B /* SCIndexViewConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B63E27F15B5800E0B90B /* SCIndexViewConfiguration.m */; };
  65. 2723B64527F15B5900E0B90B /* SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64027F15B5800E0B90B /* SCIndexView.m */; };
  66. 2723B64627F15B5900E0B90B /* UITableView+SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64227F15B5800E0B90B /* UITableView+SCIndexView.m */; };
  67. 2723B64927F15BDC00E0B90B /* KSJXBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64827F15BDC00E0B90B /* KSJXBodyView.m */; };
  68. 2723B66127F15CFB00E0B90B /* SettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B64A27F15CF800E0B90B /* SettingBodyView.xib */; };
  69. 2723B66227F15CFC00E0B90B /* FeedbackBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B64C27F15CF800E0B90B /* FeedbackBodyView.xib */; };
  70. 2723B66327F15CFC00E0B90B /* ModifyNameBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B64D27F15CF800E0B90B /* ModifyNameBodyView.xib */; };
  71. 2723B66427F15CFC00E0B90B /* VeriCheckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64E27F15CF800E0B90B /* VeriCheckView.m */; };
  72. 2723B66527F15CFC00E0B90B /* ModifyBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B65127F15CF900E0B90B /* ModifyBodyView.xib */; };
  73. 2723B66627F15CFC00E0B90B /* AboutUsBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65327F15CF900E0B90B /* AboutUsBodyView.m */; };
  74. 2723B66727F15CFC00E0B90B /* ModifyBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65427F15CF900E0B90B /* ModifyBodyView.m */; };
  75. 2723B66827F15CFC00E0B90B /* FeedbackBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65527F15CF900E0B90B /* FeedbackBodyView.m */; };
  76. 2723B66927F15CFC00E0B90B /* PhoneChangeBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65727F15CFA00E0B90B /* PhoneChangeBodyView.m */; };
  77. 2723B66A27F15CFC00E0B90B /* PhoneChangeBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B65827F15CFA00E0B90B /* PhoneChangeBodyView.xib */; };
  78. 2723B66B27F15CFC00E0B90B /* PhoneCheckBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65A27F15CFA00E0B90B /* PhoneCheckBodyView.m */; };
  79. 2723B66C27F15CFC00E0B90B /* SettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65C27F15CFB00E0B90B /* SettingBodyView.m */; };
  80. 2723B66D27F15CFC00E0B90B /* ModifyNameBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65D27F15CFB00E0B90B /* ModifyNameBodyView.m */; };
  81. 2723B66E27F15CFC00E0B90B /* PhoneCheckBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B65E27F15CFB00E0B90B /* PhoneCheckBodyView.xib */; };
  82. 2723B66F27F15CFC00E0B90B /* AboutUsBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B66027F15CFB00E0B90B /* AboutUsBodyView.xib */; };
  83. 2723B67E27F15D3D00E0B90B /* ModifyPhoneCheckController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67127F15D3300E0B90B /* ModifyPhoneCheckController.m */; };
  84. 2723B67F27F15D3D00E0B90B /* AboutUsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67227F15D3300E0B90B /* AboutUsViewController.m */; };
  85. 2723B68027F15D3D00E0B90B /* FeedbackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67327F15D3400E0B90B /* FeedbackViewController.m */; };
  86. 2723B68127F15D3D00E0B90B /* ModifyNameViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67527F15D3700E0B90B /* ModifyNameViewController.m */; };
  87. 2723B68227F15D3D00E0B90B /* ModifyPhoneChangeController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67827F15D3A00E0B90B /* ModifyPhoneChangeController.m */; };
  88. 2723B68327F15D3D00E0B90B /* ModifyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67927F15D3B00E0B90B /* ModifyViewController.m */; };
  89. 275E8AAA27E18F8800DD3F6E /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AA927E18F8800DD3F6E /* AppDelegate.m */; };
  90. 275E8AB027E18F8800DD3F6E /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AAF27E18F8800DD3F6E /* ViewController.m */; };
  91. 275E8AB327E18F8800DD3F6E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 275E8AB127E18F8800DD3F6E /* Main.storyboard */; };
  92. 275E8AB527E18F8B00DD3F6E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 275E8AB427E18F8B00DD3F6E /* Assets.xcassets */; };
  93. 275E8AB827E18F8B00DD3F6E /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 275E8AB627E18F8B00DD3F6E /* LaunchScreen.storyboard */; };
  94. 275E8ABB27E18F8B00DD3F6E /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8ABA27E18F8B00DD3F6E /* main.m */; };
  95. 275E8AC527E18F8C00DD3F6E /* KulexiuForStudentTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AC427E18F8C00DD3F6E /* KulexiuForStudentTests.m */; };
  96. 275E8ACF27E18F8C00DD3F6E /* KulexiuForStudentUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8ACE27E18F8C00DD3F6E /* KulexiuForStudentUITests.m */; };
  97. 275E8AD127E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AD027E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m */; };
  98. 275FA1AD27E734C600CFEA2E /* KSImageAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA1AB27E734C600CFEA2E /* KSImageAlert.xib */; };
  99. 275FA1AE27E734C600CFEA2E /* KSImageAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1AC27E734C600CFEA2E /* KSImageAlert.m */; };
  100. 275FA1DA27E7351900CFEA2E /* KSNetworkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1AF27E7351400CFEA2E /* KSNetworkingManager.m */; };
  101. 275FA1DB27E7351900CFEA2E /* UINavigationController+KSNavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B027E7351400CFEA2E /* UINavigationController+KSNavigationBar.m */; };
  102. 275FA1DC27E7351900CFEA2E /* KSAQRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B127E7351400CFEA2E /* KSAQRecordManager.m */; };
  103. 275FA1DD27E7351900CFEA2E /* KSBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B727E7351500CFEA2E /* KSBaseModel.m */; };
  104. 275FA1DE27E7351900CFEA2E /* KSLocalWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B927E7351500CFEA2E /* KSLocalWebViewController.m */; };
  105. 275FA1DF27E7351900CFEA2E /* RCConnectionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BA27E7351500CFEA2E /* RCConnectionManager.m */; };
  106. 275FA1E027E7351900CFEA2E /* RecordCheckManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BB27E7351500CFEA2E /* RecordCheckManager.m */; };
  107. 275FA1E127E7351900CFEA2E /* KSTabBarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BD27E7351500CFEA2E /* KSTabBarViewController.m */; };
  108. 275FA1E227E7351900CFEA2E /* KSWebBackButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BF27E7351600CFEA2E /* KSWebBackButton.m */; };
  109. 275FA1E327E7351900CFEA2E /* WeakWebViewScriptMessageDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C127E7351600CFEA2E /* WeakWebViewScriptMessageDelegate.m */; };
  110. 275FA1E427E7351900CFEA2E /* KSWebNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C227E7351600CFEA2E /* KSWebNavView.m */; };
  111. 275FA1E527E7351900CFEA2E /* KSAccompanyWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C427E7351600CFEA2E /* KSAccompanyWebViewController.m */; };
  112. 275FA1E627E7351900CFEA2E /* KSUpdateAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C627E7351700CFEA2E /* KSUpdateAlert.m */; };
  113. 275FA1E727E7351900CFEA2E /* KSWebSocketManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C727E7351700CFEA2E /* KSWebSocketManager.m */; };
  114. 275FA1E827E7351900CFEA2E /* CustomNavViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C827E7351700CFEA2E /* CustomNavViewController.m */; };
  115. 275FA1E927E7351900CFEA2E /* KSNetTypeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C927E7351700CFEA2E /* KSNetTypeManager.m */; };
  116. 275FA1EA27E7351900CFEA2E /* KSRCIMDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1CD27E7351700CFEA2E /* KSRCIMDataSource.m */; };
  117. 275FA1EB27E7351900CFEA2E /* KSBaseWKWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1CE27E7351700CFEA2E /* KSBaseWKWebViewController.m */; };
  118. 275FA1EC27E7351900CFEA2E /* BaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1CF27E7351800CFEA2E /* BaseViewController.m */; };
  119. 275FA1ED27E7351900CFEA2E /* KSUpdateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1D027E7351800CFEA2E /* KSUpdateManager.m */; };
  120. 275FA1EE27E7351900CFEA2E /* KSBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1D627E7351800CFEA2E /* KSBaseViewController.m */; };
  121. 275FA1EF27E7351900CFEA2E /* KSUpdateAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA1D927E7351900CFEA2E /* KSUpdateAlert.xib */; };
  122. 275FA22B27E7356B00CFEA2E /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1F327E7356A00CFEA2E /* HomeViewController.m */; };
  123. 275FA22C27E7356B00CFEA2E /* CourseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1FA27E7356B00CFEA2E /* CourseViewController.m */; };
  124. 275FA22D27E7356B00CFEA2E /* ChatViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1FF27E7356B00CFEA2E /* ChatViewController.m */; };
  125. 275FA22E27E7356B00CFEA2E /* MineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA20627E7356B00CFEA2E /* MineViewController.m */; };
  126. 275FA22F27E7356B00CFEA2E /* ShopMallViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA20B27E7356B00CFEA2E /* ShopMallViewController.m */; };
  127. 275FA23027E7356B00CFEA2E /* PasswordLoginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21127E7356B00CFEA2E /* PasswordLoginController.m */; };
  128. 275FA23127E7356B00CFEA2E /* FirstSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21227E7356B00CFEA2E /* FirstSettingViewController.m */; };
  129. 275FA23227E7356B00CFEA2E /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21327E7356B00CFEA2E /* LoginViewController.m */; };
  130. 275FA23327E7356B00CFEA2E /* VefiCodeLoginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21427E7356B00CFEA2E /* VefiCodeLoginController.m */; };
  131. 275FA23427E7356B00CFEA2E /* UserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21A27E7356B00CFEA2E /* UserInfo.m */; };
  132. 275FA23527E7356B00CFEA2E /* UserInfoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21C27E7356B00CFEA2E /* UserInfoManager.m */; };
  133. 275FA23627E7356B00CFEA2E /* LoginBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22027E7356B00CFEA2E /* LoginBodyView.m */; };
  134. 275FA23727E7356B00CFEA2E /* LoginBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22127E7356B00CFEA2E /* LoginBodyView.xib */; };
  135. 275FA23827E7356B00CFEA2E /* FirstSettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22227E7356B00CFEA2E /* FirstSettingBodyView.xib */; };
  136. 275FA23927E7356B00CFEA2E /* FirstSettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22527E7356B00CFEA2E /* FirstSettingBodyView.m */; };
  137. 275FA23A27E7356B00CFEA2E /* VefiBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22727E7356B00CFEA2E /* VefiBodyView.xib */; };
  138. 275FA23B27E7356B00CFEA2E /* PasswordBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22827E7356B00CFEA2E /* PasswordBodyView.m */; };
  139. 275FA23C27E7356B00CFEA2E /* VefiBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22927E7356B00CFEA2E /* VefiBodyView.m */; };
  140. 275FA23D27E7356B00CFEA2E /* PasswordBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22A27E7356B00CFEA2E /* PasswordBodyView.xib */; };
  141. 275FA24327E73DF600CFEA2E /* InstrumentDescView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA24227E73DF600CFEA2E /* InstrumentDescView.m */; };
  142. 275FA24527E73E0100CFEA2E /* InstrumentDescView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA24427E73E0000CFEA2E /* InstrumentDescView.xib */; };
  143. 275FA24827E7428200CFEA2E /* InstrumentChooseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA24727E7428200CFEA2E /* InstrumentChooseView.m */; };
  144. 275FA24A27E7428D00CFEA2E /* InstrumentChooseView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA24927E7428D00CFEA2E /* InstrumentChooseView.xib */; };
  145. 2779351227E324A50010E277 /* KSNetworkAccessibleManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336527E3249C0010E277 /* KSNetworkAccessibleManager.m */; };
  146. 2779351327E324A50010E277 /* NSDictionary+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336927E3249C0010E277 /* NSDictionary+KSSafe.m */; };
  147. 2779351427E324A50010E277 /* NSMutableDictionary+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336B27E3249C0010E277 /* NSMutableDictionary+KSSafe.m */; };
  148. 2779351527E324A60010E277 /* NSArray+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336D27E3249C0010E277 /* NSArray+KSSafe.m */; };
  149. 2779351627E324A60010E277 /* NSMutableArray+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336E27E3249C0010E277 /* NSMutableArray+KSSafe.m */; };
  150. 2779351727E324A60010E277 /* NSObject+KSSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337027E3249C0010E277 /* NSObject+KSSwizzling.m */; };
  151. 2779351827E324A60010E277 /* NSObject+KSImpChangeTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337127E3249C0010E277 /* NSObject+KSImpChangeTool.m */; };
  152. 2779351927E324A60010E277 /* NSMutableString+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337427E3249C0010E277 /* NSMutableString+KSSafe.m */; };
  153. 2779351A27E324A60010E277 /* NSObject+AssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337727E3249C0010E277 /* NSObject+AssociatedObject.m */; };
  154. 2779351B27E324A60010E277 /* UIControl+ButtonAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337927E3249C0010E277 /* UIControl+ButtonAction.m */; };
  155. 2779351C27E324A60010E277 /* UIDevice+zhDeviceType.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337A27E3249D0010E277 /* UIDevice+zhDeviceType.m */; };
  156. 2779351D27E324A60010E277 /* NSString+zh_SafeAccess.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337B27E3249D0010E277 /* NSString+zh_SafeAccess.m */; };
  157. 2779351E27E324A60010E277 /* UIViewController+zhStatusBarStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337D27E3249D0010E277 /* UIViewController+zhStatusBarStyle.m */; };
  158. 2779351F27E324A60010E277 /* UITextView+ZWPlaceHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337E27E3249D0010E277 /* UITextView+ZWPlaceHolder.m */; };
  159. 2779352027E324A60010E277 /* CALayer+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338027E3249D0010E277 /* CALayer+Color.m */; };
  160. 2779352127E324A60010E277 /* NSMutableAttributedString+CZHExtention.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338227E3249D0010E277 /* NSMutableAttributedString+CZHExtention.m */; };
  161. 2779352227E324A60010E277 /* UITextView+ZWLimitCounter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338427E3249D0010E277 /* UITextView+ZWLimitCounter.m */; };
  162. 2779352327E324A60010E277 /* UILabel+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338527E3249D0010E277 /* UILabel+Extension.m */; };
  163. 2779352427E324A60010E277 /* KSUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338727E3249D0010E277 /* KSUtilities.m */; };
  164. 2779352527E324A60010E277 /* pinyin.c in Sources */ = {isa = PBXBuildFile; fileRef = 2779338A27E3249D0010E277 /* pinyin.c */; };
  165. 2779352627E324A60010E277 /* UIAlertController+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338E27E3249D0010E277 /* UIAlertController+Extend.m */; };
  166. 2779352727E324A60010E277 /* NSArray+zh_SafeAccess.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339127E3249D0010E277 /* NSArray+zh_SafeAccess.m */; };
  167. 2779352827E324A60010E277 /* UIColor+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339227E3249D0010E277 /* UIColor+Extend.m */; };
  168. 2779352927E324A60010E277 /* zhPopupController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339327E3249D0010E277 /* zhPopupController.m */; };
  169. 2779352A27E324A60010E277 /* UIView+Dealloc.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339427E3249D0010E277 /* UIView+Dealloc.m */; };
  170. 2779352B27E324A60010E277 /* NSObject+Parse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339527E3249D0010E277 /* NSObject+Parse.m */; };
  171. 2779352C27E324A60010E277 /* UIView+AddConstraints.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339627E3249D0010E277 /* UIView+AddConstraints.m */; };
  172. 2779352D27E324A60010E277 /* NSString+CZHSizeExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339827E3249D0010E277 /* NSString+CZHSizeExtension.m */; };
  173. 2779352E27E324A60010E277 /* NSDictionary+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339A27E3249D0010E277 /* NSDictionary+Extension.m */; };
  174. 2779352F27E324A60010E277 /* UIView+Hints.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339F27E3249D0010E277 /* UIView+Hints.m */; };
  175. 2779353027E324A60010E277 /* NSDate+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A327E3249D0010E277 /* NSDate+Extension.m */; };
  176. 2779353127E324A60010E277 /* NSString+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A527E3249D0010E277 /* NSString+Extension.m */; };
  177. 2779353227E324A60010E277 /* NSDate+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A627E3249D0010E277 /* NSDate+Transform.m */; };
  178. 2779353327E324A60010E277 /* UIScreen+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A927E3249D0010E277 /* UIScreen+Extend.m */; };
  179. 2779353427E324A60010E277 /* UIImageView+CornerRadius.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AB27E3249D0010E277 /* UIImageView+CornerRadius.m */; };
  180. 2779353527E324A60010E277 /* NSObject+ReadDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AC27E3249E0010E277 /* NSObject+ReadDocument.m */; };
  181. 2779353627E324A60010E277 /* CALayer+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AD27E3249E0010E277 /* CALayer+Layout.m */; };
  182. 2779353727E324A60010E277 /* UIImage+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AE27E3249E0010E277 /* UIImage+Color.m */; };
  183. 2779353827E324A60010E277 /* UIView+KSExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AF27E3249E0010E277 /* UIView+KSExtension.m */; };
  184. 2779353927E324A60010E277 /* UIView+XIBView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933B727E3249E0010E277 /* UIView+XIBView.m */; };
  185. 2779353A27E324A60010E277 /* UILabel+QWTopLeftLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933B827E3249E0010E277 /* UILabel+QWTopLeftLabel.m */; };
  186. 2779353B27E324A60010E277 /* UrlDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933B927E3249E0010E277 /* UrlDecode.m */; };
  187. 2779353C27E324A60010E277 /* UIButton+Property.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BA27E3249E0010E277 /* UIButton+Property.m */; };
  188. 2779353D27E324A60010E277 /* UIScrollView+KSTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BB27E3249E0010E277 /* UIScrollView+KSTouch.m */; };
  189. 2779353E27E324A60010E277 /* UIDevice+TFDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BC27E3249E0010E277 /* UIDevice+TFDevice.m */; };
  190. 2779353F27E324A60010E277 /* UIView+KSLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BE27E3249E0010E277 /* UIView+KSLayer.m */; };
  191. 2779354027E324A60010E277 /* UIImage+Property.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BF27E3249E0010E277 /* UIImage+Property.m */; };
  192. 2779354127E324A60010E277 /* UIView+ShowProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C127E3249E0010E277 /* UIView+ShowProgress.m */; };
  193. 2779354227E324A60010E277 /* UIImage+ResizeImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C227E3249E0010E277 /* UIImage+ResizeImage.m */; };
  194. 2779354327E324A60010E277 /* UIButton+HasChooseImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C427E3249E0010E277 /* UIButton+HasChooseImage.m */; };
  195. 2779354427E324A60010E277 /* NSObject+AutoProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C527E3249E0010E277 /* NSObject+AutoProperty.m */; };
  196. 2779354527E324A60010E277 /* UIImage+UIImageScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C627E3249E0010E277 /* UIImage+UIImageScale.m */; };
  197. 2779354627E324A60010E277 /* UIView+Animation.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C827E3249E0010E277 /* UIView+Animation.m */; };
  198. 2779354727E324A60010E277 /* UIButton+EnlargeEdge.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933D127E3249E0010E277 /* UIButton+EnlargeEdge.m */; };
  199. 2779354827E324A60010E277 /* NSObject+ReadDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933D527E3249E0010E277 /* NSObject+ReadDocument.m */; };
  200. 2779354927E324A60010E277 /* MBProgressHUD+KSShow.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933D727E3249E0010E277 /* MBProgressHUD+KSShow.m */; };
  201. 2779354A27E324A60010E277 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933DA27E3249E0010E277 /* UIImage+Resize.m */; };
  202. 2779354B27E324A60010E277 /* KSVideoEditor.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933DD27E3249E0010E277 /* KSVideoEditor.m */; };
  203. 2779354C27E324A70010E277 /* KSGifRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933DF27E3249E0010E277 /* KSGifRefreshHeader.m */; };
  204. 2779354D27E324A70010E277 /* KSGifRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933E027E3249E0010E277 /* KSGifRefreshFooter.m */; };
  205. 2779354E27E324A70010E277 /* KSAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933E427E3249E0010E277 /* KSAudioSessionManager.m */; };
  206. 2779354F27E324A70010E277 /* VoLRUManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933E927E3249F0010E277 /* VoLRUManager.m */; };
  207. 2779355027E324A70010E277 /* VoDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933EB27E3249F0010E277 /* VoDiskCache.m */; };
  208. 2779355127E324A70010E277 /* VoCacheManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933EC27E3249F0010E277 /* VoCacheManager.m */; };
  209. 2779355227E324A70010E277 /* VoMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933EE27E3249F0010E277 /* VoMemoryCache.m */; };
  210. 2779355327E324A70010E277 /* VoNetworking+RequestManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F127E3249F0010E277 /* VoNetworking+RequestManager.m */; };
  211. 2779355427E324A70010E277 /* VoNetWorking.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F227E3249F0010E277 /* VoNetWorking.m */; };
  212. 2779355527E324A70010E277 /* DiskFreeSpaceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F527E3249F0010E277 /* DiskFreeSpaceManager.m */; };
  213. 2779355627E324A70010E277 /* KSPremissionAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F827E3249F0010E277 /* KSPremissionAlert.m */; };
  214. 2779355727E324A70010E277 /* KSPremissionAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 277933F927E3249F0010E277 /* KSPremissionAlert.xib */; };
  215. 2779355827E324A70010E277 /* UIImage+Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933FC27E3249F0010E277 /* UIImage+Addtions.m */; };
  216. 2779355927E324A70010E277 /* GRCreateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933FD27E3249F0010E277 /* GRCreateManager.m */; };
  217. 2779355A27E324A70010E277 /* QCCountdownButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340127E3249F0010E277 /* QCCountdownButton.m */; };
  218. 2779355B27E324A70010E277 /* KSStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340427E3249F0010E277 /* KSStatusView.m */; };
  219. 2779355C27E324A70010E277 /* KSChoosePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340727E3249F0010E277 /* KSChoosePicker.m */; };
  220. 2779355D27E324A70010E277 /* KSHoldButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340B27E3249F0010E277 /* KSHoldButton.m */; };
  221. 2779355E27E324A70010E277 /* KSAudioRecordFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340D27E3249F0010E277 /* KSAudioRecordFileManager.m */; };
  222. 2779355F27E324A70010E277 /* UIView+ValueAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340E27E3249F0010E277 /* UIView+ValueAdd.m */; };
  223. 2779356027E324A70010E277 /* KSRecordStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340F27E3249F0010E277 /* KSRecordStatusView.m */; };
  224. 2779356127E324A70010E277 /* KSAudioRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341027E3249F0010E277 /* KSAudioRecordManager.m */; };
  225. 2779356227E324A70010E277 /* KSRecordPowerAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341327E3249F0010E277 /* KSRecordPowerAnimationView.m */; };
  226. 2779356327E324A70010E277 /* HomeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341527E3249F0010E277 /* HomeButton.m */; };
  227. 2779356427E324A70010E277 /* KSFullDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341727E3249F0010E277 /* KSFullDatePicker.m */; };
  228. 2779356527E324A70010E277 /* KSMediaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341927E3249F0010E277 /* KSMediaManager.m */; };
  229. 2779356627E324A70010E277 /* ShopMessBtn.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341A27E3249F0010E277 /* ShopMessBtn.m */; };
  230. 2779356727E324A70010E277 /* UIColor+Hex.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341B27E324A00010E277 /* UIColor+Hex.m */; };
  231. 2779356827E324A70010E277 /* shopview.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341C27E324A00010E277 /* shopview.m */; };
  232. 2779356927E324A70010E277 /* YKMultiLevelTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341E27E324A00010E277 /* YKMultiLevelTableView.m */; };
  233. 2779356A27E324A70010E277 /* YKNodeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341F27E324A00010E277 /* YKNodeModel.m */; };
  234. 2779356B27E324A70010E277 /* pickBut.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342227E324A00010E277 /* pickBut.m */; };
  235. 2779356C27E324A70010E277 /* MBProgressHUD+NJ.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342627E324A00010E277 /* MBProgressHUD+NJ.m */; };
  236. 2779356D27E324A70010E277 /* StoreShopCaterview.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342827E324A00010E277 /* StoreShopCaterview.m */; };
  237. 2779356E27E324A70010E277 /* UITextField_Toolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342A27E324A00010E277 /* UITextField_Toolbar.m */; };
  238. 2779356F27E324A70010E277 /* SkipTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342B27E324A00010E277 /* SkipTextField.m */; };
  239. 2779357027E324A70010E277 /* UITextView_Toolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342E27E324A00010E277 /* UITextView_Toolbar.m */; };
  240. 2779357127E324A70010E277 /* SkipTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343127E324A00010E277 /* SkipTextView.m */; };
  241. 2779357227E324A70010E277 /* SearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343427E324A00010E277 /* SearchView.m */; };
  242. 2779357327E324A70010E277 /* prodectButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343A27E324A00010E277 /* prodectButton.m */; };
  243. 2779357427E324A70010E277 /* StoreButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343B27E324A00010E277 /* StoreButton.m */; };
  244. 2779357527E324A70010E277 /* LifeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343C27E324A00010E277 /* LifeButton.m */; };
  245. 2779357627E324A70010E277 /* ShoppCatView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343D27E324A00010E277 /* ShoppCatView.m */; };
  246. 2779357727E324A70010E277 /* GRScanManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343E27E324A00010E277 /* GRScanManager.m */; };
  247. 2779357827E324A70010E277 /* NSString+phone.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344427E324A00010E277 /* NSString+phone.m */; };
  248. 2779357927E324A70010E277 /* KSImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344627E324A00010E277 /* KSImageButton.m */; };
  249. 2779357A27E324A70010E277 /* PIckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344927E324A00010E277 /* PIckView.m */; };
  250. 2779357B27E324A70010E277 /* ShopButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344B27E324A00010E277 /* ShopButton.m */; };
  251. 2779357C27E324A70010E277 /* NSString+MD5.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344C27E324A00010E277 /* NSString+MD5.m */; };
  252. 2779357D27E324A80010E277 /* KSMessageInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344D27E324A00010E277 /* KSMessageInputView.m */; };
  253. 2779357E27E324A80010E277 /* KSInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345027E324A00010E277 /* KSInputView.m */; };
  254. 2779357F27E324A80010E277 /* KeyChainTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345127E324A00010E277 /* KeyChainTools.m */; };
  255. 2779358027E324A80010E277 /* sortButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345227E324A00010E277 /* sortButton.m */; };
  256. 2779358127E324A80010E277 /* StateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345327E324A00010E277 /* StateView.m */; };
  257. 2779358227E324A80010E277 /* NSDate+KSBaseDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345427E324A00010E277 /* NSDate+KSBaseDatePicker.m */; };
  258. 2779358327E324A80010E277 /* LLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345727E324A10010E277 /* LLPhotoBrowser.m */; };
  259. 2779358427E324A80010E277 /* LLImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345A27E324A10010E277 /* LLImageCache.m */; };
  260. 2779358527E324A80010E277 /* LLFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345B27E324A10010E277 /* LLFileManager.m */; };
  261. 2779358627E324A80010E277 /* LLPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345E27E324A10010E277 /* LLPhoto.m */; };
  262. 2779358727E324A80010E277 /* LLCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345F27E324A10010E277 /* LLCollectionViewCell.m */; };
  263. 2779358827E324A80010E277 /* NSObject+Archiving.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779346627E324A10010E277 /* NSObject+Archiving.m */; };
  264. 2779358927E324A80010E277 /* CoinModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779346727E324A10010E277 /* CoinModel.m */; };
  265. 2779358A27E324A80010E277 /* ArchiveTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779346827E324A10010E277 /* ArchiveTools.m */; };
  266. 2779358B27E324A80010E277 /* KLTNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347127E324A10010E277 /* KLTNavigationController.m */; };
  267. 2779358C27E324A80010E277 /* AnimationContoller.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347327E324A10010E277 /* AnimationContoller.m */; };
  268. 2779358D27E324A80010E277 /* DZNSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347527E324A10010E277 /* DZNSegmentedControl.m */; };
  269. 2779358E27E324A80010E277 /* WMPlayerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347927E324A10010E277 /* WMPlayerModel.m */; };
  270. 2779358F27E324A80010E277 /* WMPlayer.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2779347B27E324A10010E277 /* WMPlayer.bundle */; };
  271. 2779359027E324A80010E277 /* WMLightView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347E27E324A10010E277 /* WMLightView.m */; };
  272. 2779359127E324A80010E277 /* FastForwardView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347F27E324A10010E277 /* FastForwardView.m */; };
  273. 2779359227E324A80010E277 /* WMPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348027E324A10010E277 /* WMPlayer.m */; };
  274. 2779359327E324A80010E277 /* TZImageCropManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348427E324A10010E277 /* TZImageCropManager.m */; };
  275. 2779359427E324A80010E277 /* TZAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348627E324A10010E277 /* TZAssetCell.m */; };
  276. 2779359527E324A80010E277 /* TZVideoEditedPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348727E324A10010E277 /* TZVideoEditedPreviewController.m */; };
  277. 2779359627E324A80010E277 /* TZVideoCropController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348827E324A10010E277 /* TZVideoCropController.m */; };
  278. 2779359727E324A80010E277 /* TZVideoPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348927E324A10010E277 /* TZVideoPlayerController.m */; };
  279. 2779359827E324A80010E277 /* TZAssetModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348A27E324A10010E277 /* TZAssetModel.m */; };
  280. 2779359927E324A80010E277 /* NSBundle+TZImagePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348B27E324A10010E277 /* NSBundle+TZImagePicker.m */; };
  281. 2779359A27E324A80010E277 /* TZPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348F27E324A10010E277 /* TZPhotoPreviewController.m */; };
  282. 2779359B27E324A80010E277 /* TZImagePickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2779349027E324A10010E277 /* TZImagePickerController.bundle */; };
  283. 2779359C27E324A80010E277 /* TZProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349127E324A10010E277 /* TZProgressView.m */; };
  284. 2779359D27E324A80010E277 /* TZImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349627E324A10010E277 /* TZImageManager.m */; };
  285. 2779359E27E324A80010E277 /* TZPhotoPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349827E324A20010E277 /* TZPhotoPickerController.m */; };
  286. 2779359F27E324A80010E277 /* TZPhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349927E324A20010E277 /* TZPhotoPreviewCell.m */; };
  287. 277935A027E324A80010E277 /* UIView+TZLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349B27E324A20010E277 /* UIView+TZLayout.m */; };
  288. 277935A127E324A80010E277 /* TZImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A027E324A20010E277 /* TZImagePickerController.m */; };
  289. 277935A227E324A80010E277 /* TZLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A127E324A20010E277 /* TZLocationManager.m */; };
  290. 277935A327E324A80010E277 /* TZGifPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A227E324A20010E277 /* TZGifPhotoPreviewController.m */; };
  291. 277935A427E324A80010E277 /* TZImageRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A327E324A20010E277 /* TZImageRequestOperation.m */; };
  292. 277935A527E324A80010E277 /* MSSBrowseLoadingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A827E324A20010E277 /* MSSBrowseLoadingImageView.m */; };
  293. 277935A627E324A80010E277 /* MSSBrowseLocalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934AE27E324A20010E277 /* MSSBrowseLocalViewController.m */; };
  294. 277935A727E324A80010E277 /* MSSBrowseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934AF27E324A20010E277 /* MSSBrowseCollectionViewCell.m */; };
  295. 277935A827E324A80010E277 /* MSSBrowseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B127E324A20010E277 /* MSSBrowseModel.m */; };
  296. 277935A927E324A80010E277 /* MSSBrowseActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B327E324A20010E277 /* MSSBrowseActionSheet.m */; };
  297. 277935AA27E324A80010E277 /* MSSBrowseNetworkViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B427E324A20010E277 /* MSSBrowseNetworkViewController.m */; };
  298. 277935AB27E324A80010E277 /* UIImage+MSSScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B527E324A20010E277 /* UIImage+MSSScale.m */; };
  299. 277935AC27E324A80010E277 /* MSSBrowseBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B627E324A20010E277 /* MSSBrowseBaseViewController.m */; };
  300. 277935AD27E324A80010E277 /* MSSBrowseZoomScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B827E324A20010E277 /* MSSBrowseZoomScrollView.m */; };
  301. 277935AE27E324A80010E277 /* MSSBrowseRemindView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B927E324A20010E277 /* MSSBrowseRemindView.m */; };
  302. 277935AF27E324A90010E277 /* mss_browseLoading@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 277934BA27E324A20010E277 /* mss_browseLoading@3x.png */; };
  303. 277935B027E324A90010E277 /* MSSBrowseActionSheetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934BD27E324A20010E277 /* MSSBrowseActionSheetCell.m */; };
  304. 277935B127E324A90010E277 /* mss_browseLoading@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 277934BF27E324A20010E277 /* mss_browseLoading@2x.png */; };
  305. 277935B227E324A90010E277 /* UIView+MSSLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C027E324A20010E277 /* UIView+MSSLayout.m */; };
  306. 277935B327E324A90010E277 /* FSCalendarCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C227E324A20010E277 /* FSCalendarCollectionView.m */; };
  307. 277935B427E324A90010E277 /* FSCalendarDelegationProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C527E324A20010E277 /* FSCalendarDelegationProxy.m */; };
  308. 277935B527E324A90010E277 /* FSCalendarDelegationFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C727E324A20010E277 /* FSCalendarDelegationFactory.m */; };
  309. 277935B627E324A90010E277 /* FSCalendarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934CE27E324A30010E277 /* FSCalendarCell.m */; };
  310. 277935B727E324A90010E277 /* FSCalendarStickyHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934CF27E324A30010E277 /* FSCalendarStickyHeader.m */; };
  311. 277935B827E324A90010E277 /* FSCalendar.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D027E324A30010E277 /* FSCalendar.m */; };
  312. 277935B927E324A90010E277 /* FSCalendarCollectionViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D127E324A30010E277 /* FSCalendarCollectionViewLayout.m */; };
  313. 277935BA27E324A90010E277 /* FSCalendarWeekdayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D227E324A30010E277 /* FSCalendarWeekdayView.m */; };
  314. 277935BB27E324A90010E277 /* FSCalendarSeparatorDecorationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D527E324A30010E277 /* FSCalendarSeparatorDecorationView.m */; };
  315. 277935BC27E324A90010E277 /* FSCalendarExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D727E324A30010E277 /* FSCalendarExtensions.m */; };
  316. 277935BD27E324A90010E277 /* FSCalendarConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D927E324A30010E277 /* FSCalendarConstants.m */; };
  317. 277935BE27E324A90010E277 /* FSCalendarCalculator.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934DA27E324A30010E277 /* FSCalendarCalculator.m */; };
  318. 277935BF27E324A90010E277 /* FSCalendarHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934DB27E324A30010E277 /* FSCalendarHeaderView.m */; };
  319. 277935C027E324A90010E277 /* FSCalendarTransitionCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934DF27E324A30010E277 /* FSCalendarTransitionCoordinator.m */; };
  320. 277935C127E324A90010E277 /* FSCalendarAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934E027E324A30010E277 /* FSCalendarAppearance.m */; };
  321. 277935C227E324A90010E277 /* QWdynamicModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934E227E324A30010E277 /* QWdynamicModel.m */; };
  322. 277935C327E324A90010E277 /* SDQWMaskCustomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 277934E727E324A30010E277 /* SDQWMaskCustomView.xib */; };
  323. 277935C427E324A90010E277 /* SDCycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934E927E324A30010E277 /* SDCycleScrollView.m */; };
  324. 277935C527E324A90010E277 /* UIView+SDExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934EA27E324A30010E277 /* UIView+SDExtension.m */; };
  325. 277935C627E324A90010E277 /* SDQWMaskCustomModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934EB27E324A30010E277 /* SDQWMaskCustomModel.m */; };
  326. 277935C727E324A90010E277 /* SDCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934ED27E324A30010E277 /* SDCollectionViewCell.m */; };
  327. 277935C827E324A90010E277 /* TADotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F027E324A30010E277 /* TADotView.m */; };
  328. 277935C927E324A90010E277 /* TAPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F127E324A30010E277 /* TAPageControl.m */; };
  329. 277935CA27E324A90010E277 /* TAAnimatedDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F227E324A30010E277 /* TAAnimatedDotView.m */; };
  330. 277935CB27E324A90010E277 /* TAAbstractDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F327E324A30010E277 /* TAAbstractDotView.m */; };
  331. 277935CC27E324A90010E277 /* SDQWMaskCustomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F727E324A30010E277 /* SDQWMaskCustomView.m */; };
  332. 277935CD27E324A90010E277 /* ALCalendarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F927E324A30010E277 /* ALCalendarCell.m */; };
  333. 277935CE27E324A90010E277 /* ALCalendarConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FA27E324A30010E277 /* ALCalendarConfig.m */; };
  334. 277935CF27E324A90010E277 /* ALCalendarHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FB27E324A30010E277 /* ALCalendarHeader.m */; };
  335. 277935D027E324A90010E277 /* ALCalendarDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FC27E324A30010E277 /* ALCalendarDate.m */; };
  336. 277935D127E324A90010E277 /* ALCalendarCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FD27E324A30010E277 /* ALCalendarCollectionView.m */; };
  337. 277935D227E324A90010E277 /* ALCalendarHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FE27E324A30010E277 /* ALCalendarHelper.m */; };
  338. 277935D327E324A90010E277 /* ALCalendarPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779350827E324A40010E277 /* ALCalendarPicker.m */; };
  339. 277935D427E324A90010E277 /* UIView+ALFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779350927E324A40010E277 /* UIView+ALFrame.m */; };
  340. 277935D527E324A90010E277 /* ALCalendarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779350A27E324A40010E277 /* ALCalendarManager.m */; };
  341. 27F9032927E87C2E00C08A19 /* NetworkingCheckController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031227E87C2C00C08A19 /* NetworkingCheckController.m */; };
  342. 27F9032A27E87C2E00C08A19 /* NetworkBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031627E87C2C00C08A19 /* NetworkBodyView.m */; };
  343. 27F9032B27E87C2E00C08A19 /* NetworkBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9031727E87C2C00C08A19 /* NetworkBodyView.xib */; };
  344. 27F9032C27E87C2E00C08A19 /* KSNetworkAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031827E87C2D00C08A19 /* KSNetworkAlert.m */; };
  345. 27F9032D27E87C2E00C08A19 /* KSNetworkAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9031A27E87C2D00C08A19 /* KSNetworkAlert.xib */; };
  346. 27F9032E27E87C2E00C08A19 /* DeviceCheckView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9031C27E87C2D00C08A19 /* DeviceCheckView.xib */; };
  347. 27F9032F27E87C2E00C08A19 /* AudioPlayManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031D27E87C2D00C08A19 /* AudioPlayManager.m */; };
  348. 27F9033027E87C2E00C08A19 /* AudioRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031E27E87C2D00C08A19 /* AudioRecordManager.m */; };
  349. 27F9033127E87C2E00C08A19 /* DeviceCheckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031F27E87C2D00C08A19 /* DeviceCheckView.m */; };
  350. 27F9033227E87C2E00C08A19 /* SettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9032627E87C2E00C08A19 /* SettingViewController.m */; };
  351. 27F9033627E87C8B00C08A19 /* MineNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9033427E87C8A00C08A19 /* MineNavView.m */; };
  352. 27F9033727E87C8B00C08A19 /* MineNavView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9033527E87C8B00C08A19 /* MineNavView.xib */; };
  353. 27F9033A27E87FD500C08A19 /* MineBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9033927E87FD500C08A19 /* MineBodyView.m */; };
  354. 27F9033C27E87FE100C08A19 /* MineBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9033B27E87FE100C08A19 /* MineBodyView.xib */; };
  355. 82EE25CEB2BB5A0E1BB8D54B /* Pods_KulexiuForStudent.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14CEAEC95E5CF916A3D3F602 /* Pods_KulexiuForStudent.framework */; };
  356. 93F0FA52C8A72F83D07C15A6 /* Pods_KulexiuForStudentTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD4D637EF600D0BAE869423D /* Pods_KulexiuForStudentTests.framework */; };
  357. BC0212F727FC4A080040569F /* SubjectImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0212F527FC4A080040569F /* SubjectImageCell.m */; };
  358. BC0212F827FC4A080040569F /* SubjectImageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC0212F627FC4A080040569F /* SubjectImageCell.xib */; };
  359. BC0212FB27FC61D30040569F /* KSSegmentControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0212FA27FC61D30040569F /* KSSegmentControl.m */; };
  360. BC0212FE27FC66AA0040569F /* InstrumentMessageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0212FD27FC66AA0040569F /* InstrumentMessageModel.m */; };
  361. BC02130127FC6ADD0040569F /* UIView+SubViewExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = BC02130027FC6ADD0040569F /* UIView+SubViewExtension.m */; };
  362. BC0D1F6D281013DF00C5D9E5 /* MyVideoCourseBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0D1F6C281013DF00C5D9E5 /* MyVideoCourseBodyView.m */; };
  363. BC0D1F71281015B000C5D9E5 /* VideoCourseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0D1F6E281015AF00C5D9E5 /* VideoCourseCell.m */; };
  364. BC0D1F72281015B000C5D9E5 /* VideoCourseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC0D1F6F281015AF00C5D9E5 /* VideoCourseCell.xib */; };
  365. BC0D1F752810165500C5D9E5 /* VideoCourseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0D1F742810165400C5D9E5 /* VideoCourseModel.m */; };
  366. BC1191FF280ED64E00A716F7 /* MyCourseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC1191FE280ED64E00A716F7 /* MyCourseViewController.m */; };
  367. BC119213280ED6A900A716F7 /* MyLessonBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119200280ED6A600A716F7 /* MyLessonBodyView.m */; };
  368. BC119215280ED6A900A716F7 /* MyLiveCourseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119203280ED6A700A716F7 /* MyLiveCourseCell.xib */; };
  369. BC119216280ED6A900A716F7 /* MyLiveCourseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119204280ED6A700A716F7 /* MyLiveCourseCell.m */; };
  370. BC119217280ED6A900A716F7 /* MyLessonSearchView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119206280ED6A700A716F7 /* MyLessonSearchView.xib */; };
  371. BC119218280ED6A900A716F7 /* MyLessonSearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119209280ED6A800A716F7 /* MyLessonSearchView.m */; };
  372. BC11921B280ED6A900A716F7 /* NewClassPopCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC11920F280ED6A900A716F7 /* NewClassPopCell.xib */; };
  373. BC11921C280ED6A900A716F7 /* NewClassPopView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119211280ED6A900A716F7 /* NewClassPopView.m */; };
  374. BC11921D280ED6A900A716F7 /* NewClassPopCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119212280ED6A900A716F7 /* NewClassPopCell.m */; };
  375. BC119222280ED6F500A716F7 /* LiveLessonModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11921E280ED6F400A716F7 /* LiveLessonModel.m */; };
  376. BC119223280ED6F500A716F7 /* AccompanyLessonModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11921F280ED6F400A716F7 /* AccompanyLessonModel.m */; };
  377. BC11922A280ED8E800A716F7 /* LTSCalendarBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119224280ED8E700A716F7 /* LTSCalendarBottomView.m */; };
  378. BC11922B280ED8E800A716F7 /* CourseNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119226280ED8E800A716F7 /* CourseNavView.m */; };
  379. BC11922C280ED8E800A716F7 /* LTSCalendarBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119227280ED8E800A716F7 /* LTSCalendarBottomView.xib */; };
  380. BC11922D280ED8E800A716F7 /* CourseNavView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119229280ED8E800A716F7 /* CourseNavView.xib */; };
  381. BC119230280ED8F900A716F7 /* TableCourseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11922F280ED8F900A716F7 /* TableCourseModel.m */; };
  382. BC119234280ED97C00A716F7 /* CourseForLiveCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119231280ED97B00A716F7 /* CourseForLiveCell.m */; };
  383. BC119235280ED97C00A716F7 /* CourseForLiveCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119232280ED97C00A716F7 /* CourseForLiveCell.xib */; };
  384. BC119239280ED98E00A716F7 /* AccompanyCourseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119237280ED98E00A716F7 /* AccompanyCourseCell.xib */; };
  385. BC11923A280ED98E00A716F7 /* AccompanyCourseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119238280ED98E00A716F7 /* AccompanyCourseCell.m */; };
  386. BC119241280ED9E000A716F7 /* AccompanyDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119240280ED9E000A716F7 /* AccompanyDetailViewController.m */; };
  387. BC119244280EDA2400A716F7 /* NSObject+KSDateFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119243280EDA2400A716F7 /* NSObject+KSDateFormatter.m */; };
  388. BC119247280EDA5800A716F7 /* kSJXCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119245280EDA5800A716F7 /* kSJXCollectionView.m */; };
  389. BC11924E280EDD5500A716F7 /* HomeworkListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11924D280EDD5500A716F7 /* HomeworkListViewController.m */; };
  390. BC119258280FA85300A716F7 /* HomeworkListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119252280FA85200A716F7 /* HomeworkListCell.xib */; };
  391. BC119259280FA85300A716F7 /* HomeworkListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119253280FA85200A716F7 /* HomeworkListCell.m */; };
  392. BC11925A280FA85300A716F7 /* HomeworkSortView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119255280FA85300A716F7 /* HomeworkSortView.xib */; };
  393. BC11925B280FA85300A716F7 /* HomeworkSortView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119257280FA85300A716F7 /* HomeworkSortView.m */; };
  394. BC11925E280FA89A00A716F7 /* HomeworkBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11925D280FA89A00A716F7 /* HomeworkBodyView.m */; };
  395. BC119263280FA90100A716F7 /* HomeworkDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119261280FA90100A716F7 /* HomeworkDetailModel.m */; };
  396. BC119264280FA90100A716F7 /* HomeworkListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119262280FA90100A716F7 /* HomeworkListModel.m */; };
  397. BC119267280FA92700A716F7 /* HomeworkDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119266280FA92700A716F7 /* HomeworkDetailViewController.m */; };
  398. BC11926B280FAF5900A716F7 /* AccompanyAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119269280FAF5800A716F7 /* AccompanyAlertView.m */; };
  399. BC11926C280FAF5900A716F7 /* AccompanyAlertView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC11926A280FAF5900A716F7 /* AccompanyAlertView.xib */; };
  400. BC119270280FAF7D00A716F7 /* AccompanyCourseInfoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC11926E280FAF7C00A716F7 /* AccompanyCourseInfoCell.xib */; };
  401. BC119271280FAF7D00A716F7 /* AccompanyCourseInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11926F280FAF7C00A716F7 /* AccompanyCourseInfoCell.m */; };
  402. BC119275280FB01100A716F7 /* AccompanyHomeworkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119272280FB01000A716F7 /* AccompanyHomeworkCell.xib */; };
  403. BC119276280FB01100A716F7 /* AccompanyHomeworkCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119273280FB01000A716F7 /* AccompanyHomeworkCell.m */; };
  404. BC11927A280FB07F00A716F7 /* AccompanyArrangeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119277280FB07F00A716F7 /* AccompanyArrangeCell.m */; };
  405. BC11927B280FB07F00A716F7 /* AccompanyArrangeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119278280FB07F00A716F7 /* AccompanyArrangeCell.xib */; };
  406. BC11927F280FB10900A716F7 /* AccompanyRemarkCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11927C280FB10700A716F7 /* AccompanyRemarkCell.m */; };
  407. BC119280280FB10900A716F7 /* AccompanyRemarkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC11927D280FB10800A716F7 /* AccompanyRemarkCell.xib */; };
  408. BC119288280FB3B100A716F7 /* KSStarView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119287280FB3B100A716F7 /* KSStarView.m */; };
  409. BC11928C280FB44300A716F7 /* HomeworkVideoView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC119289280FB44200A716F7 /* HomeworkVideoView.xib */; };
  410. BC11928D280FB44300A716F7 /* HomeworkVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11928B280FB44300A716F7 /* HomeworkVideoView.m */; };
  411. BC119290280FB46100A716F7 /* KSVideoHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11928F280FB46100A716F7 /* KSVideoHelper.m */; };
  412. BC119293280FBC1100A716F7 /* HomeworkAddView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119292280FBC1100A716F7 /* HomeworkAddView.m */; };
  413. BC119298280FBCB400A716F7 /* UIView+ExtensionForDotLine.m in Sources */ = {isa = PBXBuildFile; fileRef = BC119297280FBCB400A716F7 /* UIView+ExtensionForDotLine.m */; };
  414. BC11929B280FD2E800A716F7 /* HomeworkBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11929A280FD2E800A716F7 /* HomeworkBottomView.m */; };
  415. BC11929D280FD2EF00A716F7 /* HomeworkBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC11929C280FD2EF00A716F7 /* HomeworkBottomView.xib */; };
  416. BC27A06E280FF56C00F91E27 /* AccompanyEvaluateCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC27A06A280FF56B00F91E27 /* AccompanyEvaluateCell.xib */; };
  417. BC27A06F280FF56C00F91E27 /* AccompanyStudentEvaCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC27A06B280FF56C00F91E27 /* AccompanyStudentEvaCell.m */; };
  418. BC27A070280FF56C00F91E27 /* AccompanyStudentEvaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC27A06C280FF56C00F91E27 /* AccompanyStudentEvaCell.xib */; };
  419. BC27A071280FF56C00F91E27 /* AccompanyEvaluateCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC27A06D280FF56C00F91E27 /* AccompanyEvaluateCell.m */; };
  420. BC27A074280FF60B00F91E27 /* AccompanyDetailBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC27A073280FF60B00F91E27 /* AccompanyDetailBottomView.m */; };
  421. BC27A076280FF61300F91E27 /* AccompanyDetailBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC27A075280FF61300F91E27 /* AccompanyDetailBottomView.xib */; };
  422. BC27A079280FFA2200F91E27 /* EvaluateDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC27A078280FFA2200F91E27 /* EvaluateDetailModel.m */; };
  423. BC28582B2809036D0024697C /* StudentInfoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC28582A2809036D0024697C /* StudentInfoModel.m */; };
  424. BC40B9F82811767A00DEC0D1 /* HotInformationHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40B9F72811767A00DEC0D1 /* HotInformationHeadView.m */; };
  425. BC40B9FA2811768400DEC0D1 /* HotInformationHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC40B9F92811768400DEC0D1 /* HotInformationHeadView.xib */; };
  426. BC40B9FE281177BD00DEC0D1 /* HomeInformationCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40B9FC281177BD00DEC0D1 /* HomeInformationCell.m */; };
  427. BC40B9FF281177BD00DEC0D1 /* HomeInformationCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC40B9FD281177BD00DEC0D1 /* HomeInformationCell.xib */; };
  428. BC40BA0328117B0A00DEC0D1 /* HomeBannerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA0128117B0A00DEC0D1 /* HomeBannerCell.m */; };
  429. BC40BA0428117B0A00DEC0D1 /* HomeBannerCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC40BA0228117B0A00DEC0D1 /* HomeBannerCell.xib */; };
  430. BC40BA0C28117B3B00DEC0D1 /* TYPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA0828117B3A00DEC0D1 /* TYPageControl.m */; };
  431. BC40BA0D28117B3B00DEC0D1 /* TYCyclePagerView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA0928117B3A00DEC0D1 /* TYCyclePagerView.m */; };
  432. BC40BA0E28117B3B00DEC0D1 /* TYCyclePagerTransformLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA0A28117B3A00DEC0D1 /* TYCyclePagerTransformLayout.m */; };
  433. BC40BA1828124D3D00DEC0D1 /* NotiferMessageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA1728124D3D00DEC0D1 /* NotiferMessageViewController.m */; };
  434. BC40BA1B281251ED00DEC0D1 /* HomeMessageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA1A281251ED00DEC0D1 /* HomeMessageModel.m */; };
  435. BC40BA1F2812552300DEC0D1 /* KSHomeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA1C2812552200DEC0D1 /* KSHomeButton.m */; };
  436. BC40BA202812552300DEC0D1 /* KSHomeButton.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC40BA1D2812552200DEC0D1 /* KSHomeButton.xib */; };
  437. BC40BA23281255F700DEC0D1 /* HomeCourseTipsView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC40BA22281255F700DEC0D1 /* HomeCourseTipsView.m */; };
  438. BC40BA252812560100DEC0D1 /* HomeCourseTipsView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC40BA242812560100DEC0D1 /* HomeCourseTipsView.xib */; };
  439. BC50171227FC0D5600F8BCBC /* SubjectChooseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC50171127FC0D5600F8BCBC /* SubjectChooseViewController.m */; };
  440. BC50171527FC0D8300F8BCBC /* SubjectChooseBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC50171427FC0D8300F8BCBC /* SubjectChooseBodyView.m */; };
  441. BC50171727FC0D8E00F8BCBC /* SubjectChooseBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC50171627FC0D8D00F8BCBC /* SubjectChooseBodyView.xib */; };
  442. BC76630E2827E48800C91A1D /* NotiferMessageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC76630C2827E48800C91A1D /* NotiferMessageModel.m */; };
  443. BC7663152827E49900C91A1D /* NotiferHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC76630F2827E49800C91A1D /* NotiferHeadView.m */; };
  444. BC7663162827E49900C91A1D /* NotiferHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC7663102827E49800C91A1D /* NotiferHeadView.xib */; };
  445. BC7663172827E49900C91A1D /* NotiferMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC7663122827E49800C91A1D /* NotiferMessageCell.m */; };
  446. BC7663182827E49900C91A1D /* NotiferMessageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC7663132827E49900C91A1D /* NotiferMessageCell.xib */; };
  447. BC8C2C572823F57100FBA5D5 /* AddressDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC8C2C452823F57100FBA5D5 /* AddressDetailViewController.m */; };
  448. BC8C2C582823F57100FBA5D5 /* AddressListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC8C2C462823F57100FBA5D5 /* AddressListViewController.m */; };
  449. BC8C2C592823F57100FBA5D5 /* AddressListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BC8C2C482823F57100FBA5D5 /* AddressListModel.m */; };
  450. BC8C2C5A2823F57100FBA5D5 /* areainfo.json in Resources */ = {isa = PBXBuildFile; fileRef = BC8C2C492823F57100FBA5D5 /* areainfo.json */; };
  451. BC8C2C5B2823F57100FBA5D5 /* AddressBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC8C2C4D2823F57100FBA5D5 /* AddressBottomView.xib */; };
  452. BC8C2C5C2823F57100FBA5D5 /* KSAddressPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC8C2C4F2823F57100FBA5D5 /* KSAddressPickerView.m */; };
  453. BC8C2C5D2823F57100FBA5D5 /* AddressDetailBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC8C2C502823F57100FBA5D5 /* AddressDetailBodyView.m */; };
  454. BC8C2C5E2823F57100FBA5D5 /* AddressDetailBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC8C2C512823F57100FBA5D5 /* AddressDetailBodyView.xib */; };
  455. BC8C2C5F2823F57100FBA5D5 /* MyAddressListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BC8C2C522823F57100FBA5D5 /* MyAddressListCell.m */; };
  456. BC8C2C602823F57100FBA5D5 /* AddressBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC8C2C532823F57100FBA5D5 /* AddressBottomView.m */; };
  457. BC8C2C612823F57100FBA5D5 /* MyAddressListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC8C2C562823F57100FBA5D5 /* MyAddressListCell.xib */; };
  458. BC8C2C7E28265D8E00FBA5D5 /* KSNewsAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = BC8C2C7C28265D8D00FBA5D5 /* KSNewsAlert.m */; };
  459. BC8C2C7F28265D8E00FBA5D5 /* KSNewsAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC8C2C7D28265D8E00FBA5D5 /* KSNewsAlert.xib */; };
  460. BCB6345D27F6D29600ACFDCF /* KSLiveChatroomWelcome.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6340D27F6D29500ACFDCF /* KSLiveChatroomWelcome.m */; };
  461. BCB6345E27F6D29600ACFDCF /* KSLiveChatroomLeave.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6340E27F6D29500ACFDCF /* KSLiveChatroomLeave.m */; };
  462. BCB6345F27F6D29600ACFDCF /* KSLiveChatroomEnter.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6340F27F6D29500ACFDCF /* KSLiveChatroomEnter.m */; };
  463. BCB6346027F6D29600ACFDCF /* KSLiveChatroomKickOut.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341227F6D29500ACFDCF /* KSLiveChatroomKickOut.m */; };
  464. BCB6346127F6D29600ACFDCF /* KSChatroomMessageCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341527F6D29500ACFDCF /* KSChatroomMessageCenter.m */; };
  465. BCB6346227F6D29600ACFDCF /* KSLiveChatroomDownSeat.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341727F6D29500ACFDCF /* KSLiveChatroomDownSeat.m */; };
  466. BCB6346327F6D29600ACFDCF /* KSRCMessageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341A27F6D29500ACFDCF /* KSRCMessageModel.m */; };
  467. BCB6346427F6D29600ACFDCF /* KSLiveChatroomSeatApply.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341C27F6D29500ACFDCF /* KSLiveChatroomSeatApply.m */; };
  468. BCB6346527F6D29600ACFDCF /* KSLiveChatroomLike.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341D27F6D29500ACFDCF /* KSLiveChatroomLike.m */; };
  469. BCB6346627F6D29600ACFDCF /* KSLiveChatroomUserQuit.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6341E27F6D29500ACFDCF /* KSLiveChatroomUserQuit.m */; };
  470. BCB6346727F6D29600ACFDCF /* KSLiveChatroomMemberCount.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6342027F6D29500ACFDCF /* KSLiveChatroomMemberCount.m */; };
  471. BCB6346827F6D29600ACFDCF /* KSLiveChatroomClose.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6342227F6D29500ACFDCF /* KSLiveChatroomClose.m */; };
  472. BCB6346927F6D29600ACFDCF /* KSLiveChatroomSeatResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6342427F6D29500ACFDCF /* KSLiveChatroomSeatResponse.m */; };
  473. BCB6346A27F6D29600ACFDCF /* LiveVideoRoomViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6342727F6D29500ACFDCF /* LiveVideoRoomViewController.m */; };
  474. BCB6346D27F6D29600ACFDCF /* KSEnterLiveroomManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343227F6D29500ACFDCF /* KSEnterLiveroomManager.m */; };
  475. BCB6346E27F6D29600ACFDCF /* KSLiveStreamVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343327F6D29500ACFDCF /* KSLiveStreamVideo.m */; };
  476. BCB6346F27F6D29600ACFDCF /* LiveroomTimeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343427F6D29500ACFDCF /* LiveroomTimeManager.m */; };
  477. BCB6347027F6D29600ACFDCF /* LiveSeatMember.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343527F6D29500ACFDCF /* LiveSeatMember.m */; };
  478. BCB6347127F6D29600ACFDCF /* KSChatEmojiBoardView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343827F6D29500ACFDCF /* KSChatEmojiBoardView.m */; };
  479. BCB6347227F6D29600ACFDCF /* KSChatInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343A27F6D29500ACFDCF /* KSChatInputView.m */; };
  480. BCB6347327F6D29600ACFDCF /* KSChatEmojiCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6343D27F6D29500ACFDCF /* KSChatEmojiCollectionCell.m */; };
  481. BCB6347427F6D29600ACFDCF /* BaseEmoji.plist in Resources */ = {isa = PBXBuildFile; fileRef = BCB6343E27F6D29500ACFDCF /* BaseEmoji.plist */; };
  482. BCB6347527F6D29600ACFDCF /* KSChatInputBarControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6344027F6D29500ACFDCF /* KSChatInputBarControl.m */; };
  483. BCB6347727F6D29600ACFDCF /* LiveRoomLikeLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6344427F6D29500ACFDCF /* LiveRoomLikeLayer.m */; };
  484. BCB6348027F6D29600ACFDCF /* LiveSeatApplyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6345327F6D29600ACFDCF /* LiveSeatApplyView.m */; };
  485. BCB6348127F6D29600ACFDCF /* LiveSeatApplyCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCB6345427F6D29600ACFDCF /* LiveSeatApplyCell.xib */; };
  486. BCB6348227F6D29600ACFDCF /* SeatContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6345627F6D29600ACFDCF /* SeatContentView.m */; };
  487. BCB6348327F6D29600ACFDCF /* LiveSeatApplyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCB6345827F6D29600ACFDCF /* LiveSeatApplyView.xib */; };
  488. BCB6348427F6D29600ACFDCF /* KSChatroomTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6345927F6D29600ACFDCF /* KSChatroomTextCell.m */; };
  489. BCB6348627F6D29600ACFDCF /* LiveSeatApplyCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6345C27F6D29600ACFDCF /* LiveSeatApplyCell.m */; };
  490. BCB6353027F6D2A300ACFDCF /* SealClass.strings in Resources */ = {isa = PBXBuildFile; fileRef = BCB6348927F6D2A200ACFDCF /* SealClass.strings */; };
  491. BCB6353127F6D2A300ACFDCF /* ZoomControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6348F27F6D2A200ACFDCF /* ZoomControl.m */; };
  492. BCB6353227F6D2A300ACFDCF /* InputView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6349427F6D2A200ACFDCF /* InputView.m */; };
  493. BCB6353327F6D2A300ACFDCF /* CREmojiCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6349827F6D2A200ACFDCF /* CREmojiCollectionCell.m */; };
  494. BCB6353427F6D2A300ACFDCF /* InputBarControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6349A27F6D2A200ACFDCF /* InputBarControl.m */; };
  495. BCB6353527F6D2A300ACFDCF /* EmojiBoardView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6349B27F6D2A200ACFDCF /* EmojiBoardView.m */; };
  496. BCB6353627F6D2A300ACFDCF /* TimeStampCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634A027F6D2A200ACFDCF /* TimeStampCell.m */; };
  497. BCB6353727F6D2A300ACFDCF /* TextMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634A427F6D2A200ACFDCF /* TextMessageCell.m */; };
  498. BCB6353827F6D2A300ACFDCF /* TipMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634A627F6D2A200ACFDCF /* TipMessageCell.m */; };
  499. BCB6353927F6D2A300ACFDCF /* MessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634A727F6D2A200ACFDCF /* MessageCell.m */; };
  500. BCB6353A27F6D2A300ACFDCF /* MessageBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634A827F6D2A200ACFDCF /* MessageBaseCell.m */; };
  501. BCB6353B27F6D2A300ACFDCF /* MessageDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634A927F6D2A200ACFDCF /* MessageDataSource.m */; };
  502. BCB6353C27F6D2A300ACFDCF /* MessageHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634AA27F6D2A200ACFDCF /* MessageHelper.m */; };
  503. BCB6353D27F6D2A300ACFDCF /* MessageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634AB27F6D2A200ACFDCF /* MessageModel.m */; };
  504. BCB6353E27F6D2A300ACFDCF /* TimeStampMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634AD27F6D2A200ACFDCF /* TimeStampMessage.m */; };
  505. BCB6353F27F6D2A300ACFDCF /* ChatAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634B227F6D2A300ACFDCF /* ChatAreaView.m */; };
  506. BCB6354027F6D2A300ACFDCF /* ClassroomTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634B427F6D2A300ACFDCF /* ClassroomTitleView.m */; };
  507. BCB6354127F6D2A300ACFDCF /* VideoListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634B727F6D2A300ACFDCF /* VideoListCell.m */; };
  508. BCB6354227F6D2A300ACFDCF /* VideoListView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634B827F6D2A300ACFDCF /* VideoListView.m */; };
  509. BCB6354327F6D2A300ACFDCF /* RecentSharedWhiteboardCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634BC27F6D2A300ACFDCF /* RecentSharedWhiteboardCell.m */; };
  510. BCB6354427F6D2A300ACFDCF /* RecentSharedView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634BD27F6D2A300ACFDCF /* RecentSharedView.m */; };
  511. BCB6354527F6D2A300ACFDCF /* RecentSharedVideoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634BE27F6D2A300ACFDCF /* RecentSharedVideoCell.m */; };
  512. BCB6354627F6D2A300ACFDCF /* UpgradeDidApplyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634C327F6D2A300ACFDCF /* UpgradeDidApplyView.m */; };
  513. BCB6354727F6D2A300ACFDCF /* PersonListView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634C627F6D2A300ACFDCF /* PersonListView.m */; };
  514. BCB6354827F6D2A300ACFDCF /* PersonListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634C727F6D2A300ACFDCF /* PersonListCell.m */; };
  515. BCB6354927F6D2A300ACFDCF /* PersonListSectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634CB27F6D2A300ACFDCF /* PersonListSectionView.m */; };
  516. BCB6354A27F6D2A300ACFDCF /* ToolPanelView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634CD27F6D2A300ACFDCF /* ToolPanelView.m */; };
  517. BCB6354B27F6D2A300ACFDCF /* MainContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634D027F6D2A300ACFDCF /* MainContainerView.m */; };
  518. BCB6354C27F6D2A300ACFDCF /* VideoMaskView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634D227F6D2A300ACFDCF /* VideoMaskView.m */; };
  519. BCB6354D27F6D2A300ACFDCF /* EmptyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634D427F6D2A300ACFDCF /* EmptyView.m */; };
  520. BCB6354E27F6D2A300ACFDCF /* KSWhiteboardView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634D827F6D2A300ACFDCF /* KSWhiteboardView.m */; };
  521. BCB6354F27F6D2A300ACFDCF /* KSWhiteboardControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634DB27F6D2A300ACFDCF /* KSWhiteboardControl.m */; };
  522. BCB6355027F6D2A300ACFDCF /* WhiteUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634DC27F6D2A300ACFDCF /* WhiteUtils.m */; };
  523. BCB6355127F6D2A300ACFDCF /* LoginHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634DE27F6D2A300ACFDCF /* LoginHelper.m */; };
  524. BCB6355227F6D2A300ACFDCF /* SelectionButton.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634E027F6D2A300ACFDCF /* SelectionButton.m */; };
  525. BCB6355327F6D2A300ACFDCF /* InputTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634E327F6D2A300ACFDCF /* InputTextField.m */; };
  526. BCB6355427F6D2A300ACFDCF /* UIView+MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634EA27F6D2A300ACFDCF /* UIView+MBProgressHUD.m */; };
  527. BCB6355527F6D2A300ACFDCF /* RolePortraitView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634EC27F6D2A300ACFDCF /* RolePortraitView.m */; };
  528. BCB6355627F6D2A300ACFDCF /* HTTPUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634F027F6D2A300ACFDCF /* HTTPUtility.m */; };
  529. BCB6355727F6D2A300ACFDCF /* HTTPResult.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634F127F6D2A300ACFDCF /* HTTPResult.m */; };
  530. BCB6355827F6D2A300ACFDCF /* NormalAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634F627F6D2A300ACFDCF /* NormalAlertView.m */; };
  531. BCB6355927F6D2A300ACFDCF /* class_stop.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = BCB634F727F6D2A300ACFDCF /* class_stop.mp3 */; };
  532. BCB6355A27F6D2A300ACFDCF /* KSRemoteUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB634F827F6D2A300ACFDCF /* KSRemoteUserManager.m */; };
  533. BCB6355B27F6D2A300ACFDCF /* ApplySpeechMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350027F6D2A300ACFDCF /* ApplySpeechMessage.m */; };
  534. BCB6355C27F6D2A300ACFDCF /* DisplayCommandMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350227F6D2A300ACFDCF /* DisplayCommandMessage.m */; };
  535. BCB6355D27F6D2A300ACFDCF /* SongDownloadMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350427F6D2A300ACFDCF /* SongDownloadMessage.m */; };
  536. BCB6355E27F6D2A300ACFDCF /* ControlDeviceNotifyMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350627F6D2A300ACFDCF /* ControlDeviceNotifyMessage.m */; };
  537. BCB6355F27F6D2A300ACFDCF /* TicketExpiredMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350827F6D2A300ACFDCF /* TicketExpiredMessage.m */; };
  538. BCB6356027F6D2A300ACFDCF /* WhiteboardMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350C27F6D2A300ACFDCF /* WhiteboardMessage.m */; };
  539. BCB6356127F6D2A300ACFDCF /* SongDownloadCallbackMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350D27F6D2A300ACFDCF /* SongDownloadCallbackMessage.m */; };
  540. BCB6356227F6D2A300ACFDCF /* AssistantTransferMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350E27F6D2A300ACFDCF /* AssistantTransferMessage.m */; };
  541. BCB6356327F6D2A300ACFDCF /* RoleChangedMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6350F27F6D2A300ACFDCF /* RoleChangedMessage.m */; };
  542. BCB6356427F6D2A300ACFDCF /* InviteUpgradeMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351027F6D2A300ACFDCF /* InviteUpgradeMessage.m */; };
  543. BCB6356527F6D2A300ACFDCF /* AccompanyDownloadMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351127F6D2A300ACFDCF /* AccompanyDownloadMessage.m */; };
  544. BCB6356627F6D2A300ACFDCF /* DeviceMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351327F6D2A300ACFDCF /* DeviceMessage.m */; };
  545. BCB6356727F6D2A300ACFDCF /* MemberChangeMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351527F6D2A300ACFDCF /* MemberChangeMessage.m */; };
  546. BCB6356827F6D2A300ACFDCF /* ApplySpeechResultMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351727F6D2A300ACFDCF /* ApplySpeechResultMessage.m */; };
  547. BCB6356927F6D2A300ACFDCF /* TurnPageMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351B27F6D2A300ACFDCF /* TurnPageMessage.m */; };
  548. BCB6356A27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351C27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.m */; };
  549. BCB6356B27F6D2A300ACFDCF /* NodePlayMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6351D27F6D2A300ACFDCF /* NodePlayMessage.m */; };
  550. BCB6356C27F6D2A300ACFDCF /* Whiteboard.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352027F6D2A300ACFDCF /* Whiteboard.m */; };
  551. BCB6356D27F6D2A300ACFDCF /* RoomMember.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352127F6D2A300ACFDCF /* RoomMember.m */; };
  552. BCB6356E27F6D2A300ACFDCF /* ClassSongMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352227F6D2A300ACFDCF /* ClassSongMessage.m */; };
  553. BCB6356F27F6D2A300ACFDCF /* Classroom.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352327F6D2A300ACFDCF /* Classroom.m */; };
  554. BCB6357027F6D2A300ACFDCF /* ClassroomService.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352927F6D2A300ACFDCF /* ClassroomService.m */; };
  555. BCB6357127F6D2A300ACFDCF /* RTCService.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352B27F6D2A300ACFDCF /* RTCService.m */; };
  556. BCB6357227F6D2A300ACFDCF /* KSIMService.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6352F27F6D2A300ACFDCF /* KSIMService.m */; };
  557. BCB6359427F6D2AB00ACFDCF /* NewClassRoomViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6357627F6D2AB00ACFDCF /* NewClassRoomViewController.m */; };
  558. BCB6359527F6D2AB00ACFDCF /* OnlineClassManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6357927F6D2AB00ACFDCF /* OnlineClassManager.m */; };
  559. BCB6359627F6D2AB00ACFDCF /* LocalRenderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6357B27F6D2AB00ACFDCF /* LocalRenderManager.m */; };
  560. BCB6359727F6D2AB00ACFDCF /* ClassroomTimerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6357D27F6D2AB00ACFDCF /* ClassroomTimerManager.m */; };
  561. BCB6359827F6D2AB00ACFDCF /* KSTipsView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6358027F6D2AB00ACFDCF /* KSTipsView.m */; };
  562. BCB6359927F6D2AB00ACFDCF /* tick.wav in Resources */ = {isa = PBXBuildFile; fileRef = BCB6358227F6D2AB00ACFDCF /* tick.wav */; };
  563. BCB6359A27F6D2AB00ACFDCF /* ClassVideoListView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6358727F6D2AB00ACFDCF /* ClassVideoListView.m */; };
  564. BCB6359B27F6D2AB00ACFDCF /* KSBeatView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6358827F6D2AB00ACFDCF /* KSBeatView.m */; };
  565. BCB6359C27F6D2AB00ACFDCF /* ClassVideoListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6358927F6D2AB00ACFDCF /* ClassVideoListCell.m */; };
  566. BCB6359D27F6D2AB00ACFDCF /* tock.wav in Resources */ = {isa = PBXBuildFile; fileRef = BCB6358A27F6D2AB00ACFDCF /* tock.wav */; };
  567. BCB6359E27F6D2AB00ACFDCF /* ClassroomMainContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6358D27F6D2AB00ACFDCF /* ClassroomMainContainer.m */; };
  568. BCB6359F27F6D2AB00ACFDCF /* ClassTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6359027F6D2AB00ACFDCF /* ClassTitleView.m */; };
  569. BCB635A027F6D2AB00ACFDCF /* MainToolView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB6359227F6D2AB00ACFDCF /* MainToolView.m */; };
  570. BCB635A327F6D3FE00ACFDCF /* KSNormalAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB635A227F6D3FE00ACFDCF /* KSNormalAlertView.m */; };
  571. BCB635A627F6D90600ACFDCF /* KSLiveEmptyView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB635A427F6D90600ACFDCF /* KSLiveEmptyView.m */; };
  572. BCB635A927F6D93300ACFDCF /* KSChatVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB635A727F6D93300ACFDCF /* KSChatVideoView.m */; };
  573. BCB635AD27F6E06500ACFDCF /* LiveRoomHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB635AB27F6E06500ACFDCF /* LiveRoomHeadView.m */; };
  574. BCB635AE27F6E06500ACFDCF /* LiveRoomHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCB635AC27F6E06500ACFDCF /* LiveRoomHeadView.xib */; };
  575. BCB635B227F6E1A600ACFDCF /* LiveRoomBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCB635B027F6E1A600ACFDCF /* LiveRoomBottomView.m */; };
  576. BCB635B327F6E1A600ACFDCF /* LiveRoomBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCB635B127F6E1A600ACFDCF /* LiveRoomBottomView.xib */; };
  577. BCBFDF3728110C660052AFE5 /* HomeNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFDF3628110C660052AFE5 /* HomeNavView.m */; };
  578. BCBFDF3928110C6F0052AFE5 /* HomeNavView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCBFDF3828110C6F0052AFE5 /* HomeNavView.xib */; };
  579. BCBFDF3C281156430052AFE5 /* HomeBannerView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFDF3B281156430052AFE5 /* HomeBannerView.m */; };
  580. BCBFDF3E2811564C0052AFE5 /* HomeBannerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCBFDF3D2811564C0052AFE5 /* HomeBannerView.xib */; };
  581. BCBFDF41281157340052AFE5 /* HomeButtonView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFDF40281157340052AFE5 /* HomeButtonView.m */; };
  582. BCBFDF432811573D0052AFE5 /* HomeButtonView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCBFDF422811573D0052AFE5 /* HomeButtonView.xib */; };
  583. BCBFDF46281159990052AFE5 /* HomeHotAlbumView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFDF45281159990052AFE5 /* HomeHotAlbumView.m */; };
  584. BCBFDF48281159A40052AFE5 /* HomeHotAlbumView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCBFDF47281159A40052AFE5 /* HomeHotAlbumView.xib */; };
  585. BCBFDF4B28115C6F0052AFE5 /* HomeHotCourseView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFDF4A28115C6F0052AFE5 /* HomeHotCourseView.m */; };
  586. BCBFDF4D28115C7A0052AFE5 /* HomeHotCourseView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCBFDF4C28115C7A0052AFE5 /* HomeHotCourseView.xib */; };
  587. BCBFDF5028115D9A0052AFE5 /* HomeIntroduceView.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFDF4F28115D9A0052AFE5 /* HomeIntroduceView.m */; };
  588. BCBFDF5228115DA40052AFE5 /* HomeIntroduceView.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCBFDF5128115DA40052AFE5 /* HomeIntroduceView.xib */; };
  589. BCFE53E72812765600AD6786 /* HomeHotAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53E52812765600AD6786 /* HomeHotAlbumCell.m */; };
  590. BCFE53E82812765600AD6786 /* HomeHotAlbumCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCFE53E62812765600AD6786 /* HomeHotAlbumCell.xib */; };
  591. BCFE53EC2812897600AD6786 /* HomeLiveCouseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53EA2812897600AD6786 /* HomeLiveCouseCell.m */; };
  592. BCFE53ED2812897600AD6786 /* HomeLiveCouseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCFE53EB2812897600AD6786 /* HomeLiveCouseCell.xib */; };
  593. BCFE53F12812898700AD6786 /* HomeVideoCourseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53EF2812898700AD6786 /* HomeVideoCourseCell.m */; };
  594. BCFE53F22812898700AD6786 /* HomeVideoCourseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCFE53F02812898700AD6786 /* HomeVideoCourseCell.xib */; };
  595. BCFE53F628128A9600AD6786 /* TeacherShowCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53F428128A9600AD6786 /* TeacherShowCell.m */; };
  596. BCFE53F728128A9600AD6786 /* TeacherShowCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BCFE53F528128A9600AD6786 /* TeacherShowCell.xib */; };
  597. BCFE53FA28129A5600AD6786 /* TeacherStyleModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53F828129A5500AD6786 /* TeacherStyleModel.m */; };
  598. BCFE53FF2814E1BE00AD6786 /* HomeLiveGroupModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53FD2814E1BE00AD6786 /* HomeLiveGroupModel.m */; };
  599. BCFE54002814E1BE00AD6786 /* HomeVideoGroupModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE53FE2814E1BE00AD6786 /* HomeVideoGroupModel.m */; };
  600. BCFE540328152A8500AD6786 /* KSOrderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE540228152A8500AD6786 /* KSOrderManager.m */; };
  601. BCFE5406281545C600AD6786 /* HomeAlbumModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFE5405281545C500AD6786 /* HomeAlbumModel.m */; };
  602. C56C141D9D9D478077F14C1E /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C9C170A749B6C49F17AC3246 /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework */; };
  603. /* End PBXBuildFile section */
  604. /* Begin PBXContainerItemProxy section */
  605. 275E8AC127E18F8C00DD3F6E /* PBXContainerItemProxy */ = {
  606. isa = PBXContainerItemProxy;
  607. containerPortal = 275E8A9D27E18F8800DD3F6E /* Project object */;
  608. proxyType = 1;
  609. remoteGlobalIDString = 275E8AA427E18F8800DD3F6E;
  610. remoteInfo = KulexiuForStudent;
  611. };
  612. 275E8ACB27E18F8C00DD3F6E /* PBXContainerItemProxy */ = {
  613. isa = PBXContainerItemProxy;
  614. containerPortal = 275E8A9D27E18F8800DD3F6E /* Project object */;
  615. proxyType = 1;
  616. remoteGlobalIDString = 275E8AA427E18F8800DD3F6E;
  617. remoteInfo = KulexiuForStudent;
  618. };
  619. /* End PBXContainerItemProxy section */
  620. /* Begin PBXFileReference section */
  621. 04AE318E8988C2AC148D551B /* Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig"; sourceTree = "<group>"; };
  622. 14CEAEC95E5CF916A3D3F602 /* Pods_KulexiuForStudent.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KulexiuForStudent.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  623. 25A92766B52F3FB4AFA45A9B /* Pods-KulexiuForStudentTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudentTests.debug.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudentTests/Pods-KulexiuForStudentTests.debug.xcconfig"; sourceTree = "<group>"; };
  624. 267E3608F0FE8D4A55A1D46F /* Pods-KulexiuForStudent.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudent.release.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent.release.xcconfig"; sourceTree = "<group>"; };
  625. 2723B59A27F1577E00E0B90B /* CreateFansGroupViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CreateFansGroupViewController.h; sourceTree = "<group>"; };
  626. 2723B59B27F1577E00E0B90B /* CreateFansGroupViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CreateFansGroupViewController.m; sourceTree = "<group>"; };
  627. 2723B59C27F1577F00E0B90B /* KSChatListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatListViewController.m; sourceTree = "<group>"; };
  628. 2723B59D27F1577F00E0B90B /* ChatAddressViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAddressViewController.h; sourceTree = "<group>"; };
  629. 2723B59E27F1578000E0B90B /* KSChatConversationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatConversationViewController.m; sourceTree = "<group>"; };
  630. 2723B59F27F1578100E0B90B /* KSChatListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatListViewController.h; sourceTree = "<group>"; };
  631. 2723B5A027F1578100E0B90B /* ChatAddressViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAddressViewController.m; sourceTree = "<group>"; };
  632. 2723B5A127F1578200E0B90B /* KSChatConversationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatConversationViewController.h; sourceTree = "<group>"; };
  633. 2723B5A627F157A200E0B90B /* ChatAddressHeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatAddressHeaderView.xib; sourceTree = "<group>"; };
  634. 2723B5A727F157A300E0B90B /* ChatAddressBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAddressBodyView.m; sourceTree = "<group>"; };
  635. 2723B5A827F157A300E0B90B /* GroupCreateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupCreateView.m; sourceTree = "<group>"; };
  636. 2723B5A927F157A400E0B90B /* KSChatListSearchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatListSearchView.m; sourceTree = "<group>"; };
  637. 2723B5AA27F157A500E0B90B /* ChatNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatNavView.m; sourceTree = "<group>"; };
  638. 2723B5AB27F157A500E0B90B /* GroupCreateView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupCreateView.xib; sourceTree = "<group>"; };
  639. 2723B5AC27F157A600E0B90B /* KSChatListSearchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatListSearchView.h; sourceTree = "<group>"; };
  640. 2723B5AD27F157A700E0B90B /* ContractListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContractListCell.h; sourceTree = "<group>"; };
  641. 2723B5AE27F157A900E0B90B /* ChatAddressHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAddressHeaderView.m; sourceTree = "<group>"; };
  642. 2723B5AF27F157AA00E0B90B /* ContractListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContractListCell.m; sourceTree = "<group>"; };
  643. 2723B5B027F157AB00E0B90B /* ChatAddressBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAddressBodyView.h; sourceTree = "<group>"; };
  644. 2723B5B127F157AD00E0B90B /* GroupListViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupListViewCell.xib; sourceTree = "<group>"; };
  645. 2723B5B227F157AD00E0B90B /* ChatNavView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatNavView.xib; sourceTree = "<group>"; };
  646. 2723B5B327F157AE00E0B90B /* GroupListViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupListViewCell.h; sourceTree = "<group>"; };
  647. 2723B5B427F157AE00E0B90B /* KSChatListSearchView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSChatListSearchView.xib; sourceTree = "<group>"; };
  648. 2723B5B527F157AF00E0B90B /* ChatNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatNavView.h; sourceTree = "<group>"; };
  649. 2723B5B627F157AF00E0B90B /* ChatAddressHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAddressHeaderView.h; sourceTree = "<group>"; };
  650. 2723B5B727F157B000E0B90B /* ContractListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ContractListCell.xib; sourceTree = "<group>"; };
  651. 2723B5B827F157B000E0B90B /* GroupCreateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupCreateView.h; sourceTree = "<group>"; };
  652. 2723B5B927F157B100E0B90B /* GroupListViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupListViewCell.m; sourceTree = "<group>"; };
  653. 2723B5C727F157B800E0B90B /* KSRCloudMediaManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCloudMediaManager.h; sourceTree = "<group>"; };
  654. 2723B5C827F157B900E0B90B /* GroupListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupListModel.m; sourceTree = "<group>"; };
  655. 2723B5C927F157BA00E0B90B /* GroupListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupListModel.h; sourceTree = "<group>"; };
  656. 2723B5CA27F157BB00E0B90B /* KSRCloudMediaManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCloudMediaManager.m; sourceTree = "<group>"; };
  657. 2723B5CB27F157BD00E0B90B /* GroupMemberModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberModel.h; sourceTree = "<group>"; };
  658. 2723B5CC27F157BE00E0B90B /* GroupMemberModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberModel.m; sourceTree = "<group>"; };
  659. 2723B5D227F157D300E0B90B /* KSSearchHistoryMessageController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchHistoryMessageController.h; sourceTree = "<group>"; };
  660. 2723B5D327F157D300E0B90B /* KSSearchHistoryMessageController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchHistoryMessageController.m; sourceTree = "<group>"; };
  661. 2723B5D527F157D300E0B90B /* KSSearchResultModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchResultModel.h; sourceTree = "<group>"; };
  662. 2723B5D627F157D300E0B90B /* KSSearchResultModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchResultModel.m; sourceTree = "<group>"; };
  663. 2723B5D827F157D300E0B90B /* KSSearchResultViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchResultViewCell.m; sourceTree = "<group>"; };
  664. 2723B5D927F157D300E0B90B /* KSRCSearchBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCSearchBar.h; sourceTree = "<group>"; };
  665. 2723B5DA27F157D300E0B90B /* KSSearchRCLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchRCLabel.m; sourceTree = "<group>"; };
  666. 2723B5DB27F157D300E0B90B /* KSRCSearchBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCSearchBar.m; sourceTree = "<group>"; };
  667. 2723B5DC27F157D300E0B90B /* KSSearchResultViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchResultViewCell.h; sourceTree = "<group>"; };
  668. 2723B5DD27F157D300E0B90B /* KSSearchRCLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchRCLabel.h; sourceTree = "<group>"; };
  669. 2723B5E027F157D400E0B90B /* GroupNoticeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeViewController.m; sourceTree = "<group>"; };
  670. 2723B5E127F157D400E0B90B /* GroupNoticeEditController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeEditController.h; sourceTree = "<group>"; };
  671. 2723B5E227F157D400E0B90B /* GroupNoticeEditController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeEditController.m; sourceTree = "<group>"; };
  672. 2723B5E327F157D400E0B90B /* GroupNoticeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeViewController.h; sourceTree = "<group>"; };
  673. 2723B5E527F157D400E0B90B /* GroupNoticeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeModel.h; sourceTree = "<group>"; };
  674. 2723B5E627F157D400E0B90B /* GroupNoticeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeModel.m; sourceTree = "<group>"; };
  675. 2723B5E827F157D400E0B90B /* GroupNoticeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeCell.m; sourceTree = "<group>"; };
  676. 2723B5E927F157D400E0B90B /* NoticeEditBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoticeEditBodyView.h; sourceTree = "<group>"; };
  677. 2723B5EA27F157D400E0B90B /* NoticeEditBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NoticeEditBodyView.xib; sourceTree = "<group>"; };
  678. 2723B5EC27F157D400E0B90B /* LFPopupMenuDefaultConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LFPopupMenuDefaultConfig.h; sourceTree = "<group>"; };
  679. 2723B5ED27F157D400E0B90B /* LFPopupMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LFPopupMenu.m; sourceTree = "<group>"; };
  680. 2723B5EE27F157D400E0B90B /* LFPopupMenuDefaultConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LFPopupMenuDefaultConfig.m; sourceTree = "<group>"; };
  681. 2723B5EF27F157D400E0B90B /* LFPopupMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LFPopupMenu.h; sourceTree = "<group>"; };
  682. 2723B5F027F157D400E0B90B /* GroupNoticeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeCell.h; sourceTree = "<group>"; };
  683. 2723B5F127F157D400E0B90B /* NoticeEditBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoticeEditBodyView.m; sourceTree = "<group>"; };
  684. 2723B5F227F157D400E0B90B /* GroupNoticeCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupNoticeCell.xib; sourceTree = "<group>"; };
  685. 2723B5F527F157D500E0B90B /* GroupApplyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyViewController.m; sourceTree = "<group>"; };
  686. 2723B5F627F157D500E0B90B /* GroupMemberViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberViewController.m; sourceTree = "<group>"; };
  687. 2723B5F727F157D500E0B90B /* KSSelectConversationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSelectConversationViewController.m; sourceTree = "<group>"; };
  688. 2723B5F827F157D500E0B90B /* GroupSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSettingViewController.h; sourceTree = "<group>"; };
  689. 2723B5F927F157D500E0B90B /* KSChatComplainController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatComplainController.m; sourceTree = "<group>"; };
  690. 2723B5FA27F157D500E0B90B /* GroupMemberViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberViewController.h; sourceTree = "<group>"; };
  691. 2723B5FB27F157D500E0B90B /* GroupApplyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyViewController.h; sourceTree = "<group>"; };
  692. 2723B5FC27F157D500E0B90B /* GroupSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSettingViewController.m; sourceTree = "<group>"; };
  693. 2723B5FD27F157D500E0B90B /* KSSelectConversationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSelectConversationViewController.h; sourceTree = "<group>"; };
  694. 2723B5FE27F157D500E0B90B /* KSChatComplainController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatComplainController.h; sourceTree = "<group>"; };
  695. 2723B60027F157D500E0B90B /* ApplyMemberModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplyMemberModel.m; sourceTree = "<group>"; };
  696. 2723B60127F157D500E0B90B /* ApplyMemberModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplyMemberModel.h; sourceTree = "<group>"; };
  697. 2723B60327F157D500E0B90B /* ChatComplainBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatComplainBodyView.h; sourceTree = "<group>"; };
  698. 2723B60427F157D500E0B90B /* ApplyBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplyBottomView.m; sourceTree = "<group>"; };
  699. 2723B60527F157D500E0B90B /* GroupApplyMemberCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupApplyMemberCell.xib; sourceTree = "<group>"; };
  700. 2723B60627F157D500E0B90B /* GroupMemberListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberListCell.h; sourceTree = "<group>"; };
  701. 2723B60727F157D500E0B90B /* GroupApplyChooseAllCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupApplyChooseAllCell.xib; sourceTree = "<group>"; };
  702. 2723B60827F157D500E0B90B /* ChatComplainBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatComplainBodyView.xib; sourceTree = "<group>"; };
  703. 2723B60927F157D500E0B90B /* GroupApplyChooseAllCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyChooseAllCell.m; sourceTree = "<group>"; };
  704. 2723B60A27F157D500E0B90B /* GroupApplyMemberCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyMemberCell.h; sourceTree = "<group>"; };
  705. 2723B60B27F157D500E0B90B /* GroupSettingBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSettingBodyView.m; sourceTree = "<group>"; };
  706. 2723B60C27F157D500E0B90B /* GroupSettingBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupSettingBodyView.xib; sourceTree = "<group>"; };
  707. 2723B60D27F157D500E0B90B /* GroupApplyChooseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyChooseCell.h; sourceTree = "<group>"; };
  708. 2723B60E27F157D500E0B90B /* ApplyBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplyBottomView.h; sourceTree = "<group>"; };
  709. 2723B60F27F157D500E0B90B /* ChatComplainBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatComplainBodyView.m; sourceTree = "<group>"; };
  710. 2723B61027F157D500E0B90B /* GroupApplyMemberCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyMemberCell.m; sourceTree = "<group>"; };
  711. 2723B61127F157D500E0B90B /* GroupApplyChooseAllCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyChooseAllCell.h; sourceTree = "<group>"; };
  712. 2723B61227F157D500E0B90B /* GroupApplyChooseCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupApplyChooseCell.xib; sourceTree = "<group>"; };
  713. 2723B61327F157D500E0B90B /* GroupMemberListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberListCell.m; sourceTree = "<group>"; };
  714. 2723B61427F157D500E0B90B /* ApplyBottomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApplyBottomView.xib; sourceTree = "<group>"; };
  715. 2723B61527F157D500E0B90B /* GroupSettingBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSettingBodyView.h; sourceTree = "<group>"; };
  716. 2723B61627F157D500E0B90B /* GroupApplyChooseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyChooseCell.m; sourceTree = "<group>"; };
  717. 2723B61727F157D500E0B90B /* GroupMemberListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupMemberListCell.xib; sourceTree = "<group>"; };
  718. 2723B63A27F159BA00E0B90B /* KSBaseTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseTableViewController.m; sourceTree = "<group>"; };
  719. 2723B63B27F159BA00E0B90B /* KSBaseTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseTableViewController.h; sourceTree = "<group>"; };
  720. 2723B63E27F15B5800E0B90B /* SCIndexViewConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexViewConfiguration.m; sourceTree = "<group>"; };
  721. 2723B63F27F15B5800E0B90B /* UITableView+SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+SCIndexView.h"; sourceTree = "<group>"; };
  722. 2723B64027F15B5800E0B90B /* SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexView.m; sourceTree = "<group>"; };
  723. 2723B64127F15B5800E0B90B /* SCIndexViewConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexViewConfiguration.h; sourceTree = "<group>"; };
  724. 2723B64227F15B5800E0B90B /* UITableView+SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+SCIndexView.m"; sourceTree = "<group>"; };
  725. 2723B64327F15B5800E0B90B /* SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexView.h; sourceTree = "<group>"; };
  726. 2723B64727F15BDB00E0B90B /* KSJXBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSJXBodyView.h; sourceTree = "<group>"; };
  727. 2723B64827F15BDC00E0B90B /* KSJXBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSJXBodyView.m; sourceTree = "<group>"; };
  728. 2723B64A27F15CF800E0B90B /* SettingBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = SettingBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/SettingBodyView.xib; sourceTree = SOURCE_ROOT; };
  729. 2723B64B27F15CF800E0B90B /* ModifyNameBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModifyNameBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyNameBodyView.h; sourceTree = SOURCE_ROOT; };
  730. 2723B64C27F15CF800E0B90B /* FeedbackBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = FeedbackBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/FeedbackBodyView.xib; sourceTree = SOURCE_ROOT; };
  731. 2723B64D27F15CF800E0B90B /* ModifyNameBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = ModifyNameBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyNameBodyView.xib; sourceTree = SOURCE_ROOT; };
  732. 2723B64E27F15CF800E0B90B /* VeriCheckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VeriCheckView.m; path = KulexiuForStudent/Module/Mine/Setting/View/VeriCheckView.m; sourceTree = SOURCE_ROOT; };
  733. 2723B64F27F15CF900E0B90B /* ModifyBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModifyBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyBodyView.h; sourceTree = SOURCE_ROOT; };
  734. 2723B65027F15CF900E0B90B /* AboutUsBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutUsBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/AboutUsBodyView.h; sourceTree = SOURCE_ROOT; };
  735. 2723B65127F15CF900E0B90B /* ModifyBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = ModifyBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyBodyView.xib; sourceTree = SOURCE_ROOT; };
  736. 2723B65227F15CF900E0B90B /* FeedbackBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FeedbackBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/FeedbackBodyView.h; sourceTree = SOURCE_ROOT; };
  737. 2723B65327F15CF900E0B90B /* AboutUsBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AboutUsBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/AboutUsBodyView.m; sourceTree = SOURCE_ROOT; };
  738. 2723B65427F15CF900E0B90B /* ModifyBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModifyBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyBodyView.m; sourceTree = SOURCE_ROOT; };
  739. 2723B65527F15CF900E0B90B /* FeedbackBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FeedbackBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/FeedbackBodyView.m; sourceTree = SOURCE_ROOT; };
  740. 2723B65627F15CFA00E0B90B /* PhoneChangeBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhoneChangeBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneChangeBodyView.h; sourceTree = SOURCE_ROOT; };
  741. 2723B65727F15CFA00E0B90B /* PhoneChangeBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhoneChangeBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneChangeBodyView.m; sourceTree = SOURCE_ROOT; };
  742. 2723B65827F15CFA00E0B90B /* PhoneChangeBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = PhoneChangeBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneChangeBodyView.xib; sourceTree = SOURCE_ROOT; };
  743. 2723B65927F15CFA00E0B90B /* PhoneCheckBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhoneCheckBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneCheckBodyView.h; sourceTree = SOURCE_ROOT; };
  744. 2723B65A27F15CFA00E0B90B /* PhoneCheckBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhoneCheckBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneCheckBodyView.m; sourceTree = SOURCE_ROOT; };
  745. 2723B65B27F15CFA00E0B90B /* SettingBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SettingBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/SettingBodyView.h; sourceTree = SOURCE_ROOT; };
  746. 2723B65C27F15CFB00E0B90B /* SettingBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SettingBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/SettingBodyView.m; sourceTree = SOURCE_ROOT; };
  747. 2723B65D27F15CFB00E0B90B /* ModifyNameBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModifyNameBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyNameBodyView.m; sourceTree = SOURCE_ROOT; };
  748. 2723B65E27F15CFB00E0B90B /* PhoneCheckBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = PhoneCheckBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneCheckBodyView.xib; sourceTree = SOURCE_ROOT; };
  749. 2723B65F27F15CFB00E0B90B /* VeriCheckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VeriCheckView.h; path = KulexiuForStudent/Module/Mine/Setting/View/VeriCheckView.h; sourceTree = SOURCE_ROOT; };
  750. 2723B66027F15CFB00E0B90B /* AboutUsBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = AboutUsBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/AboutUsBodyView.xib; sourceTree = SOURCE_ROOT; };
  751. 2723B67027F15D3200E0B90B /* ModifyPhoneCheckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneCheckController.h; sourceTree = "<group>"; };
  752. 2723B67127F15D3300E0B90B /* ModifyPhoneCheckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneCheckController.m; sourceTree = "<group>"; };
  753. 2723B67227F15D3300E0B90B /* AboutUsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutUsViewController.m; sourceTree = "<group>"; };
  754. 2723B67327F15D3400E0B90B /* FeedbackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedbackViewController.m; sourceTree = "<group>"; };
  755. 2723B67427F15D3600E0B90B /* AboutUsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutUsViewController.h; sourceTree = "<group>"; };
  756. 2723B67527F15D3700E0B90B /* ModifyNameViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyNameViewController.m; sourceTree = "<group>"; };
  757. 2723B67627F15D3800E0B90B /* FeedbackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedbackViewController.h; sourceTree = "<group>"; };
  758. 2723B67827F15D3A00E0B90B /* ModifyPhoneChangeController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneChangeController.m; sourceTree = "<group>"; };
  759. 2723B67927F15D3B00E0B90B /* ModifyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyViewController.m; sourceTree = "<group>"; };
  760. 2723B67A27F15D3B00E0B90B /* ModifyNameViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyNameViewController.h; sourceTree = "<group>"; };
  761. 2723B67C27F15D3D00E0B90B /* ModifyPhoneChangeController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneChangeController.h; sourceTree = "<group>"; };
  762. 2723B67D27F15D3D00E0B90B /* ModifyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyViewController.h; sourceTree = "<group>"; };
  763. 275E8AA527E18F8800DD3F6E /* KulexiuForStudent.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KulexiuForStudent.app; sourceTree = BUILT_PRODUCTS_DIR; };
  764. 275E8AA827E18F8800DD3F6E /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  765. 275E8AA927E18F8800DD3F6E /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  766. 275E8AAE27E18F8800DD3F6E /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
  767. 275E8AAF27E18F8800DD3F6E /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
  768. 275E8AB227E18F8800DD3F6E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  769. 275E8AB427E18F8B00DD3F6E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  770. 275E8AB727E18F8B00DD3F6E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  771. 275E8AB927E18F8B00DD3F6E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  772. 275E8ABA27E18F8B00DD3F6E /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  773. 275E8AC027E18F8C00DD3F6E /* KulexiuForStudentTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KulexiuForStudentTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  774. 275E8AC427E18F8C00DD3F6E /* KulexiuForStudentTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KulexiuForStudentTests.m; sourceTree = "<group>"; };
  775. 275E8ACA27E18F8C00DD3F6E /* KulexiuForStudentUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KulexiuForStudentUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  776. 275E8ACE27E18F8C00DD3F6E /* KulexiuForStudentUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KulexiuForStudentUITests.m; sourceTree = "<group>"; };
  777. 275E8AD027E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KulexiuForStudentUITestsLaunchTests.m; sourceTree = "<group>"; };
  778. 275FA1AA27E734C500CFEA2E /* KSImageAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSImageAlert.h; sourceTree = "<group>"; };
  779. 275FA1AB27E734C600CFEA2E /* KSImageAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSImageAlert.xib; sourceTree = "<group>"; };
  780. 275FA1AC27E734C600CFEA2E /* KSImageAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSImageAlert.m; sourceTree = "<group>"; };
  781. 275FA1AF27E7351400CFEA2E /* KSNetworkingManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkingManager.m; sourceTree = "<group>"; };
  782. 275FA1B027E7351400CFEA2E /* UINavigationController+KSNavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+KSNavigationBar.m"; sourceTree = "<group>"; };
  783. 275FA1B127E7351400CFEA2E /* KSAQRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAQRecordManager.m; sourceTree = "<group>"; };
  784. 275FA1B227E7351400CFEA2E /* KSUpdateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUpdateManager.h; sourceTree = "<group>"; };
  785. 275FA1B327E7351400CFEA2E /* KSBaseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseModel.h; sourceTree = "<group>"; };
  786. 275FA1B427E7351400CFEA2E /* UINavigationController+KSNavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+KSNavigationBar.h"; sourceTree = "<group>"; };
  787. 275FA1B527E7351400CFEA2E /* KSRCIMDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCIMDataSource.h; sourceTree = "<group>"; };
  788. 275FA1B627E7351500CFEA2E /* KSAQRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAQRecordManager.h; sourceTree = "<group>"; };
  789. 275FA1B727E7351500CFEA2E /* KSBaseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseModel.m; sourceTree = "<group>"; };
  790. 275FA1B827E7351500CFEA2E /* KSWebNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWebNavView.h; sourceTree = "<group>"; };
  791. 275FA1B927E7351500CFEA2E /* KSLocalWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLocalWebViewController.m; sourceTree = "<group>"; };
  792. 275FA1BA27E7351500CFEA2E /* RCConnectionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCConnectionManager.m; sourceTree = "<group>"; };
  793. 275FA1BB27E7351500CFEA2E /* RecordCheckManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordCheckManager.m; sourceTree = "<group>"; };
  794. 275FA1BC27E7351500CFEA2E /* CustomNavViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomNavViewController.h; sourceTree = "<group>"; };
  795. 275FA1BD27E7351500CFEA2E /* KSTabBarViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSTabBarViewController.m; sourceTree = "<group>"; };
  796. 275FA1BE27E7351600CFEA2E /* BaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseViewController.h; sourceTree = "<group>"; };
  797. 275FA1BF27E7351600CFEA2E /* KSWebBackButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWebBackButton.m; sourceTree = "<group>"; };
  798. 275FA1C027E7351600CFEA2E /* KSLocalWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLocalWebViewController.h; sourceTree = "<group>"; };
  799. 275FA1C127E7351600CFEA2E /* WeakWebViewScriptMessageDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WeakWebViewScriptMessageDelegate.m; sourceTree = "<group>"; };
  800. 275FA1C227E7351600CFEA2E /* KSWebNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWebNavView.m; sourceTree = "<group>"; };
  801. 275FA1C327E7351600CFEA2E /* KSAccompanyWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAccompanyWebViewController.h; sourceTree = "<group>"; };
  802. 275FA1C427E7351600CFEA2E /* KSAccompanyWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAccompanyWebViewController.m; sourceTree = "<group>"; };
  803. 275FA1C527E7351600CFEA2E /* KSBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseViewController.h; sourceTree = "<group>"; };
  804. 275FA1C627E7351700CFEA2E /* KSUpdateAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUpdateAlert.m; sourceTree = "<group>"; };
  805. 275FA1C727E7351700CFEA2E /* KSWebSocketManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWebSocketManager.m; sourceTree = "<group>"; };
  806. 275FA1C827E7351700CFEA2E /* CustomNavViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomNavViewController.m; sourceTree = "<group>"; };
  807. 275FA1C927E7351700CFEA2E /* KSNetTypeManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetTypeManager.m; sourceTree = "<group>"; };
  808. 275FA1CA27E7351700CFEA2E /* KSNetTypeManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetTypeManager.h; sourceTree = "<group>"; };
  809. 275FA1CB27E7351700CFEA2E /* KSUpdateAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUpdateAlert.h; sourceTree = "<group>"; };
  810. 275FA1CC27E7351700CFEA2E /* WeakWebViewScriptMessageDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeakWebViewScriptMessageDelegate.h; sourceTree = "<group>"; };
  811. 275FA1CD27E7351700CFEA2E /* KSRCIMDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCIMDataSource.m; sourceTree = "<group>"; };
  812. 275FA1CE27E7351700CFEA2E /* KSBaseWKWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseWKWebViewController.m; sourceTree = "<group>"; };
  813. 275FA1CF27E7351800CFEA2E /* BaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseViewController.m; sourceTree = "<group>"; };
  814. 275FA1D027E7351800CFEA2E /* KSUpdateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUpdateManager.m; sourceTree = "<group>"; };
  815. 275FA1D127E7351800CFEA2E /* KSWebBackButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWebBackButton.h; sourceTree = "<group>"; };
  816. 275FA1D227E7351800CFEA2E /* KSWebSocketManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWebSocketManager.h; sourceTree = "<group>"; };
  817. 275FA1D327E7351800CFEA2E /* RCConnectionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCConnectionManager.h; sourceTree = "<group>"; };
  818. 275FA1D427E7351800CFEA2E /* KSNetworkingManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkingManager.h; sourceTree = "<group>"; };
  819. 275FA1D527E7351800CFEA2E /* KSBaseWKWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseWKWebViewController.h; sourceTree = "<group>"; };
  820. 275FA1D627E7351800CFEA2E /* KSBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseViewController.m; sourceTree = "<group>"; };
  821. 275FA1D727E7351900CFEA2E /* KSTabBarViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSTabBarViewController.h; sourceTree = "<group>"; };
  822. 275FA1D827E7351900CFEA2E /* RecordCheckManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordCheckManager.h; sourceTree = "<group>"; };
  823. 275FA1D927E7351900CFEA2E /* KSUpdateAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSUpdateAlert.xib; sourceTree = "<group>"; };
  824. 275FA1F327E7356A00CFEA2E /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
  825. 275FA1F427E7356A00CFEA2E /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
  826. 275FA1F927E7356A00CFEA2E /* CourseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CourseViewController.h; sourceTree = "<group>"; };
  827. 275FA1FA27E7356B00CFEA2E /* CourseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CourseViewController.m; sourceTree = "<group>"; };
  828. 275FA1FF27E7356B00CFEA2E /* ChatViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatViewController.m; sourceTree = "<group>"; };
  829. 275FA20027E7356B00CFEA2E /* ChatViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatViewController.h; sourceTree = "<group>"; };
  830. 275FA20527E7356B00CFEA2E /* MineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineViewController.h; sourceTree = "<group>"; };
  831. 275FA20627E7356B00CFEA2E /* MineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineViewController.m; sourceTree = "<group>"; };
  832. 275FA20B27E7356B00CFEA2E /* ShopMallViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopMallViewController.m; sourceTree = "<group>"; };
  833. 275FA20C27E7356B00CFEA2E /* ShopMallViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopMallViewController.h; sourceTree = "<group>"; };
  834. 275FA21127E7356B00CFEA2E /* PasswordLoginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PasswordLoginController.m; sourceTree = "<group>"; };
  835. 275FA21227E7356B00CFEA2E /* FirstSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstSettingViewController.m; sourceTree = "<group>"; };
  836. 275FA21327E7356B00CFEA2E /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
  837. 275FA21427E7356B00CFEA2E /* VefiCodeLoginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VefiCodeLoginController.m; sourceTree = "<group>"; };
  838. 275FA21527E7356B00CFEA2E /* PasswordLoginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordLoginController.h; sourceTree = "<group>"; };
  839. 275FA21627E7356B00CFEA2E /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  840. 275FA21727E7356B00CFEA2E /* FirstSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstSettingViewController.h; sourceTree = "<group>"; };
  841. 275FA21827E7356B00CFEA2E /* VefiCodeLoginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VefiCodeLoginController.h; sourceTree = "<group>"; };
  842. 275FA21A27E7356B00CFEA2E /* UserInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfo.m; sourceTree = "<group>"; };
  843. 275FA21B27E7356B00CFEA2E /* UserInfoManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoManager.h; sourceTree = "<group>"; };
  844. 275FA21C27E7356B00CFEA2E /* UserInfoManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfoManager.m; sourceTree = "<group>"; };
  845. 275FA21D27E7356B00CFEA2E /* UserInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfo.h; sourceTree = "<group>"; };
  846. 275FA21F27E7356B00CFEA2E /* FirstSettingBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstSettingBodyView.h; sourceTree = "<group>"; };
  847. 275FA22027E7356B00CFEA2E /* LoginBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginBodyView.m; sourceTree = "<group>"; };
  848. 275FA22127E7356B00CFEA2E /* LoginBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginBodyView.xib; sourceTree = "<group>"; };
  849. 275FA22227E7356B00CFEA2E /* FirstSettingBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FirstSettingBodyView.xib; sourceTree = "<group>"; };
  850. 275FA22327E7356B00CFEA2E /* VefiBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VefiBodyView.h; sourceTree = "<group>"; };
  851. 275FA22427E7356B00CFEA2E /* PasswordBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordBodyView.h; sourceTree = "<group>"; };
  852. 275FA22527E7356B00CFEA2E /* FirstSettingBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstSettingBodyView.m; sourceTree = "<group>"; };
  853. 275FA22627E7356B00CFEA2E /* LoginBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginBodyView.h; sourceTree = "<group>"; };
  854. 275FA22727E7356B00CFEA2E /* VefiBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = VefiBodyView.xib; sourceTree = "<group>"; };
  855. 275FA22827E7356B00CFEA2E /* PasswordBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PasswordBodyView.m; sourceTree = "<group>"; };
  856. 275FA22927E7356B00CFEA2E /* VefiBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VefiBodyView.m; sourceTree = "<group>"; };
  857. 275FA22A27E7356B00CFEA2E /* PasswordBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PasswordBodyView.xib; sourceTree = "<group>"; };
  858. 275FA24127E73DF600CFEA2E /* InstrumentDescView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InstrumentDescView.h; sourceTree = "<group>"; };
  859. 275FA24227E73DF600CFEA2E /* InstrumentDescView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InstrumentDescView.m; sourceTree = "<group>"; };
  860. 275FA24427E73E0000CFEA2E /* InstrumentDescView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = InstrumentDescView.xib; sourceTree = "<group>"; };
  861. 275FA24627E7428200CFEA2E /* InstrumentChooseView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InstrumentChooseView.h; sourceTree = "<group>"; };
  862. 275FA24727E7428200CFEA2E /* InstrumentChooseView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InstrumentChooseView.m; sourceTree = "<group>"; };
  863. 275FA24927E7428D00CFEA2E /* InstrumentChooseView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = InstrumentChooseView.xib; sourceTree = "<group>"; };
  864. 2779336427E3249C0010E277 /* KSNetworkAccessibleManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkAccessibleManager.h; sourceTree = "<group>"; };
  865. 2779336527E3249C0010E277 /* KSNetworkAccessibleManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkAccessibleManager.m; sourceTree = "<group>"; };
  866. 2779336727E3249C0010E277 /* KSSafeObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSafeObject.h; sourceTree = "<group>"; };
  867. 2779336827E3249C0010E277 /* NSObject+KSSwizzling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSSwizzling.h"; sourceTree = "<group>"; };
  868. 2779336927E3249C0010E277 /* NSDictionary+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+KSSafe.m"; sourceTree = "<group>"; };
  869. 2779336A27E3249C0010E277 /* NSObject+KSImpChangeTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSImpChangeTool.h"; sourceTree = "<group>"; };
  870. 2779336B27E3249C0010E277 /* NSMutableDictionary+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+KSSafe.m"; sourceTree = "<group>"; };
  871. 2779336C27E3249C0010E277 /* NSMutableString+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableString+KSSafe.h"; sourceTree = "<group>"; };
  872. 2779336D27E3249C0010E277 /* NSArray+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+KSSafe.m"; sourceTree = "<group>"; };
  873. 2779336E27E3249C0010E277 /* NSMutableArray+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableArray+KSSafe.m"; sourceTree = "<group>"; };
  874. 2779336F27E3249C0010E277 /* NSDictionary+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+KSSafe.h"; sourceTree = "<group>"; };
  875. 2779337027E3249C0010E277 /* NSObject+KSSwizzling.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSSwizzling.m"; sourceTree = "<group>"; };
  876. 2779337127E3249C0010E277 /* NSObject+KSImpChangeTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSImpChangeTool.m"; sourceTree = "<group>"; };
  877. 2779337227E3249C0010E277 /* NSMutableArray+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableArray+KSSafe.h"; sourceTree = "<group>"; };
  878. 2779337327E3249C0010E277 /* NSArray+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+KSSafe.h"; sourceTree = "<group>"; };
  879. 2779337427E3249C0010E277 /* NSMutableString+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableString+KSSafe.m"; sourceTree = "<group>"; };
  880. 2779337527E3249C0010E277 /* NSMutableDictionary+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+KSSafe.h"; sourceTree = "<group>"; };
  881. 2779337727E3249C0010E277 /* NSObject+AssociatedObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AssociatedObject.m"; sourceTree = "<group>"; };
  882. 2779337827E3249C0010E277 /* UIView+Hints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Hints.h"; sourceTree = "<group>"; };
  883. 2779337927E3249C0010E277 /* UIControl+ButtonAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIControl+ButtonAction.m"; sourceTree = "<group>"; };
  884. 2779337A27E3249D0010E277 /* UIDevice+zhDeviceType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+zhDeviceType.m"; sourceTree = "<group>"; };
  885. 2779337B27E3249D0010E277 /* NSString+zh_SafeAccess.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+zh_SafeAccess.m"; sourceTree = "<group>"; };
  886. 2779337C27E3249D0010E277 /* NSDictionary+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Extension.h"; sourceTree = "<group>"; };
  887. 2779337D27E3249D0010E277 /* UIViewController+zhStatusBarStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+zhStatusBarStyle.m"; sourceTree = "<group>"; };
  888. 2779337E27E3249D0010E277 /* UITextView+ZWPlaceHolder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWPlaceHolder.m"; sourceTree = "<group>"; };
  889. 2779337F27E3249D0010E277 /* NSString+CZHSizeExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+CZHSizeExtension.h"; sourceTree = "<group>"; };
  890. 2779338027E3249D0010E277 /* CALayer+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Color.m"; sourceTree = "<group>"; };
  891. 2779338127E3249D0010E277 /* NSDate+Transform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Transform.h"; sourceTree = "<group>"; };
  892. 2779338227E3249D0010E277 /* NSMutableAttributedString+CZHExtention.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableAttributedString+CZHExtention.m"; sourceTree = "<group>"; };
  893. 2779338327E3249D0010E277 /* NSString+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Extension.h"; sourceTree = "<group>"; };
  894. 2779338427E3249D0010E277 /* UITextView+ZWLimitCounter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWLimitCounter.m"; sourceTree = "<group>"; };
  895. 2779338527E3249D0010E277 /* UILabel+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+Extension.m"; sourceTree = "<group>"; };
  896. 2779338627E3249D0010E277 /* NSDate+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Extension.h"; sourceTree = "<group>"; };
  897. 2779338727E3249D0010E277 /* KSUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUtilities.m; sourceTree = "<group>"; };
  898. 2779338927E3249D0010E277 /* pinyin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pinyin.h; sourceTree = "<group>"; };
  899. 2779338A27E3249D0010E277 /* pinyin.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; path = pinyin.c; sourceTree = "<group>"; };
  900. 2779338B27E3249D0010E277 /* UIImage+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Color.h"; sourceTree = "<group>"; };
  901. 2779338C27E3249D0010E277 /* CALayer+Layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Layout.h"; sourceTree = "<group>"; };
  902. 2779338D27E3249D0010E277 /* NSObject+ReadDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
  903. 2779338E27E3249D0010E277 /* UIAlertController+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIAlertController+Extend.m"; sourceTree = "<group>"; };
  904. 2779338F27E3249D0010E277 /* UIImageView+CornerRadius.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+CornerRadius.h"; sourceTree = "<group>"; };
  905. 2779339027E3249D0010E277 /* UIScreen+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScreen+Extend.h"; sourceTree = "<group>"; };
  906. 2779339127E3249D0010E277 /* NSArray+zh_SafeAccess.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+zh_SafeAccess.m"; sourceTree = "<group>"; };
  907. 2779339227E3249D0010E277 /* UIColor+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Extend.m"; sourceTree = "<group>"; };
  908. 2779339327E3249D0010E277 /* zhPopupController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = zhPopupController.m; sourceTree = "<group>"; };
  909. 2779339427E3249D0010E277 /* UIView+Dealloc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Dealloc.m"; sourceTree = "<group>"; };
  910. 2779339527E3249D0010E277 /* NSObject+Parse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Parse.m"; sourceTree = "<group>"; };
  911. 2779339627E3249D0010E277 /* UIView+AddConstraints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+AddConstraints.m"; sourceTree = "<group>"; };
  912. 2779339727E3249D0010E277 /* UIView+KSExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+KSExtension.h"; sourceTree = "<group>"; };
  913. 2779339827E3249D0010E277 /* NSString+CZHSizeExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+CZHSizeExtension.m"; sourceTree = "<group>"; };
  914. 2779339927E3249D0010E277 /* UITextView+ZWPlaceHolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWPlaceHolder.h"; sourceTree = "<group>"; };
  915. 2779339A27E3249D0010E277 /* NSDictionary+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Extension.m"; sourceTree = "<group>"; };
  916. 2779339B27E3249D0010E277 /* UIViewController+zhStatusBarStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+zhStatusBarStyle.h"; sourceTree = "<group>"; };
  917. 2779339C27E3249D0010E277 /* NSString+zh_SafeAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+zh_SafeAccess.h"; sourceTree = "<group>"; };
  918. 2779339D27E3249D0010E277 /* UIDevice+zhDeviceType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+zhDeviceType.h"; sourceTree = "<group>"; };
  919. 2779339E27E3249D0010E277 /* UIControl+ButtonAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIControl+ButtonAction.h"; sourceTree = "<group>"; };
  920. 2779339F27E3249D0010E277 /* UIView+Hints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Hints.m"; sourceTree = "<group>"; };
  921. 277933A027E3249D0010E277 /* NSObject+AssociatedObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AssociatedObject.h"; sourceTree = "<group>"; };
  922. 277933A127E3249D0010E277 /* KSUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUtilities.h; sourceTree = "<group>"; };
  923. 277933A227E3249D0010E277 /* UILabel+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+Extension.h"; sourceTree = "<group>"; };
  924. 277933A327E3249D0010E277 /* NSDate+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Extension.m"; sourceTree = "<group>"; };
  925. 277933A427E3249D0010E277 /* UITextView+ZWLimitCounter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWLimitCounter.h"; sourceTree = "<group>"; };
  926. 277933A527E3249D0010E277 /* NSString+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Extension.m"; sourceTree = "<group>"; };
  927. 277933A627E3249D0010E277 /* NSDate+Transform.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Transform.m"; sourceTree = "<group>"; };
  928. 277933A727E3249D0010E277 /* NSMutableAttributedString+CZHExtention.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableAttributedString+CZHExtention.h"; sourceTree = "<group>"; };
  929. 277933A827E3249D0010E277 /* CALayer+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Color.h"; sourceTree = "<group>"; };
  930. 277933A927E3249D0010E277 /* UIScreen+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScreen+Extend.m"; sourceTree = "<group>"; };
  931. 277933AA27E3249D0010E277 /* UIAlertController+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIAlertController+Extend.h"; sourceTree = "<group>"; };
  932. 277933AB27E3249D0010E277 /* UIImageView+CornerRadius.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+CornerRadius.m"; sourceTree = "<group>"; };
  933. 277933AC27E3249E0010E277 /* NSObject+ReadDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
  934. 277933AD27E3249E0010E277 /* CALayer+Layout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Layout.m"; sourceTree = "<group>"; };
  935. 277933AE27E3249E0010E277 /* UIImage+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Color.m"; sourceTree = "<group>"; };
  936. 277933AF27E3249E0010E277 /* UIView+KSExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+KSExtension.m"; sourceTree = "<group>"; };
  937. 277933B027E3249E0010E277 /* NSObject+Parse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Parse.h"; sourceTree = "<group>"; };
  938. 277933B127E3249E0010E277 /* UIView+AddConstraints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+AddConstraints.h"; sourceTree = "<group>"; };
  939. 277933B227E3249E0010E277 /* UIView+Dealloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Dealloc.h"; sourceTree = "<group>"; };
  940. 277933B327E3249E0010E277 /* zhPopupController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zhPopupController.h; sourceTree = "<group>"; };
  941. 277933B427E3249E0010E277 /* UIColor+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Extend.h"; sourceTree = "<group>"; };
  942. 277933B527E3249E0010E277 /* NSArray+zh_SafeAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+zh_SafeAccess.h"; sourceTree = "<group>"; };
  943. 277933B727E3249E0010E277 /* UIView+XIBView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XIBView.m"; sourceTree = "<group>"; };
  944. 277933B827E3249E0010E277 /* UILabel+QWTopLeftLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+QWTopLeftLabel.m"; sourceTree = "<group>"; };
  945. 277933B927E3249E0010E277 /* UrlDecode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UrlDecode.m; sourceTree = "<group>"; };
  946. 277933BA27E3249E0010E277 /* UIButton+Property.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Property.m"; sourceTree = "<group>"; };
  947. 277933BB27E3249E0010E277 /* UIScrollView+KSTouch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+KSTouch.m"; sourceTree = "<group>"; };
  948. 277933BC27E3249E0010E277 /* UIDevice+TFDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+TFDevice.m"; sourceTree = "<group>"; };
  949. 277933BD27E3249E0010E277 /* MBProgressHUD+KSShow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+KSShow.h"; sourceTree = "<group>"; };
  950. 277933BE27E3249E0010E277 /* UIView+KSLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+KSLayer.m"; sourceTree = "<group>"; };
  951. 277933BF27E3249E0010E277 /* UIImage+Property.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Property.m"; sourceTree = "<group>"; };
  952. 277933C027E3249E0010E277 /* NSObject+ReadDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
  953. 277933C127E3249E0010E277 /* UIView+ShowProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ShowProgress.m"; sourceTree = "<group>"; };
  954. 277933C227E3249E0010E277 /* UIImage+ResizeImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ResizeImage.m"; sourceTree = "<group>"; };
  955. 277933C327E3249E0010E277 /* UIButton+EnlargeEdge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+EnlargeEdge.h"; sourceTree = "<group>"; };
  956. 277933C427E3249E0010E277 /* UIButton+HasChooseImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+HasChooseImage.m"; sourceTree = "<group>"; };
  957. 277933C527E3249E0010E277 /* NSObject+AutoProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AutoProperty.m"; sourceTree = "<group>"; };
  958. 277933C627E3249E0010E277 /* UIImage+UIImageScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+UIImageScale.m"; sourceTree = "<group>"; };
  959. 277933C727E3249E0010E277 /* UIImage+Resize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Resize.h"; sourceTree = "<group>"; };
  960. 277933C827E3249E0010E277 /* UIView+Animation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Animation.m"; sourceTree = "<group>"; };
  961. 277933C927E3249E0010E277 /* UIView+XIBView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XIBView.h"; sourceTree = "<group>"; };
  962. 277933CA27E3249E0010E277 /* UIDevice+TFDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+TFDevice.h"; sourceTree = "<group>"; };
  963. 277933CB27E3249E0010E277 /* UIScrollView+KSTouch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+KSTouch.h"; sourceTree = "<group>"; };
  964. 277933CC27E3249E0010E277 /* UIButton+Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+Property.h"; sourceTree = "<group>"; };
  965. 277933CD27E3249E0010E277 /* UrlDecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UrlDecode.h; sourceTree = "<group>"; };
  966. 277933CE27E3249E0010E277 /* UILabel+QWTopLeftLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+QWTopLeftLabel.h"; sourceTree = "<group>"; };
  967. 277933CF27E3249E0010E277 /* UIImage+UIImageScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+UIImageScale.h"; sourceTree = "<group>"; };
  968. 277933D027E3249E0010E277 /* NSObject+AutoProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AutoProperty.h"; sourceTree = "<group>"; };
  969. 277933D127E3249E0010E277 /* UIButton+EnlargeEdge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+EnlargeEdge.m"; sourceTree = "<group>"; };
  970. 277933D227E3249E0010E277 /* UIButton+HasChooseImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+HasChooseImage.h"; sourceTree = "<group>"; };
  971. 277933D327E3249E0010E277 /* UIImage+ResizeImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ResizeImage.h"; sourceTree = "<group>"; };
  972. 277933D427E3249E0010E277 /* UIView+ShowProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ShowProgress.h"; sourceTree = "<group>"; };
  973. 277933D527E3249E0010E277 /* NSObject+ReadDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
  974. 277933D627E3249E0010E277 /* UIImage+Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Property.h"; sourceTree = "<group>"; };
  975. 277933D727E3249E0010E277 /* MBProgressHUD+KSShow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+KSShow.m"; sourceTree = "<group>"; };
  976. 277933D827E3249E0010E277 /* UIView+KSLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+KSLayer.h"; sourceTree = "<group>"; };
  977. 277933D927E3249E0010E277 /* UIView+Animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Animation.h"; sourceTree = "<group>"; };
  978. 277933DA27E3249E0010E277 /* UIImage+Resize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Resize.m"; sourceTree = "<group>"; };
  979. 277933DC27E3249E0010E277 /* KSVideoEditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSVideoEditor.h; sourceTree = "<group>"; };
  980. 277933DD27E3249E0010E277 /* KSVideoEditor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSVideoEditor.m; sourceTree = "<group>"; };
  981. 277933DF27E3249E0010E277 /* KSGifRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSGifRefreshHeader.m; sourceTree = "<group>"; };
  982. 277933E027E3249E0010E277 /* KSGifRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSGifRefreshFooter.m; sourceTree = "<group>"; };
  983. 277933E127E3249E0010E277 /* KSGifRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSGifRefreshFooter.h; sourceTree = "<group>"; };
  984. 277933E227E3249E0010E277 /* KSGifRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSGifRefreshHeader.h; sourceTree = "<group>"; };
  985. 277933E427E3249E0010E277 /* KSAudioSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioSessionManager.m; sourceTree = "<group>"; };
  986. 277933E527E3249F0010E277 /* KSAudioSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioSessionManager.h; sourceTree = "<group>"; };
  987. 277933E727E3249F0010E277 /* VoNetWorking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoNetWorking.h; sourceTree = "<group>"; };
  988. 277933E927E3249F0010E277 /* VoLRUManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoLRUManager.m; sourceTree = "<group>"; };
  989. 277933EA27E3249F0010E277 /* VoMemoryCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoMemoryCache.h; sourceTree = "<group>"; };
  990. 277933EB27E3249F0010E277 /* VoDiskCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoDiskCache.m; sourceTree = "<group>"; };
  991. 277933EC27E3249F0010E277 /* VoCacheManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoCacheManager.m; sourceTree = "<group>"; };
  992. 277933ED27E3249F0010E277 /* VoLRUManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoLRUManager.h; sourceTree = "<group>"; };
  993. 277933EE27E3249F0010E277 /* VoMemoryCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoMemoryCache.m; sourceTree = "<group>"; };
  994. 277933EF27E3249F0010E277 /* VoCacheManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoCacheManager.h; sourceTree = "<group>"; };
  995. 277933F027E3249F0010E277 /* VoDiskCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoDiskCache.h; sourceTree = "<group>"; };
  996. 277933F127E3249F0010E277 /* VoNetworking+RequestManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "VoNetworking+RequestManager.m"; sourceTree = "<group>"; };
  997. 277933F227E3249F0010E277 /* VoNetWorking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoNetWorking.m; sourceTree = "<group>"; };
  998. 277933F327E3249F0010E277 /* VoNetworking+RequestManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "VoNetworking+RequestManager.h"; sourceTree = "<group>"; };
  999. 277933F527E3249F0010E277 /* DiskFreeSpaceManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DiskFreeSpaceManager.m; sourceTree = "<group>"; };
  1000. 277933F627E3249F0010E277 /* DiskFreeSpaceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DiskFreeSpaceManager.h; sourceTree = "<group>"; };
  1001. 277933F827E3249F0010E277 /* KSPremissionAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSPremissionAlert.m; sourceTree = "<group>"; };
  1002. 277933F927E3249F0010E277 /* KSPremissionAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSPremissionAlert.xib; sourceTree = "<group>"; };
  1003. 277933FA27E3249F0010E277 /* KSPremissionAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSPremissionAlert.h; sourceTree = "<group>"; };
  1004. 277933FC27E3249F0010E277 /* UIImage+Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Addtions.m"; sourceTree = "<group>"; };
  1005. 277933FD27E3249F0010E277 /* GRCreateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRCreateManager.m; sourceTree = "<group>"; };
  1006. 277933FE27E3249F0010E277 /* GRScanManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRScanManager.h; sourceTree = "<group>"; };
  1007. 277933FF27E3249F0010E277 /* ShoppCatView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShoppCatView.h; sourceTree = "<group>"; };
  1008. 2779340127E3249F0010E277 /* QCCountdownButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QCCountdownButton.m; sourceTree = "<group>"; };
  1009. 2779340227E3249F0010E277 /* QCCountdownButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QCCountdownButton.h; sourceTree = "<group>"; };
  1010. 2779340327E3249F0010E277 /* LifeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LifeButton.h; sourceTree = "<group>"; };
  1011. 2779340427E3249F0010E277 /* KSStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSStatusView.m; sourceTree = "<group>"; };
  1012. 2779340527E3249F0010E277 /* prodectButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prodectButton.h; sourceTree = "<group>"; };
  1013. 2779340627E3249F0010E277 /* StoreButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StoreButton.h; sourceTree = "<group>"; };
  1014. 2779340727E3249F0010E277 /* KSChoosePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChoosePicker.m; sourceTree = "<group>"; };
  1015. 2779340927E3249F0010E277 /* KSAudioRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordManager.h; sourceTree = "<group>"; };
  1016. 2779340A27E3249F0010E277 /* KSRecordStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordStatusView.h; sourceTree = "<group>"; };
  1017. 2779340B27E3249F0010E277 /* KSHoldButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSHoldButton.m; sourceTree = "<group>"; };
  1018. 2779340C27E3249F0010E277 /* KSRecordPowerAnimationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordPowerAnimationView.h; sourceTree = "<group>"; };
  1019. 2779340D27E3249F0010E277 /* KSAudioRecordFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordFileManager.m; sourceTree = "<group>"; };
  1020. 2779340E27E3249F0010E277 /* UIView+ValueAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ValueAdd.m"; sourceTree = "<group>"; };
  1021. 2779340F27E3249F0010E277 /* KSRecordStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordStatusView.m; sourceTree = "<group>"; };
  1022. 2779341027E3249F0010E277 /* KSAudioRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordManager.m; sourceTree = "<group>"; };
  1023. 2779341127E3249F0010E277 /* KSHoldButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSHoldButton.h; sourceTree = "<group>"; };
  1024. 2779341227E3249F0010E277 /* UIView+ValueAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ValueAdd.h"; sourceTree = "<group>"; };
  1025. 2779341327E3249F0010E277 /* KSRecordPowerAnimationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordPowerAnimationView.m; sourceTree = "<group>"; };
  1026. 2779341427E3249F0010E277 /* KSAudioRecordFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordFileManager.h; sourceTree = "<group>"; };
  1027. 2779341527E3249F0010E277 /* HomeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeButton.m; sourceTree = "<group>"; };
  1028. 2779341627E3249F0010E277 /* KSImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSImageButton.h; sourceTree = "<group>"; };
  1029. 2779341727E3249F0010E277 /* KSFullDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSFullDatePicker.m; sourceTree = "<group>"; };
  1030. 2779341827E3249F0010E277 /* NSString+phone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+phone.h"; sourceTree = "<group>"; };
  1031. 2779341927E3249F0010E277 /* KSMediaManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMediaManager.m; sourceTree = "<group>"; };
  1032. 2779341A27E3249F0010E277 /* ShopMessBtn.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopMessBtn.m; sourceTree = "<group>"; };
  1033. 2779341B27E324A00010E277 /* UIColor+Hex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Hex.m"; sourceTree = "<group>"; };
  1034. 2779341C27E324A00010E277 /* shopview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = shopview.m; sourceTree = "<group>"; };
  1035. 2779341E27E324A00010E277 /* YKMultiLevelTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YKMultiLevelTableView.m; sourceTree = "<group>"; };
  1036. 2779341F27E324A00010E277 /* YKNodeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YKNodeModel.m; sourceTree = "<group>"; };
  1037. 2779342027E324A00010E277 /* YKNodeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YKNodeModel.h; sourceTree = "<group>"; };
  1038. 2779342127E324A00010E277 /* YKMultiLevelTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YKMultiLevelTableView.h; sourceTree = "<group>"; };
  1039. 2779342227E324A00010E277 /* pickBut.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = pickBut.m; sourceTree = "<group>"; };
  1040. 2779342327E324A00010E277 /* KSMessageInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMessageInputView.h; sourceTree = "<group>"; };
  1041. 2779342427E324A00010E277 /* NSString+MD5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MD5.h"; sourceTree = "<group>"; };
  1042. 2779342527E324A00010E277 /* ShopButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopButton.h; sourceTree = "<group>"; };
  1043. 2779342627E324A00010E277 /* MBProgressHUD+NJ.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+NJ.m"; sourceTree = "<group>"; };
  1044. 2779342727E324A00010E277 /* PIckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PIckView.h; sourceTree = "<group>"; };
  1045. 2779342827E324A00010E277 /* StoreShopCaterview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoreShopCaterview.m; sourceTree = "<group>"; };
  1046. 2779342A27E324A00010E277 /* UITextField_Toolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextField_Toolbar.m; sourceTree = "<group>"; };
  1047. 2779342B27E324A00010E277 /* SkipTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextField.m; sourceTree = "<group>"; };
  1048. 2779342C27E324A00010E277 /* SkipTextProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextProtocol.h; sourceTree = "<group>"; };
  1049. 2779342D27E324A00010E277 /* SkipTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextView.h; sourceTree = "<group>"; };
  1050. 2779342E27E324A00010E277 /* UITextView_Toolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextView_Toolbar.m; sourceTree = "<group>"; };
  1051. 2779342F27E324A00010E277 /* UITextField_Toolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextField_Toolbar.h; sourceTree = "<group>"; };
  1052. 2779343027E324A00010E277 /* SkipTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextField.h; sourceTree = "<group>"; };
  1053. 2779343127E324A00010E277 /* SkipTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextView.m; sourceTree = "<group>"; };
  1054. 2779343227E324A00010E277 /* UITextView_Toolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextView_Toolbar.h; sourceTree = "<group>"; };
  1055. 2779343327E324A00010E277 /* NSDate+KSBaseDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+KSBaseDatePicker.h"; sourceTree = "<group>"; };
  1056. 2779343427E324A00010E277 /* SearchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchView.m; sourceTree = "<group>"; };
  1057. 2779343527E324A00010E277 /* StateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateView.h; sourceTree = "<group>"; };
  1058. 2779343627E324A00010E277 /* sortButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sortButton.h; sourceTree = "<group>"; };
  1059. 2779343727E324A00010E277 /* KSInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSInputView.h; sourceTree = "<group>"; };
  1060. 2779343827E324A00010E277 /* KeyChainTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KeyChainTools.h; sourceTree = "<group>"; };
  1061. 2779343927E324A00010E277 /* KSStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSStatusView.h; sourceTree = "<group>"; };
  1062. 2779343A27E324A00010E277 /* prodectButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = prodectButton.m; sourceTree = "<group>"; };
  1063. 2779343B27E324A00010E277 /* StoreButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoreButton.m; sourceTree = "<group>"; };
  1064. 2779343C27E324A00010E277 /* LifeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LifeButton.m; sourceTree = "<group>"; };
  1065. 2779343D27E324A00010E277 /* ShoppCatView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppCatView.m; sourceTree = "<group>"; };
  1066. 2779343E27E324A00010E277 /* GRScanManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRScanManager.m; sourceTree = "<group>"; };
  1067. 2779343F27E324A00010E277 /* GRCreateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRCreateManager.h; sourceTree = "<group>"; };
  1068. 2779344027E324A00010E277 /* UIImage+Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Addtions.h"; sourceTree = "<group>"; };
  1069. 2779344127E324A00010E277 /* UIColor+Hex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Hex.h"; sourceTree = "<group>"; };
  1070. 2779344227E324A00010E277 /* ShopMessBtn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopMessBtn.h; sourceTree = "<group>"; };
  1071. 2779344327E324A00010E277 /* KSMediaManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMediaManager.h; sourceTree = "<group>"; };
  1072. 2779344427E324A00010E277 /* NSString+phone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+phone.m"; sourceTree = "<group>"; };
  1073. 2779344527E324A00010E277 /* KSFullDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSFullDatePicker.h; sourceTree = "<group>"; };
  1074. 2779344627E324A00010E277 /* KSImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSImageButton.m; sourceTree = "<group>"; };
  1075. 2779344727E324A00010E277 /* HomeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeButton.h; sourceTree = "<group>"; };
  1076. 2779344827E324A00010E277 /* KSChoosePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChoosePicker.h; sourceTree = "<group>"; };
  1077. 2779344927E324A00010E277 /* PIckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PIckView.m; sourceTree = "<group>"; };
  1078. 2779344A27E324A00010E277 /* MBProgressHUD+NJ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+NJ.h"; sourceTree = "<group>"; };
  1079. 2779344B27E324A00010E277 /* ShopButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopButton.m; sourceTree = "<group>"; };
  1080. 2779344C27E324A00010E277 /* NSString+MD5.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MD5.m"; sourceTree = "<group>"; };
  1081. 2779344D27E324A00010E277 /* KSMessageInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMessageInputView.m; sourceTree = "<group>"; };
  1082. 2779344E27E324A00010E277 /* pickBut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pickBut.h; sourceTree = "<group>"; };
  1083. 2779344F27E324A00010E277 /* shopview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shopview.h; sourceTree = "<group>"; };
  1084. 2779345027E324A00010E277 /* KSInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSInputView.m; sourceTree = "<group>"; };
  1085. 2779345127E324A00010E277 /* KeyChainTools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KeyChainTools.m; sourceTree = "<group>"; };
  1086. 2779345227E324A00010E277 /* sortButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = sortButton.m; sourceTree = "<group>"; };
  1087. 2779345327E324A00010E277 /* StateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StateView.m; sourceTree = "<group>"; };
  1088. 2779345427E324A00010E277 /* NSDate+KSBaseDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+KSBaseDatePicker.m"; sourceTree = "<group>"; };
  1089. 2779345527E324A00010E277 /* SearchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchView.h; sourceTree = "<group>"; };
  1090. 2779345727E324A10010E277 /* LLPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhotoBrowser.m; sourceTree = "<group>"; };
  1091. 2779345827E324A10010E277 /* LLCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLCollectionViewCell.h; sourceTree = "<group>"; };
  1092. 2779345A27E324A10010E277 /* LLImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLImageCache.m; sourceTree = "<group>"; };
  1093. 2779345B27E324A10010E277 /* LLFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLFileManager.m; sourceTree = "<group>"; };
  1094. 2779345C27E324A10010E277 /* LLImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLImageCache.h; sourceTree = "<group>"; };
  1095. 2779345D27E324A10010E277 /* LLFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLFileManager.h; sourceTree = "<group>"; };
  1096. 2779345E27E324A10010E277 /* LLPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhoto.m; sourceTree = "<group>"; };
  1097. 2779345F27E324A10010E277 /* LLCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLCollectionViewCell.m; sourceTree = "<group>"; };
  1098. 2779346027E324A10010E277 /* LLPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhotoBrowser.h; sourceTree = "<group>"; };
  1099. 2779346127E324A10010E277 /* LLPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhoto.h; sourceTree = "<group>"; };
  1100. 2779346227E324A10010E277 /* StoreShopCaterview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StoreShopCaterview.h; sourceTree = "<group>"; };
  1101. 2779346427E324A10010E277 /* CoinModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CoinModel.h; sourceTree = "<group>"; };
  1102. 2779346527E324A10010E277 /* ArchiveTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArchiveTools.h; sourceTree = "<group>"; };
  1103. 2779346627E324A10010E277 /* NSObject+Archiving.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Archiving.m"; sourceTree = "<group>"; };
  1104. 2779346727E324A10010E277 /* CoinModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CoinModel.m; sourceTree = "<group>"; };
  1105. 2779346827E324A10010E277 /* ArchiveTools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ArchiveTools.m; sourceTree = "<group>"; };
  1106. 2779346927E324A10010E277 /* NSObject+Archiving.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Archiving.h"; sourceTree = "<group>"; };
  1107. 2779346B27E324A10010E277 /* UserKeyHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserKeyHeader.h; sourceTree = "<group>"; };
  1108. 2779346C27E324A10010E277 /* Common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = "<group>"; };
  1109. 2779346D27E324A10010E277 /* PrefixHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
  1110. 2779347027E324A10010E277 /* AnimationContoller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnimationContoller.h; sourceTree = "<group>"; };
  1111. 2779347127E324A10010E277 /* KLTNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KLTNavigationController.m; sourceTree = "<group>"; };
  1112. 2779347227E324A10010E277 /* KLTNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KLTNavigationController.h; sourceTree = "<group>"; };
  1113. 2779347327E324A10010E277 /* AnimationContoller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnimationContoller.m; sourceTree = "<group>"; };
  1114. 2779347527E324A10010E277 /* DZNSegmentedControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DZNSegmentedControl.m; sourceTree = "<group>"; };
  1115. 2779347627E324A10010E277 /* DZNSegmentedControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DZNSegmentedControl.h; sourceTree = "<group>"; };
  1116. 2779347827E324A10010E277 /* WMLightView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMLightView.h; sourceTree = "<group>"; };
  1117. 2779347927E324A10010E277 /* WMPlayerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayerModel.m; sourceTree = "<group>"; };
  1118. 2779347A27E324A10010E277 /* FastForwardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FastForwardView.h; sourceTree = "<group>"; };
  1119. 2779347B27E324A10010E277 /* WMPlayer.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = WMPlayer.bundle; sourceTree = "<group>"; };
  1120. 2779347C27E324A10010E277 /* WMPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayer.h; sourceTree = "<group>"; };
  1121. 2779347D27E324A10010E277 /* WMPlayerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayerModel.h; sourceTree = "<group>"; };
  1122. 2779347E27E324A10010E277 /* WMLightView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMLightView.m; sourceTree = "<group>"; };
  1123. 2779347F27E324A10010E277 /* FastForwardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FastForwardView.m; sourceTree = "<group>"; };
  1124. 2779348027E324A10010E277 /* WMPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayer.m; sourceTree = "<group>"; };
  1125. 2779348227E324A10010E277 /* TZPhotoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewCell.h; sourceTree = "<group>"; };
  1126. 2779348327E324A10010E277 /* TZPhotoPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPickerController.h; sourceTree = "<group>"; };
  1127. 2779348427E324A10010E277 /* TZImageCropManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageCropManager.m; sourceTree = "<group>"; };
  1128. 2779348527E324A10010E277 /* TZImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageManager.h; sourceTree = "<group>"; };
  1129. 2779348627E324A10010E277 /* TZAssetCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetCell.m; sourceTree = "<group>"; };
  1130. 2779348727E324A10010E277 /* TZVideoEditedPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoEditedPreviewController.m; sourceTree = "<group>"; };
  1131. 2779348827E324A10010E277 /* TZVideoCropController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoCropController.m; sourceTree = "<group>"; };
  1132. 2779348927E324A10010E277 /* TZVideoPlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoPlayerController.m; sourceTree = "<group>"; };
  1133. 2779348A27E324A10010E277 /* TZAssetModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetModel.m; sourceTree = "<group>"; };
  1134. 2779348B27E324A10010E277 /* NSBundle+TZImagePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+TZImagePicker.m"; sourceTree = "<group>"; };
  1135. 2779348C27E324A10010E277 /* UIView+TZLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+TZLayout.h"; sourceTree = "<group>"; };
  1136. 2779348D27E324A10010E277 /* TZLocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZLocationManager.h; sourceTree = "<group>"; };
  1137. 2779348E27E324A10010E277 /* TZImagePickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImagePickerController.h; sourceTree = "<group>"; };
  1138. 2779348F27E324A10010E277 /* TZPhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewController.m; sourceTree = "<group>"; };
  1139. 2779349027E324A10010E277 /* TZImagePickerController.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = TZImagePickerController.bundle; sourceTree = "<group>"; };
  1140. 2779349127E324A10010E277 /* TZProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZProgressView.m; sourceTree = "<group>"; };
  1141. 2779349227E324A10010E277 /* TZGifPhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZGifPhotoPreviewController.h; sourceTree = "<group>"; };
  1142. 2779349327E324A10010E277 /* TZImageRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageRequestOperation.h; sourceTree = "<group>"; };
  1143. 2779349427E324A10010E277 /* TZVideoEditedPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoEditedPreviewController.h; sourceTree = "<group>"; };
  1144. 2779349527E324A10010E277 /* TZAssetCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetCell.h; sourceTree = "<group>"; };
  1145. 2779349627E324A10010E277 /* TZImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageManager.m; sourceTree = "<group>"; };
  1146. 2779349727E324A20010E277 /* TZImageCropManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageCropManager.h; sourceTree = "<group>"; };
  1147. 2779349827E324A20010E277 /* TZPhotoPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPickerController.m; sourceTree = "<group>"; };
  1148. 2779349927E324A20010E277 /* TZPhotoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewCell.m; sourceTree = "<group>"; };
  1149. 2779349A27E324A20010E277 /* NSBundle+TZImagePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+TZImagePicker.h"; sourceTree = "<group>"; };
  1150. 2779349B27E324A20010E277 /* UIView+TZLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+TZLayout.m"; sourceTree = "<group>"; };
  1151. 2779349C27E324A20010E277 /* TZAssetModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetModel.h; sourceTree = "<group>"; };
  1152. 2779349D27E324A20010E277 /* TZVideoPlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoPlayerController.h; sourceTree = "<group>"; };
  1153. 2779349E27E324A20010E277 /* TZVideoCropController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoCropController.h; sourceTree = "<group>"; };
  1154. 2779349F27E324A20010E277 /* TZPhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewController.h; sourceTree = "<group>"; };
  1155. 277934A027E324A20010E277 /* TZImagePickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImagePickerController.m; sourceTree = "<group>"; };
  1156. 277934A127E324A20010E277 /* TZLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZLocationManager.m; sourceTree = "<group>"; };
  1157. 277934A227E324A20010E277 /* TZGifPhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZGifPhotoPreviewController.m; sourceTree = "<group>"; };
  1158. 277934A327E324A20010E277 /* TZImageRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageRequestOperation.m; sourceTree = "<group>"; };
  1159. 277934A427E324A20010E277 /* TZProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZProgressView.h; sourceTree = "<group>"; };
  1160. 277934A627E324A20010E277 /* MSSBrowseRemindView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseRemindView.h; sourceTree = "<group>"; };
  1161. 277934A727E324A20010E277 /* MSSBrowseZoomScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseZoomScrollView.h; sourceTree = "<group>"; };
  1162. 277934A827E324A20010E277 /* MSSBrowseLoadingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLoadingImageView.m; sourceTree = "<group>"; };
  1163. 277934A927E324A20010E277 /* MSSBrowseBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseBaseViewController.h; sourceTree = "<group>"; };
  1164. 277934AA27E324A20010E277 /* UIImage+MSSScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MSSScale.h"; sourceTree = "<group>"; };
  1165. 277934AB27E324A20010E277 /* MSSBrowseNetworkViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseNetworkViewController.h; sourceTree = "<group>"; };
  1166. 277934AC27E324A20010E277 /* MSSBrowseActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheet.h; sourceTree = "<group>"; };
  1167. 277934AD27E324A20010E277 /* MSSBrowseActionSheetCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheetCell.h; sourceTree = "<group>"; };
  1168. 277934AE27E324A20010E277 /* MSSBrowseLocalViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLocalViewController.m; sourceTree = "<group>"; };
  1169. 277934AF27E324A20010E277 /* MSSBrowseCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseCollectionViewCell.m; sourceTree = "<group>"; };
  1170. 277934B027E324A20010E277 /* UIView+MSSLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MSSLayout.h"; sourceTree = "<group>"; };
  1171. 277934B127E324A20010E277 /* MSSBrowseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseModel.m; sourceTree = "<group>"; };
  1172. 277934B227E324A20010E277 /* MSSBrowseDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseDefine.h; sourceTree = "<group>"; };
  1173. 277934B327E324A20010E277 /* MSSBrowseActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheet.m; sourceTree = "<group>"; };
  1174. 277934B427E324A20010E277 /* MSSBrowseNetworkViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseNetworkViewController.m; sourceTree = "<group>"; };
  1175. 277934B527E324A20010E277 /* UIImage+MSSScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MSSScale.m"; sourceTree = "<group>"; };
  1176. 277934B627E324A20010E277 /* MSSBrowseBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseBaseViewController.m; sourceTree = "<group>"; };
  1177. 277934B727E324A20010E277 /* MSSBrowseLoadingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLoadingImageView.h; sourceTree = "<group>"; };
  1178. 277934B827E324A20010E277 /* MSSBrowseZoomScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseZoomScrollView.m; sourceTree = "<group>"; };
  1179. 277934B927E324A20010E277 /* MSSBrowseRemindView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseRemindView.m; sourceTree = "<group>"; };
  1180. 277934BA27E324A20010E277 /* mss_browseLoading@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@3x.png"; sourceTree = "<group>"; };
  1181. 277934BB27E324A20010E277 /* MSSBrowseCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseCollectionViewCell.h; sourceTree = "<group>"; };
  1182. 277934BC27E324A20010E277 /* MSSBrowseLocalViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLocalViewController.h; sourceTree = "<group>"; };
  1183. 277934BD27E324A20010E277 /* MSSBrowseActionSheetCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheetCell.m; sourceTree = "<group>"; };
  1184. 277934BE27E324A20010E277 /* MSSBrowseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseModel.h; sourceTree = "<group>"; };
  1185. 277934BF27E324A20010E277 /* mss_browseLoading@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@2x.png"; sourceTree = "<group>"; };
  1186. 277934C027E324A20010E277 /* UIView+MSSLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MSSLayout.m"; sourceTree = "<group>"; };
  1187. 277934C227E324A20010E277 /* FSCalendarCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCollectionView.m; sourceTree = "<group>"; };
  1188. 277934C327E324A20010E277 /* FSCalendarWeekdayView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarWeekdayView.h; sourceTree = "<group>"; };
  1189. 277934C427E324A20010E277 /* FSCalendarCollectionViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCollectionViewLayout.h; sourceTree = "<group>"; };
  1190. 277934C527E324A20010E277 /* FSCalendarDelegationProxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarDelegationProxy.m; sourceTree = "<group>"; };
  1191. 277934C627E324A20010E277 /* FSCalendarExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarExtensions.h; sourceTree = "<group>"; };
  1192. 277934C727E324A20010E277 /* FSCalendarDelegationFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarDelegationFactory.m; sourceTree = "<group>"; };
  1193. 277934C827E324A20010E277 /* FSCalendarSeparatorDecorationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarSeparatorDecorationView.h; sourceTree = "<group>"; };
  1194. 277934C927E324A20010E277 /* FSCalendarCalculator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCalculator.h; sourceTree = "<group>"; };
  1195. 277934CA27E324A20010E277 /* FSCalendarHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarHeaderView.h; sourceTree = "<group>"; };
  1196. 277934CB27E324A20010E277 /* FSCalendarConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarConstants.h; sourceTree = "<group>"; };
  1197. 277934CC27E324A20010E277 /* FSCalendarAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarAppearance.h; sourceTree = "<group>"; };
  1198. 277934CD27E324A20010E277 /* FSCalendarTransitionCoordinator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarTransitionCoordinator.h; sourceTree = "<group>"; };
  1199. 277934CE27E324A30010E277 /* FSCalendarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCell.m; sourceTree = "<group>"; };
  1200. 277934CF27E324A30010E277 /* FSCalendarStickyHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarStickyHeader.m; sourceTree = "<group>"; };
  1201. 277934D027E324A30010E277 /* FSCalendar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendar.m; sourceTree = "<group>"; };
  1202. 277934D127E324A30010E277 /* FSCalendarCollectionViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCollectionViewLayout.m; sourceTree = "<group>"; };
  1203. 277934D227E324A30010E277 /* FSCalendarWeekdayView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarWeekdayView.m; sourceTree = "<group>"; };
  1204. 277934D327E324A30010E277 /* FSCalendarCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCollectionView.h; sourceTree = "<group>"; };
  1205. 277934D427E324A30010E277 /* FSCalendarDynamicHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarDynamicHeader.h; sourceTree = "<group>"; };
  1206. 277934D527E324A30010E277 /* FSCalendarSeparatorDecorationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarSeparatorDecorationView.m; sourceTree = "<group>"; };
  1207. 277934D627E324A30010E277 /* FSCalendarDelegationFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarDelegationFactory.h; sourceTree = "<group>"; };
  1208. 277934D727E324A30010E277 /* FSCalendarExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarExtensions.m; sourceTree = "<group>"; };
  1209. 277934D827E324A30010E277 /* FSCalendarDelegationProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarDelegationProxy.h; sourceTree = "<group>"; };
  1210. 277934D927E324A30010E277 /* FSCalendarConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarConstants.m; sourceTree = "<group>"; };
  1211. 277934DA27E324A30010E277 /* FSCalendarCalculator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCalculator.m; sourceTree = "<group>"; };
  1212. 277934DB27E324A30010E277 /* FSCalendarHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarHeaderView.m; sourceTree = "<group>"; };
  1213. 277934DC27E324A30010E277 /* FSCalendarStickyHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarStickyHeader.h; sourceTree = "<group>"; };
  1214. 277934DD27E324A30010E277 /* FSCalendar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendar.h; sourceTree = "<group>"; };
  1215. 277934DE27E324A30010E277 /* FSCalendarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCell.h; sourceTree = "<group>"; };
  1216. 277934DF27E324A30010E277 /* FSCalendarTransitionCoordinator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarTransitionCoordinator.m; sourceTree = "<group>"; };
  1217. 277934E027E324A30010E277 /* FSCalendarAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarAppearance.m; sourceTree = "<group>"; };
  1218. 277934E227E324A30010E277 /* QWdynamicModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QWdynamicModel.m; sourceTree = "<group>"; };
  1219. 277934E327E324A30010E277 /* UIView+SDExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SDExtension.h"; sourceTree = "<group>"; };
  1220. 277934E427E324A30010E277 /* SDQWMaskCustomModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDQWMaskCustomModel.h; sourceTree = "<group>"; };
  1221. 277934E527E324A30010E277 /* SDCycleScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDCycleScrollView.h; sourceTree = "<group>"; };
  1222. 277934E627E324A30010E277 /* SDCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDCollectionViewCell.h; sourceTree = "<group>"; };
  1223. 277934E727E324A30010E277 /* SDQWMaskCustomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SDQWMaskCustomView.xib; sourceTree = "<group>"; };
  1224. 277934E827E324A30010E277 /* SDQWMaskCustomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDQWMaskCustomView.h; sourceTree = "<group>"; };
  1225. 277934E927E324A30010E277 /* SDCycleScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDCycleScrollView.m; sourceTree = "<group>"; };
  1226. 277934EA27E324A30010E277 /* UIView+SDExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SDExtension.m"; sourceTree = "<group>"; };
  1227. 277934EB27E324A30010E277 /* SDQWMaskCustomModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDQWMaskCustomModel.m; sourceTree = "<group>"; };
  1228. 277934EC27E324A30010E277 /* QWdynamicModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QWdynamicModel.h; sourceTree = "<group>"; };
  1229. 277934ED27E324A30010E277 /* SDCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDCollectionViewCell.m; sourceTree = "<group>"; };
  1230. 277934EF27E324A30010E277 /* TAAbstractDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAAbstractDotView.h; sourceTree = "<group>"; };
  1231. 277934F027E324A30010E277 /* TADotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TADotView.m; sourceTree = "<group>"; };
  1232. 277934F127E324A30010E277 /* TAPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAPageControl.m; sourceTree = "<group>"; };
  1233. 277934F227E324A30010E277 /* TAAnimatedDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAAnimatedDotView.m; sourceTree = "<group>"; };
  1234. 277934F327E324A30010E277 /* TAAbstractDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAAbstractDotView.m; sourceTree = "<group>"; };
  1235. 277934F427E324A30010E277 /* TADotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TADotView.h; sourceTree = "<group>"; };
  1236. 277934F527E324A30010E277 /* TAAnimatedDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAAnimatedDotView.h; sourceTree = "<group>"; };
  1237. 277934F627E324A30010E277 /* TAPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAPageControl.h; sourceTree = "<group>"; };
  1238. 277934F727E324A30010E277 /* SDQWMaskCustomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDQWMaskCustomView.m; sourceTree = "<group>"; };
  1239. 277934F927E324A30010E277 /* ALCalendarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCell.m; sourceTree = "<group>"; };
  1240. 277934FA27E324A30010E277 /* ALCalendarConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarConfig.m; sourceTree = "<group>"; };
  1241. 277934FB27E324A30010E277 /* ALCalendarHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHeader.m; sourceTree = "<group>"; };
  1242. 277934FC27E324A30010E277 /* ALCalendarDate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarDate.m; sourceTree = "<group>"; };
  1243. 277934FD27E324A30010E277 /* ALCalendarCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCollectionView.m; sourceTree = "<group>"; };
  1244. 277934FE27E324A30010E277 /* ALCalendarHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHelper.m; sourceTree = "<group>"; };
  1245. 277934FF27E324A30010E277 /* UIView+ALFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ALFrame.h"; sourceTree = "<group>"; };
  1246. 2779350027E324A30010E277 /* ALCalendarPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarPicker.h; sourceTree = "<group>"; };
  1247. 2779350127E324A30010E277 /* ALCalendarManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarManager.h; sourceTree = "<group>"; };
  1248. 2779350227E324A30010E277 /* ALCalendarCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCollectionView.h; sourceTree = "<group>"; };
  1249. 2779350327E324A30010E277 /* ALCalendarDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarDate.h; sourceTree = "<group>"; };
  1250. 2779350427E324A30010E277 /* ALCalendarHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHeader.h; sourceTree = "<group>"; };
  1251. 2779350527E324A30010E277 /* ALCalendarConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarConfig.h; sourceTree = "<group>"; };
  1252. 2779350627E324A30010E277 /* ALCalendarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCell.h; sourceTree = "<group>"; };
  1253. 2779350727E324A40010E277 /* ALCalendarHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHelper.h; sourceTree = "<group>"; };
  1254. 2779350827E324A40010E277 /* ALCalendarPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarPicker.m; sourceTree = "<group>"; };
  1255. 2779350927E324A40010E277 /* UIView+ALFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ALFrame.m"; sourceTree = "<group>"; };
  1256. 2779350A27E324A40010E277 /* ALCalendarManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarManager.m; sourceTree = "<group>"; };
  1257. 27F9031127E87C2C00C08A19 /* NetworkingCheckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkingCheckController.h; sourceTree = "<group>"; };
  1258. 27F9031227E87C2C00C08A19 /* NetworkingCheckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkingCheckController.m; sourceTree = "<group>"; };
  1259. 27F9031527E87C2C00C08A19 /* KSNetworkAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkAlert.h; sourceTree = "<group>"; };
  1260. 27F9031627E87C2C00C08A19 /* NetworkBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkBodyView.m; sourceTree = "<group>"; };
  1261. 27F9031727E87C2C00C08A19 /* NetworkBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NetworkBodyView.xib; sourceTree = "<group>"; };
  1262. 27F9031827E87C2D00C08A19 /* KSNetworkAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkAlert.m; sourceTree = "<group>"; };
  1263. 27F9031927E87C2D00C08A19 /* NetworkBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkBodyView.h; sourceTree = "<group>"; };
  1264. 27F9031A27E87C2D00C08A19 /* KSNetworkAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSNetworkAlert.xib; sourceTree = "<group>"; };
  1265. 27F9031C27E87C2D00C08A19 /* DeviceCheckView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceCheckView.xib; sourceTree = "<group>"; };
  1266. 27F9031D27E87C2D00C08A19 /* AudioPlayManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioPlayManager.m; sourceTree = "<group>"; };
  1267. 27F9031E27E87C2D00C08A19 /* AudioRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioRecordManager.m; sourceTree = "<group>"; };
  1268. 27F9031F27E87C2D00C08A19 /* DeviceCheckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceCheckView.m; sourceTree = "<group>"; };
  1269. 27F9032027E87C2D00C08A19 /* AudioRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioRecordManager.h; sourceTree = "<group>"; };
  1270. 27F9032127E87C2D00C08A19 /* DeviceCheckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceCheckView.h; sourceTree = "<group>"; };
  1271. 27F9032227E87C2D00C08A19 /* AudioPlayManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioPlayManager.h; sourceTree = "<group>"; };
  1272. 27F9032527E87C2E00C08A19 /* SettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingViewController.h; sourceTree = "<group>"; };
  1273. 27F9032627E87C2E00C08A19 /* SettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingViewController.m; sourceTree = "<group>"; };
  1274. 27F9033327E87C8A00C08A19 /* MineNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineNavView.h; sourceTree = "<group>"; };
  1275. 27F9033427E87C8A00C08A19 /* MineNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineNavView.m; sourceTree = "<group>"; };
  1276. 27F9033527E87C8B00C08A19 /* MineNavView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MineNavView.xib; sourceTree = "<group>"; };
  1277. 27F9033827E87FD500C08A19 /* MineBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MineBodyView.h; sourceTree = "<group>"; };
  1278. 27F9033927E87FD500C08A19 /* MineBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MineBodyView.m; sourceTree = "<group>"; };
  1279. 27F9033B27E87FE100C08A19 /* MineBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MineBodyView.xib; sourceTree = "<group>"; };
  1280. 63DC852CB04F64963003C553 /* Pods-KulexiuForStudent.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudent.debug.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent.debug.xcconfig"; sourceTree = "<group>"; };
  1281. BC0212F427FC4A080040569F /* SubjectImageCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SubjectImageCell.h; sourceTree = "<group>"; };
  1282. BC0212F527FC4A080040569F /* SubjectImageCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SubjectImageCell.m; sourceTree = "<group>"; };
  1283. BC0212F627FC4A080040569F /* SubjectImageCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SubjectImageCell.xib; sourceTree = "<group>"; };
  1284. BC0212F927FC61D30040569F /* KSSegmentControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KSSegmentControl.h; sourceTree = "<group>"; };
  1285. BC0212FA27FC61D30040569F /* KSSegmentControl.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KSSegmentControl.m; sourceTree = "<group>"; };
  1286. BC0212FC27FC66AA0040569F /* InstrumentMessageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InstrumentMessageModel.h; sourceTree = "<group>"; };
  1287. BC0212FD27FC66AA0040569F /* InstrumentMessageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InstrumentMessageModel.m; sourceTree = "<group>"; };
  1288. BC0212FF27FC6ADD0040569F /* UIView+SubViewExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SubViewExtension.h"; sourceTree = "<group>"; };
  1289. BC02130027FC6ADD0040569F /* UIView+SubViewExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SubViewExtension.m"; sourceTree = "<group>"; };
  1290. BC0D1F6B281013DF00C5D9E5 /* MyVideoCourseBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyVideoCourseBodyView.h; sourceTree = "<group>"; };
  1291. BC0D1F6C281013DF00C5D9E5 /* MyVideoCourseBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyVideoCourseBodyView.m; sourceTree = "<group>"; };
  1292. BC0D1F6E281015AF00C5D9E5 /* VideoCourseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoCourseCell.m; sourceTree = "<group>"; };
  1293. BC0D1F6F281015AF00C5D9E5 /* VideoCourseCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = VideoCourseCell.xib; sourceTree = "<group>"; };
  1294. BC0D1F70281015B000C5D9E5 /* VideoCourseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoCourseCell.h; sourceTree = "<group>"; };
  1295. BC0D1F732810165400C5D9E5 /* VideoCourseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoCourseModel.h; sourceTree = "<group>"; };
  1296. BC0D1F742810165400C5D9E5 /* VideoCourseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoCourseModel.m; sourceTree = "<group>"; };
  1297. BC1191FD280ED64E00A716F7 /* MyCourseViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyCourseViewController.h; sourceTree = "<group>"; };
  1298. BC1191FE280ED64E00A716F7 /* MyCourseViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyCourseViewController.m; sourceTree = "<group>"; };
  1299. BC119200280ED6A600A716F7 /* MyLessonBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyLessonBodyView.m; sourceTree = "<group>"; };
  1300. BC119202280ED6A600A716F7 /* MyLessonBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyLessonBodyView.h; sourceTree = "<group>"; };
  1301. BC119203280ED6A700A716F7 /* MyLiveCourseCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyLiveCourseCell.xib; sourceTree = "<group>"; };
  1302. BC119204280ED6A700A716F7 /* MyLiveCourseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyLiveCourseCell.m; sourceTree = "<group>"; };
  1303. BC119205280ED6A700A716F7 /* MyLiveCourseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyLiveCourseCell.h; sourceTree = "<group>"; };
  1304. BC119206280ED6A700A716F7 /* MyLessonSearchView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyLessonSearchView.xib; sourceTree = "<group>"; };
  1305. BC119208280ED6A800A716F7 /* MyLessonSearchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyLessonSearchView.h; sourceTree = "<group>"; };
  1306. BC119209280ED6A800A716F7 /* MyLessonSearchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyLessonSearchView.m; sourceTree = "<group>"; };
  1307. BC11920E280ED6A900A716F7 /* NewClassPopView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewClassPopView.h; sourceTree = "<group>"; };
  1308. BC11920F280ED6A900A716F7 /* NewClassPopCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NewClassPopCell.xib; sourceTree = "<group>"; };
  1309. BC119210280ED6A900A716F7 /* NewClassPopCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewClassPopCell.h; sourceTree = "<group>"; };
  1310. BC119211280ED6A900A716F7 /* NewClassPopView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewClassPopView.m; sourceTree = "<group>"; };
  1311. BC119212280ED6A900A716F7 /* NewClassPopCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewClassPopCell.m; sourceTree = "<group>"; };
  1312. BC11921E280ED6F400A716F7 /* LiveLessonModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveLessonModel.m; sourceTree = "<group>"; };
  1313. BC11921F280ED6F400A716F7 /* AccompanyLessonModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyLessonModel.m; sourceTree = "<group>"; };
  1314. BC119220280ED6F500A716F7 /* AccompanyLessonModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyLessonModel.h; sourceTree = "<group>"; };
  1315. BC119221280ED6F500A716F7 /* LiveLessonModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveLessonModel.h; sourceTree = "<group>"; };
  1316. BC119224280ED8E700A716F7 /* LTSCalendarBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LTSCalendarBottomView.m; sourceTree = "<group>"; };
  1317. BC119225280ED8E800A716F7 /* CourseNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CourseNavView.h; sourceTree = "<group>"; };
  1318. BC119226280ED8E800A716F7 /* CourseNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CourseNavView.m; sourceTree = "<group>"; };
  1319. BC119227280ED8E800A716F7 /* LTSCalendarBottomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LTSCalendarBottomView.xib; sourceTree = "<group>"; };
  1320. BC119228280ED8E800A716F7 /* LTSCalendarBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LTSCalendarBottomView.h; sourceTree = "<group>"; };
  1321. BC119229280ED8E800A716F7 /* CourseNavView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CourseNavView.xib; sourceTree = "<group>"; };
  1322. BC11922E280ED8F800A716F7 /* TableCourseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCourseModel.h; sourceTree = "<group>"; };
  1323. BC11922F280ED8F900A716F7 /* TableCourseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCourseModel.m; sourceTree = "<group>"; };
  1324. BC119231280ED97B00A716F7 /* CourseForLiveCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CourseForLiveCell.m; sourceTree = "<group>"; };
  1325. BC119232280ED97C00A716F7 /* CourseForLiveCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CourseForLiveCell.xib; sourceTree = "<group>"; };
  1326. BC119233280ED97C00A716F7 /* CourseForLiveCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CourseForLiveCell.h; sourceTree = "<group>"; };
  1327. BC119236280ED98D00A716F7 /* AccompanyCourseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyCourseCell.h; sourceTree = "<group>"; };
  1328. BC119237280ED98E00A716F7 /* AccompanyCourseCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyCourseCell.xib; sourceTree = "<group>"; };
  1329. BC119238280ED98E00A716F7 /* AccompanyCourseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyCourseCell.m; sourceTree = "<group>"; };
  1330. BC11923F280ED9E000A716F7 /* AccompanyDetailViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AccompanyDetailViewController.h; sourceTree = "<group>"; };
  1331. BC119240280ED9E000A716F7 /* AccompanyDetailViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AccompanyDetailViewController.m; sourceTree = "<group>"; };
  1332. BC119242280EDA2400A716F7 /* NSObject+KSDateFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSDateFormatter.h"; sourceTree = "<group>"; };
  1333. BC119243280EDA2400A716F7 /* NSObject+KSDateFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSDateFormatter.m"; sourceTree = "<group>"; };
  1334. BC119245280EDA5800A716F7 /* kSJXCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = kSJXCollectionView.m; sourceTree = "<group>"; };
  1335. BC119246280EDA5800A716F7 /* kSJXCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kSJXCollectionView.h; sourceTree = "<group>"; };
  1336. BC11924C280EDD5500A716F7 /* HomeworkListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeworkListViewController.h; sourceTree = "<group>"; };
  1337. BC11924D280EDD5500A716F7 /* HomeworkListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeworkListViewController.m; sourceTree = "<group>"; };
  1338. BC119252280FA85200A716F7 /* HomeworkListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeworkListCell.xib; sourceTree = "<group>"; };
  1339. BC119253280FA85200A716F7 /* HomeworkListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeworkListCell.m; sourceTree = "<group>"; };
  1340. BC119254280FA85200A716F7 /* HomeworkListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeworkListCell.h; sourceTree = "<group>"; };
  1341. BC119255280FA85300A716F7 /* HomeworkSortView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeworkSortView.xib; sourceTree = "<group>"; };
  1342. BC119256280FA85300A716F7 /* HomeworkSortView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeworkSortView.h; sourceTree = "<group>"; };
  1343. BC119257280FA85300A716F7 /* HomeworkSortView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeworkSortView.m; sourceTree = "<group>"; };
  1344. BC11925C280FA89A00A716F7 /* HomeworkBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeworkBodyView.h; sourceTree = "<group>"; };
  1345. BC11925D280FA89A00A716F7 /* HomeworkBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeworkBodyView.m; sourceTree = "<group>"; };
  1346. BC11925F280FA90000A716F7 /* HomeworkDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeworkDetailModel.h; sourceTree = "<group>"; };
  1347. BC119260280FA90000A716F7 /* HomeworkListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeworkListModel.h; sourceTree = "<group>"; };
  1348. BC119261280FA90100A716F7 /* HomeworkDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeworkDetailModel.m; sourceTree = "<group>"; };
  1349. BC119262280FA90100A716F7 /* HomeworkListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeworkListModel.m; sourceTree = "<group>"; };
  1350. BC119265280FA92700A716F7 /* HomeworkDetailViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeworkDetailViewController.h; sourceTree = "<group>"; };
  1351. BC119266280FA92700A716F7 /* HomeworkDetailViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeworkDetailViewController.m; sourceTree = "<group>"; };
  1352. BC119268280FAF5800A716F7 /* AccompanyAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyAlertView.h; sourceTree = "<group>"; };
  1353. BC119269280FAF5800A716F7 /* AccompanyAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyAlertView.m; sourceTree = "<group>"; };
  1354. BC11926A280FAF5900A716F7 /* AccompanyAlertView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyAlertView.xib; sourceTree = "<group>"; };
  1355. BC11926D280FAF7C00A716F7 /* AccompanyCourseInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyCourseInfoCell.h; sourceTree = "<group>"; };
  1356. BC11926E280FAF7C00A716F7 /* AccompanyCourseInfoCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyCourseInfoCell.xib; sourceTree = "<group>"; };
  1357. BC11926F280FAF7C00A716F7 /* AccompanyCourseInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyCourseInfoCell.m; sourceTree = "<group>"; };
  1358. BC119272280FB01000A716F7 /* AccompanyHomeworkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyHomeworkCell.xib; sourceTree = "<group>"; };
  1359. BC119273280FB01000A716F7 /* AccompanyHomeworkCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyHomeworkCell.m; sourceTree = "<group>"; };
  1360. BC119274280FB01100A716F7 /* AccompanyHomeworkCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyHomeworkCell.h; sourceTree = "<group>"; };
  1361. BC119277280FB07F00A716F7 /* AccompanyArrangeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyArrangeCell.m; sourceTree = "<group>"; };
  1362. BC119278280FB07F00A716F7 /* AccompanyArrangeCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyArrangeCell.xib; sourceTree = "<group>"; };
  1363. BC119279280FB07F00A716F7 /* AccompanyArrangeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyArrangeCell.h; sourceTree = "<group>"; };
  1364. BC11927C280FB10700A716F7 /* AccompanyRemarkCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyRemarkCell.m; sourceTree = "<group>"; };
  1365. BC11927D280FB10800A716F7 /* AccompanyRemarkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyRemarkCell.xib; sourceTree = "<group>"; };
  1366. BC11927E280FB10900A716F7 /* AccompanyRemarkCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyRemarkCell.h; sourceTree = "<group>"; };
  1367. BC119286280FB3B000A716F7 /* KSStarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSStarView.h; sourceTree = "<group>"; };
  1368. BC119287280FB3B100A716F7 /* KSStarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSStarView.m; sourceTree = "<group>"; };
  1369. BC119289280FB44200A716F7 /* HomeworkVideoView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HomeworkVideoView.xib; sourceTree = "<group>"; };
  1370. BC11928A280FB44300A716F7 /* HomeworkVideoView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeworkVideoView.h; sourceTree = "<group>"; };
  1371. BC11928B280FB44300A716F7 /* HomeworkVideoView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeworkVideoView.m; sourceTree = "<group>"; };
  1372. BC11928E280FB46100A716F7 /* KSVideoHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSVideoHelper.h; sourceTree = "<group>"; };
  1373. BC11928F280FB46100A716F7 /* KSVideoHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSVideoHelper.m; sourceTree = "<group>"; };
  1374. BC119291280FBC1100A716F7 /* HomeworkAddView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeworkAddView.h; sourceTree = "<group>"; };
  1375. BC119292280FBC1100A716F7 /* HomeworkAddView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeworkAddView.m; sourceTree = "<group>"; };
  1376. BC119296280FBCB300A716F7 /* UIView+ExtensionForDotLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ExtensionForDotLine.h"; sourceTree = "<group>"; };
  1377. BC119297280FBCB400A716F7 /* UIView+ExtensionForDotLine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ExtensionForDotLine.m"; sourceTree = "<group>"; };
  1378. BC119299280FD2E800A716F7 /* HomeworkBottomView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeworkBottomView.h; sourceTree = "<group>"; };
  1379. BC11929A280FD2E800A716F7 /* HomeworkBottomView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeworkBottomView.m; sourceTree = "<group>"; };
  1380. BC11929C280FD2EF00A716F7 /* HomeworkBottomView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeworkBottomView.xib; sourceTree = "<group>"; };
  1381. BC27A068280FF56B00F91E27 /* AccompanyEvaluateCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyEvaluateCell.h; sourceTree = "<group>"; };
  1382. BC27A069280FF56B00F91E27 /* AccompanyStudentEvaCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyStudentEvaCell.h; sourceTree = "<group>"; };
  1383. BC27A06A280FF56B00F91E27 /* AccompanyEvaluateCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyEvaluateCell.xib; sourceTree = "<group>"; };
  1384. BC27A06B280FF56C00F91E27 /* AccompanyStudentEvaCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyStudentEvaCell.m; sourceTree = "<group>"; };
  1385. BC27A06C280FF56C00F91E27 /* AccompanyStudentEvaCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccompanyStudentEvaCell.xib; sourceTree = "<group>"; };
  1386. BC27A06D280FF56C00F91E27 /* AccompanyEvaluateCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyEvaluateCell.m; sourceTree = "<group>"; };
  1387. BC27A072280FF60B00F91E27 /* AccompanyDetailBottomView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AccompanyDetailBottomView.h; sourceTree = "<group>"; };
  1388. BC27A073280FF60B00F91E27 /* AccompanyDetailBottomView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AccompanyDetailBottomView.m; sourceTree = "<group>"; };
  1389. BC27A075280FF61300F91E27 /* AccompanyDetailBottomView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AccompanyDetailBottomView.xib; sourceTree = "<group>"; };
  1390. BC27A077280FFA2100F91E27 /* EvaluateDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EvaluateDetailModel.h; sourceTree = "<group>"; };
  1391. BC27A078280FFA2200F91E27 /* EvaluateDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EvaluateDetailModel.m; sourceTree = "<group>"; };
  1392. BC2858292809036C0024697C /* StudentInfoModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StudentInfoModel.h; sourceTree = "<group>"; };
  1393. BC28582A2809036D0024697C /* StudentInfoModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StudentInfoModel.m; sourceTree = "<group>"; };
  1394. BC40B9F62811767A00DEC0D1 /* HotInformationHeadView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HotInformationHeadView.h; sourceTree = "<group>"; };
  1395. BC40B9F72811767A00DEC0D1 /* HotInformationHeadView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HotInformationHeadView.m; sourceTree = "<group>"; };
  1396. BC40B9F92811768400DEC0D1 /* HotInformationHeadView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HotInformationHeadView.xib; sourceTree = "<group>"; };
  1397. BC40B9FB281177BD00DEC0D1 /* HomeInformationCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeInformationCell.h; sourceTree = "<group>"; };
  1398. BC40B9FC281177BD00DEC0D1 /* HomeInformationCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeInformationCell.m; sourceTree = "<group>"; };
  1399. BC40B9FD281177BD00DEC0D1 /* HomeInformationCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeInformationCell.xib; sourceTree = "<group>"; };
  1400. BC40BA0028117B0A00DEC0D1 /* HomeBannerCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeBannerCell.h; sourceTree = "<group>"; };
  1401. BC40BA0128117B0A00DEC0D1 /* HomeBannerCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeBannerCell.m; sourceTree = "<group>"; };
  1402. BC40BA0228117B0A00DEC0D1 /* HomeBannerCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeBannerCell.xib; sourceTree = "<group>"; };
  1403. BC40BA0628117B3A00DEC0D1 /* TYCyclePagerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerView.h; sourceTree = "<group>"; };
  1404. BC40BA0728117B3A00DEC0D1 /* TYCyclePagerTransformLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerTransformLayout.h; sourceTree = "<group>"; };
  1405. BC40BA0828117B3A00DEC0D1 /* TYPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYPageControl.m; sourceTree = "<group>"; };
  1406. BC40BA0928117B3A00DEC0D1 /* TYCyclePagerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerView.m; sourceTree = "<group>"; };
  1407. BC40BA0A28117B3A00DEC0D1 /* TYCyclePagerTransformLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerTransformLayout.m; sourceTree = "<group>"; };
  1408. BC40BA0B28117B3A00DEC0D1 /* TYPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYPageControl.h; sourceTree = "<group>"; };
  1409. BC40BA1628124D3D00DEC0D1 /* NotiferMessageViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NotiferMessageViewController.h; sourceTree = "<group>"; };
  1410. BC40BA1728124D3D00DEC0D1 /* NotiferMessageViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NotiferMessageViewController.m; sourceTree = "<group>"; };
  1411. BC40BA19281251EC00DEC0D1 /* HomeMessageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeMessageModel.h; sourceTree = "<group>"; };
  1412. BC40BA1A281251ED00DEC0D1 /* HomeMessageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeMessageModel.m; sourceTree = "<group>"; };
  1413. BC40BA1C2812552200DEC0D1 /* KSHomeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSHomeButton.m; sourceTree = "<group>"; };
  1414. BC40BA1D2812552200DEC0D1 /* KSHomeButton.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSHomeButton.xib; sourceTree = "<group>"; };
  1415. BC40BA1E2812552300DEC0D1 /* KSHomeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSHomeButton.h; sourceTree = "<group>"; };
  1416. BC40BA21281255F700DEC0D1 /* HomeCourseTipsView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeCourseTipsView.h; sourceTree = "<group>"; };
  1417. BC40BA22281255F700DEC0D1 /* HomeCourseTipsView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeCourseTipsView.m; sourceTree = "<group>"; };
  1418. BC40BA242812560100DEC0D1 /* HomeCourseTipsView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeCourseTipsView.xib; sourceTree = "<group>"; };
  1419. BC50171027FC0D5600F8BCBC /* SubjectChooseViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SubjectChooseViewController.h; sourceTree = "<group>"; };
  1420. BC50171127FC0D5600F8BCBC /* SubjectChooseViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SubjectChooseViewController.m; sourceTree = "<group>"; };
  1421. BC50171327FC0D8300F8BCBC /* SubjectChooseBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SubjectChooseBodyView.h; sourceTree = "<group>"; };
  1422. BC50171427FC0D8300F8BCBC /* SubjectChooseBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SubjectChooseBodyView.m; sourceTree = "<group>"; };
  1423. BC50171627FC0D8D00F8BCBC /* SubjectChooseBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SubjectChooseBodyView.xib; sourceTree = "<group>"; };
  1424. BC76630C2827E48800C91A1D /* NotiferMessageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NotiferMessageModel.m; sourceTree = "<group>"; };
  1425. BC76630D2827E48800C91A1D /* NotiferMessageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotiferMessageModel.h; sourceTree = "<group>"; };
  1426. BC76630F2827E49800C91A1D /* NotiferHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NotiferHeadView.m; sourceTree = "<group>"; };
  1427. BC7663102827E49800C91A1D /* NotiferHeadView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NotiferHeadView.xib; sourceTree = "<group>"; };
  1428. BC7663112827E49800C91A1D /* NotiferMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotiferMessageCell.h; sourceTree = "<group>"; };
  1429. BC7663122827E49800C91A1D /* NotiferMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NotiferMessageCell.m; sourceTree = "<group>"; };
  1430. BC7663132827E49900C91A1D /* NotiferMessageCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NotiferMessageCell.xib; sourceTree = "<group>"; };
  1431. BC7663142827E49900C91A1D /* NotiferHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotiferHeadView.h; sourceTree = "<group>"; };
  1432. BC8C2C432823F57100FBA5D5 /* AddressDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressDetailViewController.h; sourceTree = "<group>"; };
  1433. BC8C2C442823F57100FBA5D5 /* AddressListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressListViewController.h; sourceTree = "<group>"; };
  1434. BC8C2C452823F57100FBA5D5 /* AddressDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressDetailViewController.m; sourceTree = "<group>"; };
  1435. BC8C2C462823F57100FBA5D5 /* AddressListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressListViewController.m; sourceTree = "<group>"; };
  1436. BC8C2C482823F57100FBA5D5 /* AddressListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressListModel.m; sourceTree = "<group>"; };
  1437. BC8C2C492823F57100FBA5D5 /* areainfo.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = areainfo.json; sourceTree = "<group>"; };
  1438. BC8C2C4A2823F57100FBA5D5 /* AddressListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressListModel.h; sourceTree = "<group>"; };
  1439. BC8C2C4C2823F57100FBA5D5 /* AddressBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressBottomView.h; sourceTree = "<group>"; };
  1440. BC8C2C4D2823F57100FBA5D5 /* AddressBottomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AddressBottomView.xib; sourceTree = "<group>"; };
  1441. BC8C2C4E2823F57100FBA5D5 /* MyAddressListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAddressListCell.h; sourceTree = "<group>"; };
  1442. BC8C2C4F2823F57100FBA5D5 /* KSAddressPickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAddressPickerView.m; sourceTree = "<group>"; };
  1443. BC8C2C502823F57100FBA5D5 /* AddressDetailBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressDetailBodyView.m; sourceTree = "<group>"; };
  1444. BC8C2C512823F57100FBA5D5 /* AddressDetailBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AddressDetailBodyView.xib; sourceTree = "<group>"; };
  1445. BC8C2C522823F57100FBA5D5 /* MyAddressListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAddressListCell.m; sourceTree = "<group>"; };
  1446. BC8C2C532823F57100FBA5D5 /* AddressBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressBottomView.m; sourceTree = "<group>"; };
  1447. BC8C2C542823F57100FBA5D5 /* AddressDetailBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressDetailBodyView.h; sourceTree = "<group>"; };
  1448. BC8C2C552823F57100FBA5D5 /* KSAddressPickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAddressPickerView.h; sourceTree = "<group>"; };
  1449. BC8C2C562823F57100FBA5D5 /* MyAddressListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MyAddressListCell.xib; sourceTree = "<group>"; };
  1450. BC8C2C7B28265D8D00FBA5D5 /* KSNewsAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNewsAlert.h; sourceTree = "<group>"; };
  1451. BC8C2C7C28265D8D00FBA5D5 /* KSNewsAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNewsAlert.m; sourceTree = "<group>"; };
  1452. BC8C2C7D28265D8E00FBA5D5 /* KSNewsAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSNewsAlert.xib; sourceTree = "<group>"; };
  1453. BCB6340C27F6D29500ACFDCF /* KSRCMessageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCMessageModel.h; sourceTree = "<group>"; };
  1454. BCB6340D27F6D29500ACFDCF /* KSLiveChatroomWelcome.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomWelcome.m; sourceTree = "<group>"; };
  1455. BCB6340E27F6D29500ACFDCF /* KSLiveChatroomLeave.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomLeave.m; sourceTree = "<group>"; };
  1456. BCB6340F27F6D29500ACFDCF /* KSLiveChatroomEnter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomEnter.m; sourceTree = "<group>"; };
  1457. BCB6341027F6D29500ACFDCF /* KSLiveChatroomMemberCount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomMemberCount.h; sourceTree = "<group>"; };
  1458. BCB6341127F6D29500ACFDCF /* KSLiveChatroomUserQuit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomUserQuit.h; sourceTree = "<group>"; };
  1459. BCB6341227F6D29500ACFDCF /* KSLiveChatroomKickOut.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomKickOut.m; sourceTree = "<group>"; };
  1460. BCB6341327F6D29500ACFDCF /* KSLiveChatroomLike.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomLike.h; sourceTree = "<group>"; };
  1461. BCB6341427F6D29500ACFDCF /* KSLiveChatroomSeatApply.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomSeatApply.h; sourceTree = "<group>"; };
  1462. BCB6341527F6D29500ACFDCF /* KSChatroomMessageCenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatroomMessageCenter.m; sourceTree = "<group>"; };
  1463. BCB6341627F6D29500ACFDCF /* KSLiveChatroomSeatResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomSeatResponse.h; sourceTree = "<group>"; };
  1464. BCB6341727F6D29500ACFDCF /* KSLiveChatroomDownSeat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomDownSeat.m; sourceTree = "<group>"; };
  1465. BCB6341827F6D29500ACFDCF /* KSLiveChatroomClose.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomClose.h; sourceTree = "<group>"; };
  1466. BCB6341927F6D29500ACFDCF /* KSLiveChatroomWelcome.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomWelcome.h; sourceTree = "<group>"; };
  1467. BCB6341A27F6D29500ACFDCF /* KSRCMessageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCMessageModel.m; sourceTree = "<group>"; };
  1468. BCB6341B27F6D29500ACFDCF /* KSLiveChatroomLeave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomLeave.h; sourceTree = "<group>"; };
  1469. BCB6341C27F6D29500ACFDCF /* KSLiveChatroomSeatApply.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomSeatApply.m; sourceTree = "<group>"; };
  1470. BCB6341D27F6D29500ACFDCF /* KSLiveChatroomLike.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomLike.m; sourceTree = "<group>"; };
  1471. BCB6341E27F6D29500ACFDCF /* KSLiveChatroomUserQuit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomUserQuit.m; sourceTree = "<group>"; };
  1472. BCB6341F27F6D29500ACFDCF /* KSLiveChatroomKickOut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomKickOut.h; sourceTree = "<group>"; };
  1473. BCB6342027F6D29500ACFDCF /* KSLiveChatroomMemberCount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomMemberCount.m; sourceTree = "<group>"; };
  1474. BCB6342127F6D29500ACFDCF /* KSLiveChatroomEnter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomEnter.h; sourceTree = "<group>"; };
  1475. BCB6342227F6D29500ACFDCF /* KSLiveChatroomClose.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomClose.m; sourceTree = "<group>"; };
  1476. BCB6342327F6D29500ACFDCF /* KSLiveChatroomDownSeat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveChatroomDownSeat.h; sourceTree = "<group>"; };
  1477. BCB6342427F6D29500ACFDCF /* KSLiveChatroomSeatResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveChatroomSeatResponse.m; sourceTree = "<group>"; };
  1478. BCB6342527F6D29500ACFDCF /* KSChatroomMessageCenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatroomMessageCenter.h; sourceTree = "<group>"; };
  1479. BCB6342727F6D29500ACFDCF /* LiveVideoRoomViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveVideoRoomViewController.m; sourceTree = "<group>"; };
  1480. BCB6342A27F6D29500ACFDCF /* LiveVideoRoomViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveVideoRoomViewController.h; sourceTree = "<group>"; };
  1481. BCB6342E27F6D29500ACFDCF /* KSEnterLiveroomManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSEnterLiveroomManager.h; sourceTree = "<group>"; };
  1482. BCB6342F27F6D29500ACFDCF /* KSLiveStreamVideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveStreamVideo.h; sourceTree = "<group>"; };
  1483. BCB6343027F6D29500ACFDCF /* LiveroomTimeManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveroomTimeManager.h; sourceTree = "<group>"; };
  1484. BCB6343127F6D29500ACFDCF /* LiveSeatMember.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveSeatMember.h; sourceTree = "<group>"; };
  1485. BCB6343227F6D29500ACFDCF /* KSEnterLiveroomManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSEnterLiveroomManager.m; sourceTree = "<group>"; };
  1486. BCB6343327F6D29500ACFDCF /* KSLiveStreamVideo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveStreamVideo.m; sourceTree = "<group>"; };
  1487. BCB6343427F6D29500ACFDCF /* LiveroomTimeManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveroomTimeManager.m; sourceTree = "<group>"; };
  1488. BCB6343527F6D29500ACFDCF /* LiveSeatMember.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveSeatMember.m; sourceTree = "<group>"; };
  1489. BCB6343827F6D29500ACFDCF /* KSChatEmojiBoardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatEmojiBoardView.m; sourceTree = "<group>"; };
  1490. BCB6343927F6D29500ACFDCF /* KSChatInputBarControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatInputBarControl.h; sourceTree = "<group>"; };
  1491. BCB6343A27F6D29500ACFDCF /* KSChatInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatInputView.m; sourceTree = "<group>"; };
  1492. BCB6343C27F6D29500ACFDCF /* KSChatEmojiCollectionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatEmojiCollectionCell.h; sourceTree = "<group>"; };
  1493. BCB6343D27F6D29500ACFDCF /* KSChatEmojiCollectionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatEmojiCollectionCell.m; sourceTree = "<group>"; };
  1494. BCB6343E27F6D29500ACFDCF /* BaseEmoji.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = BaseEmoji.plist; sourceTree = "<group>"; };
  1495. BCB6343F27F6D29500ACFDCF /* KSChatEmojiBoardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatEmojiBoardView.h; sourceTree = "<group>"; };
  1496. BCB6344027F6D29500ACFDCF /* KSChatInputBarControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatInputBarControl.m; sourceTree = "<group>"; };
  1497. BCB6344127F6D29500ACFDCF /* KSChatInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatInputView.h; sourceTree = "<group>"; };
  1498. BCB6344427F6D29500ACFDCF /* LiveRoomLikeLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveRoomLikeLayer.m; sourceTree = "<group>"; };
  1499. BCB6344627F6D29500ACFDCF /* SeatContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SeatContentView.h; sourceTree = "<group>"; };
  1500. BCB6344927F6D29500ACFDCF /* LiveSeatApplyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveSeatApplyView.h; sourceTree = "<group>"; };
  1501. BCB6344A27F6D29500ACFDCF /* LiveSeatApplyCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveSeatApplyCell.h; sourceTree = "<group>"; };
  1502. BCB6344D27F6D29500ACFDCF /* KSChatroomTextCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatroomTextCell.h; sourceTree = "<group>"; };
  1503. BCB6345227F6D29500ACFDCF /* LiveRoomLikeLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveRoomLikeLayer.h; sourceTree = "<group>"; };
  1504. BCB6345327F6D29600ACFDCF /* LiveSeatApplyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveSeatApplyView.m; sourceTree = "<group>"; };
  1505. BCB6345427F6D29600ACFDCF /* LiveSeatApplyCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveSeatApplyCell.xib; sourceTree = "<group>"; };
  1506. BCB6345627F6D29600ACFDCF /* SeatContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SeatContentView.m; sourceTree = "<group>"; };
  1507. BCB6345827F6D29600ACFDCF /* LiveSeatApplyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveSeatApplyView.xib; sourceTree = "<group>"; };
  1508. BCB6345927F6D29600ACFDCF /* KSChatroomTextCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatroomTextCell.m; sourceTree = "<group>"; };
  1509. BCB6345C27F6D29600ACFDCF /* LiveSeatApplyCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveSeatApplyCell.m; sourceTree = "<group>"; };
  1510. BCB6348827F6D2A200ACFDCF /* KSRemoteUserManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRemoteUserManager.h; sourceTree = "<group>"; };
  1511. BCB6348A27F6D2A200ACFDCF /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SealClass.strings"; sourceTree = "<group>"; };
  1512. BCB6348F27F6D2A200ACFDCF /* ZoomControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZoomControl.m; sourceTree = "<group>"; };
  1513. BCB6349027F6D2A200ACFDCF /* ZoomControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZoomControl.h; sourceTree = "<group>"; };
  1514. BCB6349327F6D2A200ACFDCF /* InputBarControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputBarControl.h; sourceTree = "<group>"; };
  1515. BCB6349427F6D2A200ACFDCF /* InputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InputView.m; sourceTree = "<group>"; };
  1516. BCB6349527F6D2A200ACFDCF /* EmojiBoardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmojiBoardView.h; sourceTree = "<group>"; };
  1517. BCB6349627F6D2A200ACFDCF /* InputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputView.h; sourceTree = "<group>"; };
  1518. BCB6349827F6D2A200ACFDCF /* CREmojiCollectionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CREmojiCollectionCell.m; sourceTree = "<group>"; };
  1519. BCB6349927F6D2A200ACFDCF /* CREmojiCollectionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CREmojiCollectionCell.h; sourceTree = "<group>"; };
  1520. BCB6349A27F6D2A200ACFDCF /* InputBarControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InputBarControl.m; sourceTree = "<group>"; };
  1521. BCB6349B27F6D2A200ACFDCF /* EmojiBoardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EmojiBoardView.m; sourceTree = "<group>"; };
  1522. BCB6349C27F6D2A200ACFDCF /* ChatAreaView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAreaView.h; sourceTree = "<group>"; };
  1523. BCB6349F27F6D2A200ACFDCF /* TextMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextMessageCell.h; sourceTree = "<group>"; };
  1524. BCB634A027F6D2A200ACFDCF /* TimeStampCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeStampCell.m; sourceTree = "<group>"; };
  1525. BCB634A127F6D2A200ACFDCF /* TipMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TipMessageCell.h; sourceTree = "<group>"; };
  1526. BCB634A227F6D2A200ACFDCF /* MessageBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageBaseCell.h; sourceTree = "<group>"; };
  1527. BCB634A327F6D2A200ACFDCF /* MessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageCell.h; sourceTree = "<group>"; };
  1528. BCB634A427F6D2A200ACFDCF /* TextMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TextMessageCell.m; sourceTree = "<group>"; };
  1529. BCB634A527F6D2A200ACFDCF /* TimeStampCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeStampCell.h; sourceTree = "<group>"; };
  1530. BCB634A627F6D2A200ACFDCF /* TipMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TipMessageCell.m; sourceTree = "<group>"; };
  1531. BCB634A727F6D2A200ACFDCF /* MessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageCell.m; sourceTree = "<group>"; };
  1532. BCB634A827F6D2A200ACFDCF /* MessageBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageBaseCell.m; sourceTree = "<group>"; };
  1533. BCB634A927F6D2A200ACFDCF /* MessageDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageDataSource.m; sourceTree = "<group>"; };
  1534. BCB634AA27F6D2A200ACFDCF /* MessageHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageHelper.m; sourceTree = "<group>"; };
  1535. BCB634AB27F6D2A200ACFDCF /* MessageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageModel.m; sourceTree = "<group>"; };
  1536. BCB634AD27F6D2A200ACFDCF /* TimeStampMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeStampMessage.m; sourceTree = "<group>"; };
  1537. BCB634AE27F6D2A200ACFDCF /* TimeStampMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeStampMessage.h; sourceTree = "<group>"; };
  1538. BCB634AF27F6D2A300ACFDCF /* MessageHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageHelper.h; sourceTree = "<group>"; };
  1539. BCB634B027F6D2A300ACFDCF /* MessageDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageDataSource.h; sourceTree = "<group>"; };
  1540. BCB634B127F6D2A300ACFDCF /* MessageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageModel.h; sourceTree = "<group>"; };
  1541. BCB634B227F6D2A300ACFDCF /* ChatAreaView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAreaView.m; sourceTree = "<group>"; };
  1542. BCB634B427F6D2A300ACFDCF /* ClassroomTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomTitleView.m; sourceTree = "<group>"; };
  1543. BCB634B527F6D2A300ACFDCF /* ClassroomTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomTitleView.h; sourceTree = "<group>"; };
  1544. BCB634B727F6D2A300ACFDCF /* VideoListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoListCell.m; sourceTree = "<group>"; };
  1545. BCB634B827F6D2A300ACFDCF /* VideoListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoListView.m; sourceTree = "<group>"; };
  1546. BCB634B927F6D2A300ACFDCF /* VideoListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoListCell.h; sourceTree = "<group>"; };
  1547. BCB634BA27F6D2A300ACFDCF /* VideoListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoListView.h; sourceTree = "<group>"; };
  1548. BCB634BC27F6D2A300ACFDCF /* RecentSharedWhiteboardCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecentSharedWhiteboardCell.m; sourceTree = "<group>"; };
  1549. BCB634BD27F6D2A300ACFDCF /* RecentSharedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecentSharedView.m; sourceTree = "<group>"; };
  1550. BCB634BE27F6D2A300ACFDCF /* RecentSharedVideoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecentSharedVideoCell.m; sourceTree = "<group>"; };
  1551. BCB634BF27F6D2A300ACFDCF /* RecentSharedWhiteboardCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecentSharedWhiteboardCell.h; sourceTree = "<group>"; };
  1552. BCB634C027F6D2A300ACFDCF /* RecentSharedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecentSharedView.h; sourceTree = "<group>"; };
  1553. BCB634C127F6D2A300ACFDCF /* RecentSharedVideoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecentSharedVideoCell.h; sourceTree = "<group>"; };
  1554. BCB634C327F6D2A300ACFDCF /* UpgradeDidApplyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UpgradeDidApplyView.m; sourceTree = "<group>"; };
  1555. BCB634C427F6D2A300ACFDCF /* UpgradeDidApplyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UpgradeDidApplyView.h; sourceTree = "<group>"; };
  1556. BCB634C627F6D2A300ACFDCF /* PersonListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PersonListView.m; sourceTree = "<group>"; };
  1557. BCB634C727F6D2A300ACFDCF /* PersonListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PersonListCell.m; sourceTree = "<group>"; };
  1558. BCB634C827F6D2A300ACFDCF /* PersonListSectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PersonListSectionView.h; sourceTree = "<group>"; };
  1559. BCB634C927F6D2A300ACFDCF /* PersonListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PersonListView.h; sourceTree = "<group>"; };
  1560. BCB634CA27F6D2A300ACFDCF /* PersonListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PersonListCell.h; sourceTree = "<group>"; };
  1561. BCB634CB27F6D2A300ACFDCF /* PersonListSectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PersonListSectionView.m; sourceTree = "<group>"; };
  1562. BCB634CD27F6D2A300ACFDCF /* ToolPanelView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ToolPanelView.m; sourceTree = "<group>"; };
  1563. BCB634CE27F6D2A300ACFDCF /* ToolPanelView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ToolPanelView.h; sourceTree = "<group>"; };
  1564. BCB634D027F6D2A300ACFDCF /* MainContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainContainerView.m; sourceTree = "<group>"; };
  1565. BCB634D127F6D2A300ACFDCF /* EmptyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmptyView.h; sourceTree = "<group>"; };
  1566. BCB634D227F6D2A300ACFDCF /* VideoMaskView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoMaskView.m; sourceTree = "<group>"; };
  1567. BCB634D327F6D2A300ACFDCF /* MainContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainContainerView.h; sourceTree = "<group>"; };
  1568. BCB634D427F6D2A300ACFDCF /* EmptyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EmptyView.m; sourceTree = "<group>"; };
  1569. BCB634D527F6D2A300ACFDCF /* VideoMaskView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoMaskView.h; sourceTree = "<group>"; };
  1570. BCB634D727F6D2A300ACFDCF /* KSWhiteboardControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWhiteboardControl.h; sourceTree = "<group>"; };
  1571. BCB634D827F6D2A300ACFDCF /* KSWhiteboardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWhiteboardView.m; sourceTree = "<group>"; };
  1572. BCB634D927F6D2A300ACFDCF /* WhiteUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WhiteUtils.h; sourceTree = "<group>"; };
  1573. BCB634DA27F6D2A300ACFDCF /* KSWhiteboardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWhiteboardView.h; sourceTree = "<group>"; };
  1574. BCB634DB27F6D2A300ACFDCF /* KSWhiteboardControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWhiteboardControl.m; sourceTree = "<group>"; };
  1575. BCB634DC27F6D2A300ACFDCF /* WhiteUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WhiteUtils.m; sourceTree = "<group>"; };
  1576. BCB634DE27F6D2A300ACFDCF /* LoginHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginHelper.m; sourceTree = "<group>"; };
  1577. BCB634E027F6D2A300ACFDCF /* SelectionButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectionButton.m; sourceTree = "<group>"; };
  1578. BCB634E127F6D2A300ACFDCF /* InputTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputTextField.h; sourceTree = "<group>"; };
  1579. BCB634E227F6D2A300ACFDCF /* SelectionButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectionButton.h; sourceTree = "<group>"; };
  1580. BCB634E327F6D2A300ACFDCF /* InputTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InputTextField.m; sourceTree = "<group>"; };
  1581. BCB634E427F6D2A300ACFDCF /* LoginHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginHelper.h; sourceTree = "<group>"; };
  1582. BCB634E527F6D2A300ACFDCF /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SealClass.strings; sourceTree = "<group>"; };
  1583. BCB634E727F6D2A300ACFDCF /* ErrorCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ErrorCode.h; sourceTree = "<group>"; };
  1584. BCB634E927F6D2A300ACFDCF /* UIView+MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MBProgressHUD.h"; sourceTree = "<group>"; };
  1585. BCB634EA27F6D2A300ACFDCF /* UIView+MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MBProgressHUD.m"; sourceTree = "<group>"; };
  1586. BCB634EC27F6D2A300ACFDCF /* RolePortraitView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RolePortraitView.m; sourceTree = "<group>"; };
  1587. BCB634ED27F6D2A300ACFDCF /* RolePortraitView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RolePortraitView.h; sourceTree = "<group>"; };
  1588. BCB634EE27F6D2A300ACFDCF /* Macro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Macro.h; sourceTree = "<group>"; };
  1589. BCB634F027F6D2A300ACFDCF /* HTTPUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPUtility.m; sourceTree = "<group>"; };
  1590. BCB634F127F6D2A300ACFDCF /* HTTPResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPResult.m; sourceTree = "<group>"; };
  1591. BCB634F227F6D2A300ACFDCF /* HTTPUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPUtility.h; sourceTree = "<group>"; };
  1592. BCB634F327F6D2A300ACFDCF /* HTTPResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPResult.h; sourceTree = "<group>"; };
  1593. BCB634F527F6D2A300ACFDCF /* NormalAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NormalAlertView.h; sourceTree = "<group>"; };
  1594. BCB634F627F6D2A300ACFDCF /* NormalAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NormalAlertView.m; sourceTree = "<group>"; };
  1595. BCB634F727F6D2A300ACFDCF /* class_stop.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = class_stop.mp3; sourceTree = "<group>"; };
  1596. BCB634F827F6D2A300ACFDCF /* KSRemoteUserManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRemoteUserManager.m; sourceTree = "<group>"; };
  1597. BCB634FB27F6D2A300ACFDCF /* ClassroomService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomService.h; sourceTree = "<group>"; };
  1598. BCB634FD27F6D2A300ACFDCF /* RoleChangedMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoleChangedMessage.h; sourceTree = "<group>"; };
  1599. BCB634FE27F6D2A300ACFDCF /* AssistantTransferMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AssistantTransferMessage.h; sourceTree = "<group>"; };
  1600. BCB634FF27F6D2A300ACFDCF /* InviteUpgradeMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InviteUpgradeMessage.h; sourceTree = "<group>"; };
  1601. BCB6350027F6D2A300ACFDCF /* ApplySpeechMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplySpeechMessage.m; sourceTree = "<group>"; };
  1602. BCB6350127F6D2A300ACFDCF /* ApplySpeechResultMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplySpeechResultMessage.h; sourceTree = "<group>"; };
  1603. BCB6350227F6D2A300ACFDCF /* DisplayCommandMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DisplayCommandMessage.m; sourceTree = "<group>"; };
  1604. BCB6350327F6D2A300ACFDCF /* MemberChangeMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemberChangeMessage.h; sourceTree = "<group>"; };
  1605. BCB6350427F6D2A300ACFDCF /* SongDownloadMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SongDownloadMessage.m; sourceTree = "<group>"; };
  1606. BCB6350527F6D2A300ACFDCF /* DeviceMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceMessage.h; sourceTree = "<group>"; };
  1607. BCB6350627F6D2A300ACFDCF /* ControlDeviceNotifyMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ControlDeviceNotifyMessage.m; sourceTree = "<group>"; };
  1608. BCB6350727F6D2A300ACFDCF /* AccompanyDownloadMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyDownloadMessage.h; sourceTree = "<group>"; };
  1609. BCB6350827F6D2A300ACFDCF /* TicketExpiredMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TicketExpiredMessage.m; sourceTree = "<group>"; };
  1610. BCB6350927F6D2A300ACFDCF /* NodePlayMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NodePlayMessage.h; sourceTree = "<group>"; };
  1611. BCB6350A27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccompanyDownloadCallbackMessage.h; sourceTree = "<group>"; };
  1612. BCB6350B27F6D2A300ACFDCF /* TurnPageMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TurnPageMessage.h; sourceTree = "<group>"; };
  1613. BCB6350C27F6D2A300ACFDCF /* WhiteboardMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WhiteboardMessage.m; sourceTree = "<group>"; };
  1614. BCB6350D27F6D2A300ACFDCF /* SongDownloadCallbackMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SongDownloadCallbackMessage.m; sourceTree = "<group>"; };
  1615. BCB6350E27F6D2A300ACFDCF /* AssistantTransferMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AssistantTransferMessage.m; sourceTree = "<group>"; };
  1616. BCB6350F27F6D2A300ACFDCF /* RoleChangedMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoleChangedMessage.m; sourceTree = "<group>"; };
  1617. BCB6351027F6D2A300ACFDCF /* InviteUpgradeMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InviteUpgradeMessage.m; sourceTree = "<group>"; };
  1618. BCB6351127F6D2A300ACFDCF /* AccompanyDownloadMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyDownloadMessage.m; sourceTree = "<group>"; };
  1619. BCB6351227F6D2A300ACFDCF /* ControlDeviceNotifyMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ControlDeviceNotifyMessage.h; sourceTree = "<group>"; };
  1620. BCB6351327F6D2A300ACFDCF /* DeviceMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceMessage.m; sourceTree = "<group>"; };
  1621. BCB6351427F6D2A300ACFDCF /* SongDownloadMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SongDownloadMessage.h; sourceTree = "<group>"; };
  1622. BCB6351527F6D2A300ACFDCF /* MemberChangeMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MemberChangeMessage.m; sourceTree = "<group>"; };
  1623. BCB6351627F6D2A300ACFDCF /* DisplayCommandMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DisplayCommandMessage.h; sourceTree = "<group>"; };
  1624. BCB6351727F6D2A300ACFDCF /* ApplySpeechResultMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplySpeechResultMessage.m; sourceTree = "<group>"; };
  1625. BCB6351827F6D2A300ACFDCF /* ApplySpeechMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplySpeechMessage.h; sourceTree = "<group>"; };
  1626. BCB6351927F6D2A300ACFDCF /* SongDownloadCallbackMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SongDownloadCallbackMessage.h; sourceTree = "<group>"; };
  1627. BCB6351A27F6D2A300ACFDCF /* WhiteboardMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WhiteboardMessage.h; sourceTree = "<group>"; };
  1628. BCB6351B27F6D2A300ACFDCF /* TurnPageMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TurnPageMessage.m; sourceTree = "<group>"; };
  1629. BCB6351C27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccompanyDownloadCallbackMessage.m; sourceTree = "<group>"; };
  1630. BCB6351D27F6D2A300ACFDCF /* NodePlayMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NodePlayMessage.m; sourceTree = "<group>"; };
  1631. BCB6351E27F6D2A300ACFDCF /* TicketExpiredMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TicketExpiredMessage.h; sourceTree = "<group>"; };
  1632. BCB6352027F6D2A300ACFDCF /* Whiteboard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Whiteboard.m; sourceTree = "<group>"; };
  1633. BCB6352127F6D2A300ACFDCF /* RoomMember.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoomMember.m; sourceTree = "<group>"; };
  1634. BCB6352227F6D2A300ACFDCF /* ClassSongMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassSongMessage.m; sourceTree = "<group>"; };
  1635. BCB6352327F6D2A300ACFDCF /* Classroom.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Classroom.m; sourceTree = "<group>"; };
  1636. BCB6352427F6D2A300ACFDCF /* Whiteboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Whiteboard.h; sourceTree = "<group>"; };
  1637. BCB6352527F6D2A300ACFDCF /* Classroom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Classroom.h; sourceTree = "<group>"; };
  1638. BCB6352627F6D2A300ACFDCF /* ClassSongMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassSongMessage.h; sourceTree = "<group>"; };
  1639. BCB6352727F6D2A300ACFDCF /* RoomMember.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoomMember.h; sourceTree = "<group>"; };
  1640. BCB6352827F6D2A300ACFDCF /* ClassroomDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomDefine.h; sourceTree = "<group>"; };
  1641. BCB6352927F6D2A300ACFDCF /* ClassroomService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomService.m; sourceTree = "<group>"; };
  1642. BCB6352B27F6D2A300ACFDCF /* RTCService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTCService.m; sourceTree = "<group>"; };
  1643. BCB6352C27F6D2A300ACFDCF /* RTCService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTCService.h; sourceTree = "<group>"; };
  1644. BCB6352E27F6D2A300ACFDCF /* KSIMService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSIMService.h; sourceTree = "<group>"; };
  1645. BCB6352F27F6D2A300ACFDCF /* KSIMService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSIMService.m; sourceTree = "<group>"; };
  1646. BCB6357527F6D2AB00ACFDCF /* NewClassRoomViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewClassRoomViewController.h; sourceTree = "<group>"; };
  1647. BCB6357627F6D2AB00ACFDCF /* NewClassRoomViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewClassRoomViewController.m; sourceTree = "<group>"; };
  1648. BCB6357827F6D2AB00ACFDCF /* LocalRenderManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalRenderManager.h; sourceTree = "<group>"; };
  1649. BCB6357927F6D2AB00ACFDCF /* OnlineClassManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnlineClassManager.m; sourceTree = "<group>"; };
  1650. BCB6357A27F6D2AB00ACFDCF /* ClassroomTimerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomTimerManager.h; sourceTree = "<group>"; };
  1651. BCB6357B27F6D2AB00ACFDCF /* LocalRenderManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalRenderManager.m; sourceTree = "<group>"; };
  1652. BCB6357C27F6D2AB00ACFDCF /* OnlineClassManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnlineClassManager.h; sourceTree = "<group>"; };
  1653. BCB6357D27F6D2AB00ACFDCF /* ClassroomTimerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomTimerManager.m; sourceTree = "<group>"; };
  1654. BCB6358027F6D2AB00ACFDCF /* KSTipsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSTipsView.m; sourceTree = "<group>"; };
  1655. BCB6358127F6D2AB00ACFDCF /* KSTipsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSTipsView.h; sourceTree = "<group>"; };
  1656. BCB6358227F6D2AB00ACFDCF /* tick.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = tick.wav; sourceTree = "<group>"; };
  1657. BCB6358427F6D2AB00ACFDCF /* ClassVideoListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassVideoListView.h; sourceTree = "<group>"; };
  1658. BCB6358527F6D2AB00ACFDCF /* ClassVideoListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassVideoListCell.h; sourceTree = "<group>"; };
  1659. BCB6358627F6D2AB00ACFDCF /* KSBeatView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBeatView.h; sourceTree = "<group>"; };
  1660. BCB6358727F6D2AB00ACFDCF /* ClassVideoListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassVideoListView.m; sourceTree = "<group>"; };
  1661. BCB6358827F6D2AB00ACFDCF /* KSBeatView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBeatView.m; sourceTree = "<group>"; };
  1662. BCB6358927F6D2AB00ACFDCF /* ClassVideoListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassVideoListCell.m; sourceTree = "<group>"; };
  1663. BCB6358A27F6D2AB00ACFDCF /* tock.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = tock.wav; sourceTree = "<group>"; };
  1664. BCB6358C27F6D2AB00ACFDCF /* ClassroomMainContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomMainContainer.h; sourceTree = "<group>"; };
  1665. BCB6358D27F6D2AB00ACFDCF /* ClassroomMainContainer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomMainContainer.m; sourceTree = "<group>"; };
  1666. BCB6358F27F6D2AB00ACFDCF /* ClassTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassTitleView.h; sourceTree = "<group>"; };
  1667. BCB6359027F6D2AB00ACFDCF /* ClassTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassTitleView.m; sourceTree = "<group>"; };
  1668. BCB6359227F6D2AB00ACFDCF /* MainToolView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainToolView.m; sourceTree = "<group>"; };
  1669. BCB6359327F6D2AB00ACFDCF /* MainToolView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainToolView.h; sourceTree = "<group>"; };
  1670. BCB635A127F6D3FE00ACFDCF /* KSNormalAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNormalAlertView.h; sourceTree = "<group>"; };
  1671. BCB635A227F6D3FE00ACFDCF /* KSNormalAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNormalAlertView.m; sourceTree = "<group>"; };
  1672. BCB635A427F6D90600ACFDCF /* KSLiveEmptyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLiveEmptyView.m; sourceTree = "<group>"; };
  1673. BCB635A527F6D90600ACFDCF /* KSLiveEmptyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLiveEmptyView.h; sourceTree = "<group>"; };
  1674. BCB635A727F6D93300ACFDCF /* KSChatVideoView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatVideoView.m; sourceTree = "<group>"; };
  1675. BCB635A827F6D93300ACFDCF /* KSChatVideoView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatVideoView.h; sourceTree = "<group>"; };
  1676. BCB635AA27F6E06500ACFDCF /* LiveRoomHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveRoomHeadView.h; sourceTree = "<group>"; };
  1677. BCB635AB27F6E06500ACFDCF /* LiveRoomHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveRoomHeadView.m; sourceTree = "<group>"; };
  1678. BCB635AC27F6E06500ACFDCF /* LiveRoomHeadView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveRoomHeadView.xib; sourceTree = "<group>"; };
  1679. BCB635AF27F6E1A600ACFDCF /* LiveRoomBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveRoomBottomView.h; sourceTree = "<group>"; };
  1680. BCB635B027F6E1A600ACFDCF /* LiveRoomBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveRoomBottomView.m; sourceTree = "<group>"; };
  1681. BCB635B127F6E1A600ACFDCF /* LiveRoomBottomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveRoomBottomView.xib; sourceTree = "<group>"; };
  1682. BCBFDF3528110C660052AFE5 /* HomeNavView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeNavView.h; sourceTree = "<group>"; };
  1683. BCBFDF3628110C660052AFE5 /* HomeNavView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeNavView.m; sourceTree = "<group>"; };
  1684. BCBFDF3828110C6F0052AFE5 /* HomeNavView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeNavView.xib; sourceTree = "<group>"; };
  1685. BCBFDF3A281156430052AFE5 /* HomeBannerView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeBannerView.h; sourceTree = "<group>"; };
  1686. BCBFDF3B281156430052AFE5 /* HomeBannerView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeBannerView.m; sourceTree = "<group>"; };
  1687. BCBFDF3D2811564C0052AFE5 /* HomeBannerView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeBannerView.xib; sourceTree = "<group>"; };
  1688. BCBFDF3F281157340052AFE5 /* HomeButtonView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeButtonView.h; sourceTree = "<group>"; };
  1689. BCBFDF40281157340052AFE5 /* HomeButtonView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeButtonView.m; sourceTree = "<group>"; };
  1690. BCBFDF422811573D0052AFE5 /* HomeButtonView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeButtonView.xib; sourceTree = "<group>"; };
  1691. BCBFDF44281159990052AFE5 /* HomeHotAlbumView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeHotAlbumView.h; sourceTree = "<group>"; };
  1692. BCBFDF45281159990052AFE5 /* HomeHotAlbumView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeHotAlbumView.m; sourceTree = "<group>"; };
  1693. BCBFDF47281159A40052AFE5 /* HomeHotAlbumView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeHotAlbumView.xib; sourceTree = "<group>"; };
  1694. BCBFDF4928115C6F0052AFE5 /* HomeHotCourseView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeHotCourseView.h; sourceTree = "<group>"; };
  1695. BCBFDF4A28115C6F0052AFE5 /* HomeHotCourseView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeHotCourseView.m; sourceTree = "<group>"; };
  1696. BCBFDF4C28115C7A0052AFE5 /* HomeHotCourseView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeHotCourseView.xib; sourceTree = "<group>"; };
  1697. BCBFDF4E28115D9A0052AFE5 /* HomeIntroduceView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeIntroduceView.h; sourceTree = "<group>"; };
  1698. BCBFDF4F28115D9A0052AFE5 /* HomeIntroduceView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeIntroduceView.m; sourceTree = "<group>"; };
  1699. BCBFDF5128115DA40052AFE5 /* HomeIntroduceView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeIntroduceView.xib; sourceTree = "<group>"; };
  1700. BCFE53E42812765600AD6786 /* HomeHotAlbumCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeHotAlbumCell.h; sourceTree = "<group>"; };
  1701. BCFE53E52812765600AD6786 /* HomeHotAlbumCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeHotAlbumCell.m; sourceTree = "<group>"; };
  1702. BCFE53E62812765600AD6786 /* HomeHotAlbumCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeHotAlbumCell.xib; sourceTree = "<group>"; };
  1703. BCFE53E92812897600AD6786 /* HomeLiveCouseCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeLiveCouseCell.h; sourceTree = "<group>"; };
  1704. BCFE53EA2812897600AD6786 /* HomeLiveCouseCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeLiveCouseCell.m; sourceTree = "<group>"; };
  1705. BCFE53EB2812897600AD6786 /* HomeLiveCouseCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeLiveCouseCell.xib; sourceTree = "<group>"; };
  1706. BCFE53EE2812898700AD6786 /* HomeVideoCourseCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeVideoCourseCell.h; sourceTree = "<group>"; };
  1707. BCFE53EF2812898700AD6786 /* HomeVideoCourseCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeVideoCourseCell.m; sourceTree = "<group>"; };
  1708. BCFE53F02812898700AD6786 /* HomeVideoCourseCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeVideoCourseCell.xib; sourceTree = "<group>"; };
  1709. BCFE53F328128A9600AD6786 /* TeacherShowCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TeacherShowCell.h; sourceTree = "<group>"; };
  1710. BCFE53F428128A9600AD6786 /* TeacherShowCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TeacherShowCell.m; sourceTree = "<group>"; };
  1711. BCFE53F528128A9600AD6786 /* TeacherShowCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TeacherShowCell.xib; sourceTree = "<group>"; };
  1712. BCFE53F828129A5500AD6786 /* TeacherStyleModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TeacherStyleModel.m; sourceTree = "<group>"; };
  1713. BCFE53F928129A5500AD6786 /* TeacherStyleModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TeacherStyleModel.h; sourceTree = "<group>"; };
  1714. BCFE53FB2814E1BD00AD6786 /* HomeVideoGroupModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeVideoGroupModel.h; sourceTree = "<group>"; };
  1715. BCFE53FC2814E1BD00AD6786 /* HomeLiveGroupModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeLiveGroupModel.h; sourceTree = "<group>"; };
  1716. BCFE53FD2814E1BE00AD6786 /* HomeLiveGroupModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeLiveGroupModel.m; sourceTree = "<group>"; };
  1717. BCFE53FE2814E1BE00AD6786 /* HomeVideoGroupModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeVideoGroupModel.m; sourceTree = "<group>"; };
  1718. BCFE540128152A8500AD6786 /* KSOrderManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KSOrderManager.h; sourceTree = "<group>"; };
  1719. BCFE540228152A8500AD6786 /* KSOrderManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KSOrderManager.m; sourceTree = "<group>"; };
  1720. BCFE5404281545C500AD6786 /* HomeAlbumModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeAlbumModel.h; sourceTree = "<group>"; };
  1721. BCFE5405281545C500AD6786 /* HomeAlbumModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeAlbumModel.m; sourceTree = "<group>"; };
  1722. C9C170A749B6C49F17AC3246 /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KulexiuForStudent_KulexiuForStudentUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1723. D5D730A1D1EC18E5028F1AD7 /* Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig"; sourceTree = "<group>"; };
  1724. DD4D637EF600D0BAE869423D /* Pods_KulexiuForStudentTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KulexiuForStudentTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1725. ED3E62A50E433BC13E633D1C /* Pods-KulexiuForStudentTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudentTests.release.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudentTests/Pods-KulexiuForStudentTests.release.xcconfig"; sourceTree = "<group>"; };
  1726. /* End PBXFileReference section */
  1727. /* Begin PBXFrameworksBuildPhase section */
  1728. 275E8AA227E18F8800DD3F6E /* Frameworks */ = {
  1729. isa = PBXFrameworksBuildPhase;
  1730. buildActionMask = 2147483647;
  1731. files = (
  1732. 82EE25CEB2BB5A0E1BB8D54B /* Pods_KulexiuForStudent.framework in Frameworks */,
  1733. );
  1734. runOnlyForDeploymentPostprocessing = 0;
  1735. };
  1736. 275E8ABD27E18F8C00DD3F6E /* Frameworks */ = {
  1737. isa = PBXFrameworksBuildPhase;
  1738. buildActionMask = 2147483647;
  1739. files = (
  1740. 93F0FA52C8A72F83D07C15A6 /* Pods_KulexiuForStudentTests.framework in Frameworks */,
  1741. );
  1742. runOnlyForDeploymentPostprocessing = 0;
  1743. };
  1744. 275E8AC727E18F8C00DD3F6E /* Frameworks */ = {
  1745. isa = PBXFrameworksBuildPhase;
  1746. buildActionMask = 2147483647;
  1747. files = (
  1748. C56C141D9D9D478077F14C1E /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework in Frameworks */,
  1749. );
  1750. runOnlyForDeploymentPostprocessing = 0;
  1751. };
  1752. /* End PBXFrameworksBuildPhase section */
  1753. /* Begin PBXGroup section */
  1754. 0C35B95085341A122CBEF122 /* Pods */ = {
  1755. isa = PBXGroup;
  1756. children = (
  1757. 63DC852CB04F64963003C553 /* Pods-KulexiuForStudent.debug.xcconfig */,
  1758. 267E3608F0FE8D4A55A1D46F /* Pods-KulexiuForStudent.release.xcconfig */,
  1759. 04AE318E8988C2AC148D551B /* Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig */,
  1760. D5D730A1D1EC18E5028F1AD7 /* Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig */,
  1761. 25A92766B52F3FB4AFA45A9B /* Pods-KulexiuForStudentTests.debug.xcconfig */,
  1762. ED3E62A50E433BC13E633D1C /* Pods-KulexiuForStudentTests.release.xcconfig */,
  1763. );
  1764. path = Pods;
  1765. sourceTree = "<group>";
  1766. };
  1767. 2723B5D027F157D300E0B90B /* Search */ = {
  1768. isa = PBXGroup;
  1769. children = (
  1770. 2723B5D127F157D300E0B90B /* Controller */,
  1771. 2723B5D427F157D300E0B90B /* Model */,
  1772. 2723B5D727F157D300E0B90B /* View */,
  1773. );
  1774. path = Search;
  1775. sourceTree = "<group>";
  1776. };
  1777. 2723B5D127F157D300E0B90B /* Controller */ = {
  1778. isa = PBXGroup;
  1779. children = (
  1780. 2723B5D227F157D300E0B90B /* KSSearchHistoryMessageController.h */,
  1781. 2723B5D327F157D300E0B90B /* KSSearchHistoryMessageController.m */,
  1782. );
  1783. path = Controller;
  1784. sourceTree = "<group>";
  1785. };
  1786. 2723B5D427F157D300E0B90B /* Model */ = {
  1787. isa = PBXGroup;
  1788. children = (
  1789. 2723B5D527F157D300E0B90B /* KSSearchResultModel.h */,
  1790. 2723B5D627F157D300E0B90B /* KSSearchResultModel.m */,
  1791. );
  1792. path = Model;
  1793. sourceTree = "<group>";
  1794. };
  1795. 2723B5D727F157D300E0B90B /* View */ = {
  1796. isa = PBXGroup;
  1797. children = (
  1798. 2723B5D827F157D300E0B90B /* KSSearchResultViewCell.m */,
  1799. 2723B5D927F157D300E0B90B /* KSRCSearchBar.h */,
  1800. 2723B5DA27F157D300E0B90B /* KSSearchRCLabel.m */,
  1801. 2723B5DB27F157D300E0B90B /* KSRCSearchBar.m */,
  1802. 2723B5DC27F157D300E0B90B /* KSSearchResultViewCell.h */,
  1803. 2723B5DD27F157D300E0B90B /* KSSearchRCLabel.h */,
  1804. );
  1805. path = View;
  1806. sourceTree = "<group>";
  1807. };
  1808. 2723B5DE27F157D400E0B90B /* GroupNotice */ = {
  1809. isa = PBXGroup;
  1810. children = (
  1811. 2723B5DF27F157D400E0B90B /* Controller */,
  1812. 2723B5E427F157D400E0B90B /* Model */,
  1813. 2723B5E727F157D400E0B90B /* View */,
  1814. );
  1815. path = GroupNotice;
  1816. sourceTree = "<group>";
  1817. };
  1818. 2723B5DF27F157D400E0B90B /* Controller */ = {
  1819. isa = PBXGroup;
  1820. children = (
  1821. 2723B5E127F157D400E0B90B /* GroupNoticeEditController.h */,
  1822. 2723B5E227F157D400E0B90B /* GroupNoticeEditController.m */,
  1823. 2723B5E327F157D400E0B90B /* GroupNoticeViewController.h */,
  1824. 2723B5E027F157D400E0B90B /* GroupNoticeViewController.m */,
  1825. );
  1826. path = Controller;
  1827. sourceTree = "<group>";
  1828. };
  1829. 2723B5E427F157D400E0B90B /* Model */ = {
  1830. isa = PBXGroup;
  1831. children = (
  1832. 2723B5E527F157D400E0B90B /* GroupNoticeModel.h */,
  1833. 2723B5E627F157D400E0B90B /* GroupNoticeModel.m */,
  1834. );
  1835. path = Model;
  1836. sourceTree = "<group>";
  1837. };
  1838. 2723B5E727F157D400E0B90B /* View */ = {
  1839. isa = PBXGroup;
  1840. children = (
  1841. 2723B5E827F157D400E0B90B /* GroupNoticeCell.m */,
  1842. 2723B5E927F157D400E0B90B /* NoticeEditBodyView.h */,
  1843. 2723B5EA27F157D400E0B90B /* NoticeEditBodyView.xib */,
  1844. 2723B5EB27F157D400E0B90B /* LFPopupMenu */,
  1845. 2723B5F027F157D400E0B90B /* GroupNoticeCell.h */,
  1846. 2723B5F127F157D400E0B90B /* NoticeEditBodyView.m */,
  1847. 2723B5F227F157D400E0B90B /* GroupNoticeCell.xib */,
  1848. );
  1849. path = View;
  1850. sourceTree = "<group>";
  1851. };
  1852. 2723B5EB27F157D400E0B90B /* LFPopupMenu */ = {
  1853. isa = PBXGroup;
  1854. children = (
  1855. 2723B5EC27F157D400E0B90B /* LFPopupMenuDefaultConfig.h */,
  1856. 2723B5ED27F157D400E0B90B /* LFPopupMenu.m */,
  1857. 2723B5EE27F157D400E0B90B /* LFPopupMenuDefaultConfig.m */,
  1858. 2723B5EF27F157D400E0B90B /* LFPopupMenu.h */,
  1859. );
  1860. path = LFPopupMenu;
  1861. sourceTree = "<group>";
  1862. };
  1863. 2723B5F327F157D500E0B90B /* Group */ = {
  1864. isa = PBXGroup;
  1865. children = (
  1866. 2723B5F427F157D500E0B90B /* Controller */,
  1867. 2723B5FF27F157D500E0B90B /* Model */,
  1868. 2723B60227F157D500E0B90B /* View */,
  1869. );
  1870. path = Group;
  1871. sourceTree = "<group>";
  1872. };
  1873. 2723B5F427F157D500E0B90B /* Controller */ = {
  1874. isa = PBXGroup;
  1875. children = (
  1876. 2723B5FB27F157D500E0B90B /* GroupApplyViewController.h */,
  1877. 2723B5F527F157D500E0B90B /* GroupApplyViewController.m */,
  1878. 2723B5FA27F157D500E0B90B /* GroupMemberViewController.h */,
  1879. 2723B5F627F157D500E0B90B /* GroupMemberViewController.m */,
  1880. 2723B5F827F157D500E0B90B /* GroupSettingViewController.h */,
  1881. 2723B5FC27F157D500E0B90B /* GroupSettingViewController.m */,
  1882. 2723B5FE27F157D500E0B90B /* KSChatComplainController.h */,
  1883. 2723B5F927F157D500E0B90B /* KSChatComplainController.m */,
  1884. 2723B5FD27F157D500E0B90B /* KSSelectConversationViewController.h */,
  1885. 2723B5F727F157D500E0B90B /* KSSelectConversationViewController.m */,
  1886. );
  1887. path = Controller;
  1888. sourceTree = "<group>";
  1889. };
  1890. 2723B5FF27F157D500E0B90B /* Model */ = {
  1891. isa = PBXGroup;
  1892. children = (
  1893. 2723B60027F157D500E0B90B /* ApplyMemberModel.m */,
  1894. 2723B60127F157D500E0B90B /* ApplyMemberModel.h */,
  1895. );
  1896. path = Model;
  1897. sourceTree = "<group>";
  1898. };
  1899. 2723B60227F157D500E0B90B /* View */ = {
  1900. isa = PBXGroup;
  1901. children = (
  1902. 2723B60E27F157D500E0B90B /* ApplyBottomView.h */,
  1903. 2723B60427F157D500E0B90B /* ApplyBottomView.m */,
  1904. 2723B61427F157D500E0B90B /* ApplyBottomView.xib */,
  1905. 2723B60327F157D500E0B90B /* ChatComplainBodyView.h */,
  1906. 2723B60F27F157D500E0B90B /* ChatComplainBodyView.m */,
  1907. 2723B60827F157D500E0B90B /* ChatComplainBodyView.xib */,
  1908. 2723B61127F157D500E0B90B /* GroupApplyChooseAllCell.h */,
  1909. 2723B60927F157D500E0B90B /* GroupApplyChooseAllCell.m */,
  1910. 2723B60727F157D500E0B90B /* GroupApplyChooseAllCell.xib */,
  1911. 2723B60D27F157D500E0B90B /* GroupApplyChooseCell.h */,
  1912. 2723B61627F157D500E0B90B /* GroupApplyChooseCell.m */,
  1913. 2723B61227F157D500E0B90B /* GroupApplyChooseCell.xib */,
  1914. 2723B60A27F157D500E0B90B /* GroupApplyMemberCell.h */,
  1915. 2723B61027F157D500E0B90B /* GroupApplyMemberCell.m */,
  1916. 2723B60527F157D500E0B90B /* GroupApplyMemberCell.xib */,
  1917. 2723B60627F157D500E0B90B /* GroupMemberListCell.h */,
  1918. 2723B61327F157D500E0B90B /* GroupMemberListCell.m */,
  1919. 2723B61727F157D500E0B90B /* GroupMemberListCell.xib */,
  1920. 2723B61527F157D500E0B90B /* GroupSettingBodyView.h */,
  1921. 2723B60B27F157D500E0B90B /* GroupSettingBodyView.m */,
  1922. 2723B60C27F157D500E0B90B /* GroupSettingBodyView.xib */,
  1923. );
  1924. path = View;
  1925. sourceTree = "<group>";
  1926. };
  1927. 2723B63D27F15B5800E0B90B /* SCIndexView */ = {
  1928. isa = PBXGroup;
  1929. children = (
  1930. 2723B63E27F15B5800E0B90B /* SCIndexViewConfiguration.m */,
  1931. 2723B63F27F15B5800E0B90B /* UITableView+SCIndexView.h */,
  1932. 2723B64027F15B5800E0B90B /* SCIndexView.m */,
  1933. 2723B64127F15B5800E0B90B /* SCIndexViewConfiguration.h */,
  1934. 2723B64227F15B5800E0B90B /* UITableView+SCIndexView.m */,
  1935. 2723B64327F15B5800E0B90B /* SCIndexView.h */,
  1936. );
  1937. path = SCIndexView;
  1938. sourceTree = "<group>";
  1939. };
  1940. 275E8A9C27E18F8800DD3F6E = {
  1941. isa = PBXGroup;
  1942. children = (
  1943. 275E8AA727E18F8800DD3F6E /* KulexiuForStudent */,
  1944. 275E8AC327E18F8C00DD3F6E /* KulexiuForStudentTests */,
  1945. 275E8ACD27E18F8C00DD3F6E /* KulexiuForStudentUITests */,
  1946. 275E8AA627E18F8800DD3F6E /* Products */,
  1947. 0C35B95085341A122CBEF122 /* Pods */,
  1948. 9BF683910A95A690331EF86A /* Frameworks */,
  1949. );
  1950. sourceTree = "<group>";
  1951. };
  1952. 275E8AA627E18F8800DD3F6E /* Products */ = {
  1953. isa = PBXGroup;
  1954. children = (
  1955. 275E8AA527E18F8800DD3F6E /* KulexiuForStudent.app */,
  1956. 275E8AC027E18F8C00DD3F6E /* KulexiuForStudentTests.xctest */,
  1957. 275E8ACA27E18F8C00DD3F6E /* KulexiuForStudentUITests.xctest */,
  1958. );
  1959. name = Products;
  1960. sourceTree = "<group>";
  1961. };
  1962. 275E8AA727E18F8800DD3F6E /* KulexiuForStudent */ = {
  1963. isa = PBXGroup;
  1964. children = (
  1965. 275FA1F027E7356A00CFEA2E /* Module */,
  1966. 2779336127E3249C0010E277 /* Common */,
  1967. 275E8AA827E18F8800DD3F6E /* AppDelegate.h */,
  1968. 275E8AA927E18F8800DD3F6E /* AppDelegate.m */,
  1969. 275E8AAE27E18F8800DD3F6E /* ViewController.h */,
  1970. 275E8AAF27E18F8800DD3F6E /* ViewController.m */,
  1971. 275E8AB127E18F8800DD3F6E /* Main.storyboard */,
  1972. 275E8AB427E18F8B00DD3F6E /* Assets.xcassets */,
  1973. 275E8AB627E18F8B00DD3F6E /* LaunchScreen.storyboard */,
  1974. 275E8AB927E18F8B00DD3F6E /* Info.plist */,
  1975. 275E8ABA27E18F8B00DD3F6E /* main.m */,
  1976. );
  1977. path = KulexiuForStudent;
  1978. sourceTree = "<group>";
  1979. };
  1980. 275E8AC327E18F8C00DD3F6E /* KulexiuForStudentTests */ = {
  1981. isa = PBXGroup;
  1982. children = (
  1983. 275E8AC427E18F8C00DD3F6E /* KulexiuForStudentTests.m */,
  1984. );
  1985. path = KulexiuForStudentTests;
  1986. sourceTree = "<group>";
  1987. };
  1988. 275E8ACD27E18F8C00DD3F6E /* KulexiuForStudentUITests */ = {
  1989. isa = PBXGroup;
  1990. children = (
  1991. 275E8ACE27E18F8C00DD3F6E /* KulexiuForStudentUITests.m */,
  1992. 275E8AD027E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m */,
  1993. );
  1994. path = KulexiuForStudentUITests;
  1995. sourceTree = "<group>";
  1996. };
  1997. 275FA1F027E7356A00CFEA2E /* Module */ = {
  1998. isa = PBXGroup;
  1999. children = (
  2000. BCB6357327F6D2AB00ACFDCF /* Classroom */,
  2001. BCB6348727F6D2A200ACFDCF /* SealClass */,
  2002. BCB6340A27F6D29500ACFDCF /* Live */,
  2003. 275FA1F127E7356A00CFEA2E /* Home */,
  2004. 275FA1F727E7356A00CFEA2E /* Course */,
  2005. 275FA1FD27E7356B00CFEA2E /* Chat */,
  2006. 275FA20327E7356B00CFEA2E /* Mine */,
  2007. 275FA20927E7356B00CFEA2E /* Mall */,
  2008. 275FA20F27E7356B00CFEA2E /* Login */,
  2009. );
  2010. path = Module;
  2011. sourceTree = "<group>";
  2012. };
  2013. 275FA1F127E7356A00CFEA2E /* Home */ = {
  2014. isa = PBXGroup;
  2015. children = (
  2016. BC40BA0F28124D0C00DEC0D1 /* NoticeCenter */,
  2017. 275FA1F227E7356A00CFEA2E /* Controller */,
  2018. 275FA1F527E7356A00CFEA2E /* Model */,
  2019. 275FA1F627E7356A00CFEA2E /* View */,
  2020. );
  2021. path = Home;
  2022. sourceTree = "<group>";
  2023. };
  2024. 275FA1F227E7356A00CFEA2E /* Controller */ = {
  2025. isa = PBXGroup;
  2026. children = (
  2027. 275FA1F427E7356A00CFEA2E /* HomeViewController.h */,
  2028. 275FA1F327E7356A00CFEA2E /* HomeViewController.m */,
  2029. );
  2030. path = Controller;
  2031. sourceTree = "<group>";
  2032. };
  2033. 275FA1F527E7356A00CFEA2E /* Model */ = {
  2034. isa = PBXGroup;
  2035. children = (
  2036. BC40BA19281251EC00DEC0D1 /* HomeMessageModel.h */,
  2037. BC40BA1A281251ED00DEC0D1 /* HomeMessageModel.m */,
  2038. BCFE53F928129A5500AD6786 /* TeacherStyleModel.h */,
  2039. BCFE53F828129A5500AD6786 /* TeacherStyleModel.m */,
  2040. BCFE5404281545C500AD6786 /* HomeAlbumModel.h */,
  2041. BCFE5405281545C500AD6786 /* HomeAlbumModel.m */,
  2042. BCFE53FC2814E1BD00AD6786 /* HomeLiveGroupModel.h */,
  2043. BCFE53FD2814E1BE00AD6786 /* HomeLiveGroupModel.m */,
  2044. BCFE53FB2814E1BD00AD6786 /* HomeVideoGroupModel.h */,
  2045. BCFE53FE2814E1BE00AD6786 /* HomeVideoGroupModel.m */,
  2046. );
  2047. path = Model;
  2048. sourceTree = "<group>";
  2049. };
  2050. 275FA1F627E7356A00CFEA2E /* View */ = {
  2051. isa = PBXGroup;
  2052. children = (
  2053. BC8C2C7B28265D8D00FBA5D5 /* KSNewsAlert.h */,
  2054. BC8C2C7C28265D8D00FBA5D5 /* KSNewsAlert.m */,
  2055. BC8C2C7D28265D8E00FBA5D5 /* KSNewsAlert.xib */,
  2056. BCBFDF3528110C660052AFE5 /* HomeNavView.h */,
  2057. BCBFDF3628110C660052AFE5 /* HomeNavView.m */,
  2058. BCBFDF3828110C6F0052AFE5 /* HomeNavView.xib */,
  2059. BCBFDF3A281156430052AFE5 /* HomeBannerView.h */,
  2060. BCBFDF3B281156430052AFE5 /* HomeBannerView.m */,
  2061. BCBFDF3D2811564C0052AFE5 /* HomeBannerView.xib */,
  2062. BCBFDF3F281157340052AFE5 /* HomeButtonView.h */,
  2063. BCBFDF40281157340052AFE5 /* HomeButtonView.m */,
  2064. BCBFDF422811573D0052AFE5 /* HomeButtonView.xib */,
  2065. BC40BA1E2812552300DEC0D1 /* KSHomeButton.h */,
  2066. BC40BA1C2812552200DEC0D1 /* KSHomeButton.m */,
  2067. BC40BA1D2812552200DEC0D1 /* KSHomeButton.xib */,
  2068. BCBFDF44281159990052AFE5 /* HomeHotAlbumView.h */,
  2069. BCBFDF45281159990052AFE5 /* HomeHotAlbumView.m */,
  2070. BCBFDF47281159A40052AFE5 /* HomeHotAlbumView.xib */,
  2071. BCBFDF4928115C6F0052AFE5 /* HomeHotCourseView.h */,
  2072. BCBFDF4A28115C6F0052AFE5 /* HomeHotCourseView.m */,
  2073. BCBFDF4C28115C7A0052AFE5 /* HomeHotCourseView.xib */,
  2074. BCBFDF4E28115D9A0052AFE5 /* HomeIntroduceView.h */,
  2075. BCBFDF4F28115D9A0052AFE5 /* HomeIntroduceView.m */,
  2076. BCBFDF5128115DA40052AFE5 /* HomeIntroduceView.xib */,
  2077. BC40B9F62811767A00DEC0D1 /* HotInformationHeadView.h */,
  2078. BC40B9F72811767A00DEC0D1 /* HotInformationHeadView.m */,
  2079. BC40B9F92811768400DEC0D1 /* HotInformationHeadView.xib */,
  2080. BC40B9FB281177BD00DEC0D1 /* HomeInformationCell.h */,
  2081. BC40B9FC281177BD00DEC0D1 /* HomeInformationCell.m */,
  2082. BC40B9FD281177BD00DEC0D1 /* HomeInformationCell.xib */,
  2083. BC40BA0028117B0A00DEC0D1 /* HomeBannerCell.h */,
  2084. BC40BA0128117B0A00DEC0D1 /* HomeBannerCell.m */,
  2085. BC40BA0228117B0A00DEC0D1 /* HomeBannerCell.xib */,
  2086. BC40BA21281255F700DEC0D1 /* HomeCourseTipsView.h */,
  2087. BC40BA22281255F700DEC0D1 /* HomeCourseTipsView.m */,
  2088. BC40BA242812560100DEC0D1 /* HomeCourseTipsView.xib */,
  2089. BCFE53E42812765600AD6786 /* HomeHotAlbumCell.h */,
  2090. BCFE53E52812765600AD6786 /* HomeHotAlbumCell.m */,
  2091. BCFE53E62812765600AD6786 /* HomeHotAlbumCell.xib */,
  2092. BCFE53E92812897600AD6786 /* HomeLiveCouseCell.h */,
  2093. BCFE53EA2812897600AD6786 /* HomeLiveCouseCell.m */,
  2094. BCFE53EB2812897600AD6786 /* HomeLiveCouseCell.xib */,
  2095. BCFE53EE2812898700AD6786 /* HomeVideoCourseCell.h */,
  2096. BCFE53EF2812898700AD6786 /* HomeVideoCourseCell.m */,
  2097. BCFE53F02812898700AD6786 /* HomeVideoCourseCell.xib */,
  2098. BCFE53F328128A9600AD6786 /* TeacherShowCell.h */,
  2099. BCFE53F428128A9600AD6786 /* TeacherShowCell.m */,
  2100. BCFE53F528128A9600AD6786 /* TeacherShowCell.xib */,
  2101. );
  2102. path = View;
  2103. sourceTree = "<group>";
  2104. };
  2105. 275FA1F727E7356A00CFEA2E /* Course */ = {
  2106. isa = PBXGroup;
  2107. children = (
  2108. BC11923B280ED9CC00A716F7 /* AccompanyCourse */,
  2109. 275FA1F827E7356A00CFEA2E /* Controller */,
  2110. 275FA1FB27E7356B00CFEA2E /* Model */,
  2111. 275FA1FC27E7356B00CFEA2E /* View */,
  2112. );
  2113. path = Course;
  2114. sourceTree = "<group>";
  2115. };
  2116. 275FA1F827E7356A00CFEA2E /* Controller */ = {
  2117. isa = PBXGroup;
  2118. children = (
  2119. 275FA1F927E7356A00CFEA2E /* CourseViewController.h */,
  2120. 275FA1FA27E7356B00CFEA2E /* CourseViewController.m */,
  2121. );
  2122. path = Controller;
  2123. sourceTree = "<group>";
  2124. };
  2125. 275FA1FB27E7356B00CFEA2E /* Model */ = {
  2126. isa = PBXGroup;
  2127. children = (
  2128. BC11922E280ED8F800A716F7 /* TableCourseModel.h */,
  2129. BC11922F280ED8F900A716F7 /* TableCourseModel.m */,
  2130. );
  2131. path = Model;
  2132. sourceTree = "<group>";
  2133. };
  2134. 275FA1FC27E7356B00CFEA2E /* View */ = {
  2135. isa = PBXGroup;
  2136. children = (
  2137. BC119225280ED8E800A716F7 /* CourseNavView.h */,
  2138. BC119226280ED8E800A716F7 /* CourseNavView.m */,
  2139. BC119229280ED8E800A716F7 /* CourseNavView.xib */,
  2140. BC119228280ED8E800A716F7 /* LTSCalendarBottomView.h */,
  2141. BC119224280ED8E700A716F7 /* LTSCalendarBottomView.m */,
  2142. BC119227280ED8E800A716F7 /* LTSCalendarBottomView.xib */,
  2143. BC119233280ED97C00A716F7 /* CourseForLiveCell.h */,
  2144. BC119231280ED97B00A716F7 /* CourseForLiveCell.m */,
  2145. BC119232280ED97C00A716F7 /* CourseForLiveCell.xib */,
  2146. BC119236280ED98D00A716F7 /* AccompanyCourseCell.h */,
  2147. BC119238280ED98E00A716F7 /* AccompanyCourseCell.m */,
  2148. BC119237280ED98E00A716F7 /* AccompanyCourseCell.xib */,
  2149. );
  2150. path = View;
  2151. sourceTree = "<group>";
  2152. };
  2153. 275FA1FD27E7356B00CFEA2E /* Chat */ = {
  2154. isa = PBXGroup;
  2155. children = (
  2156. 2723B5F327F157D500E0B90B /* Group */,
  2157. 2723B5DE27F157D400E0B90B /* GroupNotice */,
  2158. 2723B5D027F157D300E0B90B /* Search */,
  2159. 275FA1FE27E7356B00CFEA2E /* Controller */,
  2160. 275FA20127E7356B00CFEA2E /* Model */,
  2161. 275FA20227E7356B00CFEA2E /* View */,
  2162. );
  2163. path = Chat;
  2164. sourceTree = "<group>";
  2165. };
  2166. 275FA1FE27E7356B00CFEA2E /* Controller */ = {
  2167. isa = PBXGroup;
  2168. children = (
  2169. 275FA20027E7356B00CFEA2E /* ChatViewController.h */,
  2170. 275FA1FF27E7356B00CFEA2E /* ChatViewController.m */,
  2171. 2723B59D27F1577F00E0B90B /* ChatAddressViewController.h */,
  2172. 2723B5A027F1578100E0B90B /* ChatAddressViewController.m */,
  2173. 2723B59A27F1577E00E0B90B /* CreateFansGroupViewController.h */,
  2174. 2723B59B27F1577E00E0B90B /* CreateFansGroupViewController.m */,
  2175. 2723B5A127F1578200E0B90B /* KSChatConversationViewController.h */,
  2176. 2723B59E27F1578000E0B90B /* KSChatConversationViewController.m */,
  2177. 2723B59F27F1578100E0B90B /* KSChatListViewController.h */,
  2178. 2723B59C27F1577F00E0B90B /* KSChatListViewController.m */,
  2179. );
  2180. path = Controller;
  2181. sourceTree = "<group>";
  2182. };
  2183. 275FA20127E7356B00CFEA2E /* Model */ = {
  2184. isa = PBXGroup;
  2185. children = (
  2186. 2723B5C927F157BA00E0B90B /* GroupListModel.h */,
  2187. 2723B5C827F157B900E0B90B /* GroupListModel.m */,
  2188. 2723B5CB27F157BD00E0B90B /* GroupMemberModel.h */,
  2189. 2723B5CC27F157BE00E0B90B /* GroupMemberModel.m */,
  2190. 2723B5C727F157B800E0B90B /* KSRCloudMediaManager.h */,
  2191. 2723B5CA27F157BB00E0B90B /* KSRCloudMediaManager.m */,
  2192. );
  2193. path = Model;
  2194. sourceTree = "<group>";
  2195. };
  2196. 275FA20227E7356B00CFEA2E /* View */ = {
  2197. isa = PBXGroup;
  2198. children = (
  2199. 2723B5B027F157AB00E0B90B /* ChatAddressBodyView.h */,
  2200. 2723B5A727F157A300E0B90B /* ChatAddressBodyView.m */,
  2201. 2723B5B627F157AF00E0B90B /* ChatAddressHeaderView.h */,
  2202. 2723B5AE27F157A900E0B90B /* ChatAddressHeaderView.m */,
  2203. 2723B5A627F157A200E0B90B /* ChatAddressHeaderView.xib */,
  2204. 2723B5B527F157AF00E0B90B /* ChatNavView.h */,
  2205. 2723B5AA27F157A500E0B90B /* ChatNavView.m */,
  2206. 2723B5B227F157AD00E0B90B /* ChatNavView.xib */,
  2207. 2723B5AD27F157A700E0B90B /* ContractListCell.h */,
  2208. 2723B5AF27F157AA00E0B90B /* ContractListCell.m */,
  2209. 2723B5B727F157B000E0B90B /* ContractListCell.xib */,
  2210. 2723B5B827F157B000E0B90B /* GroupCreateView.h */,
  2211. 2723B5A827F157A300E0B90B /* GroupCreateView.m */,
  2212. 2723B5AB27F157A500E0B90B /* GroupCreateView.xib */,
  2213. 2723B5B327F157AE00E0B90B /* GroupListViewCell.h */,
  2214. 2723B5B927F157B100E0B90B /* GroupListViewCell.m */,
  2215. 2723B5B127F157AD00E0B90B /* GroupListViewCell.xib */,
  2216. 2723B5AC27F157A600E0B90B /* KSChatListSearchView.h */,
  2217. 2723B5A927F157A400E0B90B /* KSChatListSearchView.m */,
  2218. 2723B5B427F157AE00E0B90B /* KSChatListSearchView.xib */,
  2219. );
  2220. path = View;
  2221. sourceTree = "<group>";
  2222. };
  2223. 275FA20327E7356B00CFEA2E /* Mine */ = {
  2224. isa = PBXGroup;
  2225. children = (
  2226. BC8C2C412823F57100FBA5D5 /* AddressList */,
  2227. BC119248280EDD4600A716F7 /* Homework */,
  2228. BC1191F9280ED63C00A716F7 /* MineCourse */,
  2229. 27F9031B27E87C2D00C08A19 /* DeviceCheck */,
  2230. 27F9030F27E87C2C00C08A19 /* Networking */,
  2231. 27F9032327E87C2E00C08A19 /* Setting */,
  2232. 275FA20427E7356B00CFEA2E /* Controller */,
  2233. 275FA20727E7356B00CFEA2E /* Model */,
  2234. 275FA20827E7356B00CFEA2E /* View */,
  2235. );
  2236. path = Mine;
  2237. sourceTree = "<group>";
  2238. };
  2239. 275FA20427E7356B00CFEA2E /* Controller */ = {
  2240. isa = PBXGroup;
  2241. children = (
  2242. 275FA20527E7356B00CFEA2E /* MineViewController.h */,
  2243. 275FA20627E7356B00CFEA2E /* MineViewController.m */,
  2244. );
  2245. path = Controller;
  2246. sourceTree = "<group>";
  2247. };
  2248. 275FA20727E7356B00CFEA2E /* Model */ = {
  2249. isa = PBXGroup;
  2250. children = (
  2251. BC2858292809036C0024697C /* StudentInfoModel.h */,
  2252. BC28582A2809036D0024697C /* StudentInfoModel.m */,
  2253. );
  2254. path = Model;
  2255. sourceTree = "<group>";
  2256. };
  2257. 275FA20827E7356B00CFEA2E /* View */ = {
  2258. isa = PBXGroup;
  2259. children = (
  2260. 27F9033327E87C8A00C08A19 /* MineNavView.h */,
  2261. 27F9033427E87C8A00C08A19 /* MineNavView.m */,
  2262. 27F9033527E87C8B00C08A19 /* MineNavView.xib */,
  2263. 27F9033827E87FD500C08A19 /* MineBodyView.h */,
  2264. 27F9033927E87FD500C08A19 /* MineBodyView.m */,
  2265. 27F9033B27E87FE100C08A19 /* MineBodyView.xib */,
  2266. BC119286280FB3B000A716F7 /* KSStarView.h */,
  2267. BC119287280FB3B100A716F7 /* KSStarView.m */,
  2268. );
  2269. path = View;
  2270. sourceTree = "<group>";
  2271. };
  2272. 275FA20927E7356B00CFEA2E /* Mall */ = {
  2273. isa = PBXGroup;
  2274. children = (
  2275. 275FA20A27E7356B00CFEA2E /* Controller */,
  2276. 275FA20D27E7356B00CFEA2E /* Model */,
  2277. 275FA20E27E7356B00CFEA2E /* View */,
  2278. );
  2279. path = Mall;
  2280. sourceTree = "<group>";
  2281. };
  2282. 275FA20A27E7356B00CFEA2E /* Controller */ = {
  2283. isa = PBXGroup;
  2284. children = (
  2285. 275FA20B27E7356B00CFEA2E /* ShopMallViewController.m */,
  2286. 275FA20C27E7356B00CFEA2E /* ShopMallViewController.h */,
  2287. );
  2288. path = Controller;
  2289. sourceTree = "<group>";
  2290. };
  2291. 275FA20D27E7356B00CFEA2E /* Model */ = {
  2292. isa = PBXGroup;
  2293. children = (
  2294. );
  2295. path = Model;
  2296. sourceTree = "<group>";
  2297. };
  2298. 275FA20E27E7356B00CFEA2E /* View */ = {
  2299. isa = PBXGroup;
  2300. children = (
  2301. );
  2302. path = View;
  2303. sourceTree = "<group>";
  2304. };
  2305. 275FA20F27E7356B00CFEA2E /* Login */ = {
  2306. isa = PBXGroup;
  2307. children = (
  2308. 275FA21027E7356B00CFEA2E /* Controller */,
  2309. 275FA21927E7356B00CFEA2E /* Model */,
  2310. 275FA21E27E7356B00CFEA2E /* View */,
  2311. );
  2312. path = Login;
  2313. sourceTree = "<group>";
  2314. };
  2315. 275FA21027E7356B00CFEA2E /* Controller */ = {
  2316. isa = PBXGroup;
  2317. children = (
  2318. 275FA21727E7356B00CFEA2E /* FirstSettingViewController.h */,
  2319. 275FA21227E7356B00CFEA2E /* FirstSettingViewController.m */,
  2320. 275FA21627E7356B00CFEA2E /* LoginViewController.h */,
  2321. 275FA21327E7356B00CFEA2E /* LoginViewController.m */,
  2322. 275FA21527E7356B00CFEA2E /* PasswordLoginController.h */,
  2323. 275FA21127E7356B00CFEA2E /* PasswordLoginController.m */,
  2324. 275FA21827E7356B00CFEA2E /* VefiCodeLoginController.h */,
  2325. 275FA21427E7356B00CFEA2E /* VefiCodeLoginController.m */,
  2326. BC50171027FC0D5600F8BCBC /* SubjectChooseViewController.h */,
  2327. BC50171127FC0D5600F8BCBC /* SubjectChooseViewController.m */,
  2328. );
  2329. path = Controller;
  2330. sourceTree = "<group>";
  2331. };
  2332. 275FA21927E7356B00CFEA2E /* Model */ = {
  2333. isa = PBXGroup;
  2334. children = (
  2335. BC0212FC27FC66AA0040569F /* InstrumentMessageModel.h */,
  2336. BC0212FD27FC66AA0040569F /* InstrumentMessageModel.m */,
  2337. 275FA21D27E7356B00CFEA2E /* UserInfo.h */,
  2338. 275FA21A27E7356B00CFEA2E /* UserInfo.m */,
  2339. 275FA21B27E7356B00CFEA2E /* UserInfoManager.h */,
  2340. 275FA21C27E7356B00CFEA2E /* UserInfoManager.m */,
  2341. );
  2342. path = Model;
  2343. sourceTree = "<group>";
  2344. };
  2345. 275FA21E27E7356B00CFEA2E /* View */ = {
  2346. isa = PBXGroup;
  2347. children = (
  2348. 275FA21F27E7356B00CFEA2E /* FirstSettingBodyView.h */,
  2349. 275FA22527E7356B00CFEA2E /* FirstSettingBodyView.m */,
  2350. 275FA22227E7356B00CFEA2E /* FirstSettingBodyView.xib */,
  2351. 275FA22627E7356B00CFEA2E /* LoginBodyView.h */,
  2352. 275FA22027E7356B00CFEA2E /* LoginBodyView.m */,
  2353. 275FA22127E7356B00CFEA2E /* LoginBodyView.xib */,
  2354. 275FA22427E7356B00CFEA2E /* PasswordBodyView.h */,
  2355. 275FA22827E7356B00CFEA2E /* PasswordBodyView.m */,
  2356. 275FA22A27E7356B00CFEA2E /* PasswordBodyView.xib */,
  2357. 275FA22327E7356B00CFEA2E /* VefiBodyView.h */,
  2358. 275FA22927E7356B00CFEA2E /* VefiBodyView.m */,
  2359. 275FA22727E7356B00CFEA2E /* VefiBodyView.xib */,
  2360. 275FA24127E73DF600CFEA2E /* InstrumentDescView.h */,
  2361. 275FA24227E73DF600CFEA2E /* InstrumentDescView.m */,
  2362. 275FA24427E73E0000CFEA2E /* InstrumentDescView.xib */,
  2363. 275FA24627E7428200CFEA2E /* InstrumentChooseView.h */,
  2364. 275FA24727E7428200CFEA2E /* InstrumentChooseView.m */,
  2365. 275FA24927E7428D00CFEA2E /* InstrumentChooseView.xib */,
  2366. BC50171327FC0D8300F8BCBC /* SubjectChooseBodyView.h */,
  2367. BC50171427FC0D8300F8BCBC /* SubjectChooseBodyView.m */,
  2368. BC50171627FC0D8D00F8BCBC /* SubjectChooseBodyView.xib */,
  2369. BC0212F927FC61D30040569F /* KSSegmentControl.h */,
  2370. BC0212FA27FC61D30040569F /* KSSegmentControl.m */,
  2371. BC0212F427FC4A080040569F /* SubjectImageCell.h */,
  2372. BC0212F527FC4A080040569F /* SubjectImageCell.m */,
  2373. BC0212F627FC4A080040569F /* SubjectImageCell.xib */,
  2374. );
  2375. path = View;
  2376. sourceTree = "<group>";
  2377. };
  2378. 2779336127E3249C0010E277 /* Common */ = {
  2379. isa = PBXGroup;
  2380. children = (
  2381. 2779336227E3249C0010E277 /* Tools */,
  2382. 2779346A27E324A10010E277 /* Define */,
  2383. 2779346E27E324A10010E277 /* ThirdPart */,
  2384. 2779350B27E324A40010E277 /* Base */,
  2385. );
  2386. path = Common;
  2387. sourceTree = "<group>";
  2388. };
  2389. 2779336227E3249C0010E277 /* Tools */ = {
  2390. isa = PBXGroup;
  2391. children = (
  2392. BC119296280FBCB300A716F7 /* UIView+ExtensionForDotLine.h */,
  2393. BC119297280FBCB400A716F7 /* UIView+ExtensionForDotLine.m */,
  2394. BC11928E280FB46100A716F7 /* KSVideoHelper.h */,
  2395. BC11928F280FB46100A716F7 /* KSVideoHelper.m */,
  2396. 275FA1AA27E734C500CFEA2E /* KSImageAlert.h */,
  2397. 275FA1AC27E734C600CFEA2E /* KSImageAlert.m */,
  2398. 275FA1AB27E734C600CFEA2E /* KSImageAlert.xib */,
  2399. 2779336327E3249C0010E277 /* NetworkingAccessibity */,
  2400. 2779336627E3249C0010E277 /* SafeControl */,
  2401. 2779337627E3249C0010E277 /* Extension */,
  2402. 277933B627E3249E0010E277 /* Category */,
  2403. 277933DB27E3249E0010E277 /* VideoEditor */,
  2404. 277933DE27E3249E0010E277 /* GifRefresh */,
  2405. 277933E327E3249E0010E277 /* AudioSessionManager */,
  2406. 277933E627E3249F0010E277 /* VoNetworking */,
  2407. 277933F427E3249F0010E277 /* DiskSizeManager */,
  2408. 277933F727E3249F0010E277 /* MicAlert */,
  2409. 277933FB27E3249F0010E277 /* Custom */,
  2410. 2779346327E324A10010E277 /* ArchiveTools */,
  2411. );
  2412. path = Tools;
  2413. sourceTree = "<group>";
  2414. };
  2415. 2779336327E3249C0010E277 /* NetworkingAccessibity */ = {
  2416. isa = PBXGroup;
  2417. children = (
  2418. 2779336427E3249C0010E277 /* KSNetworkAccessibleManager.h */,
  2419. 2779336527E3249C0010E277 /* KSNetworkAccessibleManager.m */,
  2420. );
  2421. path = NetworkingAccessibity;
  2422. sourceTree = "<group>";
  2423. };
  2424. 2779336627E3249C0010E277 /* SafeControl */ = {
  2425. isa = PBXGroup;
  2426. children = (
  2427. 2779336727E3249C0010E277 /* KSSafeObject.h */,
  2428. 2779336827E3249C0010E277 /* NSObject+KSSwizzling.h */,
  2429. 2779336927E3249C0010E277 /* NSDictionary+KSSafe.m */,
  2430. 2779336A27E3249C0010E277 /* NSObject+KSImpChangeTool.h */,
  2431. 2779336B27E3249C0010E277 /* NSMutableDictionary+KSSafe.m */,
  2432. 2779336C27E3249C0010E277 /* NSMutableString+KSSafe.h */,
  2433. 2779336D27E3249C0010E277 /* NSArray+KSSafe.m */,
  2434. 2779336E27E3249C0010E277 /* NSMutableArray+KSSafe.m */,
  2435. 2779336F27E3249C0010E277 /* NSDictionary+KSSafe.h */,
  2436. 2779337027E3249C0010E277 /* NSObject+KSSwizzling.m */,
  2437. 2779337127E3249C0010E277 /* NSObject+KSImpChangeTool.m */,
  2438. 2779337227E3249C0010E277 /* NSMutableArray+KSSafe.h */,
  2439. 2779337327E3249C0010E277 /* NSArray+KSSafe.h */,
  2440. 2779337427E3249C0010E277 /* NSMutableString+KSSafe.m */,
  2441. 2779337527E3249C0010E277 /* NSMutableDictionary+KSSafe.h */,
  2442. );
  2443. path = SafeControl;
  2444. sourceTree = "<group>";
  2445. };
  2446. 2779337627E3249C0010E277 /* Extension */ = {
  2447. isa = PBXGroup;
  2448. children = (
  2449. BC0212FF27FC6ADD0040569F /* UIView+SubViewExtension.h */,
  2450. BC02130027FC6ADD0040569F /* UIView+SubViewExtension.m */,
  2451. 277933A827E3249D0010E277 /* CALayer+Color.h */,
  2452. 2779338027E3249D0010E277 /* CALayer+Color.m */,
  2453. 2779338C27E3249D0010E277 /* CALayer+Layout.h */,
  2454. 277933AD27E3249E0010E277 /* CALayer+Layout.m */,
  2455. 277933A127E3249D0010E277 /* KSUtilities.h */,
  2456. 2779338727E3249D0010E277 /* KSUtilities.m */,
  2457. 277933B527E3249E0010E277 /* NSArray+zh_SafeAccess.h */,
  2458. 2779339127E3249D0010E277 /* NSArray+zh_SafeAccess.m */,
  2459. 2779338627E3249D0010E277 /* NSDate+Extension.h */,
  2460. 277933A327E3249D0010E277 /* NSDate+Extension.m */,
  2461. 2779338127E3249D0010E277 /* NSDate+Transform.h */,
  2462. 277933A627E3249D0010E277 /* NSDate+Transform.m */,
  2463. 2779337C27E3249D0010E277 /* NSDictionary+Extension.h */,
  2464. 2779339A27E3249D0010E277 /* NSDictionary+Extension.m */,
  2465. 277933A727E3249D0010E277 /* NSMutableAttributedString+CZHExtention.h */,
  2466. 2779338227E3249D0010E277 /* NSMutableAttributedString+CZHExtention.m */,
  2467. 277933A027E3249D0010E277 /* NSObject+AssociatedObject.h */,
  2468. 2779337727E3249C0010E277 /* NSObject+AssociatedObject.m */,
  2469. 277933B027E3249E0010E277 /* NSObject+Parse.h */,
  2470. 2779339527E3249D0010E277 /* NSObject+Parse.m */,
  2471. 2779338D27E3249D0010E277 /* NSObject+ReadDocument.h */,
  2472. 277933AC27E3249E0010E277 /* NSObject+ReadDocument.m */,
  2473. 2779337F27E3249D0010E277 /* NSString+CZHSizeExtension.h */,
  2474. 2779339827E3249D0010E277 /* NSString+CZHSizeExtension.m */,
  2475. 2779338327E3249D0010E277 /* NSString+Extension.h */,
  2476. 277933A527E3249D0010E277 /* NSString+Extension.m */,
  2477. 2779339C27E3249D0010E277 /* NSString+zh_SafeAccess.h */,
  2478. 2779337B27E3249D0010E277 /* NSString+zh_SafeAccess.m */,
  2479. 2779338827E3249D0010E277 /* Pinyin */,
  2480. 277933AA27E3249D0010E277 /* UIAlertController+Extend.h */,
  2481. 2779338E27E3249D0010E277 /* UIAlertController+Extend.m */,
  2482. 277933B427E3249E0010E277 /* UIColor+Extend.h */,
  2483. 2779339227E3249D0010E277 /* UIColor+Extend.m */,
  2484. 2779339E27E3249D0010E277 /* UIControl+ButtonAction.h */,
  2485. 2779337927E3249C0010E277 /* UIControl+ButtonAction.m */,
  2486. 2779339D27E3249D0010E277 /* UIDevice+zhDeviceType.h */,
  2487. 2779337A27E3249D0010E277 /* UIDevice+zhDeviceType.m */,
  2488. 2779338B27E3249D0010E277 /* UIImage+Color.h */,
  2489. 277933AE27E3249E0010E277 /* UIImage+Color.m */,
  2490. 2779338F27E3249D0010E277 /* UIImageView+CornerRadius.h */,
  2491. 277933AB27E3249D0010E277 /* UIImageView+CornerRadius.m */,
  2492. 277933A227E3249D0010E277 /* UILabel+Extension.h */,
  2493. 2779338527E3249D0010E277 /* UILabel+Extension.m */,
  2494. 2779339027E3249D0010E277 /* UIScreen+Extend.h */,
  2495. 277933A927E3249D0010E277 /* UIScreen+Extend.m */,
  2496. 277933A427E3249D0010E277 /* UITextView+ZWLimitCounter.h */,
  2497. 2779338427E3249D0010E277 /* UITextView+ZWLimitCounter.m */,
  2498. 2779339927E3249D0010E277 /* UITextView+ZWPlaceHolder.h */,
  2499. 2779337E27E3249D0010E277 /* UITextView+ZWPlaceHolder.m */,
  2500. 277933B127E3249E0010E277 /* UIView+AddConstraints.h */,
  2501. 2779339627E3249D0010E277 /* UIView+AddConstraints.m */,
  2502. 277933B227E3249E0010E277 /* UIView+Dealloc.h */,
  2503. 2779339427E3249D0010E277 /* UIView+Dealloc.m */,
  2504. 2779337827E3249C0010E277 /* UIView+Hints.h */,
  2505. 2779339F27E3249D0010E277 /* UIView+Hints.m */,
  2506. 2779339727E3249D0010E277 /* UIView+KSExtension.h */,
  2507. 277933AF27E3249E0010E277 /* UIView+KSExtension.m */,
  2508. 2779339B27E3249D0010E277 /* UIViewController+zhStatusBarStyle.h */,
  2509. 2779337D27E3249D0010E277 /* UIViewController+zhStatusBarStyle.m */,
  2510. 277933B327E3249E0010E277 /* zhPopupController.h */,
  2511. 2779339327E3249D0010E277 /* zhPopupController.m */,
  2512. );
  2513. path = Extension;
  2514. sourceTree = "<group>";
  2515. };
  2516. 2779338827E3249D0010E277 /* Pinyin */ = {
  2517. isa = PBXGroup;
  2518. children = (
  2519. 2779338927E3249D0010E277 /* pinyin.h */,
  2520. 2779338A27E3249D0010E277 /* pinyin.c */,
  2521. );
  2522. path = Pinyin;
  2523. sourceTree = "<group>";
  2524. };
  2525. 277933B627E3249E0010E277 /* Category */ = {
  2526. isa = PBXGroup;
  2527. children = (
  2528. BC119242280EDA2400A716F7 /* NSObject+KSDateFormatter.h */,
  2529. BC119243280EDA2400A716F7 /* NSObject+KSDateFormatter.m */,
  2530. 277933BD27E3249E0010E277 /* MBProgressHUD+KSShow.h */,
  2531. 277933D727E3249E0010E277 /* MBProgressHUD+KSShow.m */,
  2532. 277933D027E3249E0010E277 /* NSObject+AutoProperty.h */,
  2533. 277933C527E3249E0010E277 /* NSObject+AutoProperty.m */,
  2534. 277933C027E3249E0010E277 /* NSObject+ReadDocument.h */,
  2535. 277933D527E3249E0010E277 /* NSObject+ReadDocument.m */,
  2536. 277933C327E3249E0010E277 /* UIButton+EnlargeEdge.h */,
  2537. 277933D127E3249E0010E277 /* UIButton+EnlargeEdge.m */,
  2538. 277933D227E3249E0010E277 /* UIButton+HasChooseImage.h */,
  2539. 277933C427E3249E0010E277 /* UIButton+HasChooseImage.m */,
  2540. 277933CC27E3249E0010E277 /* UIButton+Property.h */,
  2541. 277933BA27E3249E0010E277 /* UIButton+Property.m */,
  2542. 277933CA27E3249E0010E277 /* UIDevice+TFDevice.h */,
  2543. 277933BC27E3249E0010E277 /* UIDevice+TFDevice.m */,
  2544. 277933D627E3249E0010E277 /* UIImage+Property.h */,
  2545. 277933BF27E3249E0010E277 /* UIImage+Property.m */,
  2546. 277933C727E3249E0010E277 /* UIImage+Resize.h */,
  2547. 277933DA27E3249E0010E277 /* UIImage+Resize.m */,
  2548. 277933D327E3249E0010E277 /* UIImage+ResizeImage.h */,
  2549. 277933C227E3249E0010E277 /* UIImage+ResizeImage.m */,
  2550. 277933CF27E3249E0010E277 /* UIImage+UIImageScale.h */,
  2551. 277933C627E3249E0010E277 /* UIImage+UIImageScale.m */,
  2552. 277933CE27E3249E0010E277 /* UILabel+QWTopLeftLabel.h */,
  2553. 277933B827E3249E0010E277 /* UILabel+QWTopLeftLabel.m */,
  2554. 277933CB27E3249E0010E277 /* UIScrollView+KSTouch.h */,
  2555. 277933BB27E3249E0010E277 /* UIScrollView+KSTouch.m */,
  2556. 277933D927E3249E0010E277 /* UIView+Animation.h */,
  2557. 277933C827E3249E0010E277 /* UIView+Animation.m */,
  2558. 277933D827E3249E0010E277 /* UIView+KSLayer.h */,
  2559. 277933BE27E3249E0010E277 /* UIView+KSLayer.m */,
  2560. 277933D427E3249E0010E277 /* UIView+ShowProgress.h */,
  2561. 277933C127E3249E0010E277 /* UIView+ShowProgress.m */,
  2562. 277933C927E3249E0010E277 /* UIView+XIBView.h */,
  2563. 277933B727E3249E0010E277 /* UIView+XIBView.m */,
  2564. 277933CD27E3249E0010E277 /* UrlDecode.h */,
  2565. 277933B927E3249E0010E277 /* UrlDecode.m */,
  2566. );
  2567. path = Category;
  2568. sourceTree = "<group>";
  2569. };
  2570. 277933DB27E3249E0010E277 /* VideoEditor */ = {
  2571. isa = PBXGroup;
  2572. children = (
  2573. 277933DC27E3249E0010E277 /* KSVideoEditor.h */,
  2574. 277933DD27E3249E0010E277 /* KSVideoEditor.m */,
  2575. );
  2576. path = VideoEditor;
  2577. sourceTree = "<group>";
  2578. };
  2579. 277933DE27E3249E0010E277 /* GifRefresh */ = {
  2580. isa = PBXGroup;
  2581. children = (
  2582. 277933DF27E3249E0010E277 /* KSGifRefreshHeader.m */,
  2583. 277933E027E3249E0010E277 /* KSGifRefreshFooter.m */,
  2584. 277933E127E3249E0010E277 /* KSGifRefreshFooter.h */,
  2585. 277933E227E3249E0010E277 /* KSGifRefreshHeader.h */,
  2586. );
  2587. path = GifRefresh;
  2588. sourceTree = "<group>";
  2589. };
  2590. 277933E327E3249E0010E277 /* AudioSessionManager */ = {
  2591. isa = PBXGroup;
  2592. children = (
  2593. 277933E427E3249E0010E277 /* KSAudioSessionManager.m */,
  2594. 277933E527E3249F0010E277 /* KSAudioSessionManager.h */,
  2595. );
  2596. path = AudioSessionManager;
  2597. sourceTree = "<group>";
  2598. };
  2599. 277933E627E3249F0010E277 /* VoNetworking */ = {
  2600. isa = PBXGroup;
  2601. children = (
  2602. 277933E727E3249F0010E277 /* VoNetWorking.h */,
  2603. 277933E827E3249F0010E277 /* Cache */,
  2604. 277933F127E3249F0010E277 /* VoNetworking+RequestManager.m */,
  2605. 277933F227E3249F0010E277 /* VoNetWorking.m */,
  2606. 277933F327E3249F0010E277 /* VoNetworking+RequestManager.h */,
  2607. );
  2608. path = VoNetworking;
  2609. sourceTree = "<group>";
  2610. };
  2611. 277933E827E3249F0010E277 /* Cache */ = {
  2612. isa = PBXGroup;
  2613. children = (
  2614. 277933E927E3249F0010E277 /* VoLRUManager.m */,
  2615. 277933EA27E3249F0010E277 /* VoMemoryCache.h */,
  2616. 277933EB27E3249F0010E277 /* VoDiskCache.m */,
  2617. 277933EC27E3249F0010E277 /* VoCacheManager.m */,
  2618. 277933ED27E3249F0010E277 /* VoLRUManager.h */,
  2619. 277933EE27E3249F0010E277 /* VoMemoryCache.m */,
  2620. 277933EF27E3249F0010E277 /* VoCacheManager.h */,
  2621. 277933F027E3249F0010E277 /* VoDiskCache.h */,
  2622. );
  2623. path = Cache;
  2624. sourceTree = "<group>";
  2625. };
  2626. 277933F427E3249F0010E277 /* DiskSizeManager */ = {
  2627. isa = PBXGroup;
  2628. children = (
  2629. 277933F527E3249F0010E277 /* DiskFreeSpaceManager.m */,
  2630. 277933F627E3249F0010E277 /* DiskFreeSpaceManager.h */,
  2631. );
  2632. path = DiskSizeManager;
  2633. sourceTree = "<group>";
  2634. };
  2635. 277933F727E3249F0010E277 /* MicAlert */ = {
  2636. isa = PBXGroup;
  2637. children = (
  2638. 277933F827E3249F0010E277 /* KSPremissionAlert.m */,
  2639. 277933F927E3249F0010E277 /* KSPremissionAlert.xib */,
  2640. 277933FA27E3249F0010E277 /* KSPremissionAlert.h */,
  2641. );
  2642. path = MicAlert;
  2643. sourceTree = "<group>";
  2644. };
  2645. 277933FB27E3249F0010E277 /* Custom */ = {
  2646. isa = PBXGroup;
  2647. children = (
  2648. BCB635A127F6D3FE00ACFDCF /* KSNormalAlertView.h */,
  2649. BCB635A227F6D3FE00ACFDCF /* KSNormalAlertView.m */,
  2650. 2779343F27E324A00010E277 /* GRCreateManager.h */,
  2651. 277933FD27E3249F0010E277 /* GRCreateManager.m */,
  2652. 277933FE27E3249F0010E277 /* GRScanManager.h */,
  2653. 2779343E27E324A00010E277 /* GRScanManager.m */,
  2654. 2779344727E324A00010E277 /* HomeButton.h */,
  2655. 2779341527E3249F0010E277 /* HomeButton.m */,
  2656. 2779343827E324A00010E277 /* KeyChainTools.h */,
  2657. 2779345127E324A00010E277 /* KeyChainTools.m */,
  2658. 2779344827E324A00010E277 /* KSChoosePicker.h */,
  2659. 2779340727E3249F0010E277 /* KSChoosePicker.m */,
  2660. 2779344527E324A00010E277 /* KSFullDatePicker.h */,
  2661. 2779341727E3249F0010E277 /* KSFullDatePicker.m */,
  2662. 2779341627E3249F0010E277 /* KSImageButton.h */,
  2663. 2779344627E324A00010E277 /* KSImageButton.m */,
  2664. 2779342927E324A00010E277 /* KSInputView */,
  2665. 2779343727E324A00010E277 /* KSInputView.h */,
  2666. 2779345027E324A00010E277 /* KSInputView.m */,
  2667. 2779344327E324A00010E277 /* KSMediaManager.h */,
  2668. 2779341927E3249F0010E277 /* KSMediaManager.m */,
  2669. 2779342327E324A00010E277 /* KSMessageInputView.h */,
  2670. 2779344D27E324A00010E277 /* KSMessageInputView.m */,
  2671. 2779343927E324A00010E277 /* KSStatusView.h */,
  2672. 2779340427E3249F0010E277 /* KSStatusView.m */,
  2673. 2779340327E3249F0010E277 /* LifeButton.h */,
  2674. 2779343C27E324A00010E277 /* LifeButton.m */,
  2675. 2779345627E324A00010E277 /* LLPhotoBrowser */,
  2676. 2779344A27E324A00010E277 /* MBProgressHUD+NJ.h */,
  2677. 2779342627E324A00010E277 /* MBProgressHUD+NJ.m */,
  2678. 2779343327E324A00010E277 /* NSDate+KSBaseDatePicker.h */,
  2679. 2779345427E324A00010E277 /* NSDate+KSBaseDatePicker.m */,
  2680. 2779342427E324A00010E277 /* NSString+MD5.h */,
  2681. 2779344C27E324A00010E277 /* NSString+MD5.m */,
  2682. 2779341827E3249F0010E277 /* NSString+phone.h */,
  2683. 2779344427E324A00010E277 /* NSString+phone.m */,
  2684. 2779344E27E324A00010E277 /* pickBut.h */,
  2685. 2779342227E324A00010E277 /* pickBut.m */,
  2686. 2779342727E324A00010E277 /* PIckView.h */,
  2687. 2779344927E324A00010E277 /* PIckView.m */,
  2688. 2779340827E3249F0010E277 /* PressRecord */,
  2689. 2779340527E3249F0010E277 /* prodectButton.h */,
  2690. 2779343A27E324A00010E277 /* prodectButton.m */,
  2691. 2779340027E3249F0010E277 /* QCCountdownButton */,
  2692. 2779345527E324A00010E277 /* SearchView.h */,
  2693. 2779343427E324A00010E277 /* SearchView.m */,
  2694. 2779342527E324A00010E277 /* ShopButton.h */,
  2695. 2779344B27E324A00010E277 /* ShopButton.m */,
  2696. 2779344227E324A00010E277 /* ShopMessBtn.h */,
  2697. 2779341A27E3249F0010E277 /* ShopMessBtn.m */,
  2698. 277933FF27E3249F0010E277 /* ShoppCatView.h */,
  2699. 2779343D27E324A00010E277 /* ShoppCatView.m */,
  2700. 2779344F27E324A00010E277 /* shopview.h */,
  2701. 2779341C27E324A00010E277 /* shopview.m */,
  2702. 2779343627E324A00010E277 /* sortButton.h */,
  2703. 2779345227E324A00010E277 /* sortButton.m */,
  2704. 2779343527E324A00010E277 /* StateView.h */,
  2705. 2779345327E324A00010E277 /* StateView.m */,
  2706. 2779340627E3249F0010E277 /* StoreButton.h */,
  2707. 2779343B27E324A00010E277 /* StoreButton.m */,
  2708. 2779346227E324A10010E277 /* StoreShopCaterview.h */,
  2709. 2779342827E324A00010E277 /* StoreShopCaterview.m */,
  2710. 2779344127E324A00010E277 /* UIColor+Hex.h */,
  2711. 2779341B27E324A00010E277 /* UIColor+Hex.m */,
  2712. 2779344027E324A00010E277 /* UIImage+Addtions.h */,
  2713. 277933FC27E3249F0010E277 /* UIImage+Addtions.m */,
  2714. 2779341D27E324A00010E277 /* YKMultiLevelTableView */,
  2715. );
  2716. path = Custom;
  2717. sourceTree = "<group>";
  2718. };
  2719. 2779340027E3249F0010E277 /* QCCountdownButton */ = {
  2720. isa = PBXGroup;
  2721. children = (
  2722. 2779340127E3249F0010E277 /* QCCountdownButton.m */,
  2723. 2779340227E3249F0010E277 /* QCCountdownButton.h */,
  2724. );
  2725. path = QCCountdownButton;
  2726. sourceTree = "<group>";
  2727. };
  2728. 2779340827E3249F0010E277 /* PressRecord */ = {
  2729. isa = PBXGroup;
  2730. children = (
  2731. 2779340927E3249F0010E277 /* KSAudioRecordManager.h */,
  2732. 2779340A27E3249F0010E277 /* KSRecordStatusView.h */,
  2733. 2779340B27E3249F0010E277 /* KSHoldButton.m */,
  2734. 2779340C27E3249F0010E277 /* KSRecordPowerAnimationView.h */,
  2735. 2779340D27E3249F0010E277 /* KSAudioRecordFileManager.m */,
  2736. 2779340E27E3249F0010E277 /* UIView+ValueAdd.m */,
  2737. 2779340F27E3249F0010E277 /* KSRecordStatusView.m */,
  2738. 2779341027E3249F0010E277 /* KSAudioRecordManager.m */,
  2739. 2779341127E3249F0010E277 /* KSHoldButton.h */,
  2740. 2779341227E3249F0010E277 /* UIView+ValueAdd.h */,
  2741. 2779341327E3249F0010E277 /* KSRecordPowerAnimationView.m */,
  2742. 2779341427E3249F0010E277 /* KSAudioRecordFileManager.h */,
  2743. );
  2744. path = PressRecord;
  2745. sourceTree = "<group>";
  2746. };
  2747. 2779341D27E324A00010E277 /* YKMultiLevelTableView */ = {
  2748. isa = PBXGroup;
  2749. children = (
  2750. 2779341E27E324A00010E277 /* YKMultiLevelTableView.m */,
  2751. 2779341F27E324A00010E277 /* YKNodeModel.m */,
  2752. 2779342027E324A00010E277 /* YKNodeModel.h */,
  2753. 2779342127E324A00010E277 /* YKMultiLevelTableView.h */,
  2754. );
  2755. path = YKMultiLevelTableView;
  2756. sourceTree = "<group>";
  2757. };
  2758. 2779342927E324A00010E277 /* KSInputView */ = {
  2759. isa = PBXGroup;
  2760. children = (
  2761. 2779342A27E324A00010E277 /* UITextField_Toolbar.m */,
  2762. 2779342B27E324A00010E277 /* SkipTextField.m */,
  2763. 2779342C27E324A00010E277 /* SkipTextProtocol.h */,
  2764. 2779342D27E324A00010E277 /* SkipTextView.h */,
  2765. 2779342E27E324A00010E277 /* UITextView_Toolbar.m */,
  2766. 2779342F27E324A00010E277 /* UITextField_Toolbar.h */,
  2767. 2779343027E324A00010E277 /* SkipTextField.h */,
  2768. 2779343127E324A00010E277 /* SkipTextView.m */,
  2769. 2779343227E324A00010E277 /* UITextView_Toolbar.h */,
  2770. );
  2771. path = KSInputView;
  2772. sourceTree = "<group>";
  2773. };
  2774. 2779345627E324A00010E277 /* LLPhotoBrowser */ = {
  2775. isa = PBXGroup;
  2776. children = (
  2777. 2779345727E324A10010E277 /* LLPhotoBrowser.m */,
  2778. 2779345827E324A10010E277 /* LLCollectionViewCell.h */,
  2779. 2779345927E324A10010E277 /* LLClasses */,
  2780. 2779345E27E324A10010E277 /* LLPhoto.m */,
  2781. 2779345F27E324A10010E277 /* LLCollectionViewCell.m */,
  2782. 2779346027E324A10010E277 /* LLPhotoBrowser.h */,
  2783. 2779346127E324A10010E277 /* LLPhoto.h */,
  2784. );
  2785. path = LLPhotoBrowser;
  2786. sourceTree = "<group>";
  2787. };
  2788. 2779345927E324A10010E277 /* LLClasses */ = {
  2789. isa = PBXGroup;
  2790. children = (
  2791. 2779345A27E324A10010E277 /* LLImageCache.m */,
  2792. 2779345B27E324A10010E277 /* LLFileManager.m */,
  2793. 2779345C27E324A10010E277 /* LLImageCache.h */,
  2794. 2779345D27E324A10010E277 /* LLFileManager.h */,
  2795. );
  2796. path = LLClasses;
  2797. sourceTree = "<group>";
  2798. };
  2799. 2779346327E324A10010E277 /* ArchiveTools */ = {
  2800. isa = PBXGroup;
  2801. children = (
  2802. 2779346427E324A10010E277 /* CoinModel.h */,
  2803. 2779346527E324A10010E277 /* ArchiveTools.h */,
  2804. 2779346627E324A10010E277 /* NSObject+Archiving.m */,
  2805. 2779346727E324A10010E277 /* CoinModel.m */,
  2806. 2779346827E324A10010E277 /* ArchiveTools.m */,
  2807. 2779346927E324A10010E277 /* NSObject+Archiving.h */,
  2808. );
  2809. path = ArchiveTools;
  2810. sourceTree = "<group>";
  2811. };
  2812. 2779346A27E324A10010E277 /* Define */ = {
  2813. isa = PBXGroup;
  2814. children = (
  2815. 2779346B27E324A10010E277 /* UserKeyHeader.h */,
  2816. 2779346C27E324A10010E277 /* Common.h */,
  2817. 2779346D27E324A10010E277 /* PrefixHeader.pch */,
  2818. );
  2819. path = Define;
  2820. sourceTree = "<group>";
  2821. };
  2822. 2779346E27E324A10010E277 /* ThirdPart */ = {
  2823. isa = PBXGroup;
  2824. children = (
  2825. BC40BA0528117B3A00DEC0D1 /* TYCyclePagerView */,
  2826. 2723B63D27F15B5800E0B90B /* SCIndexView */,
  2827. 2779346F27E324A10010E277 /* KLTAnimateNav */,
  2828. 2779347427E324A10010E277 /* DZSegmentCtrl */,
  2829. 2779347727E324A10010E277 /* WMPlayer */,
  2830. 2779348127E324A10010E277 /* TZImagePickerController */,
  2831. 277934A527E324A20010E277 /* MSSBrowse */,
  2832. 277934C127E324A20010E277 /* FSCalendar */,
  2833. 277934E127E324A30010E277 /* SDCycleScrollView */,
  2834. 277934F827E324A30010E277 /* ALCalendarPicker */,
  2835. );
  2836. path = ThirdPart;
  2837. sourceTree = "<group>";
  2838. };
  2839. 2779346F27E324A10010E277 /* KLTAnimateNav */ = {
  2840. isa = PBXGroup;
  2841. children = (
  2842. 2779347027E324A10010E277 /* AnimationContoller.h */,
  2843. 2779347127E324A10010E277 /* KLTNavigationController.m */,
  2844. 2779347227E324A10010E277 /* KLTNavigationController.h */,
  2845. 2779347327E324A10010E277 /* AnimationContoller.m */,
  2846. );
  2847. path = KLTAnimateNav;
  2848. sourceTree = "<group>";
  2849. };
  2850. 2779347427E324A10010E277 /* DZSegmentCtrl */ = {
  2851. isa = PBXGroup;
  2852. children = (
  2853. 2779347527E324A10010E277 /* DZNSegmentedControl.m */,
  2854. 2779347627E324A10010E277 /* DZNSegmentedControl.h */,
  2855. );
  2856. path = DZSegmentCtrl;
  2857. sourceTree = "<group>";
  2858. };
  2859. 2779347727E324A10010E277 /* WMPlayer */ = {
  2860. isa = PBXGroup;
  2861. children = (
  2862. 2779347827E324A10010E277 /* WMLightView.h */,
  2863. 2779347927E324A10010E277 /* WMPlayerModel.m */,
  2864. 2779347A27E324A10010E277 /* FastForwardView.h */,
  2865. 2779347B27E324A10010E277 /* WMPlayer.bundle */,
  2866. 2779347C27E324A10010E277 /* WMPlayer.h */,
  2867. 2779347D27E324A10010E277 /* WMPlayerModel.h */,
  2868. 2779347E27E324A10010E277 /* WMLightView.m */,
  2869. 2779347F27E324A10010E277 /* FastForwardView.m */,
  2870. 2779348027E324A10010E277 /* WMPlayer.m */,
  2871. );
  2872. path = WMPlayer;
  2873. sourceTree = "<group>";
  2874. };
  2875. 2779348127E324A10010E277 /* TZImagePickerController */ = {
  2876. isa = PBXGroup;
  2877. children = (
  2878. 2779348227E324A10010E277 /* TZPhotoPreviewCell.h */,
  2879. 2779348327E324A10010E277 /* TZPhotoPickerController.h */,
  2880. 2779348427E324A10010E277 /* TZImageCropManager.m */,
  2881. 2779348527E324A10010E277 /* TZImageManager.h */,
  2882. 2779348627E324A10010E277 /* TZAssetCell.m */,
  2883. 2779348727E324A10010E277 /* TZVideoEditedPreviewController.m */,
  2884. 2779348827E324A10010E277 /* TZVideoCropController.m */,
  2885. 2779348927E324A10010E277 /* TZVideoPlayerController.m */,
  2886. 2779348A27E324A10010E277 /* TZAssetModel.m */,
  2887. 2779348B27E324A10010E277 /* NSBundle+TZImagePicker.m */,
  2888. 2779348C27E324A10010E277 /* UIView+TZLayout.h */,
  2889. 2779348D27E324A10010E277 /* TZLocationManager.h */,
  2890. 2779348E27E324A10010E277 /* TZImagePickerController.h */,
  2891. 2779348F27E324A10010E277 /* TZPhotoPreviewController.m */,
  2892. 2779349027E324A10010E277 /* TZImagePickerController.bundle */,
  2893. 2779349127E324A10010E277 /* TZProgressView.m */,
  2894. 2779349227E324A10010E277 /* TZGifPhotoPreviewController.h */,
  2895. 2779349327E324A10010E277 /* TZImageRequestOperation.h */,
  2896. 2779349427E324A10010E277 /* TZVideoEditedPreviewController.h */,
  2897. 2779349527E324A10010E277 /* TZAssetCell.h */,
  2898. 2779349627E324A10010E277 /* TZImageManager.m */,
  2899. 2779349727E324A20010E277 /* TZImageCropManager.h */,
  2900. 2779349827E324A20010E277 /* TZPhotoPickerController.m */,
  2901. 2779349927E324A20010E277 /* TZPhotoPreviewCell.m */,
  2902. 2779349A27E324A20010E277 /* NSBundle+TZImagePicker.h */,
  2903. 2779349B27E324A20010E277 /* UIView+TZLayout.m */,
  2904. 2779349C27E324A20010E277 /* TZAssetModel.h */,
  2905. 2779349D27E324A20010E277 /* TZVideoPlayerController.h */,
  2906. 2779349E27E324A20010E277 /* TZVideoCropController.h */,
  2907. 2779349F27E324A20010E277 /* TZPhotoPreviewController.h */,
  2908. 277934A027E324A20010E277 /* TZImagePickerController.m */,
  2909. 277934A127E324A20010E277 /* TZLocationManager.m */,
  2910. 277934A227E324A20010E277 /* TZGifPhotoPreviewController.m */,
  2911. 277934A327E324A20010E277 /* TZImageRequestOperation.m */,
  2912. 277934A427E324A20010E277 /* TZProgressView.h */,
  2913. );
  2914. path = TZImagePickerController;
  2915. sourceTree = "<group>";
  2916. };
  2917. 277934A527E324A20010E277 /* MSSBrowse */ = {
  2918. isa = PBXGroup;
  2919. children = (
  2920. 277934A627E324A20010E277 /* MSSBrowseRemindView.h */,
  2921. 277934A727E324A20010E277 /* MSSBrowseZoomScrollView.h */,
  2922. 277934A827E324A20010E277 /* MSSBrowseLoadingImageView.m */,
  2923. 277934A927E324A20010E277 /* MSSBrowseBaseViewController.h */,
  2924. 277934AA27E324A20010E277 /* UIImage+MSSScale.h */,
  2925. 277934AB27E324A20010E277 /* MSSBrowseNetworkViewController.h */,
  2926. 277934AC27E324A20010E277 /* MSSBrowseActionSheet.h */,
  2927. 277934AD27E324A20010E277 /* MSSBrowseActionSheetCell.h */,
  2928. 277934AE27E324A20010E277 /* MSSBrowseLocalViewController.m */,
  2929. 277934AF27E324A20010E277 /* MSSBrowseCollectionViewCell.m */,
  2930. 277934B027E324A20010E277 /* UIView+MSSLayout.h */,
  2931. 277934B127E324A20010E277 /* MSSBrowseModel.m */,
  2932. 277934B227E324A20010E277 /* MSSBrowseDefine.h */,
  2933. 277934B327E324A20010E277 /* MSSBrowseActionSheet.m */,
  2934. 277934B427E324A20010E277 /* MSSBrowseNetworkViewController.m */,
  2935. 277934B527E324A20010E277 /* UIImage+MSSScale.m */,
  2936. 277934B627E324A20010E277 /* MSSBrowseBaseViewController.m */,
  2937. 277934B727E324A20010E277 /* MSSBrowseLoadingImageView.h */,
  2938. 277934B827E324A20010E277 /* MSSBrowseZoomScrollView.m */,
  2939. 277934B927E324A20010E277 /* MSSBrowseRemindView.m */,
  2940. 277934BA27E324A20010E277 /* mss_browseLoading@3x.png */,
  2941. 277934BB27E324A20010E277 /* MSSBrowseCollectionViewCell.h */,
  2942. 277934BC27E324A20010E277 /* MSSBrowseLocalViewController.h */,
  2943. 277934BD27E324A20010E277 /* MSSBrowseActionSheetCell.m */,
  2944. 277934BE27E324A20010E277 /* MSSBrowseModel.h */,
  2945. 277934BF27E324A20010E277 /* mss_browseLoading@2x.png */,
  2946. 277934C027E324A20010E277 /* UIView+MSSLayout.m */,
  2947. );
  2948. path = MSSBrowse;
  2949. sourceTree = "<group>";
  2950. };
  2951. 277934C127E324A20010E277 /* FSCalendar */ = {
  2952. isa = PBXGroup;
  2953. children = (
  2954. 277934C227E324A20010E277 /* FSCalendarCollectionView.m */,
  2955. 277934C327E324A20010E277 /* FSCalendarWeekdayView.h */,
  2956. 277934C427E324A20010E277 /* FSCalendarCollectionViewLayout.h */,
  2957. 277934C527E324A20010E277 /* FSCalendarDelegationProxy.m */,
  2958. 277934C627E324A20010E277 /* FSCalendarExtensions.h */,
  2959. 277934C727E324A20010E277 /* FSCalendarDelegationFactory.m */,
  2960. 277934C827E324A20010E277 /* FSCalendarSeparatorDecorationView.h */,
  2961. 277934C927E324A20010E277 /* FSCalendarCalculator.h */,
  2962. 277934CA27E324A20010E277 /* FSCalendarHeaderView.h */,
  2963. 277934CB27E324A20010E277 /* FSCalendarConstants.h */,
  2964. 277934CC27E324A20010E277 /* FSCalendarAppearance.h */,
  2965. 277934CD27E324A20010E277 /* FSCalendarTransitionCoordinator.h */,
  2966. 277934CE27E324A30010E277 /* FSCalendarCell.m */,
  2967. 277934CF27E324A30010E277 /* FSCalendarStickyHeader.m */,
  2968. 277934D027E324A30010E277 /* FSCalendar.m */,
  2969. 277934D127E324A30010E277 /* FSCalendarCollectionViewLayout.m */,
  2970. 277934D227E324A30010E277 /* FSCalendarWeekdayView.m */,
  2971. 277934D327E324A30010E277 /* FSCalendarCollectionView.h */,
  2972. 277934D427E324A30010E277 /* FSCalendarDynamicHeader.h */,
  2973. 277934D527E324A30010E277 /* FSCalendarSeparatorDecorationView.m */,
  2974. 277934D627E324A30010E277 /* FSCalendarDelegationFactory.h */,
  2975. 277934D727E324A30010E277 /* FSCalendarExtensions.m */,
  2976. 277934D827E324A30010E277 /* FSCalendarDelegationProxy.h */,
  2977. 277934D927E324A30010E277 /* FSCalendarConstants.m */,
  2978. 277934DA27E324A30010E277 /* FSCalendarCalculator.m */,
  2979. 277934DB27E324A30010E277 /* FSCalendarHeaderView.m */,
  2980. 277934DC27E324A30010E277 /* FSCalendarStickyHeader.h */,
  2981. 277934DD27E324A30010E277 /* FSCalendar.h */,
  2982. 277934DE27E324A30010E277 /* FSCalendarCell.h */,
  2983. 277934DF27E324A30010E277 /* FSCalendarTransitionCoordinator.m */,
  2984. 277934E027E324A30010E277 /* FSCalendarAppearance.m */,
  2985. );
  2986. path = FSCalendar;
  2987. sourceTree = "<group>";
  2988. };
  2989. 277934E127E324A30010E277 /* SDCycleScrollView */ = {
  2990. isa = PBXGroup;
  2991. children = (
  2992. 277934EE27E324A30010E277 /* PageControl */,
  2993. 277934EC27E324A30010E277 /* QWdynamicModel.h */,
  2994. 277934E227E324A30010E277 /* QWdynamicModel.m */,
  2995. 277934E627E324A30010E277 /* SDCollectionViewCell.h */,
  2996. 277934ED27E324A30010E277 /* SDCollectionViewCell.m */,
  2997. 277934E527E324A30010E277 /* SDCycleScrollView.h */,
  2998. 277934E927E324A30010E277 /* SDCycleScrollView.m */,
  2999. 277934E427E324A30010E277 /* SDQWMaskCustomModel.h */,
  3000. 277934EB27E324A30010E277 /* SDQWMaskCustomModel.m */,
  3001. 277934E827E324A30010E277 /* SDQWMaskCustomView.h */,
  3002. 277934F727E324A30010E277 /* SDQWMaskCustomView.m */,
  3003. 277934E727E324A30010E277 /* SDQWMaskCustomView.xib */,
  3004. 277934E327E324A30010E277 /* UIView+SDExtension.h */,
  3005. 277934EA27E324A30010E277 /* UIView+SDExtension.m */,
  3006. );
  3007. path = SDCycleScrollView;
  3008. sourceTree = "<group>";
  3009. };
  3010. 277934EE27E324A30010E277 /* PageControl */ = {
  3011. isa = PBXGroup;
  3012. children = (
  3013. 277934EF27E324A30010E277 /* TAAbstractDotView.h */,
  3014. 277934F327E324A30010E277 /* TAAbstractDotView.m */,
  3015. 277934F527E324A30010E277 /* TAAnimatedDotView.h */,
  3016. 277934F227E324A30010E277 /* TAAnimatedDotView.m */,
  3017. 277934F427E324A30010E277 /* TADotView.h */,
  3018. 277934F027E324A30010E277 /* TADotView.m */,
  3019. 277934F627E324A30010E277 /* TAPageControl.h */,
  3020. 277934F127E324A30010E277 /* TAPageControl.m */,
  3021. );
  3022. path = PageControl;
  3023. sourceTree = "<group>";
  3024. };
  3025. 277934F827E324A30010E277 /* ALCalendarPicker */ = {
  3026. isa = PBXGroup;
  3027. children = (
  3028. 277934F927E324A30010E277 /* ALCalendarCell.m */,
  3029. 277934FA27E324A30010E277 /* ALCalendarConfig.m */,
  3030. 277934FB27E324A30010E277 /* ALCalendarHeader.m */,
  3031. 277934FC27E324A30010E277 /* ALCalendarDate.m */,
  3032. 277934FD27E324A30010E277 /* ALCalendarCollectionView.m */,
  3033. 277934FE27E324A30010E277 /* ALCalendarHelper.m */,
  3034. 277934FF27E324A30010E277 /* UIView+ALFrame.h */,
  3035. 2779350027E324A30010E277 /* ALCalendarPicker.h */,
  3036. 2779350127E324A30010E277 /* ALCalendarManager.h */,
  3037. 2779350227E324A30010E277 /* ALCalendarCollectionView.h */,
  3038. 2779350327E324A30010E277 /* ALCalendarDate.h */,
  3039. 2779350427E324A30010E277 /* ALCalendarHeader.h */,
  3040. 2779350527E324A30010E277 /* ALCalendarConfig.h */,
  3041. 2779350627E324A30010E277 /* ALCalendarCell.h */,
  3042. 2779350727E324A40010E277 /* ALCalendarHelper.h */,
  3043. 2779350827E324A40010E277 /* ALCalendarPicker.m */,
  3044. 2779350927E324A40010E277 /* UIView+ALFrame.m */,
  3045. 2779350A27E324A40010E277 /* ALCalendarManager.m */,
  3046. );
  3047. path = ALCalendarPicker;
  3048. sourceTree = "<group>";
  3049. };
  3050. 2779350B27E324A40010E277 /* Base */ = {
  3051. isa = PBXGroup;
  3052. children = (
  3053. BC119246280EDA5800A716F7 /* kSJXCollectionView.h */,
  3054. BC119245280EDA5800A716F7 /* kSJXCollectionView.m */,
  3055. 2723B64727F15BDB00E0B90B /* KSJXBodyView.h */,
  3056. 2723B64827F15BDC00E0B90B /* KSJXBodyView.m */,
  3057. 2723B63B27F159BA00E0B90B /* KSBaseTableViewController.h */,
  3058. 2723B63A27F159BA00E0B90B /* KSBaseTableViewController.m */,
  3059. 275FA1BE27E7351600CFEA2E /* BaseViewController.h */,
  3060. 275FA1CF27E7351800CFEA2E /* BaseViewController.m */,
  3061. 275FA1BC27E7351500CFEA2E /* CustomNavViewController.h */,
  3062. 275FA1C827E7351700CFEA2E /* CustomNavViewController.m */,
  3063. 275FA1C327E7351600CFEA2E /* KSAccompanyWebViewController.h */,
  3064. 275FA1C427E7351600CFEA2E /* KSAccompanyWebViewController.m */,
  3065. 275FA1B627E7351500CFEA2E /* KSAQRecordManager.h */,
  3066. 275FA1B127E7351400CFEA2E /* KSAQRecordManager.m */,
  3067. 275FA1B327E7351400CFEA2E /* KSBaseModel.h */,
  3068. 275FA1B727E7351500CFEA2E /* KSBaseModel.m */,
  3069. 275FA1C527E7351600CFEA2E /* KSBaseViewController.h */,
  3070. 275FA1D627E7351800CFEA2E /* KSBaseViewController.m */,
  3071. 275FA1D527E7351800CFEA2E /* KSBaseWKWebViewController.h */,
  3072. 275FA1CE27E7351700CFEA2E /* KSBaseWKWebViewController.m */,
  3073. BCFE540128152A8500AD6786 /* KSOrderManager.h */,
  3074. BCFE540228152A8500AD6786 /* KSOrderManager.m */,
  3075. 275FA1C027E7351600CFEA2E /* KSLocalWebViewController.h */,
  3076. 275FA1B927E7351500CFEA2E /* KSLocalWebViewController.m */,
  3077. 275FA1CA27E7351700CFEA2E /* KSNetTypeManager.h */,
  3078. 275FA1C927E7351700CFEA2E /* KSNetTypeManager.m */,
  3079. 275FA1B527E7351400CFEA2E /* KSRCIMDataSource.h */,
  3080. 275FA1CD27E7351700CFEA2E /* KSRCIMDataSource.m */,
  3081. 275FA1D727E7351900CFEA2E /* KSTabBarViewController.h */,
  3082. 275FA1BD27E7351500CFEA2E /* KSTabBarViewController.m */,
  3083. 275FA1CB27E7351700CFEA2E /* KSUpdateAlert.h */,
  3084. 275FA1C627E7351700CFEA2E /* KSUpdateAlert.m */,
  3085. 275FA1D927E7351900CFEA2E /* KSUpdateAlert.xib */,
  3086. 275FA1B227E7351400CFEA2E /* KSUpdateManager.h */,
  3087. 275FA1D027E7351800CFEA2E /* KSUpdateManager.m */,
  3088. 275FA1D127E7351800CFEA2E /* KSWebBackButton.h */,
  3089. 275FA1BF27E7351600CFEA2E /* KSWebBackButton.m */,
  3090. 275FA1B827E7351500CFEA2E /* KSWebNavView.h */,
  3091. 275FA1C227E7351600CFEA2E /* KSWebNavView.m */,
  3092. 275FA1D227E7351800CFEA2E /* KSWebSocketManager.h */,
  3093. 275FA1C727E7351700CFEA2E /* KSWebSocketManager.m */,
  3094. 275FA1D327E7351800CFEA2E /* RCConnectionManager.h */,
  3095. 275FA1BA27E7351500CFEA2E /* RCConnectionManager.m */,
  3096. 275FA1D827E7351900CFEA2E /* RecordCheckManager.h */,
  3097. 275FA1BB27E7351500CFEA2E /* RecordCheckManager.m */,
  3098. 275FA1B427E7351400CFEA2E /* UINavigationController+KSNavigationBar.h */,
  3099. 275FA1B027E7351400CFEA2E /* UINavigationController+KSNavigationBar.m */,
  3100. 275FA1CC27E7351700CFEA2E /* WeakWebViewScriptMessageDelegate.h */,
  3101. 275FA1C127E7351600CFEA2E /* WeakWebViewScriptMessageDelegate.m */,
  3102. 275FA1D427E7351800CFEA2E /* KSNetworkingManager.h */,
  3103. 275FA1AF27E7351400CFEA2E /* KSNetworkingManager.m */,
  3104. );
  3105. path = Base;
  3106. sourceTree = "<group>";
  3107. };
  3108. 27F9030F27E87C2C00C08A19 /* Networking */ = {
  3109. isa = PBXGroup;
  3110. children = (
  3111. 27F9031027E87C2C00C08A19 /* Controller */,
  3112. 27F9031327E87C2C00C08A19 /* Model */,
  3113. 27F9031427E87C2C00C08A19 /* View */,
  3114. );
  3115. path = Networking;
  3116. sourceTree = "<group>";
  3117. };
  3118. 27F9031027E87C2C00C08A19 /* Controller */ = {
  3119. isa = PBXGroup;
  3120. children = (
  3121. 27F9031127E87C2C00C08A19 /* NetworkingCheckController.h */,
  3122. 27F9031227E87C2C00C08A19 /* NetworkingCheckController.m */,
  3123. );
  3124. path = Controller;
  3125. sourceTree = "<group>";
  3126. };
  3127. 27F9031327E87C2C00C08A19 /* Model */ = {
  3128. isa = PBXGroup;
  3129. children = (
  3130. );
  3131. path = Model;
  3132. sourceTree = "<group>";
  3133. };
  3134. 27F9031427E87C2C00C08A19 /* View */ = {
  3135. isa = PBXGroup;
  3136. children = (
  3137. 27F9031527E87C2C00C08A19 /* KSNetworkAlert.h */,
  3138. 27F9031627E87C2C00C08A19 /* NetworkBodyView.m */,
  3139. 27F9031727E87C2C00C08A19 /* NetworkBodyView.xib */,
  3140. 27F9031827E87C2D00C08A19 /* KSNetworkAlert.m */,
  3141. 27F9031927E87C2D00C08A19 /* NetworkBodyView.h */,
  3142. 27F9031A27E87C2D00C08A19 /* KSNetworkAlert.xib */,
  3143. );
  3144. path = View;
  3145. sourceTree = "<group>";
  3146. };
  3147. 27F9031B27E87C2D00C08A19 /* DeviceCheck */ = {
  3148. isa = PBXGroup;
  3149. children = (
  3150. 27F9031C27E87C2D00C08A19 /* DeviceCheckView.xib */,
  3151. 27F9031D27E87C2D00C08A19 /* AudioPlayManager.m */,
  3152. 27F9031E27E87C2D00C08A19 /* AudioRecordManager.m */,
  3153. 27F9031F27E87C2D00C08A19 /* DeviceCheckView.m */,
  3154. 27F9032027E87C2D00C08A19 /* AudioRecordManager.h */,
  3155. 27F9032127E87C2D00C08A19 /* DeviceCheckView.h */,
  3156. 27F9032227E87C2D00C08A19 /* AudioPlayManager.h */,
  3157. );
  3158. path = DeviceCheck;
  3159. sourceTree = "<group>";
  3160. };
  3161. 27F9032327E87C2E00C08A19 /* Setting */ = {
  3162. isa = PBXGroup;
  3163. children = (
  3164. 27F9032427E87C2E00C08A19 /* Controller */,
  3165. 27F9032827E87C2E00C08A19 /* View */,
  3166. );
  3167. path = Setting;
  3168. sourceTree = "<group>";
  3169. };
  3170. 27F9032427E87C2E00C08A19 /* Controller */ = {
  3171. isa = PBXGroup;
  3172. children = (
  3173. 27F9032527E87C2E00C08A19 /* SettingViewController.h */,
  3174. 27F9032627E87C2E00C08A19 /* SettingViewController.m */,
  3175. 2723B67427F15D3600E0B90B /* AboutUsViewController.h */,
  3176. 2723B67227F15D3300E0B90B /* AboutUsViewController.m */,
  3177. 2723B67627F15D3800E0B90B /* FeedbackViewController.h */,
  3178. 2723B67327F15D3400E0B90B /* FeedbackViewController.m */,
  3179. 2723B67A27F15D3B00E0B90B /* ModifyNameViewController.h */,
  3180. 2723B67527F15D3700E0B90B /* ModifyNameViewController.m */,
  3181. 2723B67C27F15D3D00E0B90B /* ModifyPhoneChangeController.h */,
  3182. 2723B67827F15D3A00E0B90B /* ModifyPhoneChangeController.m */,
  3183. 2723B67027F15D3200E0B90B /* ModifyPhoneCheckController.h */,
  3184. 2723B67127F15D3300E0B90B /* ModifyPhoneCheckController.m */,
  3185. 2723B67D27F15D3D00E0B90B /* ModifyViewController.h */,
  3186. 2723B67927F15D3B00E0B90B /* ModifyViewController.m */,
  3187. );
  3188. path = Controller;
  3189. sourceTree = "<group>";
  3190. };
  3191. 27F9032827E87C2E00C08A19 /* View */ = {
  3192. isa = PBXGroup;
  3193. children = (
  3194. 2723B65027F15CF900E0B90B /* AboutUsBodyView.h */,
  3195. 2723B65327F15CF900E0B90B /* AboutUsBodyView.m */,
  3196. 2723B66027F15CFB00E0B90B /* AboutUsBodyView.xib */,
  3197. 2723B65227F15CF900E0B90B /* FeedbackBodyView.h */,
  3198. 2723B65527F15CF900E0B90B /* FeedbackBodyView.m */,
  3199. 2723B64C27F15CF800E0B90B /* FeedbackBodyView.xib */,
  3200. 2723B64F27F15CF900E0B90B /* ModifyBodyView.h */,
  3201. 2723B65427F15CF900E0B90B /* ModifyBodyView.m */,
  3202. 2723B65127F15CF900E0B90B /* ModifyBodyView.xib */,
  3203. 2723B64B27F15CF800E0B90B /* ModifyNameBodyView.h */,
  3204. 2723B65D27F15CFB00E0B90B /* ModifyNameBodyView.m */,
  3205. 2723B64D27F15CF800E0B90B /* ModifyNameBodyView.xib */,
  3206. 2723B65627F15CFA00E0B90B /* PhoneChangeBodyView.h */,
  3207. 2723B65727F15CFA00E0B90B /* PhoneChangeBodyView.m */,
  3208. 2723B65827F15CFA00E0B90B /* PhoneChangeBodyView.xib */,
  3209. 2723B65927F15CFA00E0B90B /* PhoneCheckBodyView.h */,
  3210. 2723B65A27F15CFA00E0B90B /* PhoneCheckBodyView.m */,
  3211. 2723B65E27F15CFB00E0B90B /* PhoneCheckBodyView.xib */,
  3212. 2723B65B27F15CFA00E0B90B /* SettingBodyView.h */,
  3213. 2723B65C27F15CFB00E0B90B /* SettingBodyView.m */,
  3214. 2723B64A27F15CF800E0B90B /* SettingBodyView.xib */,
  3215. 2723B65F27F15CFB00E0B90B /* VeriCheckView.h */,
  3216. 2723B64E27F15CF800E0B90B /* VeriCheckView.m */,
  3217. );
  3218. path = View;
  3219. sourceTree = "<group>";
  3220. };
  3221. 9BF683910A95A690331EF86A /* Frameworks */ = {
  3222. isa = PBXGroup;
  3223. children = (
  3224. 14CEAEC95E5CF916A3D3F602 /* Pods_KulexiuForStudent.framework */,
  3225. C9C170A749B6C49F17AC3246 /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework */,
  3226. DD4D637EF600D0BAE869423D /* Pods_KulexiuForStudentTests.framework */,
  3227. );
  3228. name = Frameworks;
  3229. sourceTree = "<group>";
  3230. };
  3231. BC1191F9280ED63C00A716F7 /* MineCourse */ = {
  3232. isa = PBXGroup;
  3233. children = (
  3234. BC1191FA280ED63C00A716F7 /* Controller */,
  3235. BC1191FB280ED63C00A716F7 /* Model */,
  3236. BC1191FC280ED63C00A716F7 /* View */,
  3237. );
  3238. path = MineCourse;
  3239. sourceTree = "<group>";
  3240. };
  3241. BC1191FA280ED63C00A716F7 /* Controller */ = {
  3242. isa = PBXGroup;
  3243. children = (
  3244. BC1191FD280ED64E00A716F7 /* MyCourseViewController.h */,
  3245. BC1191FE280ED64E00A716F7 /* MyCourseViewController.m */,
  3246. );
  3247. path = Controller;
  3248. sourceTree = "<group>";
  3249. };
  3250. BC1191FB280ED63C00A716F7 /* Model */ = {
  3251. isa = PBXGroup;
  3252. children = (
  3253. BC119220280ED6F500A716F7 /* AccompanyLessonModel.h */,
  3254. BC11921F280ED6F400A716F7 /* AccompanyLessonModel.m */,
  3255. BC119221280ED6F500A716F7 /* LiveLessonModel.h */,
  3256. BC11921E280ED6F400A716F7 /* LiveLessonModel.m */,
  3257. BC0D1F732810165400C5D9E5 /* VideoCourseModel.h */,
  3258. BC0D1F742810165400C5D9E5 /* VideoCourseModel.m */,
  3259. );
  3260. path = Model;
  3261. sourceTree = "<group>";
  3262. };
  3263. BC1191FC280ED63C00A716F7 /* View */ = {
  3264. isa = PBXGroup;
  3265. children = (
  3266. BC119202280ED6A600A716F7 /* MyLessonBodyView.h */,
  3267. BC119200280ED6A600A716F7 /* MyLessonBodyView.m */,
  3268. BC119208280ED6A800A716F7 /* MyLessonSearchView.h */,
  3269. BC119209280ED6A800A716F7 /* MyLessonSearchView.m */,
  3270. BC119206280ED6A700A716F7 /* MyLessonSearchView.xib */,
  3271. BC119205280ED6A700A716F7 /* MyLiveCourseCell.h */,
  3272. BC119204280ED6A700A716F7 /* MyLiveCourseCell.m */,
  3273. BC119203280ED6A700A716F7 /* MyLiveCourseCell.xib */,
  3274. BC0D1F70281015B000C5D9E5 /* VideoCourseCell.h */,
  3275. BC0D1F6E281015AF00C5D9E5 /* VideoCourseCell.m */,
  3276. BC0D1F6F281015AF00C5D9E5 /* VideoCourseCell.xib */,
  3277. BC11920D280ED6A900A716F7 /* PopView */,
  3278. BC0D1F6B281013DF00C5D9E5 /* MyVideoCourseBodyView.h */,
  3279. BC0D1F6C281013DF00C5D9E5 /* MyVideoCourseBodyView.m */,
  3280. );
  3281. path = View;
  3282. sourceTree = "<group>";
  3283. };
  3284. BC11920D280ED6A900A716F7 /* PopView */ = {
  3285. isa = PBXGroup;
  3286. children = (
  3287. BC11920E280ED6A900A716F7 /* NewClassPopView.h */,
  3288. BC11920F280ED6A900A716F7 /* NewClassPopCell.xib */,
  3289. BC119210280ED6A900A716F7 /* NewClassPopCell.h */,
  3290. BC119211280ED6A900A716F7 /* NewClassPopView.m */,
  3291. BC119212280ED6A900A716F7 /* NewClassPopCell.m */,
  3292. );
  3293. path = PopView;
  3294. sourceTree = "<group>";
  3295. };
  3296. BC11923B280ED9CC00A716F7 /* AccompanyCourse */ = {
  3297. isa = PBXGroup;
  3298. children = (
  3299. BC11923C280ED9CC00A716F7 /* Controller */,
  3300. BC11923D280ED9CC00A716F7 /* Model */,
  3301. BC11923E280ED9CC00A716F7 /* View */,
  3302. );
  3303. path = AccompanyCourse;
  3304. sourceTree = "<group>";
  3305. };
  3306. BC11923C280ED9CC00A716F7 /* Controller */ = {
  3307. isa = PBXGroup;
  3308. children = (
  3309. BC11923F280ED9E000A716F7 /* AccompanyDetailViewController.h */,
  3310. BC119240280ED9E000A716F7 /* AccompanyDetailViewController.m */,
  3311. );
  3312. path = Controller;
  3313. sourceTree = "<group>";
  3314. };
  3315. BC11923D280ED9CC00A716F7 /* Model */ = {
  3316. isa = PBXGroup;
  3317. children = (
  3318. BC27A077280FFA2100F91E27 /* EvaluateDetailModel.h */,
  3319. BC27A078280FFA2200F91E27 /* EvaluateDetailModel.m */,
  3320. );
  3321. path = Model;
  3322. sourceTree = "<group>";
  3323. };
  3324. BC11923E280ED9CC00A716F7 /* View */ = {
  3325. isa = PBXGroup;
  3326. children = (
  3327. BC11926D280FAF7C00A716F7 /* AccompanyCourseInfoCell.h */,
  3328. BC11926F280FAF7C00A716F7 /* AccompanyCourseInfoCell.m */,
  3329. BC11926E280FAF7C00A716F7 /* AccompanyCourseInfoCell.xib */,
  3330. BC119279280FB07F00A716F7 /* AccompanyArrangeCell.h */,
  3331. BC119277280FB07F00A716F7 /* AccompanyArrangeCell.m */,
  3332. BC119278280FB07F00A716F7 /* AccompanyArrangeCell.xib */,
  3333. BC119274280FB01100A716F7 /* AccompanyHomeworkCell.h */,
  3334. BC119273280FB01000A716F7 /* AccompanyHomeworkCell.m */,
  3335. BC119272280FB01000A716F7 /* AccompanyHomeworkCell.xib */,
  3336. BC11927E280FB10900A716F7 /* AccompanyRemarkCell.h */,
  3337. BC11927C280FB10700A716F7 /* AccompanyRemarkCell.m */,
  3338. BC11927D280FB10800A716F7 /* AccompanyRemarkCell.xib */,
  3339. BC27A068280FF56B00F91E27 /* AccompanyEvaluateCell.h */,
  3340. BC27A06D280FF56C00F91E27 /* AccompanyEvaluateCell.m */,
  3341. BC27A06A280FF56B00F91E27 /* AccompanyEvaluateCell.xib */,
  3342. BC27A069280FF56B00F91E27 /* AccompanyStudentEvaCell.h */,
  3343. BC27A06B280FF56C00F91E27 /* AccompanyStudentEvaCell.m */,
  3344. BC27A06C280FF56C00F91E27 /* AccompanyStudentEvaCell.xib */,
  3345. BC27A072280FF60B00F91E27 /* AccompanyDetailBottomView.h */,
  3346. BC27A073280FF60B00F91E27 /* AccompanyDetailBottomView.m */,
  3347. BC27A075280FF61300F91E27 /* AccompanyDetailBottomView.xib */,
  3348. );
  3349. path = View;
  3350. sourceTree = "<group>";
  3351. };
  3352. BC119248280EDD4600A716F7 /* Homework */ = {
  3353. isa = PBXGroup;
  3354. children = (
  3355. BC119249280EDD4600A716F7 /* Controller */,
  3356. BC11924A280EDD4600A716F7 /* Model */,
  3357. BC11924B280EDD4600A716F7 /* View */,
  3358. );
  3359. path = Homework;
  3360. sourceTree = "<group>";
  3361. };
  3362. BC119249280EDD4600A716F7 /* Controller */ = {
  3363. isa = PBXGroup;
  3364. children = (
  3365. BC11924C280EDD5500A716F7 /* HomeworkListViewController.h */,
  3366. BC11924D280EDD5500A716F7 /* HomeworkListViewController.m */,
  3367. BC119265280FA92700A716F7 /* HomeworkDetailViewController.h */,
  3368. BC119266280FA92700A716F7 /* HomeworkDetailViewController.m */,
  3369. );
  3370. path = Controller;
  3371. sourceTree = "<group>";
  3372. };
  3373. BC11924A280EDD4600A716F7 /* Model */ = {
  3374. isa = PBXGroup;
  3375. children = (
  3376. BC11925F280FA90000A716F7 /* HomeworkDetailModel.h */,
  3377. BC119261280FA90100A716F7 /* HomeworkDetailModel.m */,
  3378. BC119260280FA90000A716F7 /* HomeworkListModel.h */,
  3379. BC119262280FA90100A716F7 /* HomeworkListModel.m */,
  3380. );
  3381. path = Model;
  3382. sourceTree = "<group>";
  3383. };
  3384. BC11924B280EDD4600A716F7 /* View */ = {
  3385. isa = PBXGroup;
  3386. children = (
  3387. BC119268280FAF5800A716F7 /* AccompanyAlertView.h */,
  3388. BC119269280FAF5800A716F7 /* AccompanyAlertView.m */,
  3389. BC11926A280FAF5900A716F7 /* AccompanyAlertView.xib */,
  3390. BC11925C280FA89A00A716F7 /* HomeworkBodyView.h */,
  3391. BC11925D280FA89A00A716F7 /* HomeworkBodyView.m */,
  3392. BC119254280FA85200A716F7 /* HomeworkListCell.h */,
  3393. BC119253280FA85200A716F7 /* HomeworkListCell.m */,
  3394. BC119252280FA85200A716F7 /* HomeworkListCell.xib */,
  3395. BC119256280FA85300A716F7 /* HomeworkSortView.h */,
  3396. BC119257280FA85300A716F7 /* HomeworkSortView.m */,
  3397. BC119255280FA85300A716F7 /* HomeworkSortView.xib */,
  3398. BC11928A280FB44300A716F7 /* HomeworkVideoView.h */,
  3399. BC11928B280FB44300A716F7 /* HomeworkVideoView.m */,
  3400. BC119289280FB44200A716F7 /* HomeworkVideoView.xib */,
  3401. BC119291280FBC1100A716F7 /* HomeworkAddView.h */,
  3402. BC119292280FBC1100A716F7 /* HomeworkAddView.m */,
  3403. BC119299280FD2E800A716F7 /* HomeworkBottomView.h */,
  3404. BC11929A280FD2E800A716F7 /* HomeworkBottomView.m */,
  3405. BC11929C280FD2EF00A716F7 /* HomeworkBottomView.xib */,
  3406. );
  3407. path = View;
  3408. sourceTree = "<group>";
  3409. };
  3410. BC40BA0528117B3A00DEC0D1 /* TYCyclePagerView */ = {
  3411. isa = PBXGroup;
  3412. children = (
  3413. BC40BA0628117B3A00DEC0D1 /* TYCyclePagerView.h */,
  3414. BC40BA0728117B3A00DEC0D1 /* TYCyclePagerTransformLayout.h */,
  3415. BC40BA0828117B3A00DEC0D1 /* TYPageControl.m */,
  3416. BC40BA0928117B3A00DEC0D1 /* TYCyclePagerView.m */,
  3417. BC40BA0A28117B3A00DEC0D1 /* TYCyclePagerTransformLayout.m */,
  3418. BC40BA0B28117B3A00DEC0D1 /* TYPageControl.h */,
  3419. );
  3420. path = TYCyclePagerView;
  3421. sourceTree = "<group>";
  3422. };
  3423. BC40BA0F28124D0C00DEC0D1 /* NoticeCenter */ = {
  3424. isa = PBXGroup;
  3425. children = (
  3426. BC40BA1028124D0C00DEC0D1 /* Controller */,
  3427. BC40BA1128124D0C00DEC0D1 /* Model */,
  3428. BC40BA1228124D0C00DEC0D1 /* View */,
  3429. );
  3430. path = NoticeCenter;
  3431. sourceTree = "<group>";
  3432. };
  3433. BC40BA1028124D0C00DEC0D1 /* Controller */ = {
  3434. isa = PBXGroup;
  3435. children = (
  3436. BC40BA1628124D3D00DEC0D1 /* NotiferMessageViewController.h */,
  3437. BC40BA1728124D3D00DEC0D1 /* NotiferMessageViewController.m */,
  3438. );
  3439. path = Controller;
  3440. sourceTree = "<group>";
  3441. };
  3442. BC40BA1128124D0C00DEC0D1 /* Model */ = {
  3443. isa = PBXGroup;
  3444. children = (
  3445. BC76630D2827E48800C91A1D /* NotiferMessageModel.h */,
  3446. BC76630C2827E48800C91A1D /* NotiferMessageModel.m */,
  3447. );
  3448. path = Model;
  3449. sourceTree = "<group>";
  3450. };
  3451. BC40BA1228124D0C00DEC0D1 /* View */ = {
  3452. isa = PBXGroup;
  3453. children = (
  3454. BC7663142827E49900C91A1D /* NotiferHeadView.h */,
  3455. BC76630F2827E49800C91A1D /* NotiferHeadView.m */,
  3456. BC7663102827E49800C91A1D /* NotiferHeadView.xib */,
  3457. BC7663112827E49800C91A1D /* NotiferMessageCell.h */,
  3458. BC7663122827E49800C91A1D /* NotiferMessageCell.m */,
  3459. BC7663132827E49900C91A1D /* NotiferMessageCell.xib */,
  3460. );
  3461. path = View;
  3462. sourceTree = "<group>";
  3463. };
  3464. BC8C2C412823F57100FBA5D5 /* AddressList */ = {
  3465. isa = PBXGroup;
  3466. children = (
  3467. BC8C2C422823F57100FBA5D5 /* Controller */,
  3468. BC8C2C472823F57100FBA5D5 /* Model */,
  3469. BC8C2C4B2823F57100FBA5D5 /* View */,
  3470. );
  3471. path = AddressList;
  3472. sourceTree = "<group>";
  3473. };
  3474. BC8C2C422823F57100FBA5D5 /* Controller */ = {
  3475. isa = PBXGroup;
  3476. children = (
  3477. BC8C2C432823F57100FBA5D5 /* AddressDetailViewController.h */,
  3478. BC8C2C452823F57100FBA5D5 /* AddressDetailViewController.m */,
  3479. BC8C2C442823F57100FBA5D5 /* AddressListViewController.h */,
  3480. BC8C2C462823F57100FBA5D5 /* AddressListViewController.m */,
  3481. );
  3482. path = Controller;
  3483. sourceTree = "<group>";
  3484. };
  3485. BC8C2C472823F57100FBA5D5 /* Model */ = {
  3486. isa = PBXGroup;
  3487. children = (
  3488. BC8C2C482823F57100FBA5D5 /* AddressListModel.m */,
  3489. BC8C2C492823F57100FBA5D5 /* areainfo.json */,
  3490. BC8C2C4A2823F57100FBA5D5 /* AddressListModel.h */,
  3491. );
  3492. path = Model;
  3493. sourceTree = "<group>";
  3494. };
  3495. BC8C2C4B2823F57100FBA5D5 /* View */ = {
  3496. isa = PBXGroup;
  3497. children = (
  3498. BC8C2C4C2823F57100FBA5D5 /* AddressBottomView.h */,
  3499. BC8C2C4D2823F57100FBA5D5 /* AddressBottomView.xib */,
  3500. BC8C2C4E2823F57100FBA5D5 /* MyAddressListCell.h */,
  3501. BC8C2C4F2823F57100FBA5D5 /* KSAddressPickerView.m */,
  3502. BC8C2C502823F57100FBA5D5 /* AddressDetailBodyView.m */,
  3503. BC8C2C512823F57100FBA5D5 /* AddressDetailBodyView.xib */,
  3504. BC8C2C522823F57100FBA5D5 /* MyAddressListCell.m */,
  3505. BC8C2C532823F57100FBA5D5 /* AddressBottomView.m */,
  3506. BC8C2C542823F57100FBA5D5 /* AddressDetailBodyView.h */,
  3507. BC8C2C552823F57100FBA5D5 /* KSAddressPickerView.h */,
  3508. BC8C2C562823F57100FBA5D5 /* MyAddressListCell.xib */,
  3509. );
  3510. path = View;
  3511. sourceTree = "<group>";
  3512. };
  3513. BCB6340A27F6D29500ACFDCF /* Live */ = {
  3514. isa = PBXGroup;
  3515. children = (
  3516. BCB6340B27F6D29500ACFDCF /* LiveRoomMessage */,
  3517. BCB6342627F6D29500ACFDCF /* Controller */,
  3518. BCB6342D27F6D29500ACFDCF /* Model */,
  3519. BCB6343627F6D29500ACFDCF /* View */,
  3520. );
  3521. path = Live;
  3522. sourceTree = "<group>";
  3523. };
  3524. BCB6340B27F6D29500ACFDCF /* LiveRoomMessage */ = {
  3525. isa = PBXGroup;
  3526. children = (
  3527. BCB6342527F6D29500ACFDCF /* KSChatroomMessageCenter.h */,
  3528. BCB6341527F6D29500ACFDCF /* KSChatroomMessageCenter.m */,
  3529. BCB6341827F6D29500ACFDCF /* KSLiveChatroomClose.h */,
  3530. BCB6342227F6D29500ACFDCF /* KSLiveChatroomClose.m */,
  3531. BCB6342327F6D29500ACFDCF /* KSLiveChatroomDownSeat.h */,
  3532. BCB6341727F6D29500ACFDCF /* KSLiveChatroomDownSeat.m */,
  3533. BCB6342127F6D29500ACFDCF /* KSLiveChatroomEnter.h */,
  3534. BCB6340F27F6D29500ACFDCF /* KSLiveChatroomEnter.m */,
  3535. BCB6341F27F6D29500ACFDCF /* KSLiveChatroomKickOut.h */,
  3536. BCB6341227F6D29500ACFDCF /* KSLiveChatroomKickOut.m */,
  3537. BCB6341B27F6D29500ACFDCF /* KSLiveChatroomLeave.h */,
  3538. BCB6340E27F6D29500ACFDCF /* KSLiveChatroomLeave.m */,
  3539. BCB6341327F6D29500ACFDCF /* KSLiveChatroomLike.h */,
  3540. BCB6341D27F6D29500ACFDCF /* KSLiveChatroomLike.m */,
  3541. BCB6341027F6D29500ACFDCF /* KSLiveChatroomMemberCount.h */,
  3542. BCB6342027F6D29500ACFDCF /* KSLiveChatroomMemberCount.m */,
  3543. BCB6341427F6D29500ACFDCF /* KSLiveChatroomSeatApply.h */,
  3544. BCB6341C27F6D29500ACFDCF /* KSLiveChatroomSeatApply.m */,
  3545. BCB6341627F6D29500ACFDCF /* KSLiveChatroomSeatResponse.h */,
  3546. BCB6342427F6D29500ACFDCF /* KSLiveChatroomSeatResponse.m */,
  3547. BCB6341127F6D29500ACFDCF /* KSLiveChatroomUserQuit.h */,
  3548. BCB6341E27F6D29500ACFDCF /* KSLiveChatroomUserQuit.m */,
  3549. BCB6341927F6D29500ACFDCF /* KSLiveChatroomWelcome.h */,
  3550. BCB6340D27F6D29500ACFDCF /* KSLiveChatroomWelcome.m */,
  3551. BCB6340C27F6D29500ACFDCF /* KSRCMessageModel.h */,
  3552. BCB6341A27F6D29500ACFDCF /* KSRCMessageModel.m */,
  3553. );
  3554. path = LiveRoomMessage;
  3555. sourceTree = "<group>";
  3556. };
  3557. BCB6342627F6D29500ACFDCF /* Controller */ = {
  3558. isa = PBXGroup;
  3559. children = (
  3560. BCB6342A27F6D29500ACFDCF /* LiveVideoRoomViewController.h */,
  3561. BCB6342727F6D29500ACFDCF /* LiveVideoRoomViewController.m */,
  3562. );
  3563. path = Controller;
  3564. sourceTree = "<group>";
  3565. };
  3566. BCB6342D27F6D29500ACFDCF /* Model */ = {
  3567. isa = PBXGroup;
  3568. children = (
  3569. BCB6342E27F6D29500ACFDCF /* KSEnterLiveroomManager.h */,
  3570. BCB6343227F6D29500ACFDCF /* KSEnterLiveroomManager.m */,
  3571. BCB6342F27F6D29500ACFDCF /* KSLiveStreamVideo.h */,
  3572. BCB6343327F6D29500ACFDCF /* KSLiveStreamVideo.m */,
  3573. BCB6343027F6D29500ACFDCF /* LiveroomTimeManager.h */,
  3574. BCB6343427F6D29500ACFDCF /* LiveroomTimeManager.m */,
  3575. BCB6343127F6D29500ACFDCF /* LiveSeatMember.h */,
  3576. BCB6343527F6D29500ACFDCF /* LiveSeatMember.m */,
  3577. );
  3578. path = Model;
  3579. sourceTree = "<group>";
  3580. };
  3581. BCB6343627F6D29500ACFDCF /* View */ = {
  3582. isa = PBXGroup;
  3583. children = (
  3584. BCB635A827F6D93300ACFDCF /* KSChatVideoView.h */,
  3585. BCB635A727F6D93300ACFDCF /* KSChatVideoView.m */,
  3586. BCB635A527F6D90600ACFDCF /* KSLiveEmptyView.h */,
  3587. BCB635A427F6D90600ACFDCF /* KSLiveEmptyView.m */,
  3588. BCB6343727F6D29500ACFDCF /* InputBar */,
  3589. BCB6344D27F6D29500ACFDCF /* KSChatroomTextCell.h */,
  3590. BCB6345927F6D29600ACFDCF /* KSChatroomTextCell.m */,
  3591. BCB635AA27F6E06500ACFDCF /* LiveRoomHeadView.h */,
  3592. BCB635AB27F6E06500ACFDCF /* LiveRoomHeadView.m */,
  3593. BCB635AC27F6E06500ACFDCF /* LiveRoomHeadView.xib */,
  3594. BCB635AF27F6E1A600ACFDCF /* LiveRoomBottomView.h */,
  3595. BCB635B027F6E1A600ACFDCF /* LiveRoomBottomView.m */,
  3596. BCB635B127F6E1A600ACFDCF /* LiveRoomBottomView.xib */,
  3597. BCB6345227F6D29500ACFDCF /* LiveRoomLikeLayer.h */,
  3598. BCB6344427F6D29500ACFDCF /* LiveRoomLikeLayer.m */,
  3599. BCB6344A27F6D29500ACFDCF /* LiveSeatApplyCell.h */,
  3600. BCB6345C27F6D29600ACFDCF /* LiveSeatApplyCell.m */,
  3601. BCB6345427F6D29600ACFDCF /* LiveSeatApplyCell.xib */,
  3602. BCB6344927F6D29500ACFDCF /* LiveSeatApplyView.h */,
  3603. BCB6345327F6D29600ACFDCF /* LiveSeatApplyView.m */,
  3604. BCB6345827F6D29600ACFDCF /* LiveSeatApplyView.xib */,
  3605. BCB6344627F6D29500ACFDCF /* SeatContentView.h */,
  3606. BCB6345627F6D29600ACFDCF /* SeatContentView.m */,
  3607. );
  3608. path = View;
  3609. sourceTree = "<group>";
  3610. };
  3611. BCB6343727F6D29500ACFDCF /* InputBar */ = {
  3612. isa = PBXGroup;
  3613. children = (
  3614. BCB6343B27F6D29500ACFDCF /* Cell */,
  3615. BCB6343F27F6D29500ACFDCF /* KSChatEmojiBoardView.h */,
  3616. BCB6343827F6D29500ACFDCF /* KSChatEmojiBoardView.m */,
  3617. BCB6343927F6D29500ACFDCF /* KSChatInputBarControl.h */,
  3618. BCB6344027F6D29500ACFDCF /* KSChatInputBarControl.m */,
  3619. BCB6344127F6D29500ACFDCF /* KSChatInputView.h */,
  3620. BCB6343A27F6D29500ACFDCF /* KSChatInputView.m */,
  3621. );
  3622. path = InputBar;
  3623. sourceTree = "<group>";
  3624. };
  3625. BCB6343B27F6D29500ACFDCF /* Cell */ = {
  3626. isa = PBXGroup;
  3627. children = (
  3628. BCB6343C27F6D29500ACFDCF /* KSChatEmojiCollectionCell.h */,
  3629. BCB6343D27F6D29500ACFDCF /* KSChatEmojiCollectionCell.m */,
  3630. BCB6343E27F6D29500ACFDCF /* BaseEmoji.plist */,
  3631. );
  3632. path = Cell;
  3633. sourceTree = "<group>";
  3634. };
  3635. BCB6348727F6D2A200ACFDCF /* SealClass */ = {
  3636. isa = PBXGroup;
  3637. children = (
  3638. BCB634F727F6D2A300ACFDCF /* class_stop.mp3 */,
  3639. BCB6348827F6D2A200ACFDCF /* KSRemoteUserManager.h */,
  3640. BCB634F827F6D2A300ACFDCF /* KSRemoteUserManager.m */,
  3641. BCB6348927F6D2A200ACFDCF /* SealClass.strings */,
  3642. BCB6348B27F6D2A200ACFDCF /* Sections */,
  3643. BCB634F927F6D2A300ACFDCF /* Services */,
  3644. BCB634E627F6D2A300ACFDCF /* Util */,
  3645. );
  3646. path = SealClass;
  3647. sourceTree = "<group>";
  3648. };
  3649. BCB6348B27F6D2A200ACFDCF /* Sections */ = {
  3650. isa = PBXGroup;
  3651. children = (
  3652. BCB6348C27F6D2A200ACFDCF /* Classroom */,
  3653. BCB634D627F6D2A300ACFDCF /* NewWhiteboard */,
  3654. BCB634DD27F6D2A300ACFDCF /* Login */,
  3655. );
  3656. path = Sections;
  3657. sourceTree = "<group>";
  3658. };
  3659. BCB6348C27F6D2A200ACFDCF /* Classroom */ = {
  3660. isa = PBXGroup;
  3661. children = (
  3662. BCB6348D27F6D2A200ACFDCF /* View */,
  3663. );
  3664. path = Classroom;
  3665. sourceTree = "<group>";
  3666. };
  3667. BCB6348D27F6D2A200ACFDCF /* View */ = {
  3668. isa = PBXGroup;
  3669. children = (
  3670. BCB6348E27F6D2A200ACFDCF /* ZoomControl */,
  3671. BCB6349127F6D2A200ACFDCF /* Chat */,
  3672. BCB634B327F6D2A300ACFDCF /* Title */,
  3673. BCB634B627F6D2A300ACFDCF /* VideoList */,
  3674. BCB634BB27F6D2A300ACFDCF /* RecentShared */,
  3675. BCB634C227F6D2A300ACFDCF /* UpgradeApply */,
  3676. BCB634C527F6D2A300ACFDCF /* PersonList */,
  3677. BCB634CC27F6D2A300ACFDCF /* ToolPanel */,
  3678. BCB634CF27F6D2A300ACFDCF /* MainContainer */,
  3679. );
  3680. path = View;
  3681. sourceTree = "<group>";
  3682. };
  3683. BCB6348E27F6D2A200ACFDCF /* ZoomControl */ = {
  3684. isa = PBXGroup;
  3685. children = (
  3686. BCB6348F27F6D2A200ACFDCF /* ZoomControl.m */,
  3687. BCB6349027F6D2A200ACFDCF /* ZoomControl.h */,
  3688. );
  3689. path = ZoomControl;
  3690. sourceTree = "<group>";
  3691. };
  3692. BCB6349127F6D2A200ACFDCF /* Chat */ = {
  3693. isa = PBXGroup;
  3694. children = (
  3695. BCB6349227F6D2A200ACFDCF /* InputBar */,
  3696. BCB6349C27F6D2A200ACFDCF /* ChatAreaView.h */,
  3697. BCB6349D27F6D2A200ACFDCF /* MessageManager */,
  3698. BCB634B227F6D2A300ACFDCF /* ChatAreaView.m */,
  3699. );
  3700. path = Chat;
  3701. sourceTree = "<group>";
  3702. };
  3703. BCB6349227F6D2A200ACFDCF /* InputBar */ = {
  3704. isa = PBXGroup;
  3705. children = (
  3706. BCB6349327F6D2A200ACFDCF /* InputBarControl.h */,
  3707. BCB6349427F6D2A200ACFDCF /* InputView.m */,
  3708. BCB6349527F6D2A200ACFDCF /* EmojiBoardView.h */,
  3709. BCB6349627F6D2A200ACFDCF /* InputView.h */,
  3710. BCB6349727F6D2A200ACFDCF /* Cell */,
  3711. BCB6349A27F6D2A200ACFDCF /* InputBarControl.m */,
  3712. BCB6349B27F6D2A200ACFDCF /* EmojiBoardView.m */,
  3713. );
  3714. path = InputBar;
  3715. sourceTree = "<group>";
  3716. };
  3717. BCB6349727F6D2A200ACFDCF /* Cell */ = {
  3718. isa = PBXGroup;
  3719. children = (
  3720. BCB6349827F6D2A200ACFDCF /* CREmojiCollectionCell.m */,
  3721. BCB6349927F6D2A200ACFDCF /* CREmojiCollectionCell.h */,
  3722. );
  3723. path = Cell;
  3724. sourceTree = "<group>";
  3725. };
  3726. BCB6349D27F6D2A200ACFDCF /* MessageManager */ = {
  3727. isa = PBXGroup;
  3728. children = (
  3729. BCB6349E27F6D2A200ACFDCF /* MessageCell */,
  3730. BCB634A927F6D2A200ACFDCF /* MessageDataSource.m */,
  3731. BCB634AA27F6D2A200ACFDCF /* MessageHelper.m */,
  3732. BCB634AB27F6D2A200ACFDCF /* MessageModel.m */,
  3733. BCB634AC27F6D2A200ACFDCF /* Message */,
  3734. BCB634AF27F6D2A300ACFDCF /* MessageHelper.h */,
  3735. BCB634B027F6D2A300ACFDCF /* MessageDataSource.h */,
  3736. BCB634B127F6D2A300ACFDCF /* MessageModel.h */,
  3737. );
  3738. path = MessageManager;
  3739. sourceTree = "<group>";
  3740. };
  3741. BCB6349E27F6D2A200ACFDCF /* MessageCell */ = {
  3742. isa = PBXGroup;
  3743. children = (
  3744. BCB6349F27F6D2A200ACFDCF /* TextMessageCell.h */,
  3745. BCB634A027F6D2A200ACFDCF /* TimeStampCell.m */,
  3746. BCB634A127F6D2A200ACFDCF /* TipMessageCell.h */,
  3747. BCB634A227F6D2A200ACFDCF /* MessageBaseCell.h */,
  3748. BCB634A327F6D2A200ACFDCF /* MessageCell.h */,
  3749. BCB634A427F6D2A200ACFDCF /* TextMessageCell.m */,
  3750. BCB634A527F6D2A200ACFDCF /* TimeStampCell.h */,
  3751. BCB634A627F6D2A200ACFDCF /* TipMessageCell.m */,
  3752. BCB634A727F6D2A200ACFDCF /* MessageCell.m */,
  3753. BCB634A827F6D2A200ACFDCF /* MessageBaseCell.m */,
  3754. );
  3755. path = MessageCell;
  3756. sourceTree = "<group>";
  3757. };
  3758. BCB634AC27F6D2A200ACFDCF /* Message */ = {
  3759. isa = PBXGroup;
  3760. children = (
  3761. BCB634AD27F6D2A200ACFDCF /* TimeStampMessage.m */,
  3762. BCB634AE27F6D2A200ACFDCF /* TimeStampMessage.h */,
  3763. );
  3764. path = Message;
  3765. sourceTree = "<group>";
  3766. };
  3767. BCB634B327F6D2A300ACFDCF /* Title */ = {
  3768. isa = PBXGroup;
  3769. children = (
  3770. BCB634B427F6D2A300ACFDCF /* ClassroomTitleView.m */,
  3771. BCB634B527F6D2A300ACFDCF /* ClassroomTitleView.h */,
  3772. );
  3773. path = Title;
  3774. sourceTree = "<group>";
  3775. };
  3776. BCB634B627F6D2A300ACFDCF /* VideoList */ = {
  3777. isa = PBXGroup;
  3778. children = (
  3779. BCB634B727F6D2A300ACFDCF /* VideoListCell.m */,
  3780. BCB634B827F6D2A300ACFDCF /* VideoListView.m */,
  3781. BCB634B927F6D2A300ACFDCF /* VideoListCell.h */,
  3782. BCB634BA27F6D2A300ACFDCF /* VideoListView.h */,
  3783. );
  3784. path = VideoList;
  3785. sourceTree = "<group>";
  3786. };
  3787. BCB634BB27F6D2A300ACFDCF /* RecentShared */ = {
  3788. isa = PBXGroup;
  3789. children = (
  3790. BCB634BC27F6D2A300ACFDCF /* RecentSharedWhiteboardCell.m */,
  3791. BCB634BD27F6D2A300ACFDCF /* RecentSharedView.m */,
  3792. BCB634BE27F6D2A300ACFDCF /* RecentSharedVideoCell.m */,
  3793. BCB634BF27F6D2A300ACFDCF /* RecentSharedWhiteboardCell.h */,
  3794. BCB634C027F6D2A300ACFDCF /* RecentSharedView.h */,
  3795. BCB634C127F6D2A300ACFDCF /* RecentSharedVideoCell.h */,
  3796. );
  3797. path = RecentShared;
  3798. sourceTree = "<group>";
  3799. };
  3800. BCB634C227F6D2A300ACFDCF /* UpgradeApply */ = {
  3801. isa = PBXGroup;
  3802. children = (
  3803. BCB634C327F6D2A300ACFDCF /* UpgradeDidApplyView.m */,
  3804. BCB634C427F6D2A300ACFDCF /* UpgradeDidApplyView.h */,
  3805. );
  3806. path = UpgradeApply;
  3807. sourceTree = "<group>";
  3808. };
  3809. BCB634C527F6D2A300ACFDCF /* PersonList */ = {
  3810. isa = PBXGroup;
  3811. children = (
  3812. BCB634C627F6D2A300ACFDCF /* PersonListView.m */,
  3813. BCB634C727F6D2A300ACFDCF /* PersonListCell.m */,
  3814. BCB634C827F6D2A300ACFDCF /* PersonListSectionView.h */,
  3815. BCB634C927F6D2A300ACFDCF /* PersonListView.h */,
  3816. BCB634CA27F6D2A300ACFDCF /* PersonListCell.h */,
  3817. BCB634CB27F6D2A300ACFDCF /* PersonListSectionView.m */,
  3818. );
  3819. path = PersonList;
  3820. sourceTree = "<group>";
  3821. };
  3822. BCB634CC27F6D2A300ACFDCF /* ToolPanel */ = {
  3823. isa = PBXGroup;
  3824. children = (
  3825. BCB634CD27F6D2A300ACFDCF /* ToolPanelView.m */,
  3826. BCB634CE27F6D2A300ACFDCF /* ToolPanelView.h */,
  3827. );
  3828. path = ToolPanel;
  3829. sourceTree = "<group>";
  3830. };
  3831. BCB634CF27F6D2A300ACFDCF /* MainContainer */ = {
  3832. isa = PBXGroup;
  3833. children = (
  3834. BCB634D027F6D2A300ACFDCF /* MainContainerView.m */,
  3835. BCB634D127F6D2A300ACFDCF /* EmptyView.h */,
  3836. BCB634D227F6D2A300ACFDCF /* VideoMaskView.m */,
  3837. BCB634D327F6D2A300ACFDCF /* MainContainerView.h */,
  3838. BCB634D427F6D2A300ACFDCF /* EmptyView.m */,
  3839. BCB634D527F6D2A300ACFDCF /* VideoMaskView.h */,
  3840. );
  3841. path = MainContainer;
  3842. sourceTree = "<group>";
  3843. };
  3844. BCB634D627F6D2A300ACFDCF /* NewWhiteboard */ = {
  3845. isa = PBXGroup;
  3846. children = (
  3847. BCB634D727F6D2A300ACFDCF /* KSWhiteboardControl.h */,
  3848. BCB634D827F6D2A300ACFDCF /* KSWhiteboardView.m */,
  3849. BCB634D927F6D2A300ACFDCF /* WhiteUtils.h */,
  3850. BCB634DA27F6D2A300ACFDCF /* KSWhiteboardView.h */,
  3851. BCB634DB27F6D2A300ACFDCF /* KSWhiteboardControl.m */,
  3852. BCB634DC27F6D2A300ACFDCF /* WhiteUtils.m */,
  3853. );
  3854. path = NewWhiteboard;
  3855. sourceTree = "<group>";
  3856. };
  3857. BCB634DD27F6D2A300ACFDCF /* Login */ = {
  3858. isa = PBXGroup;
  3859. children = (
  3860. BCB634DE27F6D2A300ACFDCF /* LoginHelper.m */,
  3861. BCB634DF27F6D2A300ACFDCF /* View */,
  3862. BCB634E427F6D2A300ACFDCF /* LoginHelper.h */,
  3863. );
  3864. path = Login;
  3865. sourceTree = "<group>";
  3866. };
  3867. BCB634DF27F6D2A300ACFDCF /* View */ = {
  3868. isa = PBXGroup;
  3869. children = (
  3870. BCB634E027F6D2A300ACFDCF /* SelectionButton.m */,
  3871. BCB634E127F6D2A300ACFDCF /* InputTextField.h */,
  3872. BCB634E227F6D2A300ACFDCF /* SelectionButton.h */,
  3873. BCB634E327F6D2A300ACFDCF /* InputTextField.m */,
  3874. );
  3875. path = View;
  3876. sourceTree = "<group>";
  3877. };
  3878. BCB634E627F6D2A300ACFDCF /* Util */ = {
  3879. isa = PBXGroup;
  3880. children = (
  3881. BCB634E727F6D2A300ACFDCF /* ErrorCode.h */,
  3882. BCB634E827F6D2A300ACFDCF /* Category */,
  3883. BCB634EB27F6D2A300ACFDCF /* Portrait */,
  3884. BCB634EE27F6D2A300ACFDCF /* Macro.h */,
  3885. BCB634EF27F6D2A300ACFDCF /* HTTP */,
  3886. BCB634F427F6D2A300ACFDCF /* View */,
  3887. );
  3888. path = Util;
  3889. sourceTree = "<group>";
  3890. };
  3891. BCB634E827F6D2A300ACFDCF /* Category */ = {
  3892. isa = PBXGroup;
  3893. children = (
  3894. BCB634E927F6D2A300ACFDCF /* UIView+MBProgressHUD.h */,
  3895. BCB634EA27F6D2A300ACFDCF /* UIView+MBProgressHUD.m */,
  3896. );
  3897. path = Category;
  3898. sourceTree = "<group>";
  3899. };
  3900. BCB634EB27F6D2A300ACFDCF /* Portrait */ = {
  3901. isa = PBXGroup;
  3902. children = (
  3903. BCB634EC27F6D2A300ACFDCF /* RolePortraitView.m */,
  3904. BCB634ED27F6D2A300ACFDCF /* RolePortraitView.h */,
  3905. );
  3906. path = Portrait;
  3907. sourceTree = "<group>";
  3908. };
  3909. BCB634EF27F6D2A300ACFDCF /* HTTP */ = {
  3910. isa = PBXGroup;
  3911. children = (
  3912. BCB634F027F6D2A300ACFDCF /* HTTPUtility.m */,
  3913. BCB634F127F6D2A300ACFDCF /* HTTPResult.m */,
  3914. BCB634F227F6D2A300ACFDCF /* HTTPUtility.h */,
  3915. BCB634F327F6D2A300ACFDCF /* HTTPResult.h */,
  3916. );
  3917. path = HTTP;
  3918. sourceTree = "<group>";
  3919. };
  3920. BCB634F427F6D2A300ACFDCF /* View */ = {
  3921. isa = PBXGroup;
  3922. children = (
  3923. BCB634F527F6D2A300ACFDCF /* NormalAlertView.h */,
  3924. BCB634F627F6D2A300ACFDCF /* NormalAlertView.m */,
  3925. );
  3926. path = View;
  3927. sourceTree = "<group>";
  3928. };
  3929. BCB634F927F6D2A300ACFDCF /* Services */ = {
  3930. isa = PBXGroup;
  3931. children = (
  3932. BCB634FA27F6D2A300ACFDCF /* Classroom */,
  3933. BCB6352A27F6D2A300ACFDCF /* RTC */,
  3934. BCB6352D27F6D2A300ACFDCF /* IM */,
  3935. );
  3936. path = Services;
  3937. sourceTree = "<group>";
  3938. };
  3939. BCB634FA27F6D2A300ACFDCF /* Classroom */ = {
  3940. isa = PBXGroup;
  3941. children = (
  3942. BCB634FB27F6D2A300ACFDCF /* ClassroomService.h */,
  3943. BCB634FC27F6D2A300ACFDCF /* Message */,
  3944. BCB6351F27F6D2A300ACFDCF /* Model */,
  3945. BCB6352827F6D2A300ACFDCF /* ClassroomDefine.h */,
  3946. BCB6352927F6D2A300ACFDCF /* ClassroomService.m */,
  3947. );
  3948. path = Classroom;
  3949. sourceTree = "<group>";
  3950. };
  3951. BCB634FC27F6D2A300ACFDCF /* Message */ = {
  3952. isa = PBXGroup;
  3953. children = (
  3954. BCB634FD27F6D2A300ACFDCF /* RoleChangedMessage.h */,
  3955. BCB634FE27F6D2A300ACFDCF /* AssistantTransferMessage.h */,
  3956. BCB634FF27F6D2A300ACFDCF /* InviteUpgradeMessage.h */,
  3957. BCB6350027F6D2A300ACFDCF /* ApplySpeechMessage.m */,
  3958. BCB6350127F6D2A300ACFDCF /* ApplySpeechResultMessage.h */,
  3959. BCB6350227F6D2A300ACFDCF /* DisplayCommandMessage.m */,
  3960. BCB6350327F6D2A300ACFDCF /* MemberChangeMessage.h */,
  3961. BCB6350427F6D2A300ACFDCF /* SongDownloadMessage.m */,
  3962. BCB6350527F6D2A300ACFDCF /* DeviceMessage.h */,
  3963. BCB6350627F6D2A300ACFDCF /* ControlDeviceNotifyMessage.m */,
  3964. BCB6350727F6D2A300ACFDCF /* AccompanyDownloadMessage.h */,
  3965. BCB6350827F6D2A300ACFDCF /* TicketExpiredMessage.m */,
  3966. BCB6350927F6D2A300ACFDCF /* NodePlayMessage.h */,
  3967. BCB6350A27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.h */,
  3968. BCB6350B27F6D2A300ACFDCF /* TurnPageMessage.h */,
  3969. BCB6350C27F6D2A300ACFDCF /* WhiteboardMessage.m */,
  3970. BCB6350D27F6D2A300ACFDCF /* SongDownloadCallbackMessage.m */,
  3971. BCB6350E27F6D2A300ACFDCF /* AssistantTransferMessage.m */,
  3972. BCB6350F27F6D2A300ACFDCF /* RoleChangedMessage.m */,
  3973. BCB6351027F6D2A300ACFDCF /* InviteUpgradeMessage.m */,
  3974. BCB6351127F6D2A300ACFDCF /* AccompanyDownloadMessage.m */,
  3975. BCB6351227F6D2A300ACFDCF /* ControlDeviceNotifyMessage.h */,
  3976. BCB6351327F6D2A300ACFDCF /* DeviceMessage.m */,
  3977. BCB6351427F6D2A300ACFDCF /* SongDownloadMessage.h */,
  3978. BCB6351527F6D2A300ACFDCF /* MemberChangeMessage.m */,
  3979. BCB6351627F6D2A300ACFDCF /* DisplayCommandMessage.h */,
  3980. BCB6351727F6D2A300ACFDCF /* ApplySpeechResultMessage.m */,
  3981. BCB6351827F6D2A300ACFDCF /* ApplySpeechMessage.h */,
  3982. BCB6351927F6D2A300ACFDCF /* SongDownloadCallbackMessage.h */,
  3983. BCB6351A27F6D2A300ACFDCF /* WhiteboardMessage.h */,
  3984. BCB6351B27F6D2A300ACFDCF /* TurnPageMessage.m */,
  3985. BCB6351C27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.m */,
  3986. BCB6351D27F6D2A300ACFDCF /* NodePlayMessage.m */,
  3987. BCB6351E27F6D2A300ACFDCF /* TicketExpiredMessage.h */,
  3988. );
  3989. path = Message;
  3990. sourceTree = "<group>";
  3991. };
  3992. BCB6351F27F6D2A300ACFDCF /* Model */ = {
  3993. isa = PBXGroup;
  3994. children = (
  3995. BCB6352027F6D2A300ACFDCF /* Whiteboard.m */,
  3996. BCB6352127F6D2A300ACFDCF /* RoomMember.m */,
  3997. BCB6352227F6D2A300ACFDCF /* ClassSongMessage.m */,
  3998. BCB6352327F6D2A300ACFDCF /* Classroom.m */,
  3999. BCB6352427F6D2A300ACFDCF /* Whiteboard.h */,
  4000. BCB6352527F6D2A300ACFDCF /* Classroom.h */,
  4001. BCB6352627F6D2A300ACFDCF /* ClassSongMessage.h */,
  4002. BCB6352727F6D2A300ACFDCF /* RoomMember.h */,
  4003. );
  4004. path = Model;
  4005. sourceTree = "<group>";
  4006. };
  4007. BCB6352A27F6D2A300ACFDCF /* RTC */ = {
  4008. isa = PBXGroup;
  4009. children = (
  4010. BCB6352B27F6D2A300ACFDCF /* RTCService.m */,
  4011. BCB6352C27F6D2A300ACFDCF /* RTCService.h */,
  4012. );
  4013. path = RTC;
  4014. sourceTree = "<group>";
  4015. };
  4016. BCB6352D27F6D2A300ACFDCF /* IM */ = {
  4017. isa = PBXGroup;
  4018. children = (
  4019. BCB6352E27F6D2A300ACFDCF /* KSIMService.h */,
  4020. BCB6352F27F6D2A300ACFDCF /* KSIMService.m */,
  4021. );
  4022. path = IM;
  4023. sourceTree = "<group>";
  4024. };
  4025. BCB6357327F6D2AB00ACFDCF /* Classroom */ = {
  4026. isa = PBXGroup;
  4027. children = (
  4028. BCB6357427F6D2AB00ACFDCF /* Controller */,
  4029. BCB6357727F6D2AB00ACFDCF /* Model */,
  4030. BCB6357E27F6D2AB00ACFDCF /* View */,
  4031. );
  4032. path = Classroom;
  4033. sourceTree = "<group>";
  4034. };
  4035. BCB6357427F6D2AB00ACFDCF /* Controller */ = {
  4036. isa = PBXGroup;
  4037. children = (
  4038. BCB6357527F6D2AB00ACFDCF /* NewClassRoomViewController.h */,
  4039. BCB6357627F6D2AB00ACFDCF /* NewClassRoomViewController.m */,
  4040. );
  4041. path = Controller;
  4042. sourceTree = "<group>";
  4043. };
  4044. BCB6357727F6D2AB00ACFDCF /* Model */ = {
  4045. isa = PBXGroup;
  4046. children = (
  4047. BCB6357827F6D2AB00ACFDCF /* LocalRenderManager.h */,
  4048. BCB6357927F6D2AB00ACFDCF /* OnlineClassManager.m */,
  4049. BCB6357A27F6D2AB00ACFDCF /* ClassroomTimerManager.h */,
  4050. BCB6357B27F6D2AB00ACFDCF /* LocalRenderManager.m */,
  4051. BCB6357C27F6D2AB00ACFDCF /* OnlineClassManager.h */,
  4052. BCB6357D27F6D2AB00ACFDCF /* ClassroomTimerManager.m */,
  4053. );
  4054. path = Model;
  4055. sourceTree = "<group>";
  4056. };
  4057. BCB6357E27F6D2AB00ACFDCF /* View */ = {
  4058. isa = PBXGroup;
  4059. children = (
  4060. BCB6357F27F6D2AB00ACFDCF /* TipsView */,
  4061. BCB6358227F6D2AB00ACFDCF /* tick.wav */,
  4062. BCB6358327F6D2AB00ACFDCF /* VideoList */,
  4063. BCB6358A27F6D2AB00ACFDCF /* tock.wav */,
  4064. BCB6358B27F6D2AB00ACFDCF /* MainContainer */,
  4065. BCB6358E27F6D2AB00ACFDCF /* TitleView */,
  4066. BCB6359127F6D2AB00ACFDCF /* MainToolbar */,
  4067. );
  4068. path = View;
  4069. sourceTree = "<group>";
  4070. };
  4071. BCB6357F27F6D2AB00ACFDCF /* TipsView */ = {
  4072. isa = PBXGroup;
  4073. children = (
  4074. BCB6358027F6D2AB00ACFDCF /* KSTipsView.m */,
  4075. BCB6358127F6D2AB00ACFDCF /* KSTipsView.h */,
  4076. );
  4077. path = TipsView;
  4078. sourceTree = "<group>";
  4079. };
  4080. BCB6358327F6D2AB00ACFDCF /* VideoList */ = {
  4081. isa = PBXGroup;
  4082. children = (
  4083. BCB6358427F6D2AB00ACFDCF /* ClassVideoListView.h */,
  4084. BCB6358527F6D2AB00ACFDCF /* ClassVideoListCell.h */,
  4085. BCB6358627F6D2AB00ACFDCF /* KSBeatView.h */,
  4086. BCB6358727F6D2AB00ACFDCF /* ClassVideoListView.m */,
  4087. BCB6358827F6D2AB00ACFDCF /* KSBeatView.m */,
  4088. BCB6358927F6D2AB00ACFDCF /* ClassVideoListCell.m */,
  4089. );
  4090. path = VideoList;
  4091. sourceTree = "<group>";
  4092. };
  4093. BCB6358B27F6D2AB00ACFDCF /* MainContainer */ = {
  4094. isa = PBXGroup;
  4095. children = (
  4096. BCB6358C27F6D2AB00ACFDCF /* ClassroomMainContainer.h */,
  4097. BCB6358D27F6D2AB00ACFDCF /* ClassroomMainContainer.m */,
  4098. );
  4099. path = MainContainer;
  4100. sourceTree = "<group>";
  4101. };
  4102. BCB6358E27F6D2AB00ACFDCF /* TitleView */ = {
  4103. isa = PBXGroup;
  4104. children = (
  4105. BCB6358F27F6D2AB00ACFDCF /* ClassTitleView.h */,
  4106. BCB6359027F6D2AB00ACFDCF /* ClassTitleView.m */,
  4107. );
  4108. path = TitleView;
  4109. sourceTree = "<group>";
  4110. };
  4111. BCB6359127F6D2AB00ACFDCF /* MainToolbar */ = {
  4112. isa = PBXGroup;
  4113. children = (
  4114. BCB6359227F6D2AB00ACFDCF /* MainToolView.m */,
  4115. BCB6359327F6D2AB00ACFDCF /* MainToolView.h */,
  4116. );
  4117. path = MainToolbar;
  4118. sourceTree = "<group>";
  4119. };
  4120. /* End PBXGroup section */
  4121. /* Begin PBXNativeTarget section */
  4122. 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */ = {
  4123. isa = PBXNativeTarget;
  4124. buildConfigurationList = 275E8AD427E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudent" */;
  4125. buildPhases = (
  4126. 517802ACBF7A2D237EC51FBD /* [CP] Check Pods Manifest.lock */,
  4127. 275E8AA127E18F8800DD3F6E /* Sources */,
  4128. 275E8AA227E18F8800DD3F6E /* Frameworks */,
  4129. 275E8AA327E18F8800DD3F6E /* Resources */,
  4130. 7FA65C60616F879A71C69DE3 /* [CP] Embed Pods Frameworks */,
  4131. CAFB9BB2B8A1DEF4AC72C464 /* [CP] Copy Pods Resources */,
  4132. );
  4133. buildRules = (
  4134. );
  4135. dependencies = (
  4136. );
  4137. name = KulexiuForStudent;
  4138. productName = KulexiuForStudent;
  4139. productReference = 275E8AA527E18F8800DD3F6E /* KulexiuForStudent.app */;
  4140. productType = "com.apple.product-type.application";
  4141. };
  4142. 275E8ABF27E18F8C00DD3F6E /* KulexiuForStudentTests */ = {
  4143. isa = PBXNativeTarget;
  4144. buildConfigurationList = 275E8AD727E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentTests" */;
  4145. buildPhases = (
  4146. AB9225EA49C09055CF4D365E /* [CP] Check Pods Manifest.lock */,
  4147. 275E8ABC27E18F8C00DD3F6E /* Sources */,
  4148. 275E8ABD27E18F8C00DD3F6E /* Frameworks */,
  4149. 275E8ABE27E18F8C00DD3F6E /* Resources */,
  4150. );
  4151. buildRules = (
  4152. );
  4153. dependencies = (
  4154. 275E8AC227E18F8C00DD3F6E /* PBXTargetDependency */,
  4155. );
  4156. name = KulexiuForStudentTests;
  4157. productName = KulexiuForStudentTests;
  4158. productReference = 275E8AC027E18F8C00DD3F6E /* KulexiuForStudentTests.xctest */;
  4159. productType = "com.apple.product-type.bundle.unit-test";
  4160. };
  4161. 275E8AC927E18F8C00DD3F6E /* KulexiuForStudentUITests */ = {
  4162. isa = PBXNativeTarget;
  4163. buildConfigurationList = 275E8ADA27E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentUITests" */;
  4164. buildPhases = (
  4165. C466C0F5CFE9161E20B6DAE7 /* [CP] Check Pods Manifest.lock */,
  4166. 275E8AC627E18F8C00DD3F6E /* Sources */,
  4167. 275E8AC727E18F8C00DD3F6E /* Frameworks */,
  4168. 275E8AC827E18F8C00DD3F6E /* Resources */,
  4169. F651308641378409742E5831 /* [CP] Embed Pods Frameworks */,
  4170. 27666DDBA06A252BAC04BBAD /* [CP] Copy Pods Resources */,
  4171. );
  4172. buildRules = (
  4173. );
  4174. dependencies = (
  4175. 275E8ACC27E18F8C00DD3F6E /* PBXTargetDependency */,
  4176. );
  4177. name = KulexiuForStudentUITests;
  4178. productName = KulexiuForStudentUITests;
  4179. productReference = 275E8ACA27E18F8C00DD3F6E /* KulexiuForStudentUITests.xctest */;
  4180. productType = "com.apple.product-type.bundle.ui-testing";
  4181. };
  4182. /* End PBXNativeTarget section */
  4183. /* Begin PBXProject section */
  4184. 275E8A9D27E18F8800DD3F6E /* Project object */ = {
  4185. isa = PBXProject;
  4186. attributes = {
  4187. BuildIndependentTargetsInParallel = 1;
  4188. LastUpgradeCheck = 1320;
  4189. TargetAttributes = {
  4190. 275E8AA427E18F8800DD3F6E = {
  4191. CreatedOnToolsVersion = 13.2.1;
  4192. };
  4193. 275E8ABF27E18F8C00DD3F6E = {
  4194. CreatedOnToolsVersion = 13.2.1;
  4195. TestTargetID = 275E8AA427E18F8800DD3F6E;
  4196. };
  4197. 275E8AC927E18F8C00DD3F6E = {
  4198. CreatedOnToolsVersion = 13.2.1;
  4199. TestTargetID = 275E8AA427E18F8800DD3F6E;
  4200. };
  4201. };
  4202. };
  4203. buildConfigurationList = 275E8AA027E18F8800DD3F6E /* Build configuration list for PBXProject "KulexiuForStudent" */;
  4204. compatibilityVersion = "Xcode 13.0";
  4205. developmentRegion = en;
  4206. hasScannedForEncodings = 0;
  4207. knownRegions = (
  4208. en,
  4209. Base,
  4210. "zh-Hans",
  4211. );
  4212. mainGroup = 275E8A9C27E18F8800DD3F6E;
  4213. productRefGroup = 275E8AA627E18F8800DD3F6E /* Products */;
  4214. projectDirPath = "";
  4215. projectRoot = "";
  4216. targets = (
  4217. 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */,
  4218. 275E8ABF27E18F8C00DD3F6E /* KulexiuForStudentTests */,
  4219. 275E8AC927E18F8C00DD3F6E /* KulexiuForStudentUITests */,
  4220. );
  4221. };
  4222. /* End PBXProject section */
  4223. /* Begin PBXResourcesBuildPhase section */
  4224. 275E8AA327E18F8800DD3F6E /* Resources */ = {
  4225. isa = PBXResourcesBuildPhase;
  4226. buildActionMask = 2147483647;
  4227. files = (
  4228. 275E8AB827E18F8B00DD3F6E /* LaunchScreen.storyboard in Resources */,
  4229. 275FA1EF27E7351900CFEA2E /* KSUpdateAlert.xib in Resources */,
  4230. 277935AF27E324A90010E277 /* mss_browseLoading@3x.png in Resources */,
  4231. BCB6359927F6D2AB00ACFDCF /* tick.wav in Resources */,
  4232. 2779355727E324A70010E277 /* KSPremissionAlert.xib in Resources */,
  4233. 2723B5C327F157B100E0B90B /* ChatNavView.xib in Resources */,
  4234. BCFE53F22812898700AD6786 /* HomeVideoCourseCell.xib in Resources */,
  4235. 2723B5BA27F157B100E0B90B /* ChatAddressHeaderView.xib in Resources */,
  4236. BC8C2C7F28265D8E00FBA5D5 /* KSNewsAlert.xib in Resources */,
  4237. BC119235280ED97C00A716F7 /* CourseForLiveCell.xib in Resources */,
  4238. 2723B62E27F157D500E0B90B /* GroupApplyChooseAllCell.xib in Resources */,
  4239. 275FA23A27E7356B00CFEA2E /* VefiBodyView.xib in Resources */,
  4240. BC119258280FA85300A716F7 /* HomeworkListCell.xib in Resources */,
  4241. 2723B63227F157D500E0B90B /* GroupSettingBodyView.xib in Resources */,
  4242. BCFE53F728128A9600AD6786 /* TeacherShowCell.xib in Resources */,
  4243. 2723B5BF27F157B100E0B90B /* GroupCreateView.xib in Resources */,
  4244. BC8C2C5E2823F57100FBA5D5 /* AddressDetailBodyView.xib in Resources */,
  4245. 2723B63727F157D500E0B90B /* ApplyBottomView.xib in Resources */,
  4246. 2723B62F27F157D500E0B90B /* ChatComplainBodyView.xib in Resources */,
  4247. 2723B62127F157D500E0B90B /* NoticeEditBodyView.xib in Resources */,
  4248. 2723B66127F15CFB00E0B90B /* SettingBodyView.xib in Resources */,
  4249. BC11928C280FB44300A716F7 /* HomeworkVideoView.xib in Resources */,
  4250. 275E8AB527E18F8B00DD3F6E /* Assets.xcassets in Resources */,
  4251. BC119275280FB01100A716F7 /* AccompanyHomeworkCell.xib in Resources */,
  4252. BC119280280FB10900A716F7 /* AccompanyRemarkCell.xib in Resources */,
  4253. 2723B63527F157D500E0B90B /* GroupApplyChooseCell.xib in Resources */,
  4254. 2723B5C227F157B100E0B90B /* GroupListViewCell.xib in Resources */,
  4255. BCBFDF432811573D0052AFE5 /* HomeButtonView.xib in Resources */,
  4256. BC11925A280FA85300A716F7 /* HomeworkSortView.xib in Resources */,
  4257. 2723B62527F157D500E0B90B /* GroupNoticeCell.xib in Resources */,
  4258. 275FA23D27E7356B00CFEA2E /* PasswordBodyView.xib in Resources */,
  4259. 2723B66227F15CFC00E0B90B /* FeedbackBodyView.xib in Resources */,
  4260. 2723B66527F15CFC00E0B90B /* ModifyBodyView.xib in Resources */,
  4261. BCB6353027F6D2A300ACFDCF /* SealClass.strings in Resources */,
  4262. BCB635AE27F6E06500ACFDCF /* LiveRoomHeadView.xib in Resources */,
  4263. 275FA1AD27E734C600CFEA2E /* KSImageAlert.xib in Resources */,
  4264. BCBFDF5228115DA40052AFE5 /* HomeIntroduceView.xib in Resources */,
  4265. BC119270280FAF7D00A716F7 /* AccompanyCourseInfoCell.xib in Resources */,
  4266. BC8C2C5B2823F57100FBA5D5 /* AddressBottomView.xib in Resources */,
  4267. BC40BA202812552300DEC0D1 /* KSHomeButton.xib in Resources */,
  4268. BC7663162827E49900C91A1D /* NotiferHeadView.xib in Resources */,
  4269. 2723B5C427F157B100E0B90B /* KSChatListSearchView.xib in Resources */,
  4270. 2779359B27E324A80010E277 /* TZImagePickerController.bundle in Resources */,
  4271. 277935C327E324A90010E277 /* SDQWMaskCustomView.xib in Resources */,
  4272. BC40B9FA2811768400DEC0D1 /* HotInformationHeadView.xib in Resources */,
  4273. 275FA24A27E7428D00CFEA2E /* InstrumentChooseView.xib in Resources */,
  4274. BC27A06E280FF56C00F91E27 /* AccompanyEvaluateCell.xib in Resources */,
  4275. 2723B66327F15CFC00E0B90B /* ModifyNameBodyView.xib in Resources */,
  4276. BCB635B327F6E1A600ACFDCF /* LiveRoomBottomView.xib in Resources */,
  4277. BCB6348327F6D29600ACFDCF /* LiveSeatApplyView.xib in Resources */,
  4278. BC8C2C612823F57100FBA5D5 /* MyAddressListCell.xib in Resources */,
  4279. 2723B66A27F15CFC00E0B90B /* PhoneChangeBodyView.xib in Resources */,
  4280. 27F9032D27E87C2E00C08A19 /* KSNetworkAlert.xib in Resources */,
  4281. BCFE53ED2812897600AD6786 /* HomeLiveCouseCell.xib in Resources */,
  4282. 275FA24527E73E0100CFEA2E /* InstrumentDescView.xib in Resources */,
  4283. BC11922D280ED8E800A716F7 /* CourseNavView.xib in Resources */,
  4284. BC11929D280FD2EF00A716F7 /* HomeworkBottomView.xib in Resources */,
  4285. BC7663182827E49900C91A1D /* NotiferMessageCell.xib in Resources */,
  4286. BCB6348127F6D29600ACFDCF /* LiveSeatApplyCell.xib in Resources */,
  4287. 2723B62D27F157D500E0B90B /* GroupApplyMemberCell.xib in Resources */,
  4288. BCB6347427F6D29600ACFDCF /* BaseEmoji.plist in Resources */,
  4289. BC40BA252812560100DEC0D1 /* HomeCourseTipsView.xib in Resources */,
  4290. 27F9032E27E87C2E00C08A19 /* DeviceCheckView.xib in Resources */,
  4291. 275FA23727E7356B00CFEA2E /* LoginBodyView.xib in Resources */,
  4292. BCB6355927F6D2A300ACFDCF /* class_stop.mp3 in Resources */,
  4293. BCFE53E82812765600AD6786 /* HomeHotAlbumCell.xib in Resources */,
  4294. BC40BA0428117B0A00DEC0D1 /* HomeBannerCell.xib in Resources */,
  4295. BC119239280ED98E00A716F7 /* AccompanyCourseCell.xib in Resources */,
  4296. BC27A076280FF61300F91E27 /* AccompanyDetailBottomView.xib in Resources */,
  4297. BCBFDF4D28115C7A0052AFE5 /* HomeHotCourseView.xib in Resources */,
  4298. BCBFDF3928110C6F0052AFE5 /* HomeNavView.xib in Resources */,
  4299. 27F9033C27E87FE100C08A19 /* MineBodyView.xib in Resources */,
  4300. 27F9032B27E87C2E00C08A19 /* NetworkBodyView.xib in Resources */,
  4301. 2779358F27E324A80010E277 /* WMPlayer.bundle in Resources */,
  4302. BC11926C280FAF5900A716F7 /* AccompanyAlertView.xib in Resources */,
  4303. 2723B66F27F15CFC00E0B90B /* AboutUsBodyView.xib in Resources */,
  4304. 275FA23827E7356B00CFEA2E /* FirstSettingBodyView.xib in Resources */,
  4305. BC27A070280FF56C00F91E27 /* AccompanyStudentEvaCell.xib in Resources */,
  4306. 2723B63927F157D500E0B90B /* GroupMemberListCell.xib in Resources */,
  4307. BC0212F827FC4A080040569F /* SubjectImageCell.xib in Resources */,
  4308. BC11921B280ED6A900A716F7 /* NewClassPopCell.xib in Resources */,
  4309. 2723B66E27F15CFC00E0B90B /* PhoneCheckBodyView.xib in Resources */,
  4310. BC119217280ED6A900A716F7 /* MyLessonSearchView.xib in Resources */,
  4311. BCBFDF3E2811564C0052AFE5 /* HomeBannerView.xib in Resources */,
  4312. BC8C2C5A2823F57100FBA5D5 /* areainfo.json in Resources */,
  4313. 2723B5C527F157B100E0B90B /* ContractListCell.xib in Resources */,
  4314. BCBFDF48281159A40052AFE5 /* HomeHotAlbumView.xib in Resources */,
  4315. 27F9033727E87C8B00C08A19 /* MineNavView.xib in Resources */,
  4316. BC119215280ED6A900A716F7 /* MyLiveCourseCell.xib in Resources */,
  4317. BC50171727FC0D8E00F8BCBC /* SubjectChooseBodyView.xib in Resources */,
  4318. BCB6359D27F6D2AB00ACFDCF /* tock.wav in Resources */,
  4319. BC0D1F72281015B000C5D9E5 /* VideoCourseCell.xib in Resources */,
  4320. BC11927B280FB07F00A716F7 /* AccompanyArrangeCell.xib in Resources */,
  4321. BC40B9FF281177BD00DEC0D1 /* HomeInformationCell.xib in Resources */,
  4322. 275E8AB327E18F8800DD3F6E /* Main.storyboard in Resources */,
  4323. 277935B127E324A90010E277 /* mss_browseLoading@2x.png in Resources */,
  4324. BC11922C280ED8E800A716F7 /* LTSCalendarBottomView.xib in Resources */,
  4325. );
  4326. runOnlyForDeploymentPostprocessing = 0;
  4327. };
  4328. 275E8ABE27E18F8C00DD3F6E /* Resources */ = {
  4329. isa = PBXResourcesBuildPhase;
  4330. buildActionMask = 2147483647;
  4331. files = (
  4332. );
  4333. runOnlyForDeploymentPostprocessing = 0;
  4334. };
  4335. 275E8AC827E18F8C00DD3F6E /* Resources */ = {
  4336. isa = PBXResourcesBuildPhase;
  4337. buildActionMask = 2147483647;
  4338. files = (
  4339. );
  4340. runOnlyForDeploymentPostprocessing = 0;
  4341. };
  4342. /* End PBXResourcesBuildPhase section */
  4343. /* Begin PBXShellScriptBuildPhase section */
  4344. 27666DDBA06A252BAC04BBAD /* [CP] Copy Pods Resources */ = {
  4345. isa = PBXShellScriptBuildPhase;
  4346. buildActionMask = 2147483647;
  4347. files = (
  4348. );
  4349. inputFileListPaths = (
  4350. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-resources-${CONFIGURATION}-input-files.xcfilelist",
  4351. );
  4352. name = "[CP] Copy Pods Resources";
  4353. outputFileListPaths = (
  4354. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-resources-${CONFIGURATION}-output-files.xcfilelist",
  4355. );
  4356. runOnlyForDeploymentPostprocessing = 0;
  4357. shellPath = /bin/sh;
  4358. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-resources.sh\"\n";
  4359. showEnvVarsInLog = 0;
  4360. };
  4361. 517802ACBF7A2D237EC51FBD /* [CP] Check Pods Manifest.lock */ = {
  4362. isa = PBXShellScriptBuildPhase;
  4363. buildActionMask = 2147483647;
  4364. files = (
  4365. );
  4366. inputFileListPaths = (
  4367. );
  4368. inputPaths = (
  4369. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  4370. "${PODS_ROOT}/Manifest.lock",
  4371. );
  4372. name = "[CP] Check Pods Manifest.lock";
  4373. outputFileListPaths = (
  4374. );
  4375. outputPaths = (
  4376. "$(DERIVED_FILE_DIR)/Pods-KulexiuForStudent-checkManifestLockResult.txt",
  4377. );
  4378. runOnlyForDeploymentPostprocessing = 0;
  4379. shellPath = /bin/sh;
  4380. 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";
  4381. showEnvVarsInLog = 0;
  4382. };
  4383. 7FA65C60616F879A71C69DE3 /* [CP] Embed Pods Frameworks */ = {
  4384. isa = PBXShellScriptBuildPhase;
  4385. buildActionMask = 2147483647;
  4386. files = (
  4387. );
  4388. inputFileListPaths = (
  4389. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  4390. );
  4391. name = "[CP] Embed Pods Frameworks";
  4392. outputFileListPaths = (
  4393. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  4394. );
  4395. runOnlyForDeploymentPostprocessing = 0;
  4396. shellPath = /bin/sh;
  4397. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-frameworks.sh\"\n";
  4398. showEnvVarsInLog = 0;
  4399. };
  4400. AB9225EA49C09055CF4D365E /* [CP] Check Pods Manifest.lock */ = {
  4401. isa = PBXShellScriptBuildPhase;
  4402. buildActionMask = 2147483647;
  4403. files = (
  4404. );
  4405. inputFileListPaths = (
  4406. );
  4407. inputPaths = (
  4408. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  4409. "${PODS_ROOT}/Manifest.lock",
  4410. );
  4411. name = "[CP] Check Pods Manifest.lock";
  4412. outputFileListPaths = (
  4413. );
  4414. outputPaths = (
  4415. "$(DERIVED_FILE_DIR)/Pods-KulexiuForStudentTests-checkManifestLockResult.txt",
  4416. );
  4417. runOnlyForDeploymentPostprocessing = 0;
  4418. shellPath = /bin/sh;
  4419. 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";
  4420. showEnvVarsInLog = 0;
  4421. };
  4422. C466C0F5CFE9161E20B6DAE7 /* [CP] Check Pods Manifest.lock */ = {
  4423. isa = PBXShellScriptBuildPhase;
  4424. buildActionMask = 2147483647;
  4425. files = (
  4426. );
  4427. inputFileListPaths = (
  4428. );
  4429. inputPaths = (
  4430. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  4431. "${PODS_ROOT}/Manifest.lock",
  4432. );
  4433. name = "[CP] Check Pods Manifest.lock";
  4434. outputFileListPaths = (
  4435. );
  4436. outputPaths = (
  4437. "$(DERIVED_FILE_DIR)/Pods-KulexiuForStudent-KulexiuForStudentUITests-checkManifestLockResult.txt",
  4438. );
  4439. runOnlyForDeploymentPostprocessing = 0;
  4440. shellPath = /bin/sh;
  4441. 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";
  4442. showEnvVarsInLog = 0;
  4443. };
  4444. CAFB9BB2B8A1DEF4AC72C464 /* [CP] Copy Pods Resources */ = {
  4445. isa = PBXShellScriptBuildPhase;
  4446. buildActionMask = 2147483647;
  4447. files = (
  4448. );
  4449. inputFileListPaths = (
  4450. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-resources-${CONFIGURATION}-input-files.xcfilelist",
  4451. );
  4452. name = "[CP] Copy Pods Resources";
  4453. outputFileListPaths = (
  4454. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-resources-${CONFIGURATION}-output-files.xcfilelist",
  4455. );
  4456. runOnlyForDeploymentPostprocessing = 0;
  4457. shellPath = /bin/sh;
  4458. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-resources.sh\"\n";
  4459. showEnvVarsInLog = 0;
  4460. };
  4461. F651308641378409742E5831 /* [CP] Embed Pods Frameworks */ = {
  4462. isa = PBXShellScriptBuildPhase;
  4463. buildActionMask = 2147483647;
  4464. files = (
  4465. );
  4466. inputFileListPaths = (
  4467. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  4468. );
  4469. name = "[CP] Embed Pods Frameworks";
  4470. outputFileListPaths = (
  4471. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  4472. );
  4473. runOnlyForDeploymentPostprocessing = 0;
  4474. shellPath = /bin/sh;
  4475. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-frameworks.sh\"\n";
  4476. showEnvVarsInLog = 0;
  4477. };
  4478. /* End PBXShellScriptBuildPhase section */
  4479. /* Begin PBXSourcesBuildPhase section */
  4480. 275E8AA127E18F8800DD3F6E /* Sources */ = {
  4481. isa = PBXSourcesBuildPhase;
  4482. buildActionMask = 2147483647;
  4483. files = (
  4484. 2779354827E324A60010E277 /* NSObject+ReadDocument.m in Sources */,
  4485. 277935CB27E324A90010E277 /* TAAbstractDotView.m in Sources */,
  4486. 2723B5C627F157B100E0B90B /* GroupListViewCell.m in Sources */,
  4487. BCB6356E27F6D2A300ACFDCF /* ClassSongMessage.m in Sources */,
  4488. 275FA1E927E7351900CFEA2E /* KSNetTypeManager.m in Sources */,
  4489. 2723B66B27F15CFC00E0B90B /* PhoneCheckBodyView.m in Sources */,
  4490. 27F9033027E87C2E00C08A19 /* AudioRecordManager.m in Sources */,
  4491. BCB6355227F6D2A300ACFDCF /* SelectionButton.m in Sources */,
  4492. 2779352527E324A60010E277 /* pinyin.c in Sources */,
  4493. BCFE53F628128A9600AD6786 /* TeacherShowCell.m in Sources */,
  4494. 2779357B27E324A70010E277 /* ShopButton.m in Sources */,
  4495. 2723B61E27F157D500E0B90B /* GroupNoticeEditController.m in Sources */,
  4496. BCB6346427F6D29600ACFDCF /* KSLiveChatroomSeatApply.m in Sources */,
  4497. BC0212FE27FC66AA0040569F /* InstrumentMessageModel.m in Sources */,
  4498. BCB6359F27F6D2AB00ACFDCF /* ClassTitleView.m in Sources */,
  4499. BC0D1F752810165500C5D9E5 /* VideoCourseModel.m in Sources */,
  4500. BC119276280FB01100A716F7 /* AccompanyHomeworkCell.m in Sources */,
  4501. 277935AC27E324A80010E277 /* MSSBrowseBaseViewController.m in Sources */,
  4502. 2779352427E324A60010E277 /* KSUtilities.m in Sources */,
  4503. 2779359627E324A80010E277 /* TZVideoCropController.m in Sources */,
  4504. 277935AB27E324A80010E277 /* UIImage+MSSScale.m in Sources */,
  4505. BCB6353127F6D2A300ACFDCF /* ZoomControl.m in Sources */,
  4506. 2779353427E324A60010E277 /* UIImageView+CornerRadius.m in Sources */,
  4507. 2779357827E324A70010E277 /* NSString+phone.m in Sources */,
  4508. 2779357D27E324A80010E277 /* KSMessageInputView.m in Sources */,
  4509. 277935BE27E324A90010E277 /* FSCalendarCalculator.m in Sources */,
  4510. BCB6347727F6D29600ACFDCF /* LiveRoomLikeLayer.m in Sources */,
  4511. 275FA1DC27E7351900CFEA2E /* KSAQRecordManager.m in Sources */,
  4512. BC40B9F82811767A00DEC0D1 /* HotInformationHeadView.m in Sources */,
  4513. BCB6356827F6D2A300ACFDCF /* ApplySpeechResultMessage.m in Sources */,
  4514. BC7663152827E49900C91A1D /* NotiferHeadView.m in Sources */,
  4515. 2779351427E324A50010E277 /* NSMutableDictionary+KSSafe.m in Sources */,
  4516. 2779356F27E324A70010E277 /* SkipTextField.m in Sources */,
  4517. 2723B67F27F15D3D00E0B90B /* AboutUsViewController.m in Sources */,
  4518. BCB6355027F6D2A300ACFDCF /* WhiteUtils.m in Sources */,
  4519. 2779356127E324A70010E277 /* KSAudioRecordManager.m in Sources */,
  4520. 2779359827E324A80010E277 /* TZAssetModel.m in Sources */,
  4521. 277935A027E324A80010E277 /* UIView+TZLayout.m in Sources */,
  4522. 2779351227E324A50010E277 /* KSNetworkAccessibleManager.m in Sources */,
  4523. BCB6346827F6D29600ACFDCF /* KSLiveChatroomClose.m in Sources */,
  4524. 2779357227E324A70010E277 /* SearchView.m in Sources */,
  4525. 2723B64927F15BDC00E0B90B /* KSJXBodyView.m in Sources */,
  4526. BCB6354E27F6D2A300ACFDCF /* KSWhiteboardView.m in Sources */,
  4527. 2779356527E324A70010E277 /* KSMediaManager.m in Sources */,
  4528. 2779355C27E324A70010E277 /* KSChoosePicker.m in Sources */,
  4529. 2779356C27E324A70010E277 /* MBProgressHUD+NJ.m in Sources */,
  4530. BCBFDF5028115D9A0052AFE5 /* HomeIntroduceView.m in Sources */,
  4531. 2779353227E324A60010E277 /* NSDate+Transform.m in Sources */,
  4532. 2779356827E324A70010E277 /* shopview.m in Sources */,
  4533. 2723B64527F15B5900E0B90B /* SCIndexView.m in Sources */,
  4534. BCB6353727F6D2A300ACFDCF /* TextMessageCell.m in Sources */,
  4535. BCB6346A27F6D29600ACFDCF /* LiveVideoRoomViewController.m in Sources */,
  4536. BCB6357227F6D2A300ACFDCF /* KSIMService.m in Sources */,
  4537. BC50171227FC0D5600F8BCBC /* SubjectChooseViewController.m in Sources */,
  4538. 2779359727E324A80010E277 /* TZVideoPlayerController.m in Sources */,
  4539. 275FA22E27E7356B00CFEA2E /* MineViewController.m in Sources */,
  4540. 2779354627E324A60010E277 /* UIView+Animation.m in Sources */,
  4541. 2723B68327F15D3D00E0B90B /* ModifyViewController.m in Sources */,
  4542. 2779356327E324A70010E277 /* HomeButton.m in Sources */,
  4543. 2779358227E324A80010E277 /* NSDate+KSBaseDatePicker.m in Sources */,
  4544. BCB6359E27F6D2AB00ACFDCF /* ClassroomMainContainer.m in Sources */,
  4545. 277935CD27E324A90010E277 /* ALCalendarCell.m in Sources */,
  4546. 275FA1DA27E7351900CFEA2E /* KSNetworkingManager.m in Sources */,
  4547. 2779358A27E324A80010E277 /* ArchiveTools.m in Sources */,
  4548. BCB6355A27F6D2A300ACFDCF /* KSRemoteUserManager.m in Sources */,
  4549. BCB6347127F6D29600ACFDCF /* KSChatEmojiBoardView.m in Sources */,
  4550. 2779354527E324A60010E277 /* UIImage+UIImageScale.m in Sources */,
  4551. 2723B66427F15CFC00E0B90B /* VeriCheckView.m in Sources */,
  4552. BCB6355C27F6D2A300ACFDCF /* DisplayCommandMessage.m in Sources */,
  4553. BCB6356A27F6D2A300ACFDCF /* AccompanyDownloadCallbackMessage.m in Sources */,
  4554. BCB6359827F6D2AB00ACFDCF /* KSTipsView.m in Sources */,
  4555. 2779354C27E324A70010E277 /* KSGifRefreshHeader.m in Sources */,
  4556. 2779358727E324A80010E277 /* LLCollectionViewCell.m in Sources */,
  4557. 2779352627E324A60010E277 /* UIAlertController+Extend.m in Sources */,
  4558. BC11925E280FA89A00A716F7 /* HomeworkBodyView.m in Sources */,
  4559. 275FA1EB27E7351900CFEA2E /* KSBaseWKWebViewController.m in Sources */,
  4560. BCB6356727F6D2A300ACFDCF /* MemberChangeMessage.m in Sources */,
  4561. 2779353B27E324A60010E277 /* UrlDecode.m in Sources */,
  4562. BC40BA23281255F700DEC0D1 /* HomeCourseTipsView.m in Sources */,
  4563. BC8C2C5F2823F57100FBA5D5 /* MyAddressListCell.m in Sources */,
  4564. 275FA22C27E7356B00CFEA2E /* CourseViewController.m in Sources */,
  4565. 2779358D27E324A80010E277 /* DZNSegmentedControl.m in Sources */,
  4566. 2779352027E324A60010E277 /* CALayer+Color.m in Sources */,
  4567. 2723B62C27F157D500E0B90B /* ApplyBottomView.m in Sources */,
  4568. BCB6356127F6D2A300ACFDCF /* SongDownloadCallbackMessage.m in Sources */,
  4569. 277935BA27E324A90010E277 /* FSCalendarWeekdayView.m in Sources */,
  4570. BCB6354427F6D2A300ACFDCF /* RecentSharedView.m in Sources */,
  4571. 2723B66C27F15CFC00E0B90B /* SettingBodyView.m in Sources */,
  4572. 2779354727E324A60010E277 /* UIButton+EnlargeEdge.m in Sources */,
  4573. 27F9032A27E87C2E00C08A19 /* NetworkBodyView.m in Sources */,
  4574. BCB6355F27F6D2A300ACFDCF /* TicketExpiredMessage.m in Sources */,
  4575. 277935A827E324A80010E277 /* MSSBrowseModel.m in Sources */,
  4576. BCB6355327F6D2A300ACFDCF /* InputTextField.m in Sources */,
  4577. BC28582B2809036D0024697C /* StudentInfoModel.m in Sources */,
  4578. 277935B927E324A90010E277 /* FSCalendarCollectionViewLayout.m in Sources */,
  4579. 2779359427E324A80010E277 /* TZAssetCell.m in Sources */,
  4580. BCB635B227F6E1A600ACFDCF /* LiveRoomBottomView.m in Sources */,
  4581. 2723B5CE27F157BE00E0B90B /* KSRCloudMediaManager.m in Sources */,
  4582. 2779357027E324A70010E277 /* UITextView_Toolbar.m in Sources */,
  4583. BCB6356427F6D2A300ACFDCF /* InviteUpgradeMessage.m in Sources */,
  4584. 2779355327E324A70010E277 /* VoNetworking+RequestManager.m in Sources */,
  4585. BCB6347327F6D29600ACFDCF /* KSChatEmojiCollectionCell.m in Sources */,
  4586. 2723B62327F157D500E0B90B /* LFPopupMenuDefaultConfig.m in Sources */,
  4587. 2779351627E324A60010E277 /* NSMutableArray+KSSafe.m in Sources */,
  4588. BC119247280EDA5800A716F7 /* kSJXCollectionView.m in Sources */,
  4589. 2779358927E324A80010E277 /* CoinModel.m in Sources */,
  4590. 275FA1EA27E7351900CFEA2E /* KSRCIMDataSource.m in Sources */,
  4591. BC27A071280FF56C00F91E27 /* AccompanyEvaluateCell.m in Sources */,
  4592. BC119241280ED9E000A716F7 /* AccompanyDetailViewController.m in Sources */,
  4593. BCB6346F27F6D29600ACFDCF /* LiveroomTimeManager.m in Sources */,
  4594. 2779359C27E324A80010E277 /* TZProgressView.m in Sources */,
  4595. 27F9033627E87C8B00C08A19 /* MineNavView.m in Sources */,
  4596. BC50171527FC0D8300F8BCBC /* SubjectChooseBodyView.m in Sources */,
  4597. BC8C2C5C2823F57100FBA5D5 /* KSAddressPickerView.m in Sources */,
  4598. 2723B62727F157D500E0B90B /* GroupMemberViewController.m in Sources */,
  4599. BC119216280ED6A900A716F7 /* MyLiveCourseCell.m in Sources */,
  4600. 2779353727E324A60010E277 /* UIImage+Color.m in Sources */,
  4601. 2779353127E324A60010E277 /* NSString+Extension.m in Sources */,
  4602. 2779353F27E324A60010E277 /* UIView+KSLayer.m in Sources */,
  4603. BCB6346227F6D29600ACFDCF /* KSLiveChatroomDownSeat.m in Sources */,
  4604. 275E8AB027E18F8800DD3F6E /* ViewController.m in Sources */,
  4605. 277935B627E324A90010E277 /* FSCalendarCell.m in Sources */,
  4606. 2779351E27E324A60010E277 /* UIViewController+zhStatusBarStyle.m in Sources */,
  4607. 2779356B27E324A70010E277 /* pickBut.m in Sources */,
  4608. 2779355F27E324A70010E277 /* UIView+ValueAdd.m in Sources */,
  4609. 275FA1E227E7351900CFEA2E /* KSWebBackButton.m in Sources */,
  4610. BCB6353527F6D2A300ACFDCF /* EmojiBoardView.m in Sources */,
  4611. 277935BF27E324A90010E277 /* FSCalendarHeaderView.m in Sources */,
  4612. 275FA1AE27E734C600CFEA2E /* KSImageAlert.m in Sources */,
  4613. 275FA1DE27E7351900CFEA2E /* KSLocalWebViewController.m in Sources */,
  4614. 2779354227E324A60010E277 /* UIImage+ResizeImage.m in Sources */,
  4615. 277935B327E324A90010E277 /* FSCalendarCollectionView.m in Sources */,
  4616. 2779352727E324A60010E277 /* NSArray+zh_SafeAccess.m in Sources */,
  4617. BCB6359727F6D2AB00ACFDCF /* ClassroomTimerManager.m in Sources */,
  4618. 2779352227E324A60010E277 /* UITextView+ZWLimitCounter.m in Sources */,
  4619. 27F9032927E87C2E00C08A19 /* NetworkingCheckController.m in Sources */,
  4620. BCFE53EC2812897600AD6786 /* HomeLiveCouseCell.m in Sources */,
  4621. 277935A527E324A80010E277 /* MSSBrowseLoadingImageView.m in Sources */,
  4622. 2779353E27E324A60010E277 /* UIDevice+TFDevice.m in Sources */,
  4623. 2723B5C027F157B100E0B90B /* ChatAddressHeaderView.m in Sources */,
  4624. 2723B68127F15D3D00E0B90B /* ModifyNameViewController.m in Sources */,
  4625. 2779359927E324A80010E277 /* NSBundle+TZImagePicker.m in Sources */,
  4626. 2779358E27E324A80010E277 /* WMPlayerModel.m in Sources */,
  4627. 2779354E27E324A70010E277 /* KSAudioSessionManager.m in Sources */,
  4628. BCBFDF41281157340052AFE5 /* HomeButtonView.m in Sources */,
  4629. 2779358127E324A80010E277 /* StateView.m in Sources */,
  4630. 2779358C27E324A80010E277 /* AnimationContoller.m in Sources */,
  4631. 2779359027E324A80010E277 /* WMLightView.m in Sources */,
  4632. 2723B5A227F1578300E0B90B /* CreateFansGroupViewController.m in Sources */,
  4633. BCB6355E27F6D2A300ACFDCF /* ControlDeviceNotifyMessage.m in Sources */,
  4634. BC40BA1B281251ED00DEC0D1 /* HomeMessageModel.m in Sources */,
  4635. 277935BD27E324A90010E277 /* FSCalendarConstants.m in Sources */,
  4636. BCB6354527F6D2A300ACFDCF /* RecentSharedVideoCell.m in Sources */,
  4637. BCB6347027F6D29600ACFDCF /* LiveSeatMember.m in Sources */,
  4638. 2779351C27E324A60010E277 /* UIDevice+zhDeviceType.m in Sources */,
  4639. 2723B62927F157D500E0B90B /* KSChatComplainController.m in Sources */,
  4640. 2779351527E324A60010E277 /* NSArray+KSSafe.m in Sources */,
  4641. 2723B61A27F157D500E0B90B /* KSSearchResultViewCell.m in Sources */,
  4642. BC11927A280FB07F00A716F7 /* AccompanyArrangeCell.m in Sources */,
  4643. 277935B827E324A90010E277 /* FSCalendar.m in Sources */,
  4644. BCB6356C27F6D2A300ACFDCF /* Whiteboard.m in Sources */,
  4645. 275FA23527E7356B00CFEA2E /* UserInfoManager.m in Sources */,
  4646. 2779353327E324A60010E277 /* UIScreen+Extend.m in Sources */,
  4647. 2723B67E27F15D3D00E0B90B /* ModifyPhoneCheckController.m in Sources */,
  4648. 2779353A27E324A60010E277 /* UILabel+QWTopLeftLabel.m in Sources */,
  4649. BC119213280ED6A900A716F7 /* MyLessonBodyView.m in Sources */,
  4650. BCB6354227F6D2A300ACFDCF /* VideoListView.m in Sources */,
  4651. 2779359A27E324A80010E277 /* TZPhotoPreviewController.m in Sources */,
  4652. 2779355E27E324A70010E277 /* KSAudioRecordFileManager.m in Sources */,
  4653. 2779357A27E324A70010E277 /* PIckView.m in Sources */,
  4654. BC119234280ED97C00A716F7 /* CourseForLiveCell.m in Sources */,
  4655. BCB6346027F6D29600ACFDCF /* KSLiveChatroomKickOut.m in Sources */,
  4656. 2779354127E324A60010E277 /* UIView+ShowProgress.m in Sources */,
  4657. BCFE53E72812765600AD6786 /* HomeHotAlbumCell.m in Sources */,
  4658. BCB6346627F6D29600ACFDCF /* KSLiveChatroomUserQuit.m in Sources */,
  4659. BCB6356D27F6D2A300ACFDCF /* RoomMember.m in Sources */,
  4660. 277935B427E324A90010E277 /* FSCalendarDelegationProxy.m in Sources */,
  4661. 2723B5BB27F157B100E0B90B /* ChatAddressBodyView.m in Sources */,
  4662. 2779357427E324A70010E277 /* StoreButton.m in Sources */,
  4663. 277935A927E324A80010E277 /* MSSBrowseActionSheet.m in Sources */,
  4664. 275FA1E027E7351900CFEA2E /* RecordCheckManager.m in Sources */,
  4665. 2779355627E324A70010E277 /* KSPremissionAlert.m in Sources */,
  4666. BC119230280ED8F900A716F7 /* TableCourseModel.m in Sources */,
  4667. BCB6353827F6D2A300ACFDCF /* TipMessageCell.m in Sources */,
  4668. 2779352827E324A60010E277 /* UIColor+Extend.m in Sources */,
  4669. 2779357627E324A70010E277 /* ShoppCatView.m in Sources */,
  4670. BC11927F280FB10900A716F7 /* AccompanyRemarkCell.m in Sources */,
  4671. 2779357127E324A70010E277 /* SkipTextView.m in Sources */,
  4672. BCB6345F27F6D29600ACFDCF /* KSLiveChatroomEnter.m in Sources */,
  4673. BCB6355D27F6D2A300ACFDCF /* SongDownloadMessage.m in Sources */,
  4674. BCB6357027F6D2A300ACFDCF /* ClassroomService.m in Sources */,
  4675. BCB6359A27F6D2AB00ACFDCF /* ClassVideoListView.m in Sources */,
  4676. 2723B61D27F157D500E0B90B /* GroupNoticeViewController.m in Sources */,
  4677. BC0212F727FC4A080040569F /* SubjectImageCell.m in Sources */,
  4678. 277935D027E324A90010E277 /* ALCalendarDate.m in Sources */,
  4679. BCFE540328152A8500AD6786 /* KSOrderManager.m in Sources */,
  4680. 2723B64427F15B5900E0B90B /* SCIndexViewConfiguration.m in Sources */,
  4681. 2779358527E324A80010E277 /* LLFileManager.m in Sources */,
  4682. BCB6346D27F6D29600ACFDCF /* KSEnterLiveroomManager.m in Sources */,
  4683. 2779357327E324A70010E277 /* prodectButton.m in Sources */,
  4684. 2723B5BD27F157B100E0B90B /* KSChatListSearchView.m in Sources */,
  4685. 2723B61827F157D500E0B90B /* KSSearchHistoryMessageController.m in Sources */,
  4686. BCB6346E27F6D29600ACFDCF /* KSLiveStreamVideo.m in Sources */,
  4687. 2779359327E324A80010E277 /* TZImageCropManager.m in Sources */,
  4688. 2723B66727F15CFC00E0B90B /* ModifyBodyView.m in Sources */,
  4689. 2779357727E324A70010E277 /* GRScanManager.m in Sources */,
  4690. 277935D527E324A90010E277 /* ALCalendarManager.m in Sources */,
  4691. BC02130127FC6ADD0040569F /* UIView+SubViewExtension.m in Sources */,
  4692. BC11924E280EDD5500A716F7 /* HomeworkListViewController.m in Sources */,
  4693. 2779351927E324A60010E277 /* NSMutableString+KSSafe.m in Sources */,
  4694. 2723B5BC27F157B100E0B90B /* GroupCreateView.m in Sources */,
  4695. BCB6346927F6D29600ACFDCF /* KSLiveChatroomSeatResponse.m in Sources */,
  4696. 2723B64627F15B5900E0B90B /* UITableView+SCIndexView.m in Sources */,
  4697. BCB6353327F6D2A300ACFDCF /* CREmojiCollectionCell.m in Sources */,
  4698. BCB6356B27F6D2A300ACFDCF /* NodePlayMessage.m in Sources */,
  4699. 2779352327E324A60010E277 /* UILabel+Extension.m in Sources */,
  4700. BCB635A327F6D3FE00ACFDCF /* KSNormalAlertView.m in Sources */,
  4701. 2723B63027F157D500E0B90B /* GroupApplyChooseAllCell.m in Sources */,
  4702. 2723B61F27F157D500E0B90B /* GroupNoticeModel.m in Sources */,
  4703. 275FA1E627E7351900CFEA2E /* KSUpdateAlert.m in Sources */,
  4704. BCB6353A27F6D2A300ACFDCF /* MessageBaseCell.m in Sources */,
  4705. 2779355027E324A70010E277 /* VoDiskCache.m in Sources */,
  4706. BCB6353F27F6D2A300ACFDCF /* ChatAreaView.m in Sources */,
  4707. BCB6355627F6D2A300ACFDCF /* HTTPUtility.m in Sources */,
  4708. 2779353927E324A60010E277 /* UIView+XIBView.m in Sources */,
  4709. 2779355827E324A70010E277 /* UIImage+Addtions.m in Sources */,
  4710. BCB6355527F6D2A300ACFDCF /* RolePortraitView.m in Sources */,
  4711. 277935D427E324A90010E277 /* UIView+ALFrame.m in Sources */,
  4712. 275FA23C27E7356B00CFEA2E /* VefiBodyView.m in Sources */,
  4713. 2779358027E324A80010E277 /* sortButton.m in Sources */,
  4714. 2779356027E324A70010E277 /* KSRecordStatusView.m in Sources */,
  4715. 2723B62B27F157D500E0B90B /* ApplyMemberModel.m in Sources */,
  4716. BC40B9FE281177BD00DEC0D1 /* HomeInformationCell.m in Sources */,
  4717. 2779354D27E324A70010E277 /* KSGifRefreshFooter.m in Sources */,
  4718. BC119288280FB3B100A716F7 /* KSStarView.m in Sources */,
  4719. 275FA22F27E7356B00CFEA2E /* ShopMallViewController.m in Sources */,
  4720. BCB6347227F6D29600ACFDCF /* KSChatInputView.m in Sources */,
  4721. 275E8AAA27E18F8800DD3F6E /* AppDelegate.m in Sources */,
  4722. 2779356427E324A70010E277 /* KSFullDatePicker.m in Sources */,
  4723. BC0D1F6D281013DF00C5D9E5 /* MyVideoCourseBodyView.m in Sources */,
  4724. 2723B5CF27F157BE00E0B90B /* GroupMemberModel.m in Sources */,
  4725. 2723B62A27F157D500E0B90B /* GroupSettingViewController.m in Sources */,
  4726. 2779359127E324A80010E277 /* FastForwardView.m in Sources */,
  4727. BC119222280ED6F500A716F7 /* LiveLessonModel.m in Sources */,
  4728. 2723B63C27F159BA00E0B90B /* KSBaseTableViewController.m in Sources */,
  4729. BC27A079280FFA2200F91E27 /* EvaluateDetailModel.m in Sources */,
  4730. 2779358B27E324A80010E277 /* KLTNavigationController.m in Sources */,
  4731. 27F9033127E87C2E00C08A19 /* DeviceCheckView.m in Sources */,
  4732. BCB6359527F6D2AB00ACFDCF /* OnlineClassManager.m in Sources */,
  4733. BC119263280FA90100A716F7 /* HomeworkDetailModel.m in Sources */,
  4734. BCB6357127F6D2A300ACFDCF /* RTCService.m in Sources */,
  4735. 2723B62427F157D500E0B90B /* NoticeEditBodyView.m in Sources */,
  4736. BCB6354327F6D2A300ACFDCF /* RecentSharedWhiteboardCell.m in Sources */,
  4737. BC0D1F71281015B000C5D9E5 /* VideoCourseCell.m in Sources */,
  4738. 2779352F27E324A60010E277 /* UIView+Hints.m in Sources */,
  4739. 2779351D27E324A60010E277 /* NSString+zh_SafeAccess.m in Sources */,
  4740. BCB6354727F6D2A300ACFDCF /* PersonListView.m in Sources */,
  4741. 2779351A27E324A60010E277 /* NSObject+AssociatedObject.m in Sources */,
  4742. BCB635A627F6D90600ACFDCF /* KSLiveEmptyView.m in Sources */,
  4743. 2779359227E324A80010E277 /* WMPlayer.m in Sources */,
  4744. 277935CF27E324A90010E277 /* ALCalendarHeader.m in Sources */,
  4745. 275FA24827E7428200CFEA2E /* InstrumentChooseView.m in Sources */,
  4746. 2779358627E324A80010E277 /* LLPhoto.m in Sources */,
  4747. 277935C127E324A90010E277 /* FSCalendarAppearance.m in Sources */,
  4748. 275E8ABB27E18F8B00DD3F6E /* main.m in Sources */,
  4749. 2779359F27E324A80010E277 /* TZPhotoPreviewCell.m in Sources */,
  4750. BC11928D280FB44300A716F7 /* HomeworkVideoView.m in Sources */,
  4751. 277935A227E324A80010E277 /* TZLocationManager.m in Sources */,
  4752. 2723B62827F157D500E0B90B /* KSSelectConversationViewController.m in Sources */,
  4753. 275FA1E827E7351900CFEA2E /* CustomNavViewController.m in Sources */,
  4754. BCB6355B27F6D2A300ACFDCF /* ApplySpeechMessage.m in Sources */,
  4755. 275FA24327E73DF600CFEA2E /* InstrumentDescView.m in Sources */,
  4756. 2723B68027F15D3D00E0B90B /* FeedbackViewController.m in Sources */,
  4757. 275FA1ED27E7351900CFEA2E /* KSUpdateManager.m in Sources */,
  4758. BC27A06F280FF56C00F91E27 /* AccompanyStudentEvaCell.m in Sources */,
  4759. BCB6355727F6D2A300ACFDCF /* HTTPResult.m in Sources */,
  4760. BC0212FB27FC61D30040569F /* KSSegmentControl.m in Sources */,
  4761. BC119223280ED6F500A716F7 /* AccompanyLessonModel.m in Sources */,
  4762. 277935B227E324A90010E277 /* UIView+MSSLayout.m in Sources */,
  4763. 275FA1E427E7351900CFEA2E /* KSWebNavView.m in Sources */,
  4764. 2779356D27E324A70010E277 /* StoreShopCaterview.m in Sources */,
  4765. BC119267280FA92700A716F7 /* HomeworkDetailViewController.m in Sources */,
  4766. BCB6346127F6D29600ACFDCF /* KSChatroomMessageCenter.m in Sources */,
  4767. BC11925B280FA85300A716F7 /* HomeworkSortView.m in Sources */,
  4768. 277935D327E324A90010E277 /* ALCalendarPicker.m in Sources */,
  4769. BCB6359427F6D2AB00ACFDCF /* NewClassRoomViewController.m in Sources */,
  4770. BCB6356027F6D2A300ACFDCF /* WhiteboardMessage.m in Sources */,
  4771. 2779354F27E324A70010E277 /* VoLRUManager.m in Sources */,
  4772. BC40BA0C28117B3B00DEC0D1 /* TYPageControl.m in Sources */,
  4773. BC40BA0D28117B3B00DEC0D1 /* TYCyclePagerView.m in Sources */,
  4774. 2779356727E324A70010E277 /* UIColor+Hex.m in Sources */,
  4775. BCB6345E27F6D29600ACFDCF /* KSLiveChatroomLeave.m in Sources */,
  4776. BC11929B280FD2E800A716F7 /* HomeworkBottomView.m in Sources */,
  4777. BC8C2C602823F57100FBA5D5 /* AddressBottomView.m in Sources */,
  4778. 275FA1E727E7351900CFEA2E /* KSWebSocketManager.m in Sources */,
  4779. 277935AE27E324A80010E277 /* MSSBrowseRemindView.m in Sources */,
  4780. BCBFDF46281159990052AFE5 /* HomeHotAlbumView.m in Sources */,
  4781. 2779356A27E324A70010E277 /* YKNodeModel.m in Sources */,
  4782. BC119244280EDA2400A716F7 /* NSObject+KSDateFormatter.m in Sources */,
  4783. 277935CE27E324A90010E277 /* ALCalendarConfig.m in Sources */,
  4784. 2779354327E324A60010E277 /* UIButton+HasChooseImage.m in Sources */,
  4785. 2779355927E324A70010E277 /* GRCreateManager.m in Sources */,
  4786. 277935A727E324A80010E277 /* MSSBrowseCollectionViewCell.m in Sources */,
  4787. BCB6346727F6D29600ACFDCF /* KSLiveChatroomMemberCount.m in Sources */,
  4788. 277935AD27E324A80010E277 /* MSSBrowseZoomScrollView.m in Sources */,
  4789. BCB6348227F6D29600ACFDCF /* SeatContentView.m in Sources */,
  4790. 2723B68227F15D3D00E0B90B /* ModifyPhoneChangeController.m in Sources */,
  4791. BC40BA1F2812552300DEC0D1 /* KSHomeButton.m in Sources */,
  4792. 277935C827E324A90010E277 /* TADotView.m in Sources */,
  4793. BC1191FF280ED64E00A716F7 /* MyCourseViewController.m in Sources */,
  4794. BC119298280FBCB400A716F7 /* UIView+ExtensionForDotLine.m in Sources */,
  4795. BCB635A927F6D93300ACFDCF /* KSChatVideoView.m in Sources */,
  4796. 2779353027E324A60010E277 /* NSDate+Extension.m in Sources */,
  4797. BCB6356627F6D2A300ACFDCF /* DeviceMessage.m in Sources */,
  4798. BCBFDF3728110C660052AFE5 /* HomeNavView.m in Sources */,
  4799. 277935D127E324A90010E277 /* ALCalendarCollectionView.m in Sources */,
  4800. BC76630E2827E48800C91A1D /* NotiferMessageModel.m in Sources */,
  4801. BCFE5406281545C600AD6786 /* HomeAlbumModel.m in Sources */,
  4802. 2779355427E324A70010E277 /* VoNetWorking.m in Sources */,
  4803. 275FA1EE27E7351900CFEA2E /* KSBaseViewController.m in Sources */,
  4804. 2723B63827F157D500E0B90B /* GroupApplyChooseCell.m in Sources */,
  4805. 2723B66827F15CFC00E0B90B /* FeedbackBodyView.m in Sources */,
  4806. 2779354927E324A60010E277 /* MBProgressHUD+KSShow.m in Sources */,
  4807. BCB6346327F6D29600ACFDCF /* KSRCMessageModel.m in Sources */,
  4808. BCB6359B27F6D2AB00ACFDCF /* KSBeatView.m in Sources */,
  4809. BCB6356227F6D2A300ACFDCF /* AssistantTransferMessage.m in Sources */,
  4810. 277935A427E324A80010E277 /* TZImageRequestOperation.m in Sources */,
  4811. BCB6356527F6D2A300ACFDCF /* AccompanyDownloadMessage.m in Sources */,
  4812. 275FA23627E7356B00CFEA2E /* LoginBodyView.m in Sources */,
  4813. 2779355A27E324A70010E277 /* QCCountdownButton.m in Sources */,
  4814. 275FA1E127E7351900CFEA2E /* KSTabBarViewController.m in Sources */,
  4815. BC11926B280FAF5900A716F7 /* AccompanyAlertView.m in Sources */,
  4816. 277935BB27E324A90010E277 /* FSCalendarSeparatorDecorationView.m in Sources */,
  4817. 275FA1DF27E7351900CFEA2E /* RCConnectionManager.m in Sources */,
  4818. 275FA22B27E7356B00CFEA2E /* HomeViewController.m in Sources */,
  4819. BCFE53F12812898700AD6786 /* HomeVideoCourseCell.m in Sources */,
  4820. 277935C027E324A90010E277 /* FSCalendarTransitionCoordinator.m in Sources */,
  4821. 2779355B27E324A70010E277 /* KSStatusView.m in Sources */,
  4822. 2779355227E324A70010E277 /* VoMemoryCache.m in Sources */,
  4823. 2779352A27E324A60010E277 /* UIView+Dealloc.m in Sources */,
  4824. 2779352D27E324A60010E277 /* NSString+CZHSizeExtension.m in Sources */,
  4825. BC8C2C7E28265D8E00FBA5D5 /* KSNewsAlert.m in Sources */,
  4826. BC119259280FA85300A716F7 /* HomeworkListCell.m in Sources */,
  4827. 2779353827E324A60010E277 /* UIView+KSExtension.m in Sources */,
  4828. 2723B5CD27F157BE00E0B90B /* GroupListModel.m in Sources */,
  4829. 2779354B27E324A60010E277 /* KSVideoEditor.m in Sources */,
  4830. 277935A327E324A80010E277 /* TZGifPhotoPreviewController.m in Sources */,
  4831. 277935A127E324A80010E277 /* TZImagePickerController.m in Sources */,
  4832. BCB6353627F6D2A300ACFDCF /* TimeStampCell.m in Sources */,
  4833. BCB6354D27F6D2A300ACFDCF /* EmptyView.m in Sources */,
  4834. 2723B63327F157D500E0B90B /* ChatComplainBodyView.m in Sources */,
  4835. 2779357927E324A70010E277 /* KSImageButton.m in Sources */,
  4836. 2779351827E324A60010E277 /* NSObject+KSImpChangeTool.m in Sources */,
  4837. BC8C2C5D2823F57100FBA5D5 /* AddressDetailBodyView.m in Sources */,
  4838. 2779359D27E324A80010E277 /* TZImageManager.m in Sources */,
  4839. 2723B5BE27F157B100E0B90B /* ChatNavView.m in Sources */,
  4840. BC119218280ED6A900A716F7 /* MyLessonSearchView.m in Sources */,
  4841. BCB6354C27F6D2A300ACFDCF /* VideoMaskView.m in Sources */,
  4842. 2723B66D27F15CFC00E0B90B /* ModifyNameBodyView.m in Sources */,
  4843. 275FA23327E7356B00CFEA2E /* VefiCodeLoginController.m in Sources */,
  4844. BCB6359C27F6D2AB00ACFDCF /* ClassVideoListCell.m in Sources */,
  4845. 2723B61B27F157D500E0B90B /* KSSearchRCLabel.m in Sources */,
  4846. 275FA23B27E7356B00CFEA2E /* PasswordBodyView.m in Sources */,
  4847. 277935C527E324A90010E277 /* UIView+SDExtension.m in Sources */,
  4848. 2779356E27E324A70010E277 /* UITextField_Toolbar.m in Sources */,
  4849. 277935B027E324A90010E277 /* MSSBrowseActionSheetCell.m in Sources */,
  4850. 2779358827E324A80010E277 /* NSObject+Archiving.m in Sources */,
  4851. 2779354427E324A60010E277 /* NSObject+AutoProperty.m in Sources */,
  4852. 275FA23427E7356B00CFEA2E /* UserInfo.m in Sources */,
  4853. 27F9033A27E87FD500C08A19 /* MineBodyView.m in Sources */,
  4854. 275FA1EC27E7351900CFEA2E /* BaseViewController.m in Sources */,
  4855. BCB6353427F6D2A300ACFDCF /* InputBarControl.m in Sources */,
  4856. BC11922B280ED8E800A716F7 /* CourseNavView.m in Sources */,
  4857. 275FA1DB27E7351900CFEA2E /* UINavigationController+KSNavigationBar.m in Sources */,
  4858. 2779352127E324A60010E277 /* NSMutableAttributedString+CZHExtention.m in Sources */,
  4859. 277935C727E324A90010E277 /* SDCollectionViewCell.m in Sources */,
  4860. BCB6348627F6D29600ACFDCF /* LiveSeatApplyCell.m in Sources */,
  4861. 2779358427E324A80010E277 /* LLImageCache.m in Sources */,
  4862. 275FA23127E7356B00CFEA2E /* FirstSettingViewController.m in Sources */,
  4863. BCB6355827F6D2A300ACFDCF /* NormalAlertView.m in Sources */,
  4864. 275FA1DD27E7351900CFEA2E /* KSBaseModel.m in Sources */,
  4865. BC11922A280ED8E800A716F7 /* LTSCalendarBottomView.m in Sources */,
  4866. BCB6353E27F6D2A300ACFDCF /* TimeStampMessage.m in Sources */,
  4867. 2779354027E324A60010E277 /* UIImage+Property.m in Sources */,
  4868. BCFE54002814E1BE00AD6786 /* HomeVideoGroupModel.m in Sources */,
  4869. 2779356627E324A70010E277 /* ShopMessBtn.m in Sources */,
  4870. BC11921D280ED6A900A716F7 /* NewClassPopCell.m in Sources */,
  4871. 277935B727E324A90010E277 /* FSCalendarStickyHeader.m in Sources */,
  4872. 2779356927E324A70010E277 /* YKMultiLevelTableView.m in Sources */,
  4873. BCB6354B27F6D2A300ACFDCF /* MainContainerView.m in Sources */,
  4874. BCB6356F27F6D2A300ACFDCF /* Classroom.m in Sources */,
  4875. 2779351B27E324A60010E277 /* UIControl+ButtonAction.m in Sources */,
  4876. BCB6354F27F6D2A300ACFDCF /* KSWhiteboardControl.m in Sources */,
  4877. BCBFDF3C281156430052AFE5 /* HomeBannerView.m in Sources */,
  4878. 27F9032F27E87C2E00C08A19 /* AudioPlayManager.m in Sources */,
  4879. 2779357C27E324A70010E277 /* NSString+MD5.m in Sources */,
  4880. 2779355D27E324A70010E277 /* KSHoldButton.m in Sources */,
  4881. 2723B62027F157D500E0B90B /* GroupNoticeCell.m in Sources */,
  4882. BC40BA0328117B0A00DEC0D1 /* HomeBannerCell.m in Sources */,
  4883. BCB6356327F6D2A300ACFDCF /* RoleChangedMessage.m in Sources */,
  4884. 277935A627E324A80010E277 /* MSSBrowseLocalViewController.m in Sources */,
  4885. BCB6348427F6D29600ACFDCF /* KSChatroomTextCell.m in Sources */,
  4886. BCB6347527F6D29600ACFDCF /* KSChatInputBarControl.m in Sources */,
  4887. 277935D227E324A90010E277 /* ALCalendarHelper.m in Sources */,
  4888. 2779353D27E324A60010E277 /* UIScrollView+KSTouch.m in Sources */,
  4889. BCB6353227F6D2A300ACFDCF /* InputView.m in Sources */,
  4890. 275FA23927E7356B00CFEA2E /* FirstSettingBodyView.m in Sources */,
  4891. BC7663172827E49900C91A1D /* NotiferMessageCell.m in Sources */,
  4892. BCB6346527F6D29600ACFDCF /* KSLiveChatroomLike.m in Sources */,
  4893. BCB6356927F6D2A300ACFDCF /* TurnPageMessage.m in Sources */,
  4894. 277935CA27E324A90010E277 /* TAAnimatedDotView.m in Sources */,
  4895. 2779353527E324A60010E277 /* NSObject+ReadDocument.m in Sources */,
  4896. BC40BA0E28117B3B00DEC0D1 /* TYCyclePagerTransformLayout.m in Sources */,
  4897. 277935C227E324A90010E277 /* QWdynamicModel.m in Sources */,
  4898. 2779357E27E324A80010E277 /* KSInputView.m in Sources */,
  4899. BCB6354927F6D2A300ACFDCF /* PersonListSectionView.m in Sources */,
  4900. 2723B63427F157D500E0B90B /* GroupApplyMemberCell.m in Sources */,
  4901. BCB6345D27F6D29600ACFDCF /* KSLiveChatroomWelcome.m in Sources */,
  4902. 2779352927E324A60010E277 /* zhPopupController.m in Sources */,
  4903. 2779359527E324A80010E277 /* TZVideoEditedPreviewController.m in Sources */,
  4904. 2723B63127F157D500E0B90B /* GroupSettingBodyView.m in Sources */,
  4905. BC119290280FB46100A716F7 /* KSVideoHelper.m in Sources */,
  4906. BCB6354827F6D2A300ACFDCF /* PersonListCell.m in Sources */,
  4907. BCB6354A27F6D2A300ACFDCF /* ToolPanelView.m in Sources */,
  4908. 2779358327E324A80010E277 /* LLPhotoBrowser.m in Sources */,
  4909. BCB6353B27F6D2A300ACFDCF /* MessageDataSource.m in Sources */,
  4910. 275FA23027E7356B00CFEA2E /* PasswordLoginController.m in Sources */,
  4911. 2779351327E324A50010E277 /* NSDictionary+KSSafe.m in Sources */,
  4912. BCB6355427F6D2A300ACFDCF /* UIView+MBProgressHUD.m in Sources */,
  4913. 2779352B27E324A60010E277 /* NSObject+Parse.m in Sources */,
  4914. 275FA23227E7356B00CFEA2E /* LoginViewController.m in Sources */,
  4915. BCB635A027F6D2AB00ACFDCF /* MainToolView.m in Sources */,
  4916. BCB6355127F6D2A300ACFDCF /* LoginHelper.m in Sources */,
  4917. 2723B5C127F157B100E0B90B /* ContractListCell.m in Sources */,
  4918. 275FA1E527E7351900CFEA2E /* KSAccompanyWebViewController.m in Sources */,
  4919. BC11923A280ED98E00A716F7 /* AccompanyCourseCell.m in Sources */,
  4920. BC119264280FA90100A716F7 /* HomeworkListModel.m in Sources */,
  4921. 2779354A27E324A60010E277 /* UIImage+Resize.m in Sources */,
  4922. 2723B5A327F1578300E0B90B /* KSChatListViewController.m in Sources */,
  4923. BC119271280FAF7D00A716F7 /* AccompanyCourseInfoCell.m in Sources */,
  4924. BC8C2C592823F57100FBA5D5 /* AddressListModel.m in Sources */,
  4925. 2779357527E324A70010E277 /* LifeButton.m in Sources */,
  4926. 27F9032C27E87C2E00C08A19 /* KSNetworkAlert.m in Sources */,
  4927. 2779353627E324A60010E277 /* CALayer+Layout.m in Sources */,
  4928. BC40BA1828124D3D00DEC0D1 /* NotiferMessageViewController.m in Sources */,
  4929. 275FA22D27E7356B00CFEA2E /* ChatViewController.m in Sources */,
  4930. BCB6354127F6D2A300ACFDCF /* VideoListCell.m in Sources */,
  4931. 2723B5A427F1578300E0B90B /* KSChatConversationViewController.m in Sources */,
  4932. 2723B62627F157D500E0B90B /* GroupApplyViewController.m in Sources */,
  4933. 277935C427E324A90010E277 /* SDCycleScrollView.m in Sources */,
  4934. BC119293280FBC1100A716F7 /* HomeworkAddView.m in Sources */,
  4935. 2723B61C27F157D500E0B90B /* KSRCSearchBar.m in Sources */,
  4936. 277935C627E324A90010E277 /* SDQWMaskCustomModel.m in Sources */,
  4937. BCB6353C27F6D2A300ACFDCF /* MessageHelper.m in Sources */,
  4938. BC8C2C582823F57100FBA5D5 /* AddressListViewController.m in Sources */,
  4939. 2779359E27E324A80010E277 /* TZPhotoPickerController.m in Sources */,
  4940. BCB6353D27F6D2A300ACFDCF /* MessageModel.m in Sources */,
  4941. 277935AA27E324A80010E277 /* MSSBrowseNetworkViewController.m in Sources */,
  4942. 2723B63627F157D500E0B90B /* GroupMemberListCell.m in Sources */,
  4943. 2723B62227F157D500E0B90B /* LFPopupMenu.m in Sources */,
  4944. BCB6348027F6D29600ACFDCF /* LiveSeatApplyView.m in Sources */,
  4945. 2779357F27E324A80010E277 /* KeyChainTools.m in Sources */,
  4946. 2723B61927F157D500E0B90B /* KSSearchResultModel.m in Sources */,
  4947. BCBFDF4B28115C6F0052AFE5 /* HomeHotCourseView.m in Sources */,
  4948. BC27A074280FF60B00F91E27 /* AccompanyDetailBottomView.m in Sources */,
  4949. 275FA1E327E7351900CFEA2E /* WeakWebViewScriptMessageDelegate.m in Sources */,
  4950. 2779351F27E324A60010E277 /* UITextView+ZWPlaceHolder.m in Sources */,
  4951. 2779353C27E324A60010E277 /* UIButton+Property.m in Sources */,
  4952. BCFE53FF2814E1BE00AD6786 /* HomeLiveGroupModel.m in Sources */,
  4953. 277935CC27E324A90010E277 /* SDQWMaskCustomView.m in Sources */,
  4954. BCB6354627F6D2A300ACFDCF /* UpgradeDidApplyView.m in Sources */,
  4955. 2779351727E324A60010E277 /* NSObject+KSSwizzling.m in Sources */,
  4956. 2779352C27E324A60010E277 /* UIView+AddConstraints.m in Sources */,
  4957. 277935C927E324A90010E277 /* TAPageControl.m in Sources */,
  4958. BCB635AD27F6E06500ACFDCF /* LiveRoomHeadView.m in Sources */,
  4959. 2723B5A527F1578300E0B90B /* ChatAddressViewController.m in Sources */,
  4960. 2723B66627F15CFC00E0B90B /* AboutUsBodyView.m in Sources */,
  4961. 277935BC27E324A90010E277 /* FSCalendarExtensions.m in Sources */,
  4962. 2779356227E324A70010E277 /* KSRecordPowerAnimationView.m in Sources */,
  4963. BCFE53FA28129A5600AD6786 /* TeacherStyleModel.m in Sources */,
  4964. 2779355527E324A70010E277 /* DiskFreeSpaceManager.m in Sources */,
  4965. 2779352E27E324A60010E277 /* NSDictionary+Extension.m in Sources */,
  4966. 2779355127E324A70010E277 /* VoCacheManager.m in Sources */,
  4967. 277935B527E324A90010E277 /* FSCalendarDelegationFactory.m in Sources */,
  4968. BCB6353927F6D2A300ACFDCF /* MessageCell.m in Sources */,
  4969. BCB6354027F6D2A300ACFDCF /* ClassroomTitleView.m in Sources */,
  4970. BC11921C280ED6A900A716F7 /* NewClassPopView.m in Sources */,
  4971. BC8C2C572823F57100FBA5D5 /* AddressDetailViewController.m in Sources */,
  4972. BCB6359627F6D2AB00ACFDCF /* LocalRenderManager.m in Sources */,
  4973. 2723B66927F15CFC00E0B90B /* PhoneChangeBodyView.m in Sources */,
  4974. 27F9033227E87C2E00C08A19 /* SettingViewController.m in Sources */,
  4975. );
  4976. runOnlyForDeploymentPostprocessing = 0;
  4977. };
  4978. 275E8ABC27E18F8C00DD3F6E /* Sources */ = {
  4979. isa = PBXSourcesBuildPhase;
  4980. buildActionMask = 2147483647;
  4981. files = (
  4982. 275E8AC527E18F8C00DD3F6E /* KulexiuForStudentTests.m in Sources */,
  4983. );
  4984. runOnlyForDeploymentPostprocessing = 0;
  4985. };
  4986. 275E8AC627E18F8C00DD3F6E /* Sources */ = {
  4987. isa = PBXSourcesBuildPhase;
  4988. buildActionMask = 2147483647;
  4989. files = (
  4990. 275E8AD127E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m in Sources */,
  4991. 275E8ACF27E18F8C00DD3F6E /* KulexiuForStudentUITests.m in Sources */,
  4992. );
  4993. runOnlyForDeploymentPostprocessing = 0;
  4994. };
  4995. /* End PBXSourcesBuildPhase section */
  4996. /* Begin PBXTargetDependency section */
  4997. 275E8AC227E18F8C00DD3F6E /* PBXTargetDependency */ = {
  4998. isa = PBXTargetDependency;
  4999. target = 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */;
  5000. targetProxy = 275E8AC127E18F8C00DD3F6E /* PBXContainerItemProxy */;
  5001. };
  5002. 275E8ACC27E18F8C00DD3F6E /* PBXTargetDependency */ = {
  5003. isa = PBXTargetDependency;
  5004. target = 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */;
  5005. targetProxy = 275E8ACB27E18F8C00DD3F6E /* PBXContainerItemProxy */;
  5006. };
  5007. /* End PBXTargetDependency section */
  5008. /* Begin PBXVariantGroup section */
  5009. 275E8AB127E18F8800DD3F6E /* Main.storyboard */ = {
  5010. isa = PBXVariantGroup;
  5011. children = (
  5012. 275E8AB227E18F8800DD3F6E /* Base */,
  5013. );
  5014. name = Main.storyboard;
  5015. sourceTree = "<group>";
  5016. };
  5017. 275E8AB627E18F8B00DD3F6E /* LaunchScreen.storyboard */ = {
  5018. isa = PBXVariantGroup;
  5019. children = (
  5020. 275E8AB727E18F8B00DD3F6E /* Base */,
  5021. );
  5022. name = LaunchScreen.storyboard;
  5023. sourceTree = "<group>";
  5024. };
  5025. BCB6348927F6D2A200ACFDCF /* SealClass.strings */ = {
  5026. isa = PBXVariantGroup;
  5027. children = (
  5028. BCB6348A27F6D2A200ACFDCF /* zh-Hans */,
  5029. BCB634E527F6D2A300ACFDCF /* en */,
  5030. );
  5031. name = SealClass.strings;
  5032. sourceTree = "<group>";
  5033. };
  5034. /* End PBXVariantGroup section */
  5035. /* Begin XCBuildConfiguration section */
  5036. 275E8AD227E18F8C00DD3F6E /* Debug */ = {
  5037. isa = XCBuildConfiguration;
  5038. buildSettings = {
  5039. ALWAYS_SEARCH_USER_PATHS = NO;
  5040. CLANG_ANALYZER_NONNULL = YES;
  5041. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  5042. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  5043. CLANG_CXX_LIBRARY = "libc++";
  5044. CLANG_ENABLE_MODULES = YES;
  5045. CLANG_ENABLE_OBJC_ARC = YES;
  5046. CLANG_ENABLE_OBJC_WEAK = YES;
  5047. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  5048. CLANG_WARN_BOOL_CONVERSION = YES;
  5049. CLANG_WARN_COMMA = YES;
  5050. CLANG_WARN_CONSTANT_CONVERSION = YES;
  5051. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  5052. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  5053. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  5054. CLANG_WARN_EMPTY_BODY = YES;
  5055. CLANG_WARN_ENUM_CONVERSION = YES;
  5056. CLANG_WARN_INFINITE_RECURSION = YES;
  5057. CLANG_WARN_INT_CONVERSION = YES;
  5058. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  5059. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  5060. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  5061. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  5062. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  5063. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  5064. CLANG_WARN_STRICT_PROTOTYPES = YES;
  5065. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  5066. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  5067. CLANG_WARN_UNREACHABLE_CODE = YES;
  5068. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  5069. COPY_PHASE_STRIP = NO;
  5070. DEBUG_INFORMATION_FORMAT = dwarf;
  5071. ENABLE_STRICT_OBJC_MSGSEND = YES;
  5072. ENABLE_TESTABILITY = YES;
  5073. GCC_C_LANGUAGE_STANDARD = gnu11;
  5074. GCC_DYNAMIC_NO_PIC = NO;
  5075. GCC_NO_COMMON_BLOCKS = YES;
  5076. GCC_OPTIMIZATION_LEVEL = 0;
  5077. GCC_PREPROCESSOR_DEFINITIONS = (
  5078. "DEBUG=1",
  5079. "$(inherited)",
  5080. );
  5081. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  5082. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  5083. GCC_WARN_UNDECLARED_SELECTOR = YES;
  5084. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  5085. GCC_WARN_UNUSED_FUNCTION = YES;
  5086. GCC_WARN_UNUSED_VARIABLE = YES;
  5087. IPHONEOS_DEPLOYMENT_TARGET = 15.2;
  5088. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  5089. MTL_FAST_MATH = YES;
  5090. ONLY_ACTIVE_ARCH = YES;
  5091. SDKROOT = iphoneos;
  5092. };
  5093. name = Debug;
  5094. };
  5095. 275E8AD327E18F8C00DD3F6E /* Release */ = {
  5096. isa = XCBuildConfiguration;
  5097. buildSettings = {
  5098. ALWAYS_SEARCH_USER_PATHS = NO;
  5099. CLANG_ANALYZER_NONNULL = YES;
  5100. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  5101. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  5102. CLANG_CXX_LIBRARY = "libc++";
  5103. CLANG_ENABLE_MODULES = YES;
  5104. CLANG_ENABLE_OBJC_ARC = YES;
  5105. CLANG_ENABLE_OBJC_WEAK = YES;
  5106. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  5107. CLANG_WARN_BOOL_CONVERSION = YES;
  5108. CLANG_WARN_COMMA = YES;
  5109. CLANG_WARN_CONSTANT_CONVERSION = YES;
  5110. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  5111. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  5112. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  5113. CLANG_WARN_EMPTY_BODY = YES;
  5114. CLANG_WARN_ENUM_CONVERSION = YES;
  5115. CLANG_WARN_INFINITE_RECURSION = YES;
  5116. CLANG_WARN_INT_CONVERSION = YES;
  5117. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  5118. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  5119. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  5120. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  5121. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  5122. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  5123. CLANG_WARN_STRICT_PROTOTYPES = YES;
  5124. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  5125. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  5126. CLANG_WARN_UNREACHABLE_CODE = YES;
  5127. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  5128. COPY_PHASE_STRIP = NO;
  5129. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  5130. ENABLE_NS_ASSERTIONS = NO;
  5131. ENABLE_STRICT_OBJC_MSGSEND = YES;
  5132. GCC_C_LANGUAGE_STANDARD = gnu11;
  5133. GCC_NO_COMMON_BLOCKS = YES;
  5134. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  5135. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  5136. GCC_WARN_UNDECLARED_SELECTOR = YES;
  5137. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  5138. GCC_WARN_UNUSED_FUNCTION = YES;
  5139. GCC_WARN_UNUSED_VARIABLE = YES;
  5140. IPHONEOS_DEPLOYMENT_TARGET = 15.2;
  5141. MTL_ENABLE_DEBUG_INFO = NO;
  5142. MTL_FAST_MATH = YES;
  5143. SDKROOT = iphoneos;
  5144. VALIDATE_PRODUCT = YES;
  5145. };
  5146. name = Release;
  5147. };
  5148. 275E8AD527E18F8C00DD3F6E /* Debug */ = {
  5149. isa = XCBuildConfiguration;
  5150. baseConfigurationReference = 63DC852CB04F64963003C553 /* Pods-KulexiuForStudent.debug.xcconfig */;
  5151. buildSettings = {
  5152. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  5153. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  5154. CODE_SIGN_STYLE = Automatic;
  5155. CURRENT_PROJECT_VERSION = 1.0.0;
  5156. DEVELOPMENT_TEAM = B2AP53HHTU;
  5157. ENABLE_BITCODE = NO;
  5158. GCC_PREFIX_HEADER = "$(SRCROOT)/KulexiuForStudent/Common/Define/PrefixHeader.pch";
  5159. GENERATE_INFOPLIST_FILE = YES;
  5160. INFOPLIST_FILE = KulexiuForStudent/Info.plist;
  5161. INFOPLIST_KEY_CFBundleDisplayName = "酷乐秀学生端";
  5162. INFOPLIST_KEY_NSAppleMusicUsageDescription = "App需要您的同意访问媒体资料库权限,用于播放媒体服务";
  5163. INFOPLIST_KEY_NSCameraUsageDescription = "APP需要您的同意,访问您的相机,以便您正常使用上传图片、视频课程等服务";
  5164. INFOPLIST_KEY_NSMicrophoneUsageDescription = "App需要您的同意访问麦克风权限,用于您的语音服务、视频教学";
  5165. INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
  5166. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
  5167. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  5168. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  5169. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  5170. INFOPLIST_KEY_UIRequiresFullScreen = YES;
  5171. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  5172. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  5173. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  5174. INFOPLIST_KEY_UIUserInterfaceStyle = Light;
  5175. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  5176. LD_RUNPATH_SEARCH_PATHS = (
  5177. "$(inherited)",
  5178. "@executable_path/Frameworks",
  5179. );
  5180. MARKETING_VERSION = 1.0.0;
  5181. PRODUCT_BUNDLE_IDENTIFIER = com.Colexiu.KulexiuForStudent;
  5182. PRODUCT_NAME = "$(TARGET_NAME)";
  5183. SWIFT_EMIT_LOC_STRINGS = YES;
  5184. TARGETED_DEVICE_FAMILY = "1,2";
  5185. };
  5186. name = Debug;
  5187. };
  5188. 275E8AD627E18F8C00DD3F6E /* Release */ = {
  5189. isa = XCBuildConfiguration;
  5190. baseConfigurationReference = 267E3608F0FE8D4A55A1D46F /* Pods-KulexiuForStudent.release.xcconfig */;
  5191. buildSettings = {
  5192. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  5193. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  5194. CODE_SIGN_STYLE = Automatic;
  5195. CURRENT_PROJECT_VERSION = 1.0.0;
  5196. DEVELOPMENT_TEAM = B2AP53HHTU;
  5197. ENABLE_BITCODE = NO;
  5198. GCC_PREFIX_HEADER = "$(SRCROOT)/KulexiuForStudent/Common/Define/PrefixHeader.pch";
  5199. GENERATE_INFOPLIST_FILE = YES;
  5200. INFOPLIST_FILE = KulexiuForStudent/Info.plist;
  5201. INFOPLIST_KEY_CFBundleDisplayName = "酷乐秀学生端";
  5202. INFOPLIST_KEY_NSAppleMusicUsageDescription = "App需要您的同意访问媒体资料库权限,用于播放媒体服务";
  5203. INFOPLIST_KEY_NSCameraUsageDescription = "APP需要您的同意,访问您的相机,以便您正常使用上传图片、视频课程等服务";
  5204. INFOPLIST_KEY_NSMicrophoneUsageDescription = "App需要您的同意访问麦克风权限,用于您的语音服务、视频教学";
  5205. INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
  5206. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
  5207. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  5208. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  5209. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  5210. INFOPLIST_KEY_UIRequiresFullScreen = YES;
  5211. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  5212. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  5213. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  5214. INFOPLIST_KEY_UIUserInterfaceStyle = Light;
  5215. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  5216. LD_RUNPATH_SEARCH_PATHS = (
  5217. "$(inherited)",
  5218. "@executable_path/Frameworks",
  5219. );
  5220. MARKETING_VERSION = 1.0.0;
  5221. PRODUCT_BUNDLE_IDENTIFIER = com.Colexiu.KulexiuForStudent;
  5222. PRODUCT_NAME = "$(TARGET_NAME)";
  5223. SWIFT_EMIT_LOC_STRINGS = YES;
  5224. TARGETED_DEVICE_FAMILY = "1,2";
  5225. };
  5226. name = Release;
  5227. };
  5228. 275E8AD827E18F8C00DD3F6E /* Debug */ = {
  5229. isa = XCBuildConfiguration;
  5230. baseConfigurationReference = 25A92766B52F3FB4AFA45A9B /* Pods-KulexiuForStudentTests.debug.xcconfig */;
  5231. buildSettings = {
  5232. BUNDLE_LOADER = "$(TEST_HOST)";
  5233. CODE_SIGN_STYLE = Automatic;
  5234. CURRENT_PROJECT_VERSION = 1;
  5235. DEVELOPMENT_TEAM = P664H7S5LL;
  5236. GENERATE_INFOPLIST_FILE = YES;
  5237. IPHONEOS_DEPLOYMENT_TARGET = 15.2;
  5238. MARKETING_VERSION = 1.0;
  5239. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentTests;
  5240. PRODUCT_NAME = "$(TARGET_NAME)";
  5241. SWIFT_EMIT_LOC_STRINGS = NO;
  5242. TARGETED_DEVICE_FAMILY = "1,2";
  5243. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KulexiuForStudent.app/KulexiuForStudent";
  5244. };
  5245. name = Debug;
  5246. };
  5247. 275E8AD927E18F8C00DD3F6E /* Release */ = {
  5248. isa = XCBuildConfiguration;
  5249. baseConfigurationReference = ED3E62A50E433BC13E633D1C /* Pods-KulexiuForStudentTests.release.xcconfig */;
  5250. buildSettings = {
  5251. BUNDLE_LOADER = "$(TEST_HOST)";
  5252. CODE_SIGN_STYLE = Automatic;
  5253. CURRENT_PROJECT_VERSION = 1;
  5254. DEVELOPMENT_TEAM = P664H7S5LL;
  5255. GENERATE_INFOPLIST_FILE = YES;
  5256. IPHONEOS_DEPLOYMENT_TARGET = 15.2;
  5257. MARKETING_VERSION = 1.0;
  5258. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentTests;
  5259. PRODUCT_NAME = "$(TARGET_NAME)";
  5260. SWIFT_EMIT_LOC_STRINGS = NO;
  5261. TARGETED_DEVICE_FAMILY = "1,2";
  5262. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KulexiuForStudent.app/KulexiuForStudent";
  5263. };
  5264. name = Release;
  5265. };
  5266. 275E8ADB27E18F8C00DD3F6E /* Debug */ = {
  5267. isa = XCBuildConfiguration;
  5268. baseConfigurationReference = 04AE318E8988C2AC148D551B /* Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig */;
  5269. buildSettings = {
  5270. CODE_SIGN_STYLE = Automatic;
  5271. CURRENT_PROJECT_VERSION = 1;
  5272. DEVELOPMENT_TEAM = P664H7S5LL;
  5273. GENERATE_INFOPLIST_FILE = YES;
  5274. MARKETING_VERSION = 1.0;
  5275. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentUITests;
  5276. PRODUCT_NAME = "$(TARGET_NAME)";
  5277. SWIFT_EMIT_LOC_STRINGS = NO;
  5278. TARGETED_DEVICE_FAMILY = "1,2";
  5279. TEST_TARGET_NAME = KulexiuForStudent;
  5280. };
  5281. name = Debug;
  5282. };
  5283. 275E8ADC27E18F8C00DD3F6E /* Release */ = {
  5284. isa = XCBuildConfiguration;
  5285. baseConfigurationReference = D5D730A1D1EC18E5028F1AD7 /* Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig */;
  5286. buildSettings = {
  5287. CODE_SIGN_STYLE = Automatic;
  5288. CURRENT_PROJECT_VERSION = 1;
  5289. DEVELOPMENT_TEAM = P664H7S5LL;
  5290. GENERATE_INFOPLIST_FILE = YES;
  5291. MARKETING_VERSION = 1.0;
  5292. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentUITests;
  5293. PRODUCT_NAME = "$(TARGET_NAME)";
  5294. SWIFT_EMIT_LOC_STRINGS = NO;
  5295. TARGETED_DEVICE_FAMILY = "1,2";
  5296. TEST_TARGET_NAME = KulexiuForStudent;
  5297. };
  5298. name = Release;
  5299. };
  5300. /* End XCBuildConfiguration section */
  5301. /* Begin XCConfigurationList section */
  5302. 275E8AA027E18F8800DD3F6E /* Build configuration list for PBXProject "KulexiuForStudent" */ = {
  5303. isa = XCConfigurationList;
  5304. buildConfigurations = (
  5305. 275E8AD227E18F8C00DD3F6E /* Debug */,
  5306. 275E8AD327E18F8C00DD3F6E /* Release */,
  5307. );
  5308. defaultConfigurationIsVisible = 0;
  5309. defaultConfigurationName = Release;
  5310. };
  5311. 275E8AD427E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudent" */ = {
  5312. isa = XCConfigurationList;
  5313. buildConfigurations = (
  5314. 275E8AD527E18F8C00DD3F6E /* Debug */,
  5315. 275E8AD627E18F8C00DD3F6E /* Release */,
  5316. );
  5317. defaultConfigurationIsVisible = 0;
  5318. defaultConfigurationName = Release;
  5319. };
  5320. 275E8AD727E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentTests" */ = {
  5321. isa = XCConfigurationList;
  5322. buildConfigurations = (
  5323. 275E8AD827E18F8C00DD3F6E /* Debug */,
  5324. 275E8AD927E18F8C00DD3F6E /* Release */,
  5325. );
  5326. defaultConfigurationIsVisible = 0;
  5327. defaultConfigurationName = Release;
  5328. };
  5329. 275E8ADA27E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentUITests" */ = {
  5330. isa = XCConfigurationList;
  5331. buildConfigurations = (
  5332. 275E8ADB27E18F8C00DD3F6E /* Debug */,
  5333. 275E8ADC27E18F8C00DD3F6E /* Release */,
  5334. );
  5335. defaultConfigurationIsVisible = 0;
  5336. defaultConfigurationName = Release;
  5337. };
  5338. /* End XCConfigurationList section */
  5339. };
  5340. rootObject = 275E8A9D27E18F8800DD3F6E /* Project object */;
  5341. }