project.pbxproj 156 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 77;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 00789924F6FF8825AF75A2776BFA015F /* ISO8601DateTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B9E43616969CF091B8EAEA030651E2B /* ISO8601DateTransform.swift */; };
  10. 00F303D1B7EE883D937E3FF3D46F6751 /* SweeterSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CEBDDD2AC11C3F4B5C01882118F8CC3A /* SweeterSwift-dummy.m */; };
  11. 027DD49F720E982B354F66D30F851384 /* Pods-Girly-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E104EDF50951A365BC68EB44FACE417D /* Pods-Girly-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  12. 0481F9824059F400F094445B6CE1F07A /* DictionaryTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0B94ECB03CE102762B92FFEFD04829 /* DictionaryTransform.swift */; };
  13. 05FAB8E9C8630A7497AEE3F7C015FC6C /* MultiSlider+Drag.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCAD0E73F97BFBDFF39A70A58F0C7D69 /* MultiSlider+Drag.swift */; };
  14. 064D909CD827405E8DCC309DB1B7775A /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8915583C29362F908390117555A9AA6E /* ConstraintLayoutSupportDSL.swift */; };
  15. 0678F4CA87771C7D60C953A1382CAA62 /* JXSegmentedTitleOrImageItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CD3F2FA2164F05A1B492FC74F86BEE7 /* JXSegmentedTitleOrImageItemModel.swift */; };
  16. 07C6F286A432003A8E4E62751791ABFD /* NSObject+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B132FF2105EA46AA4CB593D82223EE9 /* NSObject+Sweeter.swift */; };
  17. 09E1F569A93FAD4B9149E30B9301F44A /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92B8265BC110DCE0AB9868CE2DE9FA2B /* ConstraintPriority.swift */; };
  18. 0BD80D0BA5C72ACE2C5D5E18F1E7C517 /* DateFormatterTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = B891CA1625560029F09A8EFD6EB4CB70 /* DateFormatterTransform.swift */; };
  19. 0C3D4291FFBED980F69CD5821279D442 /* JXSegmentedIndicatorGradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB18D52EE801F674C9BBDB544A495C0C /* JXSegmentedIndicatorGradientView.swift */; };
  20. 0C7B16CDEE141EFEA69F6C24EFD24538 /* JXSegmentedRTLLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2265C7EB9E68C496339AF1F4DE25B23 /* JXSegmentedRTLLayout.swift */; };
  21. 0CA7A132ABE7018DE9295456732F38BB /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2749227FFC87007A92B9DF6E8E1B3A96 /* ConstraintAttributes.swift */; };
  22. 0D6E4D906F5C8B3D578A298D338D44C7 /* JXSegmentedTitleGradientDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7180317C66E40B3E18B9BEA7C8752360 /* JXSegmentedTitleGradientDataSource.swift */; };
  23. 0D87FF9E258696356595973B18266E08 /* SweeterSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD554367984B3DD8E6B71ACF83E51AE /* SweeterSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  24. 0DCDB655B15E900159FFD67406EB7A78 /* JXSegmentedNumberCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFB5970CF4B2F3150B93D62D4860F0B9 /* JXSegmentedNumberCell.swift */; };
  25. 0DE5DB9C6227B3416778D8417DD95EA9 /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEE81AAB9460CE10287ADFD04E30427E /* ConstraintView+Extensions.swift */; };
  26. 0F1CCF0B90DF2D891E1D657D49EC1FD4 /* JXSegmentedTitleCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AABEF8D8977248E0BCA0C156843438AA /* JXSegmentedTitleCell.swift */; };
  27. 1194E62AA3F6F506799B1A43B16942B5 /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = A78ABE0889EC8BE6EB36997A6A9BDB9E /* ConstraintDirectionalInsets.swift */; };
  28. 11AC94DCADE2CADC9C2D331B98AA4963 /* JXSegmentedIndicatorParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C26BC92A8DC8F82E576C1C32536233E /* JXSegmentedIndicatorParams.swift */; };
  29. 1A914AD9784F06CB2631B5CBB439F88B /* Swift+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = D18B6BBD184AE42FDC5B890EBE0173D4 /* Swift+Sweeter.swift */; };
  30. 205EB01AED14BB574DD54EAFE26E4786 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8193349D819536E58C58A34C1B7DF545 /* Foundation.framework */; };
  31. 222EAE33ACDDFF53C2FC19E98D74A6AD /* JXSegmentedTitleGradientCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74B3F726C3215EAA9FF7C69A07709290 /* JXSegmentedTitleGradientCell.swift */; };
  32. 251EB5FED3574E10FC76C94F7E9FD14F /* UIViewController+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A8ACC6CDEBAA9C9E0ED0FEE4EF30A7B /* UIViewController+Sweeter.swift */; };
  33. 25C1426AFBA71FEE8A0BF53E7D633B9C /* NSAttributedString+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2D91FE3939C5CF6283D16A5CBEDBC93 /* NSAttributedString+Sweeter.swift */; };
  34. 27230EFC10AA5FC0FE07DFB363946087 /* JXSegmentedTitleImageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17A565823726EBAC66053ED2C8C5276E /* JXSegmentedTitleImageCell.swift */; };
  35. 28CEE0F0205DF80E8B22E427DD4E4727 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8193349D819536E58C58A34C1B7DF545 /* Foundation.framework */; };
  36. 2A237443D406994249E968E4BB559202 /* JXSegmentedView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C78AD240282CAE09A210FF7914E147D /* JXSegmentedView.swift */; };
  37. 2AFC6BFB9945369533025001D593B35D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 71DA5149C266D102DF66AAD598E34D16 /* PrivacyInfo.xcprivacy */; };
  38. 2B2EB369550CE92CEEFCBFD3D32B8A3F /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1A0240A9D619540AEC3330F24471B09 /* ConstraintInsetTarget.swift */; };
  39. 2BD8CCE452C2AF97FCCE232BDE29411F /* JXSegmentedTitleImageItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3C8B638B1EE89BC05156868E766F7C7 /* JXSegmentedTitleImageItemModel.swift */; };
  40. 2CC335A4FA15A2B3254109561D8D3B52 /* CustomDateFormatTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17E1239B03C9CA8B0D48FEFDB55C5824 /* CustomDateFormatTransform.swift */; };
  41. 2E03028C0560B11777FC25B9871807D1 /* JXSegmentedTitleAttributeDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 728BDCC28C4461BB2317BE28AAEA2F38 /* JXSegmentedTitleAttributeDataSource.swift */; };
  42. 30467B74ECC7B5AEBCB76D4FA19B7A1C /* MultiSlider+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7A8850BF121BA8F4C80C53BECE997E8 /* MultiSlider+Internal.swift */; };
  43. 3051B194B166E36A3564CA607EBD7589 /* Mapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08BCABB869E6E64BA6EF8F9170767FDD /* Mapper.swift */; };
  44. 330D3854DF35A2FC19261DA8F54B2E69 /* JXSegmentedTitleItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B4FB8C8798EC6A7FFC4590DBD96D08F /* JXSegmentedTitleItemModel.swift */; };
  45. 34E3A0CEF1DF0EF6C3F747CB73B711A2 /* ObjectMapper-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C4DD206B4B9BCAF74ACBA904D9A0A28C /* ObjectMapper-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  46. 3577F172FA68CBAE47CFEE6FE25C5404 /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A768C99BFBA30AA615B5F63CE00903D /* ConstraintOffsetTarget.swift */; };
  47. 39E0E6446BA7506FD60899B82736AA3B /* DateTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 321328AA6AFF8B7E90C4410743B86A3E /* DateTransform.swift */; };
  48. 3D3B646B4988314275B40E97BEB16C7F /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0051FA3E207532C5B076A6A1DDED126B /* ConstraintLayoutGuideDSL.swift */; };
  49. 3EF14854F58A20B60C9C3C9003534182 /* JXSegmentedView-JXSegmentedView in Resources */ = {isa = PBXBuildFile; fileRef = 92B0EC788EDA1B0CFA48DFFCB3DDAECD /* JXSegmentedView-JXSegmentedView */; };
  50. 3F9E6C98A37123E80F50E56DDF577190 /* JXSegmentedIndicatorDoubleLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 120F73D7D7BEBF74675E603F9F4DB753 /* JXSegmentedIndicatorDoubleLineView.swift */; };
  51. 41BCB79DE4BF4EE99C9E59954F078499 /* UIView+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C339B9A8179E9DF604A76F882D4AC42D /* UIView+Sweeter.swift */; };
  52. 41BEFFED77DA27933D41C82B31545CF4 /* UIStackView+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C26A8E48462A3162D267FC6C4B53740 /* UIStackView+Sweeter.swift */; };
  53. 424435B35F2591B77429269BDAFEB077 /* HexColorTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 369B5C69A80A787A5AB76416CD4A6893 /* HexColorTransform.swift */; };
  54. 46A62F64134B8BEC9357A9F27120EA4B /* JXSegmentedTitleImageDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01CBD3BF615CBE74850DEFF150057CDA /* JXSegmentedTitleImageDataSource.swift */; };
  55. 49C716C6147121E3C330CA62CBF1A60C /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF4CA3AF5536D14B4E015504E7AEEC0 /* UIKit.framework */; };
  56. 4AA4BF9223F81025C2082D7218D0E8CC /* JXSegmentedTitleOrImageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB1C8316E1380BAA7BF5F4FE8B16CFA5 /* JXSegmentedTitleOrImageCell.swift */; };
  57. 4B0671BA26F3F76A17DCC7BF7D233FC2 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = EF7FD22B5171283B0AF3E65A5D6E4F52 /* PrivacyInfo.xcprivacy */; };
  58. 4F4DEB687C0E4834A5B291DEE0651D6A /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61C12767C7FC36F1904D85DEC8F97CD7 /* ConstraintMaker.swift */; };
  59. 4FC485A749A8AD5CB5135B86A7422103 /* IntegerOperators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00B795FDF7B5F17C78FCEABDAFBB8B9D /* IntegerOperators.swift */; };
  60. 517F7F319A053766D1CE3C3E7A57EB7A /* EnumOperators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 608CDDC17AE3ED25A85D23D02DFB35F8 /* EnumOperators.swift */; };
  61. 52C31B51A0320B4839B7994FA836CD58 /* MultiSlider-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EDFF7257C1EEBAC9E93E5317E5ED112A /* MultiSlider-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  62. 57C4F6EFB30DDD14E960AC2D6B34F904 /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BE950011E25B46C6B9175AAC19C6392 /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  63. 5922A6A0AE7152CF436356B3556F1835 /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D6AC1E550AAC3DD9798023D6B67D7F0 /* ConstraintItem.swift */; };
  64. 59F34874DA4ABB2F5C4E09EA6865936B /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB588E9AF8D98DDE72B881193A02805F /* ConstraintLayoutGuide.swift */; };
  65. 5B8EEB396F66172C10168511A111BAEA /* ImmutableMappable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F7EF9C3A28911812945B3B3C4F43AE1 /* ImmutableMappable.swift */; };
  66. 601F084CBEBFF38C14BA09E1C1082207 /* JXSegmentedDotCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D5B403452A244146DC51C3C0705B43C /* JXSegmentedDotCell.swift */; };
  67. 61D98B283CE925046B10319E0084EB47 /* CodableTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A99B468B8F3C198F13D0DE16B1B6181 /* CodableTransform.swift */; };
  68. 61DE4818AB0F6C757778533681BB5BC4 /* JXSegmentedIndicatorBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0A52F943AC9351D70AD37E9AEC4941B /* JXSegmentedIndicatorBaseView.swift */; };
  69. 61F776DB3F7F5CF9E0E9CB6369A5199D /* JXSegmentedListContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7952C41D89417690BE3163FAC15F435E /* JXSegmentedListContainerView.swift */; };
  70. 648BC3EE05C40C21DB88F8EA34E53AD0 /* MultiSlider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04FFFF99310F35B06D5961FB79F833F1 /* MultiSlider.swift */; };
  71. 65EF07407E181D94AB988B67700ECFE6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8193349D819536E58C58A34C1B7DF545 /* Foundation.framework */; };
  72. 6B5857C07676DAFEE8AE9B46191AF1AB /* JXSegmentedIndicatorGradientLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3A891E2FD4A90E966F89C2693A7F3AD /* JXSegmentedIndicatorGradientLineView.swift */; };
  73. 6CFD2C922D038DFAE3E29E6D36862B7F /* JXSegmentedBaseDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C599F6063E75D9FDF9017EA05A43F90 /* JXSegmentedBaseDataSource.swift */; };
  74. 6E39129FC8643A70C276801FEF4C280D /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73A916D957E322B5988646544E02DA99 /* Constraint.swift */; };
  75. 6EB8DB7E0B46D8D212C632E7F18F45D0 /* EnumTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FF9B181D3E2BCA5F77940538A1579F1 /* EnumTransform.swift */; };
  76. 710781457AE12DFD9703A458938BD533 /* MultiSlider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D3C94498FE47D83BEBCD541EE22A9825 /* MultiSlider-dummy.m */; };
  77. 71F8FB5FC21EE6B050994DDA89D3B84C /* TimeInterval+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2CC7C1A6A6AFC533998E8F751C19E4B /* TimeInterval+Sweeter.swift */; };
  78. 725C8D005DEAD6CCFBD8DA10DFA23B62 /* Codable+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 824BC5AB55C64C1CD3C028A29A03DDEB /* Codable+Sweeter.swift */; };
  79. 783262E743611A588DA9286744DB1D38 /* JXSegmentedBaseItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 874C3DCF1E6ECCF184D009E1316F5184 /* JXSegmentedBaseItemModel.swift */; };
  80. 78AC491AFAC74EEE8DF62D7F3452B8E1 /* JXSegmentedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 80552235702712B382060FE6C0E22CDA /* JXSegmentedView-dummy.m */; };
  81. 7A1BBDF678D2D1606BC8A753EC2502B0 /* MultiSlider-MultiSlider in Resources */ = {isa = PBXBuildFile; fileRef = 3C410141B888875A25CE8F08150214A8 /* MultiSlider-MultiSlider */; };
  82. 7A9660A2AC386E514B68FED341D6FA1F /* Bundle+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 325E37C08F5694EEEFFA1D7AB13B8813 /* Bundle+Sweeter.swift */; };
  83. 7AF516B98D45391B909D507D0244104C /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACE1E64ADF99C45F16512AEE318D453D /* ConstraintDescription.swift */; };
  84. 7C49C4A9FD1A334538FEF005C51DAF14 /* JXSegmentedNumberItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = FED250F576AC89128F0E664296E25A57 /* JXSegmentedNumberItemModel.swift */; };
  85. 7C5679B6B27E7454F3757D1D33080DEB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8193349D819536E58C58A34C1B7DF545 /* Foundation.framework */; };
  86. 7D42390CDB4FA147504B03DA2A174A0C /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EC35B562316844F2EE562A3537E2A7C /* ConstraintViewDSL.swift */; };
  87. 815106CC8EF9E34D79F7A219488072F9 /* JXSegmentedTitleDynamicConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60686257B458CFDAF0143E4B810242FC /* JXSegmentedTitleDynamicConfiguration.swift */; };
  88. 81DB630DB3E52718A2CC5F800289C971 /* JXSegmentedIndicatorRainbowLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C365FF21DE3EA77486BB299FA789724 /* JXSegmentedIndicatorRainbowLineView.swift */; };
  89. 868A9F524A7985BDA1EA124D9BF4CA63 /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 394E7BE0176DD68DBECA5E11866A1419 /* ConstraintDSL.swift */; };
  90. 86CAB01D950C8BC35EDE0BDC01A2500B /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3E2FDD2FD4D082D2697AAC0BBF386E5 /* ConstraintView.swift */; };
  91. 8735681165459DE3704F09E8C4C82245 /* JXSegmentedComponetGradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A269E0CD4C8D737290AECF4558EF1FAB /* JXSegmentedComponetGradientView.swift */; };
  92. 883EDEE1C699497CF2A77C3B8A32A790 /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D9C3BFC1A5C1753E5DE357B638248B7 /* ConstraintMultiplierTarget.swift */; };
  93. 892E8359C2C6A1F243CE0F899942AB75 /* JXSegmentedDotItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 867DB6EE9A329C387AD4DF1B84C7F0CE /* JXSegmentedDotItemModel.swift */; };
  94. 89C097742A83F6E028352697CB82F735 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 62A5DEC2F8FAAB313A58A31E5C45F162 /* PrivacyInfo.xcprivacy */; };
  95. 8BABA32F7B94A25D8E9208C0A8D90B2E /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C976FF8F929339BCCF7FB189DBFC4776 /* ConstraintMakerRelatable+Extensions.swift */; };
  96. 8E2704A6AF675A59F00B43A82F3BCE43 /* ObjectMapper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5BF1AC4D3E75DD034ED27B1BC83F919 /* ObjectMapper-dummy.m */; };
  97. 90312430AF84DF8634BBA3ECD3384F3F /* ToJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AB98023389F41F8AC302E58CB2F32EB /* ToJSON.swift */; };
  98. 916DAAFC342684DFC731E12718C5C533 /* Pods-Girly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DDB92C1B29CE39AAA07E91953CB9407B /* Pods-Girly-dummy.m */; };
  99. 951EF9AF7676766D0DBF9602F2B197DC /* Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C1A8CD9178ACE6DB8E9DC873560C83F /* Operators.swift */; };
  100. 98F24E0FC1F618E1103FBCE89E95EF59 /* JXSegmentedTitleDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC22AE67EBFC782707B53E5CCD272B5 /* JXSegmentedTitleDataSource.swift */; };
  101. 9ADA956CC6DF9FCAF5C3F85A4F118CB1 /* JXSegmentedTitleGradientItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C00EC5D064581E86BE92DC47F48BB99 /* JXSegmentedTitleGradientItemModel.swift */; };
  102. 9DDE681FBFDFD2A1D6D4EA6B57126E3D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8193349D819536E58C58A34C1B7DF545 /* Foundation.framework */; };
  103. 9E0045B41BFE697DB4ADE151228024D2 /* SnapKit-SnapKit_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = B9DCB5EC0B1CDADD221717CADDF62359 /* SnapKit-SnapKit_Privacy */; };
  104. A251EE3CE93F32A54196F35C23756357 /* MapError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 471A62EA77B7F46662A595625DA4B721 /* MapError.swift */; };
  105. A6358AB95E6B0F141B3998BE7FAA1DF3 /* JXSegmentedIndicatorBackgroundView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAF3C6BE0E819C9626E44B677CDD37B5 /* JXSegmentedIndicatorBackgroundView.swift */; };
  106. A711E018ED010EF95310EF85E64F92FC /* NSManagedObjectContext+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EEC61AC542382A1D22527845A93CFD4 /* NSManagedObjectContext+Sweeter.swift */; };
  107. AABEF13464BA7F4621BD94736C1D057C /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C543D8429E7621A67A2F7D4ACF9EF3D /* ConstraintMakerPrioritizable.swift */; };
  108. AC98848B2D4026203A9D3453FC33C410 /* JXSegmentedCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94132F3FC9935CAC1CE922AC36DA6329 /* JXSegmentedCollectionView.swift */; };
  109. ADF83838AC040A73E171759F6EAAF9B0 /* String+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20C97EA71771377A0AFD80807DEFE488 /* String+Sweeter.swift */; };
  110. AE224EDB6D044C0FE86B086E950FC2F9 /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49428A3FC82FB0A9EE6F186F5A860583 /* Debugging.swift */; };
  111. AF760C78F1C7E11BF7CB9E9B29903530 /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = D88BCDCDA914B95E90496FD2792D451A /* ConstraintInsets.swift */; };
  112. B0875E3AB8718E7DFE5C53497C02A15E /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = F99833D2FC35B9C9D9CF1DD838CC10DA /* ConstraintLayoutSupport.swift */; };
  113. B29BC196744CCC2D226A5227CE616D5E /* FromJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70FACEBCDA588C0DE1B3A8CD0EB33DAE /* FromJSON.swift */; };
  114. B903049E7C1BED7918DAB208754107C7 /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4073F0A0A2F66A8C5CAB3AE6114FCAD1 /* ConstraintMakerFinalizable.swift */; };
  115. BA2FB695DEB0D179253EEB8DFCE3578B /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DB3A27D898C99E20B068DE8458DFDD2 /* SnapKit-dummy.m */; };
  116. BA752519BCD88C11B808DF90F27BF1CC /* JXSegmentedView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A2FF0444E6116FF15A8D71D63CA9B1E4 /* JXSegmentedView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  117. BA80829B0241C0C623AE5CA7B5290579 /* JXSegmentedNumberDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 302DFC84BA01A634B2CAF76A881D4A7C /* JXSegmentedNumberDataSource.swift */; };
  118. BC9E49CD2401E8EC7F0FBB1B2496C4F9 /* JXSegmentedViewTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76854D7F9BEABE6BDA44ACA3E57434FD /* JXSegmentedViewTool.swift */; };
  119. BDA5C7CC91E86448237CF40954FAC5AF /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C71913495B407B550A7D4D7BDDEBEDFC /* ConstraintMakerRelatable.swift */; };
  120. BF1AE4D97E813B95C43EA4A298B973D1 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 917BCBF5DEC38964769C433F275F4A56 /* LayoutConstraint.swift */; };
  121. C063D0DA5B2F211845305BB78C8D9803 /* SweeterSwift-SweeterSwift in Resources */ = {isa = PBXBuildFile; fileRef = 6C6EAAFEC412666C35242FAC324BAA94 /* SweeterSwift-SweeterSwift */; };
  122. C07CB3E9A4D1BF00F841E4285629A2B2 /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B36FEB1DC0701F57E847770AFB55E21 /* ConstraintRelatableTarget.swift */; };
  123. C14F10B663FE2898EACAB90C202B3F50 /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D37CECD7975B336B604EA83CC3EC5F5 /* ConstraintMakerEditable.swift */; };
  124. C2417F6BE3BADD217220A7F045554F50 /* MultiValueSlider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6286DF24ACBAE938BDE3D59088BB74AD /* MultiValueSlider.swift */; };
  125. C4F5B6F0362A86D29897C12F77BB0C8D /* JXSegmentedDotDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED8A1CED2A8BCD1CB52D428D365340DB /* JXSegmentedDotDataSource.swift */; };
  126. C5C8B4E9B398A09C20AD3191B687A4A9 /* Mappable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0BE87439E52A9D70CCB9767A66A6491 /* Mappable.swift */; };
  127. C6303874D7A50DBA4CF6E9A3C5FAEA23 /* JXSegmentedAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15207C2400C018DE1CB8A8AED8992011 /* JXSegmentedAnimator.swift */; };
  128. C6A4302ACE006C4E2CDD481287E2916B /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77C10E86D7F8178622BB319F9787E22 /* Typealiases.swift */; };
  129. C6F45595676957ADBEC18EB3F23EAEC4 /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AF82EF5D8A119B278EB1B3D953A148B /* LayoutConstraintItem.swift */; };
  130. C74A57B9D0D3D8CE03CA6E0779BB0B4D /* DataTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8228C70941102C3589D145396F298F4 /* DataTransform.swift */; };
  131. CA77825F76CEB1249A766C5975164FE1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8193349D819536E58C58A34C1B7DF545 /* Foundation.framework */; };
  132. CB4B0DEEC667441EBA069A831E3881F1 /* JXSegmentedTitleOrImageDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71FCA797C16AD6DF52A01EDD0BCEF0D7 /* JXSegmentedTitleOrImageDataSource.swift */; };
  133. CB69A73073036445EA7F67524ECD6D69 /* URLTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42F7D76D24A5DBBC459C2D5D52B2EEC /* URLTransform.swift */; };
  134. CC8DBBFECBD1CDC823E6AC6920B472DB /* TransformOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = B99CA73F4E66C73400D2F9153C021A30 /* TransformOf.swift */; };
  135. CCCB6AC4BD17F2251527413CEB698DE9 /* NSDecimalNumberTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 249551D0AAEBCFC0A4CD1B7A59D2CEE9 /* NSDecimalNumberTransform.swift */; };
  136. CE593943A9E7CF83822CF60304BCAD43 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 297C0CFD91491496591D4F595BB7EE04 /* ConstraintConstantTarget.swift */; };
  137. CE789F6EA6BFA43DB4D3D08C0C7BE47F /* MultiSliderExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B9C9C4C316FFC46188AF41149B9EA6F /* MultiSliderExtensions.swift */; };
  138. D27E09C517629DEE3D4DDA878DF60404 /* JXSegmentedIndicatorImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 687402EC2FC235C78CF015B8192E0EE7 /* JXSegmentedIndicatorImageView.swift */; };
  139. D4218DA55B2BA45937589200CC0DF1FB /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0BE5955CA3309E8933023BD628F2D5 /* ConstraintMakerExtendable.swift */; };
  140. D5B5FEC098AD312EE618C3E4010806F0 /* TransformType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20DE570B6526464FF696F32F4D82D43F /* TransformType.swift */; };
  141. D98A76939BDF2369CD43DBB47DA23B1E /* TransformOperators.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0ED20F38848F77F11604DFB6E1822A2 /* TransformOperators.swift */; };
  142. DBA4803F4765E1650B8C6841157F5D73 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DF66EE3E04CFC548BA639515286361B /* ConstraintPriorityTarget.swift */; };
  143. DBBE31DA02DA9499E1553B3EC6A991B5 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D9CE0A2F80F3928A57FF92431F59E45C /* PrivacyInfo.xcprivacy */; };
  144. DEDA0FA950FFD65173728E16ADE82503 /* JXSegmentedIndicatorProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCDA0B1BF3881DCA9AF7A8AAB93827CA /* JXSegmentedIndicatorProtocol.swift */; };
  145. E37671A03B4C17A1CF3766A6125833BB /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 561F455E3CC58B95397EDD5DD2A10633 /* ConstraintDirectionalInsetTarget.swift */; };
  146. E3AD1D66BFBF0D6E1F22A33F13E0E637 /* JXSegmentedTitleAttributeCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 980CBF8A0072A29F5B728907F09E43BC /* JXSegmentedTitleAttributeCell.swift */; };
  147. E3CB81C454B7EE60FCF7E31A6FB0C9A2 /* JXSegmentedTitleAttributeItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50255777ECD8228F2C0D80D2E6AC34BD /* JXSegmentedTitleAttributeItemModel.swift */; };
  148. E3D779DEE753C0B0D33BA8E73A980265 /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E1922C918E77B8D4593761C5BC96C85 /* ConstraintLayoutGuide+Extensions.swift */; };
  149. E4B59A0897DAA1D191C874B4F2C76054 /* UIApplication+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CF299190EAEB149856CDD1EB17DE729 /* UIApplication+Sweeter.swift */; };
  150. EB9220B4AE7EACEC16C137B45BB5F855 /* JXSegmentedIndicatorLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2D51153B15E1F321E21C7AAE89A9A3E /* JXSegmentedIndicatorLineView.swift */; };
  151. ECC5C2ADC2682F9171FEA22AF10DCE53 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF44EDDE9874A454B1652205AB3B2BE1 /* ConstraintRelation.swift */; };
  152. F015995E4EDA80747B68E82BD2BB6477 /* UITextView+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1478681914D5329E5F273E1025DC77EC /* UITextView+Sweeter.swift */; };
  153. F0E169740ED94A71B66B2BB1180DFADB /* JXSegmentedBaseCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1773FB0C5F1F8B66E3B5F52B172CA671 /* JXSegmentedBaseCell.swift */; };
  154. F19FE2BB0D37466CD650B2FE075A6796 /* DateFormatter+Sweeter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F81C36BD54EBE0776D9A969FA207B164 /* DateFormatter+Sweeter.swift */; };
  155. F6F33E8B268F3D41075374D95B8088DC /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FE7052AFA273E0960D8FA05818F7081 /* UILayoutSupport+Extensions.swift */; };
  156. F720D345CA6EDDF31C033B043842C309 /* JXSegmentedIndicatorTriangleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C892C811D724FDD27A8B4BD99F959F91 /* JXSegmentedIndicatorTriangleView.swift */; };
  157. F9EBA65892D78A31C068D727D84BCB88 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61A54DDE269901F207BA232E7792CEDB /* ConstraintConfig.swift */; };
  158. FA1F406D79CAE34B005D23FBC44CCFA4 /* JXSegmentedIndicatorDotLineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46AF02A2BB2A92ECD00BE3F34367C198 /* JXSegmentedIndicatorDotLineView.swift */; };
  159. FF9E6D072563A0209EE8D525BE50041E /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7634AE246F32454033784B31BD4AB761 /* Map.swift */; };
  160. /* End PBXBuildFile section */
  161. /* Begin PBXContainerItemProxy section */
  162. 18F2BA718B19635383425AA791E53D1D /* PBXContainerItemProxy */ = {
  163. isa = PBXContainerItemProxy;
  164. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  165. proxyType = 1;
  166. remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4;
  167. remoteInfo = SnapKit;
  168. };
  169. 62C4D91B9D0DDAFFAEFF7FC558DF1D26 /* PBXContainerItemProxy */ = {
  170. isa = PBXContainerItemProxy;
  171. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  172. proxyType = 1;
  173. remoteGlobalIDString = 6819F499159C87193DDD7D51504DD6C1;
  174. remoteInfo = SweeterSwift;
  175. };
  176. 73832FB1F08BBB44A71B956817813616 /* PBXContainerItemProxy */ = {
  177. isa = PBXContainerItemProxy;
  178. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  179. proxyType = 1;
  180. remoteGlobalIDString = 162E649F50FEC62B61BDD87D1BD422B4;
  181. remoteInfo = ObjectMapper;
  182. };
  183. BCEEF5E99A3CCE0D57CFB79EAD6173BE /* PBXContainerItemProxy */ = {
  184. isa = PBXContainerItemProxy;
  185. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  186. proxyType = 1;
  187. remoteGlobalIDString = F69984ED0D5D3CC1B9D170E4AC78A24E;
  188. remoteInfo = MultiSlider;
  189. };
  190. C2B0E9075CB75820A0EDF64AD56A1A63 /* PBXContainerItemProxy */ = {
  191. isa = PBXContainerItemProxy;
  192. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  193. proxyType = 1;
  194. remoteGlobalIDString = 6819F499159C87193DDD7D51504DD6C1;
  195. remoteInfo = SweeterSwift;
  196. };
  197. C613B48CC858DD85D2552FF3C29D9448 /* PBXContainerItemProxy */ = {
  198. isa = PBXContainerItemProxy;
  199. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  200. proxyType = 1;
  201. remoteGlobalIDString = FA755404924ED490AAE8819D2305E8AD;
  202. remoteInfo = "MultiSlider-MultiSlider";
  203. };
  204. D1F593CBB729AD7160BCB198FCAA695E /* PBXContainerItemProxy */ = {
  205. isa = PBXContainerItemProxy;
  206. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  207. proxyType = 1;
  208. remoteGlobalIDString = 6AC06A0352BD0093A0EFD2CDDF7680D8;
  209. remoteInfo = "SweeterSwift-SweeterSwift";
  210. };
  211. E28DB10EE4832933769975943D898B68 /* PBXContainerItemProxy */ = {
  212. isa = PBXContainerItemProxy;
  213. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  214. proxyType = 1;
  215. remoteGlobalIDString = 52F43AC38D9FF80196C69FB03AEEFDDA;
  216. remoteInfo = "JXSegmentedView-JXSegmentedView";
  217. };
  218. E2EB3630C942C71190ADFCC0701804B5 /* PBXContainerItemProxy */ = {
  219. isa = PBXContainerItemProxy;
  220. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  221. proxyType = 1;
  222. remoteGlobalIDString = E863A9A96F52A35F47491E7B41ECEF9A;
  223. remoteInfo = JXSegmentedView;
  224. };
  225. E96066C9CB9752A5A993FDAD2226BBBC /* PBXContainerItemProxy */ = {
  226. isa = PBXContainerItemProxy;
  227. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  228. proxyType = 1;
  229. remoteGlobalIDString = 8A8DB685241263AFDF5E6B20FE67B93A;
  230. remoteInfo = "SnapKit-SnapKit_Privacy";
  231. };
  232. /* End PBXContainerItemProxy section */
  233. /* Begin PBXFileReference section */
  234. 0051FA3E207532C5B076A6A1DDED126B /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Sources/ConstraintLayoutGuideDSL.swift; sourceTree = "<group>"; };
  235. 00B795FDF7B5F17C78FCEABDAFBB8B9D /* IntegerOperators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IntegerOperators.swift; path = Sources/IntegerOperators.swift; sourceTree = "<group>"; };
  236. 011BCDFED36DC32A0D2062FB5B231741 /* Pods-Girly-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Girly-acknowledgements.markdown"; sourceTree = "<group>"; };
  237. 01CBD3BF615CBE74850DEFF150057CDA /* JXSegmentedTitleImageDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleImageDataSource.swift; path = Sources/TitleImage/JXSegmentedTitleImageDataSource.swift; sourceTree = "<group>"; };
  238. 04FFFF99310F35B06D5961FB79F833F1 /* MultiSlider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultiSlider.swift; path = Sources/MultiSlider.swift; sourceTree = "<group>"; };
  239. 07928762D9A8551470DAAD7C1E1F53A5 /* JXSegmentedView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JXSegmentedView; path = JXSegmentedView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  240. 08BCABB869E6E64BA6EF8F9170767FDD /* Mapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mapper.swift; path = Sources/Mapper.swift; sourceTree = "<group>"; };
  241. 0A768C99BFBA30AA615B5F63CE00903D /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Sources/ConstraintOffsetTarget.swift; sourceTree = "<group>"; };
  242. 0CF299190EAEB149856CDD1EB17DE729 /* UIApplication+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+Sweeter.swift"; path = "Source/UIApplication+Sweeter.swift"; sourceTree = "<group>"; };
  243. 0DD554367984B3DD8E6B71ACF83E51AE /* SweeterSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SweeterSwift-umbrella.h"; sourceTree = "<group>"; };
  244. 0EFBC94DE8D61BCC9946F21D31CC54B0 /* SweeterSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SweeterSwift.modulemap; sourceTree = "<group>"; };
  245. 0FAE546BEB92F980BC40AF458C8466BD /* MultiSlider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MultiSlider-prefix.pch"; sourceTree = "<group>"; };
  246. 120F73D7D7BEBF74675E603F9F4DB753 /* JXSegmentedIndicatorDoubleLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorDoubleLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorDoubleLineView.swift; sourceTree = "<group>"; };
  247. 1478681914D5329E5F273E1025DC77EC /* UITextView+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextView+Sweeter.swift"; path = "Source/UITextView+Sweeter.swift"; sourceTree = "<group>"; };
  248. 15207C2400C018DE1CB8A8AED8992011 /* JXSegmentedAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedAnimator.swift; path = Sources/Common/JXSegmentedAnimator.swift; sourceTree = "<group>"; };
  249. 1773FB0C5F1F8B66E3B5F52B172CA671 /* JXSegmentedBaseCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedBaseCell.swift; path = Sources/Core/JXSegmentedBaseCell.swift; sourceTree = "<group>"; };
  250. 17A565823726EBAC66053ED2C8C5276E /* JXSegmentedTitleImageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleImageCell.swift; path = Sources/TitleImage/JXSegmentedTitleImageCell.swift; sourceTree = "<group>"; };
  251. 17E1239B03C9CA8B0D48FEFDB55C5824 /* CustomDateFormatTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomDateFormatTransform.swift; path = Sources/CustomDateFormatTransform.swift; sourceTree = "<group>"; };
  252. 17E8C4C00EF63E592C8EAD3B5BDD1EE0 /* ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist"; sourceTree = "<group>"; };
  253. 189BB6A5BE5982E724C40F8229ECC32F /* Pods-Girly.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Girly.modulemap"; sourceTree = "<group>"; };
  254. 1C599F6063E75D9FDF9017EA05A43F90 /* JXSegmentedBaseDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedBaseDataSource.swift; path = Sources/Core/JXSegmentedBaseDataSource.swift; sourceTree = "<group>"; };
  255. 1FB4FA5A8B233D7F9F1CC0A1DD9D1BB3 /* ObjectMapper-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ObjectMapper-Info.plist"; sourceTree = "<group>"; };
  256. 1FE7052AFA273E0960D8FA05818F7081 /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Sources/UILayoutSupport+Extensions.swift"; sourceTree = "<group>"; };
  257. 20C97EA71771377A0AFD80807DEFE488 /* String+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+Sweeter.swift"; path = "Source/String+Sweeter.swift"; sourceTree = "<group>"; };
  258. 20DE570B6526464FF696F32F4D82D43F /* TransformType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformType.swift; path = Sources/TransformType.swift; sourceTree = "<group>"; };
  259. 23D2DDEAF2B0A9FC59680ABBD5A79FF6 /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = "<group>"; };
  260. 249551D0AAEBCFC0A4CD1B7A59D2CEE9 /* NSDecimalNumberTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NSDecimalNumberTransform.swift; path = Sources/NSDecimalNumberTransform.swift; sourceTree = "<group>"; };
  261. 2749227FFC87007A92B9DF6E8E1B3A96 /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Sources/ConstraintAttributes.swift; sourceTree = "<group>"; };
  262. 297C0CFD91491496591D4F595BB7EE04 /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Sources/ConstraintConstantTarget.swift; sourceTree = "<group>"; };
  263. 2C26A8E48462A3162D267FC6C4B53740 /* UIStackView+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIStackView+Sweeter.swift"; path = "Source/UIStackView+Sweeter.swift"; sourceTree = "<group>"; };
  264. 2EC35B562316844F2EE562A3537E2A7C /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Sources/ConstraintViewDSL.swift; sourceTree = "<group>"; };
  265. 2F7EF9C3A28911812945B3B3C4F43AE1 /* ImmutableMappable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmutableMappable.swift; path = Sources/ImmutableMappable.swift; sourceTree = "<group>"; };
  266. 302DFC84BA01A634B2CAF76A881D4A7C /* JXSegmentedNumberDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedNumberDataSource.swift; path = Sources/Number/JXSegmentedNumberDataSource.swift; sourceTree = "<group>"; };
  267. 321328AA6AFF8B7E90C4410743B86A3E /* DateTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateTransform.swift; path = Sources/DateTransform.swift; sourceTree = "<group>"; };
  268. 325E37C08F5694EEEFFA1D7AB13B8813 /* Bundle+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bundle+Sweeter.swift"; path = "Source/Bundle+Sweeter.swift"; sourceTree = "<group>"; };
  269. 33DE4F383BF8C253221125FD8A97D1C2 /* MultiSlider-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MultiSlider-Info.plist"; sourceTree = "<group>"; };
  270. 369B5C69A80A787A5AB76416CD4A6893 /* HexColorTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HexColorTransform.swift; path = Sources/HexColorTransform.swift; sourceTree = "<group>"; };
  271. 394E7BE0176DD68DBECA5E11866A1419 /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Sources/ConstraintDSL.swift; sourceTree = "<group>"; };
  272. 3AF82EF5D8A119B278EB1B3D953A148B /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Sources/LayoutConstraintItem.swift; sourceTree = "<group>"; };
  273. 3BE950011E25B46C6B9175AAC19C6392 /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = "<group>"; };
  274. 3C1A8CD9178ACE6DB8E9DC873560C83F /* Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Operators.swift; path = Sources/Operators.swift; sourceTree = "<group>"; };
  275. 3C365FF21DE3EA77486BB299FA789724 /* JXSegmentedIndicatorRainbowLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorRainbowLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorRainbowLineView.swift; sourceTree = "<group>"; };
  276. 3C410141B888875A25CE8F08150214A8 /* MultiSlider-MultiSlider */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MultiSlider-MultiSlider"; path = MultiSlider.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
  277. 4073F0A0A2F66A8C5CAB3AE6114FCAD1 /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Sources/ConstraintMakerFinalizable.swift; sourceTree = "<group>"; };
  278. 45C67F3C6F29E93850A2C14BB1128A96 /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = "<group>"; };
  279. 46AF02A2BB2A92ECD00BE3F34367C198 /* JXSegmentedIndicatorDotLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorDotLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorDotLineView.swift; sourceTree = "<group>"; };
  280. 471A62EA77B7F46662A595625DA4B721 /* MapError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MapError.swift; path = Sources/MapError.swift; sourceTree = "<group>"; };
  281. 49428A3FC82FB0A9EE6F186F5A860583 /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Sources/Debugging.swift; sourceTree = "<group>"; };
  282. 4A8ACC6CDEBAA9C9E0ED0FEE4EF30A7B /* UIViewController+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+Sweeter.swift"; path = "Source/UIViewController+Sweeter.swift"; sourceTree = "<group>"; };
  283. 4AECD38877B93C8601D16FBED8BF6C55 /* ResourceBundle-SweeterSwift-SweeterSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SweeterSwift-SweeterSwift-Info.plist"; sourceTree = "<group>"; };
  284. 4B132FF2105EA46AA4CB593D82223EE9 /* NSObject+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Sweeter.swift"; path = "Source/NSObject+Sweeter.swift"; sourceTree = "<group>"; };
  285. 4B9E43616969CF091B8EAEA030651E2B /* ISO8601DateTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ISO8601DateTransform.swift; path = Sources/ISO8601DateTransform.swift; sourceTree = "<group>"; };
  286. 4D157F50EA82A105F2FBDCDEB13474B3 /* Pods-Girly-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Girly-acknowledgements.plist"; sourceTree = "<group>"; };
  287. 4D9C3BFC1A5C1753E5DE357B638248B7 /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Sources/ConstraintMultiplierTarget.swift; sourceTree = "<group>"; };
  288. 50255777ECD8228F2C0D80D2E6AC34BD /* JXSegmentedTitleAttributeItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleAttributeItemModel.swift; path = Sources/AttributeTitle/JXSegmentedTitleAttributeItemModel.swift; sourceTree = "<group>"; };
  289. 55DEB6154C6CBFC34EE8693784D66256 /* SweeterSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SweeterSwift.debug.xcconfig; sourceTree = "<group>"; };
  290. 561F455E3CC58B95397EDD5DD2A10633 /* ConstraintDirectionalInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsetTarget.swift; path = Sources/ConstraintDirectionalInsetTarget.swift; sourceTree = "<group>"; };
  291. 5638E92108B2AC895BFFCCE56A9896A6 /* Pods-Girly */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Girly"; path = Pods_Girly.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  292. 59F0112EE436C91CD6446E9227D1FE3B /* JXSegmentedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXSegmentedView.debug.xcconfig; sourceTree = "<group>"; };
  293. 5B9C9C4C316FFC46188AF41149B9EA6F /* MultiSliderExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultiSliderExtensions.swift; path = Sources/MultiSliderExtensions.swift; sourceTree = "<group>"; };
  294. 5C78AD240282CAE09A210FF7914E147D /* JXSegmentedView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedView.swift; path = Sources/Core/JXSegmentedView.swift; sourceTree = "<group>"; };
  295. 5C84F1130CFD546D61756A85AE842074 /* SweeterSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SweeterSwift.release.xcconfig; sourceTree = "<group>"; };
  296. 60686257B458CFDAF0143E4B810242FC /* JXSegmentedTitleDynamicConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleDynamicConfiguration.swift; path = Sources/Title/JXSegmentedTitleDynamicConfiguration.swift; sourceTree = "<group>"; };
  297. 608CDDC17AE3ED25A85D23D02DFB35F8 /* EnumOperators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EnumOperators.swift; path = Sources/EnumOperators.swift; sourceTree = "<group>"; };
  298. 61A54DDE269901F207BA232E7792CEDB /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Sources/ConstraintConfig.swift; sourceTree = "<group>"; };
  299. 61BBF85025109B6866ADB2BE198CC963 /* JXSegmentedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXSegmentedView-prefix.pch"; sourceTree = "<group>"; };
  300. 61C12767C7FC36F1904D85DEC8F97CD7 /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Sources/ConstraintMaker.swift; sourceTree = "<group>"; };
  301. 6286DF24ACBAE938BDE3D59088BB74AD /* MultiValueSlider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultiValueSlider.swift; path = Sources/MultiValueSlider.swift; sourceTree = "<group>"; };
  302. 62A5DEC2F8FAAB313A58A31E5C45F162 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Source/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
  303. 687402EC2FC235C78CF015B8192E0EE7 /* JXSegmentedIndicatorImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorImageView.swift; path = Sources/Indicator/JXSegmentedIndicatorImageView.swift; sourceTree = "<group>"; };
  304. 6B36FEB1DC0701F57E847770AFB55E21 /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Sources/ConstraintRelatableTarget.swift; sourceTree = "<group>"; };
  305. 6C26BC92A8DC8F82E576C1C32536233E /* JXSegmentedIndicatorParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorParams.swift; path = Sources/Indicator/JXSegmentedIndicatorParams.swift; sourceTree = "<group>"; };
  306. 6C6EAAFEC412666C35242FAC324BAA94 /* SweeterSwift-SweeterSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "SweeterSwift-SweeterSwift"; path = SweeterSwift.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
  307. 6E2068DE45C15481A9349B8595E4D65C /* SweeterSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SweeterSwift-prefix.pch"; sourceTree = "<group>"; };
  308. 6FF9B181D3E2BCA5F77940538A1579F1 /* EnumTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EnumTransform.swift; path = Sources/EnumTransform.swift; sourceTree = "<group>"; };
  309. 70FACEBCDA588C0DE1B3A8CD0EB33DAE /* FromJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FromJSON.swift; path = Sources/FromJSON.swift; sourceTree = "<group>"; };
  310. 7180317C66E40B3E18B9BEA7C8752360 /* JXSegmentedTitleGradientDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleGradientDataSource.swift; path = Sources/TitleGradient/JXSegmentedTitleGradientDataSource.swift; sourceTree = "<group>"; };
  311. 71DA5149C266D102DF66AAD598E34D16 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
  312. 71FCA797C16AD6DF52A01EDD0BCEF0D7 /* JXSegmentedTitleOrImageDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleOrImageDataSource.swift; path = Sources/TitleOrImage/JXSegmentedTitleOrImageDataSource.swift; sourceTree = "<group>"; };
  313. 728BDCC28C4461BB2317BE28AAEA2F38 /* JXSegmentedTitleAttributeDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleAttributeDataSource.swift; path = Sources/AttributeTitle/JXSegmentedTitleAttributeDataSource.swift; sourceTree = "<group>"; };
  314. 734A1294E6973B309C389F108E86191A /* ResourceBundle-MultiSlider-MultiSlider-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MultiSlider-MultiSlider-Info.plist"; sourceTree = "<group>"; };
  315. 73A916D957E322B5988646544E02DA99 /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Sources/Constraint.swift; sourceTree = "<group>"; };
  316. 74B3F726C3215EAA9FF7C69A07709290 /* JXSegmentedTitleGradientCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleGradientCell.swift; path = Sources/TitleGradient/JXSegmentedTitleGradientCell.swift; sourceTree = "<group>"; };
  317. 755F2F81CB69C686CB767BF75B020364 /* JXSegmentedView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXSegmentedView.modulemap; sourceTree = "<group>"; };
  318. 7634AE246F32454033784B31BD4AB761 /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = Sources/Map.swift; sourceTree = "<group>"; };
  319. 76854D7F9BEABE6BDA44ACA3E57434FD /* JXSegmentedViewTool.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedViewTool.swift; path = Sources/Common/JXSegmentedViewTool.swift; sourceTree = "<group>"; };
  320. 77225919FA546C962EF00BA3EF002C35 /* ObjectMapper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ObjectMapper-prefix.pch"; sourceTree = "<group>"; };
  321. 7952C41D89417690BE3163FAC15F435E /* JXSegmentedListContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedListContainerView.swift; path = Sources/Common/JXSegmentedListContainerView.swift; sourceTree = "<group>"; };
  322. 7993EC11462087757A9CF27B5263B86E /* ObjectMapper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ObjectMapper.release.xcconfig; sourceTree = "<group>"; };
  323. 7CD3F2FA2164F05A1B492FC74F86BEE7 /* JXSegmentedTitleOrImageItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleOrImageItemModel.swift; path = Sources/TitleOrImage/JXSegmentedTitleOrImageItemModel.swift; sourceTree = "<group>"; };
  324. 7DB3A27D898C99E20B068DE8458DFDD2 /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = "<group>"; };
  325. 7DF66EE3E04CFC548BA639515286361B /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Sources/ConstraintPriorityTarget.swift; sourceTree = "<group>"; };
  326. 7E1922C918E77B8D4593761C5BC96C85 /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Sources/ConstraintLayoutGuide+Extensions.swift"; sourceTree = "<group>"; };
  327. 7EEC61AC542382A1D22527845A93CFD4 /* NSManagedObjectContext+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSManagedObjectContext+Sweeter.swift"; path = "Source/NSManagedObjectContext+Sweeter.swift"; sourceTree = "<group>"; };
  328. 7F2115E528DC0A1B3F1405AF79ADCC55 /* JXSegmentedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXSegmentedView.release.xcconfig; sourceTree = "<group>"; };
  329. 804AC8BB2BA76962CFF6608E5BEC4E4A /* ObjectMapper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ObjectMapper.debug.xcconfig; sourceTree = "<group>"; };
  330. 80552235702712B382060FE6C0E22CDA /* JXSegmentedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXSegmentedView-dummy.m"; sourceTree = "<group>"; };
  331. 8193349D819536E58C58A34C1B7DF545 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
  332. 824BC5AB55C64C1CD3C028A29A03DDEB /* Codable+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Codable+Sweeter.swift"; path = "Source/Codable+Sweeter.swift"; sourceTree = "<group>"; };
  333. 86769B86CD5DD0AD76C1D4BC84AA32D7 /* Pods-Girly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Girly.debug.xcconfig"; sourceTree = "<group>"; };
  334. 867DB6EE9A329C387AD4DF1B84C7F0CE /* JXSegmentedDotItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedDotItemModel.swift; path = Sources/Dot/JXSegmentedDotItemModel.swift; sourceTree = "<group>"; };
  335. 874C3DCF1E6ECCF184D009E1316F5184 /* JXSegmentedBaseItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedBaseItemModel.swift; path = Sources/Core/JXSegmentedBaseItemModel.swift; sourceTree = "<group>"; };
  336. 8915583C29362F908390117555A9AA6E /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Sources/ConstraintLayoutSupportDSL.swift; sourceTree = "<group>"; };
  337. 8A99B468B8F3C198F13D0DE16B1B6181 /* CodableTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CodableTransform.swift; path = Sources/CodableTransform.swift; sourceTree = "<group>"; };
  338. 8AED4E8F9B40DB0B50B0B5137E538BB1 /* ObjectMapper.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ObjectMapper.modulemap; sourceTree = "<group>"; };
  339. 8B4FB8C8798EC6A7FFC4590DBD96D08F /* JXSegmentedTitleItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleItemModel.swift; path = Sources/Title/JXSegmentedTitleItemModel.swift; sourceTree = "<group>"; };
  340. 8C00EC5D064581E86BE92DC47F48BB99 /* JXSegmentedTitleGradientItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleGradientItemModel.swift; path = Sources/TitleGradient/JXSegmentedTitleGradientItemModel.swift; sourceTree = "<group>"; };
  341. 8D37CECD7975B336B604EA83CC3EC5F5 /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Sources/ConstraintMakerEditable.swift; sourceTree = "<group>"; };
  342. 8D5B403452A244146DC51C3C0705B43C /* JXSegmentedDotCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedDotCell.swift; path = Sources/Dot/JXSegmentedDotCell.swift; sourceTree = "<group>"; };
  343. 917BCBF5DEC38964769C433F275F4A56 /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Sources/LayoutConstraint.swift; sourceTree = "<group>"; };
  344. 92B0EC788EDA1B0CFA48DFFCB3DDAECD /* JXSegmentedView-JXSegmentedView */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "JXSegmentedView-JXSegmentedView"; path = JXSegmentedView.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
  345. 92B8265BC110DCE0AB9868CE2DE9FA2B /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Sources/ConstraintPriority.swift; sourceTree = "<group>"; };
  346. 94132F3FC9935CAC1CE922AC36DA6329 /* JXSegmentedCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedCollectionView.swift; path = Sources/Core/JXSegmentedCollectionView.swift; sourceTree = "<group>"; };
  347. 95C99310670BA400753A7921156A27A4 /* JXSegmentedView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JXSegmentedView-Info.plist"; sourceTree = "<group>"; };
  348. 9625CC09EE8C17992CD28EDB03F76040 /* ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist"; sourceTree = "<group>"; };
  349. 979486118B3E90C08386079D57962701 /* SnapKit */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SnapKit; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  350. 980CBF8A0072A29F5B728907F09E43BC /* JXSegmentedTitleAttributeCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleAttributeCell.swift; path = Sources/AttributeTitle/JXSegmentedTitleAttributeCell.swift; sourceTree = "<group>"; };
  351. 987D654A31BBC8745416BAC63A9A5F98 /* Pods-Girly-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Girly-frameworks.sh"; sourceTree = "<group>"; };
  352. 9AB98023389F41F8AC302E58CB2F32EB /* ToJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToJSON.swift; path = Sources/ToJSON.swift; sourceTree = "<group>"; };
  353. 9B0B94ECB03CE102762B92FFEFD04829 /* DictionaryTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DictionaryTransform.swift; path = Sources/DictionaryTransform.swift; sourceTree = "<group>"; };
  354. 9B0BE5955CA3309E8933023BD628F2D5 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Sources/ConstraintMakerExtendable.swift; sourceTree = "<group>"; };
  355. 9C543D8429E7621A67A2F7D4ACF9EF3D /* ConstraintMakerPrioritizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerPrioritizable.swift; path = Sources/ConstraintMakerPrioritizable.swift; sourceTree = "<group>"; };
  356. 9D6AC1E550AAC3DD9798023D6B67D7F0 /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Sources/ConstraintItem.swift; sourceTree = "<group>"; };
  357. 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  358. A269E0CD4C8D737290AECF4558EF1FAB /* JXSegmentedComponetGradientView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedComponetGradientView.swift; path = Sources/Indicator/JXSegmentedComponetGradientView.swift; sourceTree = "<group>"; };
  359. A2D51153B15E1F321E21C7AAE89A9A3E /* JXSegmentedIndicatorLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorLineView.swift; sourceTree = "<group>"; };
  360. A2FF0444E6116FF15A8D71D63CA9B1E4 /* JXSegmentedView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXSegmentedView-umbrella.h"; sourceTree = "<group>"; };
  361. A78ABE0889EC8BE6EB36997A6A9BDB9E /* ConstraintDirectionalInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsets.swift; path = Sources/ConstraintDirectionalInsets.swift; sourceTree = "<group>"; };
  362. AABEF8D8977248E0BCA0C156843438AA /* JXSegmentedTitleCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleCell.swift; path = Sources/Title/JXSegmentedTitleCell.swift; sourceTree = "<group>"; };
  363. AB1C8316E1380BAA7BF5F4FE8B16CFA5 /* JXSegmentedTitleOrImageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleOrImageCell.swift; path = Sources/TitleOrImage/JXSegmentedTitleOrImageCell.swift; sourceTree = "<group>"; };
  364. ACE1E64ADF99C45F16512AEE318D453D /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Sources/ConstraintDescription.swift; sourceTree = "<group>"; };
  365. AFB5970CF4B2F3150B93D62D4860F0B9 /* JXSegmentedNumberCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedNumberCell.swift; path = Sources/Number/JXSegmentedNumberCell.swift; sourceTree = "<group>"; };
  366. B2A9604864773BD1A5CB554984CC187D /* SnapKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.release.xcconfig; sourceTree = "<group>"; };
  367. B3A891E2FD4A90E966F89C2693A7F3AD /* JXSegmentedIndicatorGradientLineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorGradientLineView.swift; path = Sources/Indicator/JXSegmentedIndicatorGradientLineView.swift; sourceTree = "<group>"; };
  368. B44BB572337050BF264632FAF530703E /* MultiSlider.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MultiSlider.modulemap; sourceTree = "<group>"; };
  369. B76CD9F952582A6A4387D799501B3950 /* SweeterSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SweeterSwift; path = SweeterSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  370. B891CA1625560029F09A8EFD6EB4CB70 /* DateFormatterTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateFormatterTransform.swift; path = Sources/DateFormatterTransform.swift; sourceTree = "<group>"; };
  371. B9084FE779702931E8DF1D00A2D725FB /* ObjectMapper */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = ObjectMapper; path = ObjectMapper.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  372. B99CA73F4E66C73400D2F9153C021A30 /* TransformOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformOf.swift; path = Sources/TransformOf.swift; sourceTree = "<group>"; };
  373. B9DCB5EC0B1CDADD221717CADDF62359 /* SnapKit-SnapKit_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "SnapKit-SnapKit_Privacy"; path = SnapKit_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
  374. BCDA0B1BF3881DCA9AF7A8AAB93827CA /* JXSegmentedIndicatorProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorProtocol.swift; path = Sources/Indicator/JXSegmentedIndicatorProtocol.swift; sourceTree = "<group>"; };
  375. C0A52F943AC9351D70AD37E9AEC4941B /* JXSegmentedIndicatorBaseView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorBaseView.swift; path = Sources/Indicator/JXSegmentedIndicatorBaseView.swift; sourceTree = "<group>"; };
  376. C0BE87439E52A9D70CCB9767A66A6491 /* Mappable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mappable.swift; path = Sources/Mappable.swift; sourceTree = "<group>"; };
  377. C26BF538716D8AB8CC2E0D7FB0EE47CC /* SweeterSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SweeterSwift-Info.plist"; sourceTree = "<group>"; };
  378. C2CC7C1A6A6AFC533998E8F751C19E4B /* TimeInterval+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TimeInterval+Sweeter.swift"; path = "Source/TimeInterval+Sweeter.swift"; sourceTree = "<group>"; };
  379. C339B9A8179E9DF604A76F882D4AC42D /* UIView+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Sweeter.swift"; path = "Source/UIView+Sweeter.swift"; sourceTree = "<group>"; };
  380. C3C8B638B1EE89BC05156868E766F7C7 /* JXSegmentedTitleImageItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleImageItemModel.swift; path = Sources/TitleImage/JXSegmentedTitleImageItemModel.swift; sourceTree = "<group>"; };
  381. C3E2FDD2FD4D082D2697AAC0BBF386E5 /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Sources/ConstraintView.swift; sourceTree = "<group>"; };
  382. C42F7D76D24A5DBBC459C2D5D52B2EEC /* URLTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLTransform.swift; path = Sources/URLTransform.swift; sourceTree = "<group>"; };
  383. C4DD206B4B9BCAF74ACBA904D9A0A28C /* ObjectMapper-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ObjectMapper-umbrella.h"; sourceTree = "<group>"; };
  384. C5BF1AC4D3E75DD034ED27B1BC83F919 /* ObjectMapper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ObjectMapper-dummy.m"; sourceTree = "<group>"; };
  385. C71913495B407B550A7D4D7BDDEBEDFC /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Sources/ConstraintMakerRelatable.swift; sourceTree = "<group>"; };
  386. C7A8850BF121BA8F4C80C53BECE997E8 /* MultiSlider+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MultiSlider+Internal.swift"; path = "Sources/MultiSlider+Internal.swift"; sourceTree = "<group>"; };
  387. C8228C70941102C3589D145396F298F4 /* DataTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataTransform.swift; path = Sources/DataTransform.swift; sourceTree = "<group>"; };
  388. C892C811D724FDD27A8B4BD99F959F91 /* JXSegmentedIndicatorTriangleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorTriangleView.swift; path = Sources/Indicator/JXSegmentedIndicatorTriangleView.swift; sourceTree = "<group>"; };
  389. C94CCD4AF20DA0F5099EC12E0BA543BC /* SnapKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SnapKit-Info.plist"; sourceTree = "<group>"; };
  390. C976FF8F929339BCCF7FB189DBFC4776 /* ConstraintMakerRelatable+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintMakerRelatable+Extensions.swift"; path = "Sources/ConstraintMakerRelatable+Extensions.swift"; sourceTree = "<group>"; };
  391. CB9CB0C87A3005C1F7388C7F3D0F977B /* MultiSlider.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MultiSlider.release.xcconfig; sourceTree = "<group>"; };
  392. CCAD0E73F97BFBDFF39A70A58F0C7D69 /* MultiSlider+Drag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MultiSlider+Drag.swift"; path = "Sources/MultiSlider+Drag.swift"; sourceTree = "<group>"; };
  393. CEBDDD2AC11C3F4B5C01882118F8CC3A /* SweeterSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SweeterSwift-dummy.m"; sourceTree = "<group>"; };
  394. D0ED20F38848F77F11604DFB6E1822A2 /* TransformOperators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformOperators.swift; path = Sources/TransformOperators.swift; sourceTree = "<group>"; };
  395. D18B6BBD184AE42FDC5B890EBE0173D4 /* Swift+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Swift+Sweeter.swift"; path = "Source/Swift+Sweeter.swift"; sourceTree = "<group>"; };
  396. D1A0240A9D619540AEC3330F24471B09 /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Sources/ConstraintInsetTarget.swift; sourceTree = "<group>"; };
  397. D3C94498FE47D83BEBCD541EE22A9825 /* MultiSlider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MultiSlider-dummy.m"; sourceTree = "<group>"; };
  398. D58CDA10D3E647AB7EF0BE5B6BFADB14 /* Pods-Girly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Girly.release.xcconfig"; sourceTree = "<group>"; };
  399. D88BCDCDA914B95E90496FD2792D451A /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Sources/ConstraintInsets.swift; sourceTree = "<group>"; };
  400. D8E225AA330D92BBF60BF2347CD4CC63 /* SnapKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.debug.xcconfig; sourceTree = "<group>"; };
  401. D9CE0A2F80F3928A57FF92431F59E45C /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
  402. DAF3C6BE0E819C9626E44B677CDD37B5 /* JXSegmentedIndicatorBackgroundView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorBackgroundView.swift; path = Sources/Indicator/JXSegmentedIndicatorBackgroundView.swift; sourceTree = "<group>"; };
  403. DB588E9AF8D98DDE72B881193A02805F /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Sources/ConstraintLayoutGuide.swift; sourceTree = "<group>"; };
  404. DD4E27268D2F86606744DB11C2193070 /* Pods-Girly-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Girly-Info.plist"; sourceTree = "<group>"; };
  405. DDB92C1B29CE39AAA07E91953CB9407B /* Pods-Girly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Girly-dummy.m"; sourceTree = "<group>"; };
  406. E104EDF50951A365BC68EB44FACE417D /* Pods-Girly-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Girly-umbrella.h"; sourceTree = "<group>"; };
  407. E2265C7EB9E68C496339AF1F4DE25B23 /* JXSegmentedRTLLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedRTLLayout.swift; path = Sources/Common/JXSegmentedRTLLayout.swift; sourceTree = "<group>"; };
  408. E4640009E282B49C4FA04C7FF909D59C /* MultiSlider.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MultiSlider.debug.xcconfig; sourceTree = "<group>"; };
  409. EAC22AE67EBFC782707B53E5CCD272B5 /* JXSegmentedTitleDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedTitleDataSource.swift; path = Sources/Title/JXSegmentedTitleDataSource.swift; sourceTree = "<group>"; };
  410. ECF4CA3AF5536D14B4E015504E7AEEC0 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
  411. ED8A1CED2A8BCD1CB52D428D365340DB /* JXSegmentedDotDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedDotDataSource.swift; path = Sources/Dot/JXSegmentedDotDataSource.swift; sourceTree = "<group>"; };
  412. EDFF7257C1EEBAC9E93E5317E5ED112A /* MultiSlider-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MultiSlider-umbrella.h"; sourceTree = "<group>"; };
  413. EEE81AAB9460CE10287ADFD04E30427E /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Sources/ConstraintView+Extensions.swift"; sourceTree = "<group>"; };
  414. EF7FD22B5171283B0AF3E65A5D6E4F52 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
  415. F2D91FE3939C5CF6283D16A5CBEDBC93 /* NSAttributedString+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSAttributedString+Sweeter.swift"; path = "Source/NSAttributedString+Sweeter.swift"; sourceTree = "<group>"; };
  416. F77C10E86D7F8178622BB319F9787E22 /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Sources/Typealiases.swift; sourceTree = "<group>"; };
  417. F81C36BD54EBE0776D9A969FA207B164 /* DateFormatter+Sweeter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DateFormatter+Sweeter.swift"; path = "Source/DateFormatter+Sweeter.swift"; sourceTree = "<group>"; };
  418. F99833D2FC35B9C9D9CF1DD838CC10DA /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Sources/ConstraintLayoutSupport.swift; sourceTree = "<group>"; };
  419. FB18D52EE801F674C9BBDB544A495C0C /* JXSegmentedIndicatorGradientView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedIndicatorGradientView.swift; path = Sources/Indicator/JXSegmentedIndicatorGradientView.swift; sourceTree = "<group>"; };
  420. FB710FE125F9F03098F08A750214F3A2 /* MultiSlider */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MultiSlider; path = MultiSlider.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  421. FED250F576AC89128F0E664296E25A57 /* JXSegmentedNumberItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JXSegmentedNumberItemModel.swift; path = Sources/Number/JXSegmentedNumberItemModel.swift; sourceTree = "<group>"; };
  422. FF44EDDE9874A454B1652205AB3B2BE1 /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Sources/ConstraintRelation.swift; sourceTree = "<group>"; };
  423. /* End PBXFileReference section */
  424. /* Begin PBXFrameworksBuildPhase section */
  425. 05575D502814981ABF3FA57506E50F4B /* Frameworks */ = {
  426. isa = PBXFrameworksBuildPhase;
  427. buildActionMask = 2147483647;
  428. files = (
  429. CA77825F76CEB1249A766C5975164FE1 /* Foundation.framework in Frameworks */,
  430. );
  431. runOnlyForDeploymentPostprocessing = 0;
  432. };
  433. 12172F131C2B2F8DB7CBE4E68F87842A /* Frameworks */ = {
  434. isa = PBXFrameworksBuildPhase;
  435. buildActionMask = 2147483647;
  436. files = (
  437. 9DDE681FBFDFD2A1D6D4EA6B57126E3D /* Foundation.framework in Frameworks */,
  438. );
  439. runOnlyForDeploymentPostprocessing = 0;
  440. };
  441. 1B18565C99F773591619C6C3FCD28ECA /* Frameworks */ = {
  442. isa = PBXFrameworksBuildPhase;
  443. buildActionMask = 2147483647;
  444. files = (
  445. 7C5679B6B27E7454F3757D1D33080DEB /* Foundation.framework in Frameworks */,
  446. );
  447. runOnlyForDeploymentPostprocessing = 0;
  448. };
  449. 2ED0C17687CCD1B79F8092ABD097D75B /* Frameworks */ = {
  450. isa = PBXFrameworksBuildPhase;
  451. buildActionMask = 2147483647;
  452. files = (
  453. 65EF07407E181D94AB988B67700ECFE6 /* Foundation.framework in Frameworks */,
  454. );
  455. runOnlyForDeploymentPostprocessing = 0;
  456. };
  457. 33428AC36668E3ED52DB70316F843FB8 /* Frameworks */ = {
  458. isa = PBXFrameworksBuildPhase;
  459. buildActionMask = 2147483647;
  460. files = (
  461. 205EB01AED14BB574DD54EAFE26E4786 /* Foundation.framework in Frameworks */,
  462. );
  463. runOnlyForDeploymentPostprocessing = 0;
  464. };
  465. 7B718F07A7122A0F8262C2B75FE5197F /* Frameworks */ = {
  466. isa = PBXFrameworksBuildPhase;
  467. buildActionMask = 2147483647;
  468. files = (
  469. );
  470. runOnlyForDeploymentPostprocessing = 0;
  471. };
  472. 7D0E024C7B699AE8204443CDC100E3DA /* Frameworks */ = {
  473. isa = PBXFrameworksBuildPhase;
  474. buildActionMask = 2147483647;
  475. files = (
  476. );
  477. runOnlyForDeploymentPostprocessing = 0;
  478. };
  479. 871C23F2BBD048C17045E75698D362EE /* Frameworks */ = {
  480. isa = PBXFrameworksBuildPhase;
  481. buildActionMask = 2147483647;
  482. files = (
  483. );
  484. runOnlyForDeploymentPostprocessing = 0;
  485. };
  486. DAB7FA377C8832478E925179037316B7 /* Frameworks */ = {
  487. isa = PBXFrameworksBuildPhase;
  488. buildActionMask = 2147483647;
  489. files = (
  490. 28CEE0F0205DF80E8B22E427DD4E4727 /* Foundation.framework in Frameworks */,
  491. 49C716C6147121E3C330CA62CBF1A60C /* UIKit.framework in Frameworks */,
  492. );
  493. runOnlyForDeploymentPostprocessing = 0;
  494. };
  495. FD4C816CA387FD82D6F7991235333BEA /* Frameworks */ = {
  496. isa = PBXFrameworksBuildPhase;
  497. buildActionMask = 2147483647;
  498. files = (
  499. );
  500. runOnlyForDeploymentPostprocessing = 0;
  501. };
  502. /* End PBXFrameworksBuildPhase section */
  503. /* Begin PBXGroup section */
  504. 0E4B1534708B26DDF73A2D2F985124E4 /* Support Files */ = {
  505. isa = PBXGroup;
  506. children = (
  507. B44BB572337050BF264632FAF530703E /* MultiSlider.modulemap */,
  508. D3C94498FE47D83BEBCD541EE22A9825 /* MultiSlider-dummy.m */,
  509. 33DE4F383BF8C253221125FD8A97D1C2 /* MultiSlider-Info.plist */,
  510. 0FAE546BEB92F980BC40AF458C8466BD /* MultiSlider-prefix.pch */,
  511. EDFF7257C1EEBAC9E93E5317E5ED112A /* MultiSlider-umbrella.h */,
  512. E4640009E282B49C4FA04C7FF909D59C /* MultiSlider.debug.xcconfig */,
  513. CB9CB0C87A3005C1F7388C7F3D0F977B /* MultiSlider.release.xcconfig */,
  514. 734A1294E6973B309C389F108E86191A /* ResourceBundle-MultiSlider-MultiSlider-Info.plist */,
  515. );
  516. name = "Support Files";
  517. path = "../Target Support Files/MultiSlider";
  518. sourceTree = "<group>";
  519. };
  520. 1222FA22E051E364500C7BE83652835D /* Resources */ = {
  521. isa = PBXGroup;
  522. children = (
  523. 62A5DEC2F8FAAB313A58A31E5C45F162 /* PrivacyInfo.xcprivacy */,
  524. );
  525. name = Resources;
  526. sourceTree = "<group>";
  527. };
  528. 1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */ = {
  529. isa = PBXGroup;
  530. children = (
  531. 1DE6440B6853131A80C53DDA34375AAB /* iOS */,
  532. );
  533. name = Frameworks;
  534. sourceTree = "<group>";
  535. };
  536. 1DE6440B6853131A80C53DDA34375AAB /* iOS */ = {
  537. isa = PBXGroup;
  538. children = (
  539. 8193349D819536E58C58A34C1B7DF545 /* Foundation.framework */,
  540. ECF4CA3AF5536D14B4E015504E7AEEC0 /* UIKit.framework */,
  541. );
  542. name = iOS;
  543. sourceTree = "<group>";
  544. };
  545. 2ED4FBD17E3C6D05625198A9E804415E /* JXSegmentedView */ = {
  546. isa = PBXGroup;
  547. children = (
  548. 15207C2400C018DE1CB8A8AED8992011 /* JXSegmentedAnimator.swift */,
  549. 1773FB0C5F1F8B66E3B5F52B172CA671 /* JXSegmentedBaseCell.swift */,
  550. 1C599F6063E75D9FDF9017EA05A43F90 /* JXSegmentedBaseDataSource.swift */,
  551. 874C3DCF1E6ECCF184D009E1316F5184 /* JXSegmentedBaseItemModel.swift */,
  552. 94132F3FC9935CAC1CE922AC36DA6329 /* JXSegmentedCollectionView.swift */,
  553. A269E0CD4C8D737290AECF4558EF1FAB /* JXSegmentedComponetGradientView.swift */,
  554. 8D5B403452A244146DC51C3C0705B43C /* JXSegmentedDotCell.swift */,
  555. ED8A1CED2A8BCD1CB52D428D365340DB /* JXSegmentedDotDataSource.swift */,
  556. 867DB6EE9A329C387AD4DF1B84C7F0CE /* JXSegmentedDotItemModel.swift */,
  557. DAF3C6BE0E819C9626E44B677CDD37B5 /* JXSegmentedIndicatorBackgroundView.swift */,
  558. C0A52F943AC9351D70AD37E9AEC4941B /* JXSegmentedIndicatorBaseView.swift */,
  559. 46AF02A2BB2A92ECD00BE3F34367C198 /* JXSegmentedIndicatorDotLineView.swift */,
  560. 120F73D7D7BEBF74675E603F9F4DB753 /* JXSegmentedIndicatorDoubleLineView.swift */,
  561. B3A891E2FD4A90E966F89C2693A7F3AD /* JXSegmentedIndicatorGradientLineView.swift */,
  562. FB18D52EE801F674C9BBDB544A495C0C /* JXSegmentedIndicatorGradientView.swift */,
  563. 687402EC2FC235C78CF015B8192E0EE7 /* JXSegmentedIndicatorImageView.swift */,
  564. A2D51153B15E1F321E21C7AAE89A9A3E /* JXSegmentedIndicatorLineView.swift */,
  565. 6C26BC92A8DC8F82E576C1C32536233E /* JXSegmentedIndicatorParams.swift */,
  566. BCDA0B1BF3881DCA9AF7A8AAB93827CA /* JXSegmentedIndicatorProtocol.swift */,
  567. 3C365FF21DE3EA77486BB299FA789724 /* JXSegmentedIndicatorRainbowLineView.swift */,
  568. C892C811D724FDD27A8B4BD99F959F91 /* JXSegmentedIndicatorTriangleView.swift */,
  569. 7952C41D89417690BE3163FAC15F435E /* JXSegmentedListContainerView.swift */,
  570. AFB5970CF4B2F3150B93D62D4860F0B9 /* JXSegmentedNumberCell.swift */,
  571. 302DFC84BA01A634B2CAF76A881D4A7C /* JXSegmentedNumberDataSource.swift */,
  572. FED250F576AC89128F0E664296E25A57 /* JXSegmentedNumberItemModel.swift */,
  573. E2265C7EB9E68C496339AF1F4DE25B23 /* JXSegmentedRTLLayout.swift */,
  574. 980CBF8A0072A29F5B728907F09E43BC /* JXSegmentedTitleAttributeCell.swift */,
  575. 728BDCC28C4461BB2317BE28AAEA2F38 /* JXSegmentedTitleAttributeDataSource.swift */,
  576. 50255777ECD8228F2C0D80D2E6AC34BD /* JXSegmentedTitleAttributeItemModel.swift */,
  577. AABEF8D8977248E0BCA0C156843438AA /* JXSegmentedTitleCell.swift */,
  578. EAC22AE67EBFC782707B53E5CCD272B5 /* JXSegmentedTitleDataSource.swift */,
  579. 60686257B458CFDAF0143E4B810242FC /* JXSegmentedTitleDynamicConfiguration.swift */,
  580. 74B3F726C3215EAA9FF7C69A07709290 /* JXSegmentedTitleGradientCell.swift */,
  581. 7180317C66E40B3E18B9BEA7C8752360 /* JXSegmentedTitleGradientDataSource.swift */,
  582. 8C00EC5D064581E86BE92DC47F48BB99 /* JXSegmentedTitleGradientItemModel.swift */,
  583. 17A565823726EBAC66053ED2C8C5276E /* JXSegmentedTitleImageCell.swift */,
  584. 01CBD3BF615CBE74850DEFF150057CDA /* JXSegmentedTitleImageDataSource.swift */,
  585. C3C8B638B1EE89BC05156868E766F7C7 /* JXSegmentedTitleImageItemModel.swift */,
  586. 8B4FB8C8798EC6A7FFC4590DBD96D08F /* JXSegmentedTitleItemModel.swift */,
  587. AB1C8316E1380BAA7BF5F4FE8B16CFA5 /* JXSegmentedTitleOrImageCell.swift */,
  588. 71FCA797C16AD6DF52A01EDD0BCEF0D7 /* JXSegmentedTitleOrImageDataSource.swift */,
  589. 7CD3F2FA2164F05A1B492FC74F86BEE7 /* JXSegmentedTitleOrImageItemModel.swift */,
  590. 5C78AD240282CAE09A210FF7914E147D /* JXSegmentedView.swift */,
  591. 76854D7F9BEABE6BDA44ACA3E57434FD /* JXSegmentedViewTool.swift */,
  592. E6BE687CA585B9FA1AEC7BEC28B7095B /* Resources */,
  593. DA888BF9CCE9FC5AFB9A4BEF55F03F45 /* Support Files */,
  594. );
  595. name = JXSegmentedView;
  596. path = JXSegmentedView;
  597. sourceTree = "<group>";
  598. };
  599. 347549A9AE01622B18C95C7FAF8AD7C1 /* Pods-Girly */ = {
  600. isa = PBXGroup;
  601. children = (
  602. 189BB6A5BE5982E724C40F8229ECC32F /* Pods-Girly.modulemap */,
  603. 011BCDFED36DC32A0D2062FB5B231741 /* Pods-Girly-acknowledgements.markdown */,
  604. 4D157F50EA82A105F2FBDCDEB13474B3 /* Pods-Girly-acknowledgements.plist */,
  605. DDB92C1B29CE39AAA07E91953CB9407B /* Pods-Girly-dummy.m */,
  606. 987D654A31BBC8745416BAC63A9A5F98 /* Pods-Girly-frameworks.sh */,
  607. DD4E27268D2F86606744DB11C2193070 /* Pods-Girly-Info.plist */,
  608. E104EDF50951A365BC68EB44FACE417D /* Pods-Girly-umbrella.h */,
  609. 86769B86CD5DD0AD76C1D4BC84AA32D7 /* Pods-Girly.debug.xcconfig */,
  610. D58CDA10D3E647AB7EF0BE5B6BFADB14 /* Pods-Girly.release.xcconfig */,
  611. );
  612. name = "Pods-Girly";
  613. path = "Target Support Files/Pods-Girly";
  614. sourceTree = "<group>";
  615. };
  616. 36EEBB7780EA1604A4C714DF06072022 /* Resources */ = {
  617. isa = PBXGroup;
  618. children = (
  619. D9CE0A2F80F3928A57FF92431F59E45C /* PrivacyInfo.xcprivacy */,
  620. );
  621. name = Resources;
  622. sourceTree = "<group>";
  623. };
  624. 4B009B369B9A612A00673EB40AC0E634 /* ObjectMapper */ = {
  625. isa = PBXGroup;
  626. children = (
  627. 8A99B468B8F3C198F13D0DE16B1B6181 /* CodableTransform.swift */,
  628. 17E1239B03C9CA8B0D48FEFDB55C5824 /* CustomDateFormatTransform.swift */,
  629. C8228C70941102C3589D145396F298F4 /* DataTransform.swift */,
  630. B891CA1625560029F09A8EFD6EB4CB70 /* DateFormatterTransform.swift */,
  631. 321328AA6AFF8B7E90C4410743B86A3E /* DateTransform.swift */,
  632. 9B0B94ECB03CE102762B92FFEFD04829 /* DictionaryTransform.swift */,
  633. 608CDDC17AE3ED25A85D23D02DFB35F8 /* EnumOperators.swift */,
  634. 6FF9B181D3E2BCA5F77940538A1579F1 /* EnumTransform.swift */,
  635. 70FACEBCDA588C0DE1B3A8CD0EB33DAE /* FromJSON.swift */,
  636. 369B5C69A80A787A5AB76416CD4A6893 /* HexColorTransform.swift */,
  637. 2F7EF9C3A28911812945B3B3C4F43AE1 /* ImmutableMappable.swift */,
  638. 00B795FDF7B5F17C78FCEABDAFBB8B9D /* IntegerOperators.swift */,
  639. 4B9E43616969CF091B8EAEA030651E2B /* ISO8601DateTransform.swift */,
  640. 7634AE246F32454033784B31BD4AB761 /* Map.swift */,
  641. 471A62EA77B7F46662A595625DA4B721 /* MapError.swift */,
  642. C0BE87439E52A9D70CCB9767A66A6491 /* Mappable.swift */,
  643. 08BCABB869E6E64BA6EF8F9170767FDD /* Mapper.swift */,
  644. 249551D0AAEBCFC0A4CD1B7A59D2CEE9 /* NSDecimalNumberTransform.swift */,
  645. 3C1A8CD9178ACE6DB8E9DC873560C83F /* Operators.swift */,
  646. 9AB98023389F41F8AC302E58CB2F32EB /* ToJSON.swift */,
  647. B99CA73F4E66C73400D2F9153C021A30 /* TransformOf.swift */,
  648. D0ED20F38848F77F11604DFB6E1822A2 /* TransformOperators.swift */,
  649. 20DE570B6526464FF696F32F4D82D43F /* TransformType.swift */,
  650. C42F7D76D24A5DBBC459C2D5D52B2EEC /* URLTransform.swift */,
  651. 59523B3C75B8A68A05D030CA8BA89148 /* Support Files */,
  652. );
  653. name = ObjectMapper;
  654. path = ObjectMapper;
  655. sourceTree = "<group>";
  656. };
  657. 4DFE04D52683C9D17F2ED46993766328 /* MultiSlider */ = {
  658. isa = PBXGroup;
  659. children = (
  660. 04FFFF99310F35B06D5961FB79F833F1 /* MultiSlider.swift */,
  661. CCAD0E73F97BFBDFF39A70A58F0C7D69 /* MultiSlider+Drag.swift */,
  662. C7A8850BF121BA8F4C80C53BECE997E8 /* MultiSlider+Internal.swift */,
  663. 5B9C9C4C316FFC46188AF41149B9EA6F /* MultiSliderExtensions.swift */,
  664. 6286DF24ACBAE938BDE3D59088BB74AD /* MultiValueSlider.swift */,
  665. 84DF53AB4715A65599E0B8B11A83714A /* Resources */,
  666. 0E4B1534708B26DDF73A2D2F985124E4 /* Support Files */,
  667. );
  668. name = MultiSlider;
  669. path = MultiSlider;
  670. sourceTree = "<group>";
  671. };
  672. 59523B3C75B8A68A05D030CA8BA89148 /* Support Files */ = {
  673. isa = PBXGroup;
  674. children = (
  675. 8AED4E8F9B40DB0B50B0B5137E538BB1 /* ObjectMapper.modulemap */,
  676. C5BF1AC4D3E75DD034ED27B1BC83F919 /* ObjectMapper-dummy.m */,
  677. 1FB4FA5A8B233D7F9F1CC0A1DD9D1BB3 /* ObjectMapper-Info.plist */,
  678. 77225919FA546C962EF00BA3EF002C35 /* ObjectMapper-prefix.pch */,
  679. C4DD206B4B9BCAF74ACBA904D9A0A28C /* ObjectMapper-umbrella.h */,
  680. 804AC8BB2BA76962CFF6608E5BEC4E4A /* ObjectMapper.debug.xcconfig */,
  681. 7993EC11462087757A9CF27B5263B86E /* ObjectMapper.release.xcconfig */,
  682. );
  683. name = "Support Files";
  684. path = "../Target Support Files/ObjectMapper";
  685. sourceTree = "<group>";
  686. };
  687. 5C8671FD24FD1027ED382057FC612659 /* Pods */ = {
  688. isa = PBXGroup;
  689. children = (
  690. 2ED4FBD17E3C6D05625198A9E804415E /* JXSegmentedView */,
  691. 4DFE04D52683C9D17F2ED46993766328 /* MultiSlider */,
  692. 4B009B369B9A612A00673EB40AC0E634 /* ObjectMapper */,
  693. E58CE34408549621A71B42EC44A42EE6 /* SnapKit */,
  694. 5E7D70C13D41D1885D20F7028E33F1B7 /* SweeterSwift */,
  695. );
  696. name = Pods;
  697. sourceTree = "<group>";
  698. };
  699. 5E7D70C13D41D1885D20F7028E33F1B7 /* SweeterSwift */ = {
  700. isa = PBXGroup;
  701. children = (
  702. 325E37C08F5694EEEFFA1D7AB13B8813 /* Bundle+Sweeter.swift */,
  703. 824BC5AB55C64C1CD3C028A29A03DDEB /* Codable+Sweeter.swift */,
  704. F81C36BD54EBE0776D9A969FA207B164 /* DateFormatter+Sweeter.swift */,
  705. F2D91FE3939C5CF6283D16A5CBEDBC93 /* NSAttributedString+Sweeter.swift */,
  706. 7EEC61AC542382A1D22527845A93CFD4 /* NSManagedObjectContext+Sweeter.swift */,
  707. 4B132FF2105EA46AA4CB593D82223EE9 /* NSObject+Sweeter.swift */,
  708. 20C97EA71771377A0AFD80807DEFE488 /* String+Sweeter.swift */,
  709. D18B6BBD184AE42FDC5B890EBE0173D4 /* Swift+Sweeter.swift */,
  710. C2CC7C1A6A6AFC533998E8F751C19E4B /* TimeInterval+Sweeter.swift */,
  711. 0CF299190EAEB149856CDD1EB17DE729 /* UIApplication+Sweeter.swift */,
  712. 2C26A8E48462A3162D267FC6C4B53740 /* UIStackView+Sweeter.swift */,
  713. 1478681914D5329E5F273E1025DC77EC /* UITextView+Sweeter.swift */,
  714. C339B9A8179E9DF604A76F882D4AC42D /* UIView+Sweeter.swift */,
  715. 4A8ACC6CDEBAA9C9E0ED0FEE4EF30A7B /* UIViewController+Sweeter.swift */,
  716. 1222FA22E051E364500C7BE83652835D /* Resources */,
  717. B773AAF3E6CA5C37683A47706E1DBA41 /* Support Files */,
  718. );
  719. name = SweeterSwift;
  720. path = SweeterSwift;
  721. sourceTree = "<group>";
  722. };
  723. 65123CF8A39790CC74A4E16F0667473E /* Targets Support Files */ = {
  724. isa = PBXGroup;
  725. children = (
  726. 347549A9AE01622B18C95C7FAF8AD7C1 /* Pods-Girly */,
  727. );
  728. name = "Targets Support Files";
  729. sourceTree = "<group>";
  730. };
  731. 6D7540A0B2C0D7D23C484E53804E4882 /* Support Files */ = {
  732. isa = PBXGroup;
  733. children = (
  734. 9625CC09EE8C17992CD28EDB03F76040 /* ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist */,
  735. 23D2DDEAF2B0A9FC59680ABBD5A79FF6 /* SnapKit.modulemap */,
  736. 7DB3A27D898C99E20B068DE8458DFDD2 /* SnapKit-dummy.m */,
  737. C94CCD4AF20DA0F5099EC12E0BA543BC /* SnapKit-Info.plist */,
  738. 45C67F3C6F29E93850A2C14BB1128A96 /* SnapKit-prefix.pch */,
  739. 3BE950011E25B46C6B9175AAC19C6392 /* SnapKit-umbrella.h */,
  740. D8E225AA330D92BBF60BF2347CD4CC63 /* SnapKit.debug.xcconfig */,
  741. B2A9604864773BD1A5CB554984CC187D /* SnapKit.release.xcconfig */,
  742. );
  743. name = "Support Files";
  744. path = "../Target Support Files/SnapKit";
  745. sourceTree = "<group>";
  746. };
  747. 7A1893525BCA0ADBEE93B84F5F102987 /* Products */ = {
  748. isa = PBXGroup;
  749. children = (
  750. 07928762D9A8551470DAAD7C1E1F53A5 /* JXSegmentedView */,
  751. 92B0EC788EDA1B0CFA48DFFCB3DDAECD /* JXSegmentedView-JXSegmentedView */,
  752. FB710FE125F9F03098F08A750214F3A2 /* MultiSlider */,
  753. 3C410141B888875A25CE8F08150214A8 /* MultiSlider-MultiSlider */,
  754. B9084FE779702931E8DF1D00A2D725FB /* ObjectMapper */,
  755. 5638E92108B2AC895BFFCCE56A9896A6 /* Pods-Girly */,
  756. 979486118B3E90C08386079D57962701 /* SnapKit */,
  757. B9DCB5EC0B1CDADD221717CADDF62359 /* SnapKit-SnapKit_Privacy */,
  758. B76CD9F952582A6A4387D799501B3950 /* SweeterSwift */,
  759. 6C6EAAFEC412666C35242FAC324BAA94 /* SweeterSwift-SweeterSwift */,
  760. );
  761. name = Products;
  762. sourceTree = "<group>";
  763. };
  764. 84DF53AB4715A65599E0B8B11A83714A /* Resources */ = {
  765. isa = PBXGroup;
  766. children = (
  767. EF7FD22B5171283B0AF3E65A5D6E4F52 /* PrivacyInfo.xcprivacy */,
  768. );
  769. name = Resources;
  770. sourceTree = "<group>";
  771. };
  772. B773AAF3E6CA5C37683A47706E1DBA41 /* Support Files */ = {
  773. isa = PBXGroup;
  774. children = (
  775. 4AECD38877B93C8601D16FBED8BF6C55 /* ResourceBundle-SweeterSwift-SweeterSwift-Info.plist */,
  776. 0EFBC94DE8D61BCC9946F21D31CC54B0 /* SweeterSwift.modulemap */,
  777. CEBDDD2AC11C3F4B5C01882118F8CC3A /* SweeterSwift-dummy.m */,
  778. C26BF538716D8AB8CC2E0D7FB0EE47CC /* SweeterSwift-Info.plist */,
  779. 6E2068DE45C15481A9349B8595E4D65C /* SweeterSwift-prefix.pch */,
  780. 0DD554367984B3DD8E6B71ACF83E51AE /* SweeterSwift-umbrella.h */,
  781. 55DEB6154C6CBFC34EE8693784D66256 /* SweeterSwift.debug.xcconfig */,
  782. 5C84F1130CFD546D61756A85AE842074 /* SweeterSwift.release.xcconfig */,
  783. );
  784. name = "Support Files";
  785. path = "../Target Support Files/SweeterSwift";
  786. sourceTree = "<group>";
  787. };
  788. CF1408CF629C7361332E53B88F7BD30C = {
  789. isa = PBXGroup;
  790. children = (
  791. 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
  792. 1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */,
  793. 5C8671FD24FD1027ED382057FC612659 /* Pods */,
  794. 7A1893525BCA0ADBEE93B84F5F102987 /* Products */,
  795. 65123CF8A39790CC74A4E16F0667473E /* Targets Support Files */,
  796. );
  797. sourceTree = "<group>";
  798. };
  799. DA888BF9CCE9FC5AFB9A4BEF55F03F45 /* Support Files */ = {
  800. isa = PBXGroup;
  801. children = (
  802. 755F2F81CB69C686CB767BF75B020364 /* JXSegmentedView.modulemap */,
  803. 80552235702712B382060FE6C0E22CDA /* JXSegmentedView-dummy.m */,
  804. 95C99310670BA400753A7921156A27A4 /* JXSegmentedView-Info.plist */,
  805. 61BBF85025109B6866ADB2BE198CC963 /* JXSegmentedView-prefix.pch */,
  806. A2FF0444E6116FF15A8D71D63CA9B1E4 /* JXSegmentedView-umbrella.h */,
  807. 59F0112EE436C91CD6446E9227D1FE3B /* JXSegmentedView.debug.xcconfig */,
  808. 7F2115E528DC0A1B3F1405AF79ADCC55 /* JXSegmentedView.release.xcconfig */,
  809. 17E8C4C00EF63E592C8EAD3B5BDD1EE0 /* ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist */,
  810. );
  811. name = "Support Files";
  812. path = "../Target Support Files/JXSegmentedView";
  813. sourceTree = "<group>";
  814. };
  815. E58CE34408549621A71B42EC44A42EE6 /* SnapKit */ = {
  816. isa = PBXGroup;
  817. children = (
  818. 73A916D957E322B5988646544E02DA99 /* Constraint.swift */,
  819. 2749227FFC87007A92B9DF6E8E1B3A96 /* ConstraintAttributes.swift */,
  820. 61A54DDE269901F207BA232E7792CEDB /* ConstraintConfig.swift */,
  821. 297C0CFD91491496591D4F595BB7EE04 /* ConstraintConstantTarget.swift */,
  822. ACE1E64ADF99C45F16512AEE318D453D /* ConstraintDescription.swift */,
  823. A78ABE0889EC8BE6EB36997A6A9BDB9E /* ConstraintDirectionalInsets.swift */,
  824. 561F455E3CC58B95397EDD5DD2A10633 /* ConstraintDirectionalInsetTarget.swift */,
  825. 394E7BE0176DD68DBECA5E11866A1419 /* ConstraintDSL.swift */,
  826. D88BCDCDA914B95E90496FD2792D451A /* ConstraintInsets.swift */,
  827. D1A0240A9D619540AEC3330F24471B09 /* ConstraintInsetTarget.swift */,
  828. 9D6AC1E550AAC3DD9798023D6B67D7F0 /* ConstraintItem.swift */,
  829. DB588E9AF8D98DDE72B881193A02805F /* ConstraintLayoutGuide.swift */,
  830. 7E1922C918E77B8D4593761C5BC96C85 /* ConstraintLayoutGuide+Extensions.swift */,
  831. 0051FA3E207532C5B076A6A1DDED126B /* ConstraintLayoutGuideDSL.swift */,
  832. F99833D2FC35B9C9D9CF1DD838CC10DA /* ConstraintLayoutSupport.swift */,
  833. 8915583C29362F908390117555A9AA6E /* ConstraintLayoutSupportDSL.swift */,
  834. 61C12767C7FC36F1904D85DEC8F97CD7 /* ConstraintMaker.swift */,
  835. 8D37CECD7975B336B604EA83CC3EC5F5 /* ConstraintMakerEditable.swift */,
  836. 9B0BE5955CA3309E8933023BD628F2D5 /* ConstraintMakerExtendable.swift */,
  837. 4073F0A0A2F66A8C5CAB3AE6114FCAD1 /* ConstraintMakerFinalizable.swift */,
  838. 9C543D8429E7621A67A2F7D4ACF9EF3D /* ConstraintMakerPrioritizable.swift */,
  839. C71913495B407B550A7D4D7BDDEBEDFC /* ConstraintMakerRelatable.swift */,
  840. C976FF8F929339BCCF7FB189DBFC4776 /* ConstraintMakerRelatable+Extensions.swift */,
  841. 4D9C3BFC1A5C1753E5DE357B638248B7 /* ConstraintMultiplierTarget.swift */,
  842. 0A768C99BFBA30AA615B5F63CE00903D /* ConstraintOffsetTarget.swift */,
  843. 92B8265BC110DCE0AB9868CE2DE9FA2B /* ConstraintPriority.swift */,
  844. 7DF66EE3E04CFC548BA639515286361B /* ConstraintPriorityTarget.swift */,
  845. 6B36FEB1DC0701F57E847770AFB55E21 /* ConstraintRelatableTarget.swift */,
  846. FF44EDDE9874A454B1652205AB3B2BE1 /* ConstraintRelation.swift */,
  847. C3E2FDD2FD4D082D2697AAC0BBF386E5 /* ConstraintView.swift */,
  848. EEE81AAB9460CE10287ADFD04E30427E /* ConstraintView+Extensions.swift */,
  849. 2EC35B562316844F2EE562A3537E2A7C /* ConstraintViewDSL.swift */,
  850. 49428A3FC82FB0A9EE6F186F5A860583 /* Debugging.swift */,
  851. 917BCBF5DEC38964769C433F275F4A56 /* LayoutConstraint.swift */,
  852. 3AF82EF5D8A119B278EB1B3D953A148B /* LayoutConstraintItem.swift */,
  853. F77C10E86D7F8178622BB319F9787E22 /* Typealiases.swift */,
  854. 1FE7052AFA273E0960D8FA05818F7081 /* UILayoutSupport+Extensions.swift */,
  855. 36EEBB7780EA1604A4C714DF06072022 /* Resources */,
  856. 6D7540A0B2C0D7D23C484E53804E4882 /* Support Files */,
  857. );
  858. name = SnapKit;
  859. path = SnapKit;
  860. sourceTree = "<group>";
  861. };
  862. E6BE687CA585B9FA1AEC7BEC28B7095B /* Resources */ = {
  863. isa = PBXGroup;
  864. children = (
  865. 71DA5149C266D102DF66AAD598E34D16 /* PrivacyInfo.xcprivacy */,
  866. );
  867. name = Resources;
  868. sourceTree = "<group>";
  869. };
  870. /* End PBXGroup section */
  871. /* Begin PBXHeadersBuildPhase section */
  872. 555BBC20CC522373F5205FA1B177AD71 /* Headers */ = {
  873. isa = PBXHeadersBuildPhase;
  874. buildActionMask = 2147483647;
  875. files = (
  876. BA752519BCD88C11B808DF90F27BF1CC /* JXSegmentedView-umbrella.h in Headers */,
  877. );
  878. runOnlyForDeploymentPostprocessing = 0;
  879. };
  880. 5B1500FE995B9224E0AF0B42CE93C03B /* Headers */ = {
  881. isa = PBXHeadersBuildPhase;
  882. buildActionMask = 2147483647;
  883. files = (
  884. 57C4F6EFB30DDD14E960AC2D6B34F904 /* SnapKit-umbrella.h in Headers */,
  885. );
  886. runOnlyForDeploymentPostprocessing = 0;
  887. };
  888. 5FCC64FF5D39D0EC2156A041B07C3E33 /* Headers */ = {
  889. isa = PBXHeadersBuildPhase;
  890. buildActionMask = 2147483647;
  891. files = (
  892. 34E3A0CEF1DF0EF6C3F747CB73B711A2 /* ObjectMapper-umbrella.h in Headers */,
  893. );
  894. runOnlyForDeploymentPostprocessing = 0;
  895. };
  896. 8D188EFE2C7EDA90D8326B731D8E0327 /* Headers */ = {
  897. isa = PBXHeadersBuildPhase;
  898. buildActionMask = 2147483647;
  899. files = (
  900. 52C31B51A0320B4839B7994FA836CD58 /* MultiSlider-umbrella.h in Headers */,
  901. );
  902. runOnlyForDeploymentPostprocessing = 0;
  903. };
  904. 9402F2A2D9D04F05C79AB89F8D88D4B9 /* Headers */ = {
  905. isa = PBXHeadersBuildPhase;
  906. buildActionMask = 2147483647;
  907. files = (
  908. 0D87FF9E258696356595973B18266E08 /* SweeterSwift-umbrella.h in Headers */,
  909. );
  910. runOnlyForDeploymentPostprocessing = 0;
  911. };
  912. E226C3FCD8B868EC4E9D4B2FE0312DFB /* Headers */ = {
  913. isa = PBXHeadersBuildPhase;
  914. buildActionMask = 2147483647;
  915. files = (
  916. 027DD49F720E982B354F66D30F851384 /* Pods-Girly-umbrella.h in Headers */,
  917. );
  918. runOnlyForDeploymentPostprocessing = 0;
  919. };
  920. /* End PBXHeadersBuildPhase section */
  921. /* Begin PBXNativeTarget section */
  922. 162E649F50FEC62B61BDD87D1BD422B4 /* ObjectMapper */ = {
  923. isa = PBXNativeTarget;
  924. buildConfigurationList = 1D33C0E8AF073F3821E2C60FBD5451DB /* Build configuration list for PBXNativeTarget "ObjectMapper" */;
  925. buildPhases = (
  926. 5FCC64FF5D39D0EC2156A041B07C3E33 /* Headers */,
  927. A9C198DBC90FE93D1F6609B66EFFBF60 /* Sources */,
  928. 1B18565C99F773591619C6C3FCD28ECA /* Frameworks */,
  929. 817B41C0A26278448641364EC3D4E8F8 /* Resources */,
  930. );
  931. buildRules = (
  932. );
  933. dependencies = (
  934. );
  935. name = ObjectMapper;
  936. productName = ObjectMapper;
  937. productReference = B9084FE779702931E8DF1D00A2D725FB /* ObjectMapper */;
  938. productType = "com.apple.product-type.framework";
  939. };
  940. 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */ = {
  941. isa = PBXNativeTarget;
  942. buildConfigurationList = 80CE967CAA1D35721519F892BAF7A19B /* Build configuration list for PBXNativeTarget "SnapKit" */;
  943. buildPhases = (
  944. 5B1500FE995B9224E0AF0B42CE93C03B /* Headers */,
  945. F7AC6792C89443C7B212A06E810BAB97 /* Sources */,
  946. 33428AC36668E3ED52DB70316F843FB8 /* Frameworks */,
  947. 1DEDF411E550D85A1218E1655456A9CD /* Resources */,
  948. );
  949. buildRules = (
  950. );
  951. dependencies = (
  952. F1FAD08476D49DE1AC4C4D4604957C3F /* PBXTargetDependency */,
  953. );
  954. name = SnapKit;
  955. productName = SnapKit;
  956. productReference = 979486118B3E90C08386079D57962701 /* SnapKit */;
  957. productType = "com.apple.product-type.framework";
  958. };
  959. 52F43AC38D9FF80196C69FB03AEEFDDA /* JXSegmentedView-JXSegmentedView */ = {
  960. isa = PBXNativeTarget;
  961. buildConfigurationList = C420D01260E642942DC12BDFA6AA8691 /* Build configuration list for PBXNativeTarget "JXSegmentedView-JXSegmentedView" */;
  962. buildPhases = (
  963. 6366BA3D1D7C0E83A4B9F1658CB57CDF /* Sources */,
  964. 7D0E024C7B699AE8204443CDC100E3DA /* Frameworks */,
  965. BBC7A6DCE2CA4AD4C0281B101564829E /* Resources */,
  966. );
  967. buildRules = (
  968. );
  969. dependencies = (
  970. );
  971. name = "JXSegmentedView-JXSegmentedView";
  972. productName = JXSegmentedView;
  973. productReference = 92B0EC788EDA1B0CFA48DFFCB3DDAECD /* JXSegmentedView-JXSegmentedView */;
  974. productType = "com.apple.product-type.bundle";
  975. };
  976. 6819F499159C87193DDD7D51504DD6C1 /* SweeterSwift */ = {
  977. isa = PBXNativeTarget;
  978. buildConfigurationList = 26EB5109BF2A432DC7DC1A3B8669DCAF /* Build configuration list for PBXNativeTarget "SweeterSwift" */;
  979. buildPhases = (
  980. 9402F2A2D9D04F05C79AB89F8D88D4B9 /* Headers */,
  981. 864D0416CB36D73F735760C6022F1690 /* Sources */,
  982. 05575D502814981ABF3FA57506E50F4B /* Frameworks */,
  983. C23E8EC8C75BAD23E6D8E555E416D52A /* Resources */,
  984. );
  985. buildRules = (
  986. );
  987. dependencies = (
  988. 550FAD1357D8049061C4B6BE8C4D9B76 /* PBXTargetDependency */,
  989. );
  990. name = SweeterSwift;
  991. productName = SweeterSwift;
  992. productReference = B76CD9F952582A6A4387D799501B3950 /* SweeterSwift */;
  993. productType = "com.apple.product-type.framework";
  994. };
  995. 6AC06A0352BD0093A0EFD2CDDF7680D8 /* SweeterSwift-SweeterSwift */ = {
  996. isa = PBXNativeTarget;
  997. buildConfigurationList = CB4EBC095C4EF9903CE4FD69734EE085 /* Build configuration list for PBXNativeTarget "SweeterSwift-SweeterSwift" */;
  998. buildPhases = (
  999. 16A481C8050868775DE2BABF74E23374 /* Sources */,
  1000. 871C23F2BBD048C17045E75698D362EE /* Frameworks */,
  1001. 6EB1898EB274F4C67914FBC01175DB45 /* Resources */,
  1002. );
  1003. buildRules = (
  1004. );
  1005. dependencies = (
  1006. );
  1007. name = "SweeterSwift-SweeterSwift";
  1008. productName = SweeterSwift;
  1009. productReference = 6C6EAAFEC412666C35242FAC324BAA94 /* SweeterSwift-SweeterSwift */;
  1010. productType = "com.apple.product-type.bundle";
  1011. };
  1012. 7E738E6D39BE9E72A7D00F75289F5B0D /* Pods-Girly */ = {
  1013. isa = PBXNativeTarget;
  1014. buildConfigurationList = 76A1BA1226281B6189D7175F2974490C /* Build configuration list for PBXNativeTarget "Pods-Girly" */;
  1015. buildPhases = (
  1016. E226C3FCD8B868EC4E9D4B2FE0312DFB /* Headers */,
  1017. BE8CCFD12EE4F55799D82D5305E63391 /* Sources */,
  1018. 12172F131C2B2F8DB7CBE4E68F87842A /* Frameworks */,
  1019. EF69C946A9C8EA6E82C118005735DCAC /* Resources */,
  1020. );
  1021. buildRules = (
  1022. );
  1023. dependencies = (
  1024. 4919CD2B27ECAC7A28F2E0E92219A46B /* PBXTargetDependency */,
  1025. 308F21886D02AB6363A118A44856F8CB /* PBXTargetDependency */,
  1026. 9EBB491637E74290B1807901F51D4D19 /* PBXTargetDependency */,
  1027. 1BA1F881567A12F9DE8D88283E1756FF /* PBXTargetDependency */,
  1028. F6EE99F6C06FEC9622FB0BD274D43459 /* PBXTargetDependency */,
  1029. );
  1030. name = "Pods-Girly";
  1031. productName = Pods_Girly;
  1032. productReference = 5638E92108B2AC895BFFCCE56A9896A6 /* Pods-Girly */;
  1033. productType = "com.apple.product-type.framework";
  1034. };
  1035. 8A8DB685241263AFDF5E6B20FE67B93A /* SnapKit-SnapKit_Privacy */ = {
  1036. isa = PBXNativeTarget;
  1037. buildConfigurationList = AFDD0372F58011135391CED4554E3B11 /* Build configuration list for PBXNativeTarget "SnapKit-SnapKit_Privacy" */;
  1038. buildPhases = (
  1039. 8E22F3F6D12FFEA4473FC184B92E27B9 /* Sources */,
  1040. FD4C816CA387FD82D6F7991235333BEA /* Frameworks */,
  1041. 30CB011402A4F811082C78F547DB03C5 /* Resources */,
  1042. );
  1043. buildRules = (
  1044. );
  1045. dependencies = (
  1046. );
  1047. name = "SnapKit-SnapKit_Privacy";
  1048. productName = SnapKit_Privacy;
  1049. productReference = B9DCB5EC0B1CDADD221717CADDF62359 /* SnapKit-SnapKit_Privacy */;
  1050. productType = "com.apple.product-type.bundle";
  1051. };
  1052. E863A9A96F52A35F47491E7B41ECEF9A /* JXSegmentedView */ = {
  1053. isa = PBXNativeTarget;
  1054. buildConfigurationList = 66B152014077D8F36EFF337E427F59A7 /* Build configuration list for PBXNativeTarget "JXSegmentedView" */;
  1055. buildPhases = (
  1056. 555BBC20CC522373F5205FA1B177AD71 /* Headers */,
  1057. DA31F63F5C1BF564EFE8B10112B97C3D /* Sources */,
  1058. DAB7FA377C8832478E925179037316B7 /* Frameworks */,
  1059. 638C1112FDDCA052661122889EB7191C /* Resources */,
  1060. );
  1061. buildRules = (
  1062. );
  1063. dependencies = (
  1064. A1C19AC465BA41E0B5A2BC16DC4BD959 /* PBXTargetDependency */,
  1065. );
  1066. name = JXSegmentedView;
  1067. productName = JXSegmentedView;
  1068. productReference = 07928762D9A8551470DAAD7C1E1F53A5 /* JXSegmentedView */;
  1069. productType = "com.apple.product-type.framework";
  1070. };
  1071. F69984ED0D5D3CC1B9D170E4AC78A24E /* MultiSlider */ = {
  1072. isa = PBXNativeTarget;
  1073. buildConfigurationList = 7FA39A16EB9D6360E2E2ED9E3CFE37DA /* Build configuration list for PBXNativeTarget "MultiSlider" */;
  1074. buildPhases = (
  1075. 8D188EFE2C7EDA90D8326B731D8E0327 /* Headers */,
  1076. 301D163D15C4A58B90400888BD41A104 /* Sources */,
  1077. 2ED0C17687CCD1B79F8092ABD097D75B /* Frameworks */,
  1078. 292B7381763B0BA283140A25FEEA9E41 /* Resources */,
  1079. );
  1080. buildRules = (
  1081. );
  1082. dependencies = (
  1083. AE4047439974AC2BB52203AD0E14227B /* PBXTargetDependency */,
  1084. F97C07BFC121B9221B8FCBFD0FC70954 /* PBXTargetDependency */,
  1085. );
  1086. name = MultiSlider;
  1087. productName = MultiSlider;
  1088. productReference = FB710FE125F9F03098F08A750214F3A2 /* MultiSlider */;
  1089. productType = "com.apple.product-type.framework";
  1090. };
  1091. FA755404924ED490AAE8819D2305E8AD /* MultiSlider-MultiSlider */ = {
  1092. isa = PBXNativeTarget;
  1093. buildConfigurationList = 1458CACC1000EF206528E0402775ECB4 /* Build configuration list for PBXNativeTarget "MultiSlider-MultiSlider" */;
  1094. buildPhases = (
  1095. EFBE0A4F38A2F34123404F2D37B1C99E /* Sources */,
  1096. 7B718F07A7122A0F8262C2B75FE5197F /* Frameworks */,
  1097. BB3FDD9AFC9695C9D4717B5B63EE27CF /* Resources */,
  1098. );
  1099. buildRules = (
  1100. );
  1101. dependencies = (
  1102. );
  1103. name = "MultiSlider-MultiSlider";
  1104. productName = MultiSlider;
  1105. productReference = 3C410141B888875A25CE8F08150214A8 /* MultiSlider-MultiSlider */;
  1106. productType = "com.apple.product-type.bundle";
  1107. };
  1108. /* End PBXNativeTarget section */
  1109. /* Begin PBXProject section */
  1110. BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
  1111. isa = PBXProject;
  1112. attributes = {
  1113. LastSwiftUpdateCheck = 1600;
  1114. LastUpgradeCheck = 1600;
  1115. };
  1116. buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
  1117. compatibilityVersion = "Xcode 16.0";
  1118. developmentRegion = en;
  1119. hasScannedForEncodings = 0;
  1120. knownRegions = (
  1121. Base,
  1122. en,
  1123. );
  1124. mainGroup = CF1408CF629C7361332E53B88F7BD30C;
  1125. minimizedProjectReferenceProxies = 0;
  1126. preferredProjectObjectVersion = 77;
  1127. productRefGroup = 7A1893525BCA0ADBEE93B84F5F102987 /* Products */;
  1128. projectDirPath = "";
  1129. projectRoot = "";
  1130. targets = (
  1131. E863A9A96F52A35F47491E7B41ECEF9A /* JXSegmentedView */,
  1132. 52F43AC38D9FF80196C69FB03AEEFDDA /* JXSegmentedView-JXSegmentedView */,
  1133. F69984ED0D5D3CC1B9D170E4AC78A24E /* MultiSlider */,
  1134. FA755404924ED490AAE8819D2305E8AD /* MultiSlider-MultiSlider */,
  1135. 162E649F50FEC62B61BDD87D1BD422B4 /* ObjectMapper */,
  1136. 7E738E6D39BE9E72A7D00F75289F5B0D /* Pods-Girly */,
  1137. 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */,
  1138. 8A8DB685241263AFDF5E6B20FE67B93A /* SnapKit-SnapKit_Privacy */,
  1139. 6819F499159C87193DDD7D51504DD6C1 /* SweeterSwift */,
  1140. 6AC06A0352BD0093A0EFD2CDDF7680D8 /* SweeterSwift-SweeterSwift */,
  1141. );
  1142. };
  1143. /* End PBXProject section */
  1144. /* Begin PBXResourcesBuildPhase section */
  1145. 1DEDF411E550D85A1218E1655456A9CD /* Resources */ = {
  1146. isa = PBXResourcesBuildPhase;
  1147. buildActionMask = 2147483647;
  1148. files = (
  1149. 9E0045B41BFE697DB4ADE151228024D2 /* SnapKit-SnapKit_Privacy in Resources */,
  1150. );
  1151. runOnlyForDeploymentPostprocessing = 0;
  1152. };
  1153. 292B7381763B0BA283140A25FEEA9E41 /* Resources */ = {
  1154. isa = PBXResourcesBuildPhase;
  1155. buildActionMask = 2147483647;
  1156. files = (
  1157. 7A1BBDF678D2D1606BC8A753EC2502B0 /* MultiSlider-MultiSlider in Resources */,
  1158. );
  1159. runOnlyForDeploymentPostprocessing = 0;
  1160. };
  1161. 30CB011402A4F811082C78F547DB03C5 /* Resources */ = {
  1162. isa = PBXResourcesBuildPhase;
  1163. buildActionMask = 2147483647;
  1164. files = (
  1165. DBBE31DA02DA9499E1553B3EC6A991B5 /* PrivacyInfo.xcprivacy in Resources */,
  1166. );
  1167. runOnlyForDeploymentPostprocessing = 0;
  1168. };
  1169. 638C1112FDDCA052661122889EB7191C /* Resources */ = {
  1170. isa = PBXResourcesBuildPhase;
  1171. buildActionMask = 2147483647;
  1172. files = (
  1173. 3EF14854F58A20B60C9C3C9003534182 /* JXSegmentedView-JXSegmentedView in Resources */,
  1174. );
  1175. runOnlyForDeploymentPostprocessing = 0;
  1176. };
  1177. 6EB1898EB274F4C67914FBC01175DB45 /* Resources */ = {
  1178. isa = PBXResourcesBuildPhase;
  1179. buildActionMask = 2147483647;
  1180. files = (
  1181. 89C097742A83F6E028352697CB82F735 /* PrivacyInfo.xcprivacy in Resources */,
  1182. );
  1183. runOnlyForDeploymentPostprocessing = 0;
  1184. };
  1185. 817B41C0A26278448641364EC3D4E8F8 /* Resources */ = {
  1186. isa = PBXResourcesBuildPhase;
  1187. buildActionMask = 2147483647;
  1188. files = (
  1189. );
  1190. runOnlyForDeploymentPostprocessing = 0;
  1191. };
  1192. BB3FDD9AFC9695C9D4717B5B63EE27CF /* Resources */ = {
  1193. isa = PBXResourcesBuildPhase;
  1194. buildActionMask = 2147483647;
  1195. files = (
  1196. 4B0671BA26F3F76A17DCC7BF7D233FC2 /* PrivacyInfo.xcprivacy in Resources */,
  1197. );
  1198. runOnlyForDeploymentPostprocessing = 0;
  1199. };
  1200. BBC7A6DCE2CA4AD4C0281B101564829E /* Resources */ = {
  1201. isa = PBXResourcesBuildPhase;
  1202. buildActionMask = 2147483647;
  1203. files = (
  1204. 2AFC6BFB9945369533025001D593B35D /* PrivacyInfo.xcprivacy in Resources */,
  1205. );
  1206. runOnlyForDeploymentPostprocessing = 0;
  1207. };
  1208. C23E8EC8C75BAD23E6D8E555E416D52A /* Resources */ = {
  1209. isa = PBXResourcesBuildPhase;
  1210. buildActionMask = 2147483647;
  1211. files = (
  1212. C063D0DA5B2F211845305BB78C8D9803 /* SweeterSwift-SweeterSwift in Resources */,
  1213. );
  1214. runOnlyForDeploymentPostprocessing = 0;
  1215. };
  1216. EF69C946A9C8EA6E82C118005735DCAC /* Resources */ = {
  1217. isa = PBXResourcesBuildPhase;
  1218. buildActionMask = 2147483647;
  1219. files = (
  1220. );
  1221. runOnlyForDeploymentPostprocessing = 0;
  1222. };
  1223. /* End PBXResourcesBuildPhase section */
  1224. /* Begin PBXSourcesBuildPhase section */
  1225. 16A481C8050868775DE2BABF74E23374 /* Sources */ = {
  1226. isa = PBXSourcesBuildPhase;
  1227. buildActionMask = 2147483647;
  1228. files = (
  1229. );
  1230. runOnlyForDeploymentPostprocessing = 0;
  1231. };
  1232. 301D163D15C4A58B90400888BD41A104 /* Sources */ = {
  1233. isa = PBXSourcesBuildPhase;
  1234. buildActionMask = 2147483647;
  1235. files = (
  1236. 648BC3EE05C40C21DB88F8EA34E53AD0 /* MultiSlider.swift in Sources */,
  1237. 05FAB8E9C8630A7497AEE3F7C015FC6C /* MultiSlider+Drag.swift in Sources */,
  1238. 30467B74ECC7B5AEBCB76D4FA19B7A1C /* MultiSlider+Internal.swift in Sources */,
  1239. 710781457AE12DFD9703A458938BD533 /* MultiSlider-dummy.m in Sources */,
  1240. CE789F6EA6BFA43DB4D3D08C0C7BE47F /* MultiSliderExtensions.swift in Sources */,
  1241. C2417F6BE3BADD217220A7F045554F50 /* MultiValueSlider.swift in Sources */,
  1242. );
  1243. runOnlyForDeploymentPostprocessing = 0;
  1244. };
  1245. 6366BA3D1D7C0E83A4B9F1658CB57CDF /* Sources */ = {
  1246. isa = PBXSourcesBuildPhase;
  1247. buildActionMask = 2147483647;
  1248. files = (
  1249. );
  1250. runOnlyForDeploymentPostprocessing = 0;
  1251. };
  1252. 864D0416CB36D73F735760C6022F1690 /* Sources */ = {
  1253. isa = PBXSourcesBuildPhase;
  1254. buildActionMask = 2147483647;
  1255. files = (
  1256. 7A9660A2AC386E514B68FED341D6FA1F /* Bundle+Sweeter.swift in Sources */,
  1257. 725C8D005DEAD6CCFBD8DA10DFA23B62 /* Codable+Sweeter.swift in Sources */,
  1258. F19FE2BB0D37466CD650B2FE075A6796 /* DateFormatter+Sweeter.swift in Sources */,
  1259. 25C1426AFBA71FEE8A0BF53E7D633B9C /* NSAttributedString+Sweeter.swift in Sources */,
  1260. A711E018ED010EF95310EF85E64F92FC /* NSManagedObjectContext+Sweeter.swift in Sources */,
  1261. 07C6F286A432003A8E4E62751791ABFD /* NSObject+Sweeter.swift in Sources */,
  1262. ADF83838AC040A73E171759F6EAAF9B0 /* String+Sweeter.swift in Sources */,
  1263. 00F303D1B7EE883D937E3FF3D46F6751 /* SweeterSwift-dummy.m in Sources */,
  1264. 1A914AD9784F06CB2631B5CBB439F88B /* Swift+Sweeter.swift in Sources */,
  1265. 71F8FB5FC21EE6B050994DDA89D3B84C /* TimeInterval+Sweeter.swift in Sources */,
  1266. E4B59A0897DAA1D191C874B4F2C76054 /* UIApplication+Sweeter.swift in Sources */,
  1267. 41BEFFED77DA27933D41C82B31545CF4 /* UIStackView+Sweeter.swift in Sources */,
  1268. F015995E4EDA80747B68E82BD2BB6477 /* UITextView+Sweeter.swift in Sources */,
  1269. 41BCB79DE4BF4EE99C9E59954F078499 /* UIView+Sweeter.swift in Sources */,
  1270. 251EB5FED3574E10FC76C94F7E9FD14F /* UIViewController+Sweeter.swift in Sources */,
  1271. );
  1272. runOnlyForDeploymentPostprocessing = 0;
  1273. };
  1274. 8E22F3F6D12FFEA4473FC184B92E27B9 /* Sources */ = {
  1275. isa = PBXSourcesBuildPhase;
  1276. buildActionMask = 2147483647;
  1277. files = (
  1278. );
  1279. runOnlyForDeploymentPostprocessing = 0;
  1280. };
  1281. A9C198DBC90FE93D1F6609B66EFFBF60 /* Sources */ = {
  1282. isa = PBXSourcesBuildPhase;
  1283. buildActionMask = 2147483647;
  1284. files = (
  1285. 61D98B283CE925046B10319E0084EB47 /* CodableTransform.swift in Sources */,
  1286. 2CC335A4FA15A2B3254109561D8D3B52 /* CustomDateFormatTransform.swift in Sources */,
  1287. C74A57B9D0D3D8CE03CA6E0779BB0B4D /* DataTransform.swift in Sources */,
  1288. 0BD80D0BA5C72ACE2C5D5E18F1E7C517 /* DateFormatterTransform.swift in Sources */,
  1289. 39E0E6446BA7506FD60899B82736AA3B /* DateTransform.swift in Sources */,
  1290. 0481F9824059F400F094445B6CE1F07A /* DictionaryTransform.swift in Sources */,
  1291. 517F7F319A053766D1CE3C3E7A57EB7A /* EnumOperators.swift in Sources */,
  1292. 6EB8DB7E0B46D8D212C632E7F18F45D0 /* EnumTransform.swift in Sources */,
  1293. B29BC196744CCC2D226A5227CE616D5E /* FromJSON.swift in Sources */,
  1294. 424435B35F2591B77429269BDAFEB077 /* HexColorTransform.swift in Sources */,
  1295. 5B8EEB396F66172C10168511A111BAEA /* ImmutableMappable.swift in Sources */,
  1296. 4FC485A749A8AD5CB5135B86A7422103 /* IntegerOperators.swift in Sources */,
  1297. 00789924F6FF8825AF75A2776BFA015F /* ISO8601DateTransform.swift in Sources */,
  1298. FF9E6D072563A0209EE8D525BE50041E /* Map.swift in Sources */,
  1299. A251EE3CE93F32A54196F35C23756357 /* MapError.swift in Sources */,
  1300. C5C8B4E9B398A09C20AD3191B687A4A9 /* Mappable.swift in Sources */,
  1301. 3051B194B166E36A3564CA607EBD7589 /* Mapper.swift in Sources */,
  1302. CCCB6AC4BD17F2251527413CEB698DE9 /* NSDecimalNumberTransform.swift in Sources */,
  1303. 8E2704A6AF675A59F00B43A82F3BCE43 /* ObjectMapper-dummy.m in Sources */,
  1304. 951EF9AF7676766D0DBF9602F2B197DC /* Operators.swift in Sources */,
  1305. 90312430AF84DF8634BBA3ECD3384F3F /* ToJSON.swift in Sources */,
  1306. CC8DBBFECBD1CDC823E6AC6920B472DB /* TransformOf.swift in Sources */,
  1307. D98A76939BDF2369CD43DBB47DA23B1E /* TransformOperators.swift in Sources */,
  1308. D5B5FEC098AD312EE618C3E4010806F0 /* TransformType.swift in Sources */,
  1309. CB69A73073036445EA7F67524ECD6D69 /* URLTransform.swift in Sources */,
  1310. );
  1311. runOnlyForDeploymentPostprocessing = 0;
  1312. };
  1313. BE8CCFD12EE4F55799D82D5305E63391 /* Sources */ = {
  1314. isa = PBXSourcesBuildPhase;
  1315. buildActionMask = 2147483647;
  1316. files = (
  1317. 916DAAFC342684DFC731E12718C5C533 /* Pods-Girly-dummy.m in Sources */,
  1318. );
  1319. runOnlyForDeploymentPostprocessing = 0;
  1320. };
  1321. DA31F63F5C1BF564EFE8B10112B97C3D /* Sources */ = {
  1322. isa = PBXSourcesBuildPhase;
  1323. buildActionMask = 2147483647;
  1324. files = (
  1325. C6303874D7A50DBA4CF6E9A3C5FAEA23 /* JXSegmentedAnimator.swift in Sources */,
  1326. F0E169740ED94A71B66B2BB1180DFADB /* JXSegmentedBaseCell.swift in Sources */,
  1327. 6CFD2C922D038DFAE3E29E6D36862B7F /* JXSegmentedBaseDataSource.swift in Sources */,
  1328. 783262E743611A588DA9286744DB1D38 /* JXSegmentedBaseItemModel.swift in Sources */,
  1329. AC98848B2D4026203A9D3453FC33C410 /* JXSegmentedCollectionView.swift in Sources */,
  1330. 8735681165459DE3704F09E8C4C82245 /* JXSegmentedComponetGradientView.swift in Sources */,
  1331. 601F084CBEBFF38C14BA09E1C1082207 /* JXSegmentedDotCell.swift in Sources */,
  1332. C4F5B6F0362A86D29897C12F77BB0C8D /* JXSegmentedDotDataSource.swift in Sources */,
  1333. 892E8359C2C6A1F243CE0F899942AB75 /* JXSegmentedDotItemModel.swift in Sources */,
  1334. A6358AB95E6B0F141B3998BE7FAA1DF3 /* JXSegmentedIndicatorBackgroundView.swift in Sources */,
  1335. 61DE4818AB0F6C757778533681BB5BC4 /* JXSegmentedIndicatorBaseView.swift in Sources */,
  1336. FA1F406D79CAE34B005D23FBC44CCFA4 /* JXSegmentedIndicatorDotLineView.swift in Sources */,
  1337. 3F9E6C98A37123E80F50E56DDF577190 /* JXSegmentedIndicatorDoubleLineView.swift in Sources */,
  1338. 6B5857C07676DAFEE8AE9B46191AF1AB /* JXSegmentedIndicatorGradientLineView.swift in Sources */,
  1339. 0C3D4291FFBED980F69CD5821279D442 /* JXSegmentedIndicatorGradientView.swift in Sources */,
  1340. D27E09C517629DEE3D4DDA878DF60404 /* JXSegmentedIndicatorImageView.swift in Sources */,
  1341. EB9220B4AE7EACEC16C137B45BB5F855 /* JXSegmentedIndicatorLineView.swift in Sources */,
  1342. 11AC94DCADE2CADC9C2D331B98AA4963 /* JXSegmentedIndicatorParams.swift in Sources */,
  1343. DEDA0FA950FFD65173728E16ADE82503 /* JXSegmentedIndicatorProtocol.swift in Sources */,
  1344. 81DB630DB3E52718A2CC5F800289C971 /* JXSegmentedIndicatorRainbowLineView.swift in Sources */,
  1345. F720D345CA6EDDF31C033B043842C309 /* JXSegmentedIndicatorTriangleView.swift in Sources */,
  1346. 61F776DB3F7F5CF9E0E9CB6369A5199D /* JXSegmentedListContainerView.swift in Sources */,
  1347. 0DCDB655B15E900159FFD67406EB7A78 /* JXSegmentedNumberCell.swift in Sources */,
  1348. BA80829B0241C0C623AE5CA7B5290579 /* JXSegmentedNumberDataSource.swift in Sources */,
  1349. 7C49C4A9FD1A334538FEF005C51DAF14 /* JXSegmentedNumberItemModel.swift in Sources */,
  1350. 0C7B16CDEE141EFEA69F6C24EFD24538 /* JXSegmentedRTLLayout.swift in Sources */,
  1351. E3AD1D66BFBF0D6E1F22A33F13E0E637 /* JXSegmentedTitleAttributeCell.swift in Sources */,
  1352. 2E03028C0560B11777FC25B9871807D1 /* JXSegmentedTitleAttributeDataSource.swift in Sources */,
  1353. E3CB81C454B7EE60FCF7E31A6FB0C9A2 /* JXSegmentedTitleAttributeItemModel.swift in Sources */,
  1354. 0F1CCF0B90DF2D891E1D657D49EC1FD4 /* JXSegmentedTitleCell.swift in Sources */,
  1355. 98F24E0FC1F618E1103FBCE89E95EF59 /* JXSegmentedTitleDataSource.swift in Sources */,
  1356. 815106CC8EF9E34D79F7A219488072F9 /* JXSegmentedTitleDynamicConfiguration.swift in Sources */,
  1357. 222EAE33ACDDFF53C2FC19E98D74A6AD /* JXSegmentedTitleGradientCell.swift in Sources */,
  1358. 0D6E4D906F5C8B3D578A298D338D44C7 /* JXSegmentedTitleGradientDataSource.swift in Sources */,
  1359. 9ADA956CC6DF9FCAF5C3F85A4F118CB1 /* JXSegmentedTitleGradientItemModel.swift in Sources */,
  1360. 27230EFC10AA5FC0FE07DFB363946087 /* JXSegmentedTitleImageCell.swift in Sources */,
  1361. 46A62F64134B8BEC9357A9F27120EA4B /* JXSegmentedTitleImageDataSource.swift in Sources */,
  1362. 2BD8CCE452C2AF97FCCE232BDE29411F /* JXSegmentedTitleImageItemModel.swift in Sources */,
  1363. 330D3854DF35A2FC19261DA8F54B2E69 /* JXSegmentedTitleItemModel.swift in Sources */,
  1364. 4AA4BF9223F81025C2082D7218D0E8CC /* JXSegmentedTitleOrImageCell.swift in Sources */,
  1365. CB4B0DEEC667441EBA069A831E3881F1 /* JXSegmentedTitleOrImageDataSource.swift in Sources */,
  1366. 0678F4CA87771C7D60C953A1382CAA62 /* JXSegmentedTitleOrImageItemModel.swift in Sources */,
  1367. 2A237443D406994249E968E4BB559202 /* JXSegmentedView.swift in Sources */,
  1368. 78AC491AFAC74EEE8DF62D7F3452B8E1 /* JXSegmentedView-dummy.m in Sources */,
  1369. BC9E49CD2401E8EC7F0FBB1B2496C4F9 /* JXSegmentedViewTool.swift in Sources */,
  1370. );
  1371. runOnlyForDeploymentPostprocessing = 0;
  1372. };
  1373. EFBE0A4F38A2F34123404F2D37B1C99E /* Sources */ = {
  1374. isa = PBXSourcesBuildPhase;
  1375. buildActionMask = 2147483647;
  1376. files = (
  1377. );
  1378. runOnlyForDeploymentPostprocessing = 0;
  1379. };
  1380. F7AC6792C89443C7B212A06E810BAB97 /* Sources */ = {
  1381. isa = PBXSourcesBuildPhase;
  1382. buildActionMask = 2147483647;
  1383. files = (
  1384. 6E39129FC8643A70C276801FEF4C280D /* Constraint.swift in Sources */,
  1385. 0CA7A132ABE7018DE9295456732F38BB /* ConstraintAttributes.swift in Sources */,
  1386. F9EBA65892D78A31C068D727D84BCB88 /* ConstraintConfig.swift in Sources */,
  1387. CE593943A9E7CF83822CF60304BCAD43 /* ConstraintConstantTarget.swift in Sources */,
  1388. 7AF516B98D45391B909D507D0244104C /* ConstraintDescription.swift in Sources */,
  1389. 1194E62AA3F6F506799B1A43B16942B5 /* ConstraintDirectionalInsets.swift in Sources */,
  1390. E37671A03B4C17A1CF3766A6125833BB /* ConstraintDirectionalInsetTarget.swift in Sources */,
  1391. 868A9F524A7985BDA1EA124D9BF4CA63 /* ConstraintDSL.swift in Sources */,
  1392. AF760C78F1C7E11BF7CB9E9B29903530 /* ConstraintInsets.swift in Sources */,
  1393. 2B2EB369550CE92CEEFCBFD3D32B8A3F /* ConstraintInsetTarget.swift in Sources */,
  1394. 5922A6A0AE7152CF436356B3556F1835 /* ConstraintItem.swift in Sources */,
  1395. 59F34874DA4ABB2F5C4E09EA6865936B /* ConstraintLayoutGuide.swift in Sources */,
  1396. E3D779DEE753C0B0D33BA8E73A980265 /* ConstraintLayoutGuide+Extensions.swift in Sources */,
  1397. 3D3B646B4988314275B40E97BEB16C7F /* ConstraintLayoutGuideDSL.swift in Sources */,
  1398. B0875E3AB8718E7DFE5C53497C02A15E /* ConstraintLayoutSupport.swift in Sources */,
  1399. 064D909CD827405E8DCC309DB1B7775A /* ConstraintLayoutSupportDSL.swift in Sources */,
  1400. 4F4DEB687C0E4834A5B291DEE0651D6A /* ConstraintMaker.swift in Sources */,
  1401. C14F10B663FE2898EACAB90C202B3F50 /* ConstraintMakerEditable.swift in Sources */,
  1402. D4218DA55B2BA45937589200CC0DF1FB /* ConstraintMakerExtendable.swift in Sources */,
  1403. B903049E7C1BED7918DAB208754107C7 /* ConstraintMakerFinalizable.swift in Sources */,
  1404. AABEF13464BA7F4621BD94736C1D057C /* ConstraintMakerPrioritizable.swift in Sources */,
  1405. BDA5C7CC91E86448237CF40954FAC5AF /* ConstraintMakerRelatable.swift in Sources */,
  1406. 8BABA32F7B94A25D8E9208C0A8D90B2E /* ConstraintMakerRelatable+Extensions.swift in Sources */,
  1407. 883EDEE1C699497CF2A77C3B8A32A790 /* ConstraintMultiplierTarget.swift in Sources */,
  1408. 3577F172FA68CBAE47CFEE6FE25C5404 /* ConstraintOffsetTarget.swift in Sources */,
  1409. 09E1F569A93FAD4B9149E30B9301F44A /* ConstraintPriority.swift in Sources */,
  1410. DBA4803F4765E1650B8C6841157F5D73 /* ConstraintPriorityTarget.swift in Sources */,
  1411. C07CB3E9A4D1BF00F841E4285629A2B2 /* ConstraintRelatableTarget.swift in Sources */,
  1412. ECC5C2ADC2682F9171FEA22AF10DCE53 /* ConstraintRelation.swift in Sources */,
  1413. 86CAB01D950C8BC35EDE0BDC01A2500B /* ConstraintView.swift in Sources */,
  1414. 0DE5DB9C6227B3416778D8417DD95EA9 /* ConstraintView+Extensions.swift in Sources */,
  1415. 7D42390CDB4FA147504B03DA2A174A0C /* ConstraintViewDSL.swift in Sources */,
  1416. AE224EDB6D044C0FE86B086E950FC2F9 /* Debugging.swift in Sources */,
  1417. BF1AE4D97E813B95C43EA4A298B973D1 /* LayoutConstraint.swift in Sources */,
  1418. C6F45595676957ADBEC18EB3F23EAEC4 /* LayoutConstraintItem.swift in Sources */,
  1419. BA2FB695DEB0D179253EEB8DFCE3578B /* SnapKit-dummy.m in Sources */,
  1420. C6A4302ACE006C4E2CDD481287E2916B /* Typealiases.swift in Sources */,
  1421. F6F33E8B268F3D41075374D95B8088DC /* UILayoutSupport+Extensions.swift in Sources */,
  1422. );
  1423. runOnlyForDeploymentPostprocessing = 0;
  1424. };
  1425. /* End PBXSourcesBuildPhase section */
  1426. /* Begin PBXTargetDependency section */
  1427. 1BA1F881567A12F9DE8D88283E1756FF /* PBXTargetDependency */ = {
  1428. isa = PBXTargetDependency;
  1429. name = SnapKit;
  1430. target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */;
  1431. targetProxy = 18F2BA718B19635383425AA791E53D1D /* PBXContainerItemProxy */;
  1432. };
  1433. 308F21886D02AB6363A118A44856F8CB /* PBXTargetDependency */ = {
  1434. isa = PBXTargetDependency;
  1435. name = MultiSlider;
  1436. target = F69984ED0D5D3CC1B9D170E4AC78A24E /* MultiSlider */;
  1437. targetProxy = BCEEF5E99A3CCE0D57CFB79EAD6173BE /* PBXContainerItemProxy */;
  1438. };
  1439. 4919CD2B27ECAC7A28F2E0E92219A46B /* PBXTargetDependency */ = {
  1440. isa = PBXTargetDependency;
  1441. name = JXSegmentedView;
  1442. target = E863A9A96F52A35F47491E7B41ECEF9A /* JXSegmentedView */;
  1443. targetProxy = E2EB3630C942C71190ADFCC0701804B5 /* PBXContainerItemProxy */;
  1444. };
  1445. 550FAD1357D8049061C4B6BE8C4D9B76 /* PBXTargetDependency */ = {
  1446. isa = PBXTargetDependency;
  1447. name = "SweeterSwift-SweeterSwift";
  1448. target = 6AC06A0352BD0093A0EFD2CDDF7680D8 /* SweeterSwift-SweeterSwift */;
  1449. targetProxy = D1F593CBB729AD7160BCB198FCAA695E /* PBXContainerItemProxy */;
  1450. };
  1451. 9EBB491637E74290B1807901F51D4D19 /* PBXTargetDependency */ = {
  1452. isa = PBXTargetDependency;
  1453. name = ObjectMapper;
  1454. target = 162E649F50FEC62B61BDD87D1BD422B4 /* ObjectMapper */;
  1455. targetProxy = 73832FB1F08BBB44A71B956817813616 /* PBXContainerItemProxy */;
  1456. };
  1457. A1C19AC465BA41E0B5A2BC16DC4BD959 /* PBXTargetDependency */ = {
  1458. isa = PBXTargetDependency;
  1459. name = "JXSegmentedView-JXSegmentedView";
  1460. target = 52F43AC38D9FF80196C69FB03AEEFDDA /* JXSegmentedView-JXSegmentedView */;
  1461. targetProxy = E28DB10EE4832933769975943D898B68 /* PBXContainerItemProxy */;
  1462. };
  1463. AE4047439974AC2BB52203AD0E14227B /* PBXTargetDependency */ = {
  1464. isa = PBXTargetDependency;
  1465. name = "MultiSlider-MultiSlider";
  1466. target = FA755404924ED490AAE8819D2305E8AD /* MultiSlider-MultiSlider */;
  1467. targetProxy = C613B48CC858DD85D2552FF3C29D9448 /* PBXContainerItemProxy */;
  1468. };
  1469. F1FAD08476D49DE1AC4C4D4604957C3F /* PBXTargetDependency */ = {
  1470. isa = PBXTargetDependency;
  1471. name = "SnapKit-SnapKit_Privacy";
  1472. target = 8A8DB685241263AFDF5E6B20FE67B93A /* SnapKit-SnapKit_Privacy */;
  1473. targetProxy = E96066C9CB9752A5A993FDAD2226BBBC /* PBXContainerItemProxy */;
  1474. };
  1475. F6EE99F6C06FEC9622FB0BD274D43459 /* PBXTargetDependency */ = {
  1476. isa = PBXTargetDependency;
  1477. name = SweeterSwift;
  1478. target = 6819F499159C87193DDD7D51504DD6C1 /* SweeterSwift */;
  1479. targetProxy = 62C4D91B9D0DDAFFAEFF7FC558DF1D26 /* PBXContainerItemProxy */;
  1480. };
  1481. F97C07BFC121B9221B8FCBFD0FC70954 /* PBXTargetDependency */ = {
  1482. isa = PBXTargetDependency;
  1483. name = SweeterSwift;
  1484. target = 6819F499159C87193DDD7D51504DD6C1 /* SweeterSwift */;
  1485. targetProxy = C2B0E9075CB75820A0EDF64AD56A1A63 /* PBXContainerItemProxy */;
  1486. };
  1487. /* End PBXTargetDependency section */
  1488. /* Begin XCBuildConfiguration section */
  1489. 02CDAFD6FB4231929EFB1C6AB4BC54D1 /* Debug */ = {
  1490. isa = XCBuildConfiguration;
  1491. baseConfigurationReference = D8E225AA330D92BBF60BF2347CD4CC63 /* SnapKit.debug.xcconfig */;
  1492. buildSettings = {
  1493. CODE_SIGNING_ALLOWED = NO;
  1494. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SnapKit";
  1495. IBSC_MODULE = SnapKit;
  1496. INFOPLIST_FILE = "Target Support Files/SnapKit/ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist";
  1497. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1498. PRODUCT_NAME = SnapKit_Privacy;
  1499. SDKROOT = iphoneos;
  1500. SKIP_INSTALL = YES;
  1501. TARGETED_DEVICE_FAMILY = "1,2";
  1502. WRAPPER_EXTENSION = bundle;
  1503. };
  1504. name = Debug;
  1505. };
  1506. 1379382B9AB4753D791988FF99164036 /* Debug */ = {
  1507. isa = XCBuildConfiguration;
  1508. baseConfigurationReference = 59F0112EE436C91CD6446E9227D1FE3B /* JXSegmentedView.debug.xcconfig */;
  1509. buildSettings = {
  1510. CODE_SIGNING_ALLOWED = NO;
  1511. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXSegmentedView";
  1512. IBSC_MODULE = JXSegmentedView;
  1513. INFOPLIST_FILE = "Target Support Files/JXSegmentedView/ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist";
  1514. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1515. PRODUCT_NAME = JXSegmentedView;
  1516. SDKROOT = iphoneos;
  1517. SKIP_INSTALL = YES;
  1518. TARGETED_DEVICE_FAMILY = "1,2";
  1519. WRAPPER_EXTENSION = bundle;
  1520. };
  1521. name = Debug;
  1522. };
  1523. 23EEB06B09CB3CBA2A84C8505DC148B0 /* Debug */ = {
  1524. isa = XCBuildConfiguration;
  1525. baseConfigurationReference = 86769B86CD5DD0AD76C1D4BC84AA32D7 /* Pods-Girly.debug.xcconfig */;
  1526. buildSettings = {
  1527. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  1528. CLANG_ENABLE_OBJC_WEAK = NO;
  1529. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  1530. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  1531. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  1532. CURRENT_PROJECT_VERSION = 1;
  1533. DEFINES_MODULE = YES;
  1534. DYLIB_COMPATIBILITY_VERSION = 1;
  1535. DYLIB_CURRENT_VERSION = 1;
  1536. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1537. ENABLE_MODULE_VERIFIER = NO;
  1538. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  1539. INFOPLIST_FILE = "Target Support Files/Pods-Girly/Pods-Girly-Info.plist";
  1540. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1541. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1542. LD_RUNPATH_SEARCH_PATHS = (
  1543. "$(inherited)",
  1544. "@executable_path/Frameworks",
  1545. "@loader_path/Frameworks",
  1546. );
  1547. MACH_O_TYPE = staticlib;
  1548. MODULEMAP_FILE = "Target Support Files/Pods-Girly/Pods-Girly.modulemap";
  1549. OTHER_LDFLAGS = "";
  1550. OTHER_LIBTOOLFLAGS = "";
  1551. PODS_ROOT = "$(SRCROOT)";
  1552. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  1553. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  1554. SDKROOT = iphoneos;
  1555. SKIP_INSTALL = YES;
  1556. TARGETED_DEVICE_FAMILY = "1,2";
  1557. VERSIONING_SYSTEM = "apple-generic";
  1558. VERSION_INFO_PREFIX = "";
  1559. };
  1560. name = Debug;
  1561. };
  1562. 331C0F539295F9BDCEFA436143BA2B72 /* Release */ = {
  1563. isa = XCBuildConfiguration;
  1564. baseConfigurationReference = CB9CB0C87A3005C1F7388C7F3D0F977B /* MultiSlider.release.xcconfig */;
  1565. buildSettings = {
  1566. CODE_SIGNING_ALLOWED = NO;
  1567. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MultiSlider";
  1568. IBSC_MODULE = MultiSlider;
  1569. INFOPLIST_FILE = "Target Support Files/MultiSlider/ResourceBundle-MultiSlider-MultiSlider-Info.plist";
  1570. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1571. PRODUCT_NAME = MultiSlider;
  1572. SDKROOT = iphoneos;
  1573. SKIP_INSTALL = YES;
  1574. TARGETED_DEVICE_FAMILY = "1,2";
  1575. WRAPPER_EXTENSION = bundle;
  1576. };
  1577. name = Release;
  1578. };
  1579. 3D20659E5C020F5DBC43E48A06494495 /* Debug */ = {
  1580. isa = XCBuildConfiguration;
  1581. baseConfigurationReference = 59F0112EE436C91CD6446E9227D1FE3B /* JXSegmentedView.debug.xcconfig */;
  1582. buildSettings = {
  1583. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  1584. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  1585. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  1586. CURRENT_PROJECT_VERSION = 1;
  1587. DEFINES_MODULE = YES;
  1588. DYLIB_COMPATIBILITY_VERSION = 1;
  1589. DYLIB_CURRENT_VERSION = 1;
  1590. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1591. ENABLE_MODULE_VERIFIER = NO;
  1592. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  1593. GCC_PREFIX_HEADER = "Target Support Files/JXSegmentedView/JXSegmentedView-prefix.pch";
  1594. GENERATE_INFOPLIST_FILE = NO;
  1595. INFOPLIST_FILE = "Target Support Files/JXSegmentedView/JXSegmentedView-Info.plist";
  1596. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1597. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1598. LD_RUNPATH_SEARCH_PATHS = (
  1599. "$(inherited)",
  1600. "@executable_path/Frameworks",
  1601. "@loader_path/Frameworks",
  1602. );
  1603. MODULEMAP_FILE = "Target Support Files/JXSegmentedView/JXSegmentedView.modulemap";
  1604. PRODUCT_MODULE_NAME = JXSegmentedView;
  1605. PRODUCT_NAME = JXSegmentedView;
  1606. SDKROOT = iphoneos;
  1607. SKIP_INSTALL = YES;
  1608. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  1609. SWIFT_INSTALL_OBJC_HEADER = YES;
  1610. SWIFT_VERSION = 5.0;
  1611. TARGETED_DEVICE_FAMILY = "1,2";
  1612. VERSIONING_SYSTEM = "apple-generic";
  1613. VERSION_INFO_PREFIX = "";
  1614. };
  1615. name = Debug;
  1616. };
  1617. 4858A06F385E7A10D3927AF29914380D /* Debug */ = {
  1618. isa = XCBuildConfiguration;
  1619. baseConfigurationReference = E4640009E282B49C4FA04C7FF909D59C /* MultiSlider.debug.xcconfig */;
  1620. buildSettings = {
  1621. CODE_SIGNING_ALLOWED = NO;
  1622. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MultiSlider";
  1623. IBSC_MODULE = MultiSlider;
  1624. INFOPLIST_FILE = "Target Support Files/MultiSlider/ResourceBundle-MultiSlider-MultiSlider-Info.plist";
  1625. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1626. PRODUCT_NAME = MultiSlider;
  1627. SDKROOT = iphoneos;
  1628. SKIP_INSTALL = YES;
  1629. TARGETED_DEVICE_FAMILY = "1,2";
  1630. WRAPPER_EXTENSION = bundle;
  1631. };
  1632. name = Debug;
  1633. };
  1634. 4BC7450F9457737EE3E637BA155B56F7 /* Debug */ = {
  1635. isa = XCBuildConfiguration;
  1636. buildSettings = {
  1637. ALWAYS_SEARCH_USER_PATHS = NO;
  1638. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1639. CLANG_ANALYZER_NONNULL = YES;
  1640. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1641. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  1642. CLANG_CXX_LIBRARY = "libc++";
  1643. CLANG_ENABLE_MODULES = YES;
  1644. CLANG_ENABLE_OBJC_ARC = YES;
  1645. CLANG_ENABLE_OBJC_WEAK = YES;
  1646. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1647. CLANG_WARN_BOOL_CONVERSION = YES;
  1648. CLANG_WARN_COMMA = YES;
  1649. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1650. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1651. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1652. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1653. CLANG_WARN_EMPTY_BODY = YES;
  1654. CLANG_WARN_ENUM_CONVERSION = YES;
  1655. CLANG_WARN_INFINITE_RECURSION = YES;
  1656. CLANG_WARN_INT_CONVERSION = YES;
  1657. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1658. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1659. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1660. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1661. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1662. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1663. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1664. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1665. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1666. CLANG_WARN_UNREACHABLE_CODE = YES;
  1667. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1668. COPY_PHASE_STRIP = NO;
  1669. DEBUG_INFORMATION_FORMAT = dwarf;
  1670. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1671. ENABLE_TESTABILITY = YES;
  1672. GCC_C_LANGUAGE_STANDARD = gnu11;
  1673. GCC_DYNAMIC_NO_PIC = NO;
  1674. GCC_NO_COMMON_BLOCKS = YES;
  1675. GCC_OPTIMIZATION_LEVEL = 0;
  1676. GCC_PREPROCESSOR_DEFINITIONS = (
  1677. "POD_CONFIGURATION_DEBUG=1",
  1678. "DEBUG=1",
  1679. "$(inherited)",
  1680. );
  1681. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1682. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1683. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1684. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1685. GCC_WARN_UNUSED_FUNCTION = YES;
  1686. GCC_WARN_UNUSED_VARIABLE = YES;
  1687. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1688. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  1689. MTL_FAST_MATH = YES;
  1690. ONLY_ACTIVE_ARCH = YES;
  1691. PRODUCT_NAME = "$(TARGET_NAME)";
  1692. STRIP_INSTALLED_PRODUCT = NO;
  1693. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  1694. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  1695. SWIFT_VERSION = 5.0;
  1696. SYMROOT = "${SRCROOT}/../build";
  1697. };
  1698. name = Debug;
  1699. };
  1700. 5041755383E731E5026FB187F6786C48 /* Debug */ = {
  1701. isa = XCBuildConfiguration;
  1702. baseConfigurationReference = 55DEB6154C6CBFC34EE8693784D66256 /* SweeterSwift.debug.xcconfig */;
  1703. buildSettings = {
  1704. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  1705. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  1706. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  1707. CURRENT_PROJECT_VERSION = 1;
  1708. DEFINES_MODULE = YES;
  1709. DYLIB_COMPATIBILITY_VERSION = 1;
  1710. DYLIB_CURRENT_VERSION = 1;
  1711. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1712. ENABLE_MODULE_VERIFIER = NO;
  1713. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  1714. GCC_PREFIX_HEADER = "Target Support Files/SweeterSwift/SweeterSwift-prefix.pch";
  1715. GENERATE_INFOPLIST_FILE = NO;
  1716. INFOPLIST_FILE = "Target Support Files/SweeterSwift/SweeterSwift-Info.plist";
  1717. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1718. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1719. LD_RUNPATH_SEARCH_PATHS = (
  1720. "$(inherited)",
  1721. "@executable_path/Frameworks",
  1722. "@loader_path/Frameworks",
  1723. );
  1724. MODULEMAP_FILE = "Target Support Files/SweeterSwift/SweeterSwift.modulemap";
  1725. PRODUCT_MODULE_NAME = SweeterSwift;
  1726. PRODUCT_NAME = SweeterSwift;
  1727. SDKROOT = iphoneos;
  1728. SKIP_INSTALL = YES;
  1729. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  1730. SWIFT_INSTALL_OBJC_HEADER = YES;
  1731. SWIFT_VERSION = 5.0;
  1732. TARGETED_DEVICE_FAMILY = "1,2";
  1733. VERSIONING_SYSTEM = "apple-generic";
  1734. VERSION_INFO_PREFIX = "";
  1735. };
  1736. name = Debug;
  1737. };
  1738. 510A118D00A136D8992EE9985E4E0996 /* Release */ = {
  1739. isa = XCBuildConfiguration;
  1740. baseConfigurationReference = 7993EC11462087757A9CF27B5263B86E /* ObjectMapper.release.xcconfig */;
  1741. buildSettings = {
  1742. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  1743. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  1744. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  1745. CURRENT_PROJECT_VERSION = 1;
  1746. DEFINES_MODULE = YES;
  1747. DYLIB_COMPATIBILITY_VERSION = 1;
  1748. DYLIB_CURRENT_VERSION = 1;
  1749. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1750. ENABLE_MODULE_VERIFIER = NO;
  1751. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  1752. GCC_PREFIX_HEADER = "Target Support Files/ObjectMapper/ObjectMapper-prefix.pch";
  1753. GENERATE_INFOPLIST_FILE = NO;
  1754. INFOPLIST_FILE = "Target Support Files/ObjectMapper/ObjectMapper-Info.plist";
  1755. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1756. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1757. LD_RUNPATH_SEARCH_PATHS = (
  1758. "$(inherited)",
  1759. "@executable_path/Frameworks",
  1760. "@loader_path/Frameworks",
  1761. );
  1762. MODULEMAP_FILE = "Target Support Files/ObjectMapper/ObjectMapper.modulemap";
  1763. PRODUCT_MODULE_NAME = ObjectMapper;
  1764. PRODUCT_NAME = ObjectMapper;
  1765. SDKROOT = iphoneos;
  1766. SKIP_INSTALL = YES;
  1767. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  1768. SWIFT_INSTALL_OBJC_HEADER = YES;
  1769. SWIFT_VERSION = 5.0;
  1770. TARGETED_DEVICE_FAMILY = "1,2";
  1771. VALIDATE_PRODUCT = YES;
  1772. VERSIONING_SYSTEM = "apple-generic";
  1773. VERSION_INFO_PREFIX = "";
  1774. };
  1775. name = Release;
  1776. };
  1777. 68DD6F644ED80DEA6970F7D7F1E570D4 /* Release */ = {
  1778. isa = XCBuildConfiguration;
  1779. baseConfigurationReference = 7F2115E528DC0A1B3F1405AF79ADCC55 /* JXSegmentedView.release.xcconfig */;
  1780. buildSettings = {
  1781. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  1782. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  1783. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  1784. CURRENT_PROJECT_VERSION = 1;
  1785. DEFINES_MODULE = YES;
  1786. DYLIB_COMPATIBILITY_VERSION = 1;
  1787. DYLIB_CURRENT_VERSION = 1;
  1788. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1789. ENABLE_MODULE_VERIFIER = NO;
  1790. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  1791. GCC_PREFIX_HEADER = "Target Support Files/JXSegmentedView/JXSegmentedView-prefix.pch";
  1792. GENERATE_INFOPLIST_FILE = NO;
  1793. INFOPLIST_FILE = "Target Support Files/JXSegmentedView/JXSegmentedView-Info.plist";
  1794. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1795. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1796. LD_RUNPATH_SEARCH_PATHS = (
  1797. "$(inherited)",
  1798. "@executable_path/Frameworks",
  1799. "@loader_path/Frameworks",
  1800. );
  1801. MODULEMAP_FILE = "Target Support Files/JXSegmentedView/JXSegmentedView.modulemap";
  1802. PRODUCT_MODULE_NAME = JXSegmentedView;
  1803. PRODUCT_NAME = JXSegmentedView;
  1804. SDKROOT = iphoneos;
  1805. SKIP_INSTALL = YES;
  1806. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  1807. SWIFT_INSTALL_OBJC_HEADER = YES;
  1808. SWIFT_VERSION = 5.0;
  1809. TARGETED_DEVICE_FAMILY = "1,2";
  1810. VALIDATE_PRODUCT = YES;
  1811. VERSIONING_SYSTEM = "apple-generic";
  1812. VERSION_INFO_PREFIX = "";
  1813. };
  1814. name = Release;
  1815. };
  1816. 6E9F849AB7D846BF4B95C792966500C8 /* Release */ = {
  1817. isa = XCBuildConfiguration;
  1818. baseConfigurationReference = CB9CB0C87A3005C1F7388C7F3D0F977B /* MultiSlider.release.xcconfig */;
  1819. buildSettings = {
  1820. CLANG_ENABLE_OBJC_WEAK = NO;
  1821. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  1822. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  1823. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  1824. CURRENT_PROJECT_VERSION = 1;
  1825. DEFINES_MODULE = YES;
  1826. DYLIB_COMPATIBILITY_VERSION = 1;
  1827. DYLIB_CURRENT_VERSION = 1;
  1828. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1829. ENABLE_MODULE_VERIFIER = NO;
  1830. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  1831. GCC_PREFIX_HEADER = "Target Support Files/MultiSlider/MultiSlider-prefix.pch";
  1832. GENERATE_INFOPLIST_FILE = NO;
  1833. INFOPLIST_FILE = "Target Support Files/MultiSlider/MultiSlider-Info.plist";
  1834. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1835. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1836. MODULEMAP_FILE = "Target Support Files/MultiSlider/MultiSlider.modulemap";
  1837. PRODUCT_MODULE_NAME = MultiSlider;
  1838. PRODUCT_NAME = MultiSlider;
  1839. SDKROOT = iphoneos;
  1840. SKIP_INSTALL = YES;
  1841. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  1842. SWIFT_INSTALL_OBJC_HEADER = YES;
  1843. SWIFT_VERSION = 5.0;
  1844. TARGETED_DEVICE_FAMILY = "1,2";
  1845. VALIDATE_PRODUCT = YES;
  1846. VERSIONING_SYSTEM = "apple-generic";
  1847. VERSION_INFO_PREFIX = "";
  1848. };
  1849. name = Release;
  1850. };
  1851. 7CC664E0F2269682E89BA5FD218D1DFB /* Release */ = {
  1852. isa = XCBuildConfiguration;
  1853. baseConfigurationReference = 5C84F1130CFD546D61756A85AE842074 /* SweeterSwift.release.xcconfig */;
  1854. buildSettings = {
  1855. CODE_SIGNING_ALLOWED = NO;
  1856. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SweeterSwift";
  1857. IBSC_MODULE = SweeterSwift;
  1858. INFOPLIST_FILE = "Target Support Files/SweeterSwift/ResourceBundle-SweeterSwift-SweeterSwift-Info.plist";
  1859. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1860. PRODUCT_NAME = SweeterSwift;
  1861. SDKROOT = iphoneos;
  1862. SKIP_INSTALL = YES;
  1863. TARGETED_DEVICE_FAMILY = "1,2";
  1864. WRAPPER_EXTENSION = bundle;
  1865. };
  1866. name = Release;
  1867. };
  1868. 7D4C0C21A6A87332B69B495285D8ABD5 /* Debug */ = {
  1869. isa = XCBuildConfiguration;
  1870. baseConfigurationReference = 55DEB6154C6CBFC34EE8693784D66256 /* SweeterSwift.debug.xcconfig */;
  1871. buildSettings = {
  1872. CODE_SIGNING_ALLOWED = NO;
  1873. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SweeterSwift";
  1874. IBSC_MODULE = SweeterSwift;
  1875. INFOPLIST_FILE = "Target Support Files/SweeterSwift/ResourceBundle-SweeterSwift-SweeterSwift-Info.plist";
  1876. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1877. PRODUCT_NAME = SweeterSwift;
  1878. SDKROOT = iphoneos;
  1879. SKIP_INSTALL = YES;
  1880. TARGETED_DEVICE_FAMILY = "1,2";
  1881. WRAPPER_EXTENSION = bundle;
  1882. };
  1883. name = Debug;
  1884. };
  1885. 8B23BAE2080D3905245B4898911F7D4F /* Release */ = {
  1886. isa = XCBuildConfiguration;
  1887. baseConfigurationReference = 7F2115E528DC0A1B3F1405AF79ADCC55 /* JXSegmentedView.release.xcconfig */;
  1888. buildSettings = {
  1889. CODE_SIGNING_ALLOWED = NO;
  1890. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXSegmentedView";
  1891. IBSC_MODULE = JXSegmentedView;
  1892. INFOPLIST_FILE = "Target Support Files/JXSegmentedView/ResourceBundle-JXSegmentedView-JXSegmentedView-Info.plist";
  1893. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1894. PRODUCT_NAME = JXSegmentedView;
  1895. SDKROOT = iphoneos;
  1896. SKIP_INSTALL = YES;
  1897. TARGETED_DEVICE_FAMILY = "1,2";
  1898. WRAPPER_EXTENSION = bundle;
  1899. };
  1900. name = Release;
  1901. };
  1902. 8B5A46FF8D3C1289CDEE3BAFACABCD2A /* Release */ = {
  1903. isa = XCBuildConfiguration;
  1904. buildSettings = {
  1905. ALWAYS_SEARCH_USER_PATHS = NO;
  1906. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1907. CLANG_ANALYZER_NONNULL = YES;
  1908. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1909. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  1910. CLANG_CXX_LIBRARY = "libc++";
  1911. CLANG_ENABLE_MODULES = YES;
  1912. CLANG_ENABLE_OBJC_ARC = YES;
  1913. CLANG_ENABLE_OBJC_WEAK = YES;
  1914. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1915. CLANG_WARN_BOOL_CONVERSION = YES;
  1916. CLANG_WARN_COMMA = YES;
  1917. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1918. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1919. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1920. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1921. CLANG_WARN_EMPTY_BODY = YES;
  1922. CLANG_WARN_ENUM_CONVERSION = YES;
  1923. CLANG_WARN_INFINITE_RECURSION = YES;
  1924. CLANG_WARN_INT_CONVERSION = YES;
  1925. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1926. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1927. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1928. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1929. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1930. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1931. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1932. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1933. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1934. CLANG_WARN_UNREACHABLE_CODE = YES;
  1935. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1936. COPY_PHASE_STRIP = NO;
  1937. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1938. ENABLE_NS_ASSERTIONS = NO;
  1939. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1940. GCC_C_LANGUAGE_STANDARD = gnu11;
  1941. GCC_NO_COMMON_BLOCKS = YES;
  1942. GCC_PREPROCESSOR_DEFINITIONS = (
  1943. "POD_CONFIGURATION_RELEASE=1",
  1944. "$(inherited)",
  1945. );
  1946. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1947. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1948. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1949. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1950. GCC_WARN_UNUSED_FUNCTION = YES;
  1951. GCC_WARN_UNUSED_VARIABLE = YES;
  1952. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1953. MTL_ENABLE_DEBUG_INFO = NO;
  1954. MTL_FAST_MATH = YES;
  1955. PRODUCT_NAME = "$(TARGET_NAME)";
  1956. STRIP_INSTALLED_PRODUCT = NO;
  1957. SWIFT_COMPILATION_MODE = wholemodule;
  1958. SWIFT_OPTIMIZATION_LEVEL = "-O";
  1959. SWIFT_VERSION = 5.0;
  1960. SYMROOT = "${SRCROOT}/../build";
  1961. };
  1962. name = Release;
  1963. };
  1964. 9450C56A3DFE060D29768ADEF164A734 /* Release */ = {
  1965. isa = XCBuildConfiguration;
  1966. baseConfigurationReference = D58CDA10D3E647AB7EF0BE5B6BFADB14 /* Pods-Girly.release.xcconfig */;
  1967. buildSettings = {
  1968. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  1969. CLANG_ENABLE_OBJC_WEAK = NO;
  1970. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  1971. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  1972. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  1973. CURRENT_PROJECT_VERSION = 1;
  1974. DEFINES_MODULE = YES;
  1975. DYLIB_COMPATIBILITY_VERSION = 1;
  1976. DYLIB_CURRENT_VERSION = 1;
  1977. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1978. ENABLE_MODULE_VERIFIER = NO;
  1979. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  1980. INFOPLIST_FILE = "Target Support Files/Pods-Girly/Pods-Girly-Info.plist";
  1981. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1982. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1983. LD_RUNPATH_SEARCH_PATHS = (
  1984. "$(inherited)",
  1985. "@executable_path/Frameworks",
  1986. "@loader_path/Frameworks",
  1987. );
  1988. MACH_O_TYPE = staticlib;
  1989. MODULEMAP_FILE = "Target Support Files/Pods-Girly/Pods-Girly.modulemap";
  1990. OTHER_LDFLAGS = "";
  1991. OTHER_LIBTOOLFLAGS = "";
  1992. PODS_ROOT = "$(SRCROOT)";
  1993. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  1994. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  1995. SDKROOT = iphoneos;
  1996. SKIP_INSTALL = YES;
  1997. TARGETED_DEVICE_FAMILY = "1,2";
  1998. VALIDATE_PRODUCT = YES;
  1999. VERSIONING_SYSTEM = "apple-generic";
  2000. VERSION_INFO_PREFIX = "";
  2001. };
  2002. name = Release;
  2003. };
  2004. 9D0D7572FEDA4CC9E75E7387846AFE57 /* Debug */ = {
  2005. isa = XCBuildConfiguration;
  2006. baseConfigurationReference = D8E225AA330D92BBF60BF2347CD4CC63 /* SnapKit.debug.xcconfig */;
  2007. buildSettings = {
  2008. CLANG_ENABLE_OBJC_WEAK = NO;
  2009. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2010. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2011. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2012. CURRENT_PROJECT_VERSION = 1;
  2013. DEFINES_MODULE = YES;
  2014. DYLIB_COMPATIBILITY_VERSION = 1;
  2015. DYLIB_CURRENT_VERSION = 1;
  2016. DYLIB_INSTALL_NAME_BASE = "@rpath";
  2017. ENABLE_MODULE_VERIFIER = NO;
  2018. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  2019. GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch";
  2020. GENERATE_INFOPLIST_FILE = NO;
  2021. INFOPLIST_FILE = "Target Support Files/SnapKit/SnapKit-Info.plist";
  2022. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2023. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  2024. LD_RUNPATH_SEARCH_PATHS = (
  2025. "$(inherited)",
  2026. "@executable_path/Frameworks",
  2027. "@loader_path/Frameworks",
  2028. );
  2029. MODULEMAP_FILE = "Target Support Files/SnapKit/SnapKit.modulemap";
  2030. PRODUCT_MODULE_NAME = SnapKit;
  2031. PRODUCT_NAME = SnapKit;
  2032. SDKROOT = iphoneos;
  2033. SKIP_INSTALL = YES;
  2034. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2035. SWIFT_INSTALL_OBJC_HEADER = YES;
  2036. SWIFT_VERSION = 5.0;
  2037. TARGETED_DEVICE_FAMILY = "1,2";
  2038. VERSIONING_SYSTEM = "apple-generic";
  2039. VERSION_INFO_PREFIX = "";
  2040. };
  2041. name = Debug;
  2042. };
  2043. A14209D27F5A1F2CE8C0DB4CFE5BB832 /* Release */ = {
  2044. isa = XCBuildConfiguration;
  2045. baseConfigurationReference = B2A9604864773BD1A5CB554984CC187D /* SnapKit.release.xcconfig */;
  2046. buildSettings = {
  2047. CODE_SIGNING_ALLOWED = NO;
  2048. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SnapKit";
  2049. IBSC_MODULE = SnapKit;
  2050. INFOPLIST_FILE = "Target Support Files/SnapKit/ResourceBundle-SnapKit_Privacy-SnapKit-Info.plist";
  2051. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  2052. PRODUCT_NAME = SnapKit_Privacy;
  2053. SDKROOT = iphoneos;
  2054. SKIP_INSTALL = YES;
  2055. TARGETED_DEVICE_FAMILY = "1,2";
  2056. WRAPPER_EXTENSION = bundle;
  2057. };
  2058. name = Release;
  2059. };
  2060. BACEEBE82272754AFEE2CAE47AFFF1B0 /* Debug */ = {
  2061. isa = XCBuildConfiguration;
  2062. baseConfigurationReference = 804AC8BB2BA76962CFF6608E5BEC4E4A /* ObjectMapper.debug.xcconfig */;
  2063. buildSettings = {
  2064. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2065. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2066. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2067. CURRENT_PROJECT_VERSION = 1;
  2068. DEFINES_MODULE = YES;
  2069. DYLIB_COMPATIBILITY_VERSION = 1;
  2070. DYLIB_CURRENT_VERSION = 1;
  2071. DYLIB_INSTALL_NAME_BASE = "@rpath";
  2072. ENABLE_MODULE_VERIFIER = NO;
  2073. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  2074. GCC_PREFIX_HEADER = "Target Support Files/ObjectMapper/ObjectMapper-prefix.pch";
  2075. GENERATE_INFOPLIST_FILE = NO;
  2076. INFOPLIST_FILE = "Target Support Files/ObjectMapper/ObjectMapper-Info.plist";
  2077. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2078. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  2079. LD_RUNPATH_SEARCH_PATHS = (
  2080. "$(inherited)",
  2081. "@executable_path/Frameworks",
  2082. "@loader_path/Frameworks",
  2083. );
  2084. MODULEMAP_FILE = "Target Support Files/ObjectMapper/ObjectMapper.modulemap";
  2085. PRODUCT_MODULE_NAME = ObjectMapper;
  2086. PRODUCT_NAME = ObjectMapper;
  2087. SDKROOT = iphoneos;
  2088. SKIP_INSTALL = YES;
  2089. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2090. SWIFT_INSTALL_OBJC_HEADER = YES;
  2091. SWIFT_VERSION = 5.0;
  2092. TARGETED_DEVICE_FAMILY = "1,2";
  2093. VERSIONING_SYSTEM = "apple-generic";
  2094. VERSION_INFO_PREFIX = "";
  2095. };
  2096. name = Debug;
  2097. };
  2098. BAD20131EC29650C6737E66854A3A9FD /* Release */ = {
  2099. isa = XCBuildConfiguration;
  2100. baseConfigurationReference = B2A9604864773BD1A5CB554984CC187D /* SnapKit.release.xcconfig */;
  2101. buildSettings = {
  2102. CLANG_ENABLE_OBJC_WEAK = NO;
  2103. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2104. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2105. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2106. CURRENT_PROJECT_VERSION = 1;
  2107. DEFINES_MODULE = YES;
  2108. DYLIB_COMPATIBILITY_VERSION = 1;
  2109. DYLIB_CURRENT_VERSION = 1;
  2110. DYLIB_INSTALL_NAME_BASE = "@rpath";
  2111. ENABLE_MODULE_VERIFIER = NO;
  2112. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  2113. GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch";
  2114. GENERATE_INFOPLIST_FILE = NO;
  2115. INFOPLIST_FILE = "Target Support Files/SnapKit/SnapKit-Info.plist";
  2116. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2117. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  2118. LD_RUNPATH_SEARCH_PATHS = (
  2119. "$(inherited)",
  2120. "@executable_path/Frameworks",
  2121. "@loader_path/Frameworks",
  2122. );
  2123. MODULEMAP_FILE = "Target Support Files/SnapKit/SnapKit.modulemap";
  2124. PRODUCT_MODULE_NAME = SnapKit;
  2125. PRODUCT_NAME = SnapKit;
  2126. SDKROOT = iphoneos;
  2127. SKIP_INSTALL = YES;
  2128. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2129. SWIFT_INSTALL_OBJC_HEADER = YES;
  2130. SWIFT_VERSION = 5.0;
  2131. TARGETED_DEVICE_FAMILY = "1,2";
  2132. VALIDATE_PRODUCT = YES;
  2133. VERSIONING_SYSTEM = "apple-generic";
  2134. VERSION_INFO_PREFIX = "";
  2135. };
  2136. name = Release;
  2137. };
  2138. D7983B5C6F4AAAA4E4137170D7E2102A /* Debug */ = {
  2139. isa = XCBuildConfiguration;
  2140. baseConfigurationReference = E4640009E282B49C4FA04C7FF909D59C /* MultiSlider.debug.xcconfig */;
  2141. buildSettings = {
  2142. CLANG_ENABLE_OBJC_WEAK = NO;
  2143. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2144. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2145. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2146. CURRENT_PROJECT_VERSION = 1;
  2147. DEFINES_MODULE = YES;
  2148. DYLIB_COMPATIBILITY_VERSION = 1;
  2149. DYLIB_CURRENT_VERSION = 1;
  2150. DYLIB_INSTALL_NAME_BASE = "@rpath";
  2151. ENABLE_MODULE_VERIFIER = NO;
  2152. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  2153. GCC_PREFIX_HEADER = "Target Support Files/MultiSlider/MultiSlider-prefix.pch";
  2154. GENERATE_INFOPLIST_FILE = NO;
  2155. INFOPLIST_FILE = "Target Support Files/MultiSlider/MultiSlider-Info.plist";
  2156. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2157. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  2158. MODULEMAP_FILE = "Target Support Files/MultiSlider/MultiSlider.modulemap";
  2159. PRODUCT_MODULE_NAME = MultiSlider;
  2160. PRODUCT_NAME = MultiSlider;
  2161. SDKROOT = iphoneos;
  2162. SKIP_INSTALL = YES;
  2163. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2164. SWIFT_INSTALL_OBJC_HEADER = YES;
  2165. SWIFT_VERSION = 5.0;
  2166. TARGETED_DEVICE_FAMILY = "1,2";
  2167. VERSIONING_SYSTEM = "apple-generic";
  2168. VERSION_INFO_PREFIX = "";
  2169. };
  2170. name = Debug;
  2171. };
  2172. F87AB2BD28A152B7E6A4496A02A279B5 /* Release */ = {
  2173. isa = XCBuildConfiguration;
  2174. baseConfigurationReference = 5C84F1130CFD546D61756A85AE842074 /* SweeterSwift.release.xcconfig */;
  2175. buildSettings = {
  2176. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2177. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2178. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2179. CURRENT_PROJECT_VERSION = 1;
  2180. DEFINES_MODULE = YES;
  2181. DYLIB_COMPATIBILITY_VERSION = 1;
  2182. DYLIB_CURRENT_VERSION = 1;
  2183. DYLIB_INSTALL_NAME_BASE = "@rpath";
  2184. ENABLE_MODULE_VERIFIER = NO;
  2185. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  2186. GCC_PREFIX_HEADER = "Target Support Files/SweeterSwift/SweeterSwift-prefix.pch";
  2187. GENERATE_INFOPLIST_FILE = NO;
  2188. INFOPLIST_FILE = "Target Support Files/SweeterSwift/SweeterSwift-Info.plist";
  2189. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2190. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  2191. LD_RUNPATH_SEARCH_PATHS = (
  2192. "$(inherited)",
  2193. "@executable_path/Frameworks",
  2194. "@loader_path/Frameworks",
  2195. );
  2196. MODULEMAP_FILE = "Target Support Files/SweeterSwift/SweeterSwift.modulemap";
  2197. PRODUCT_MODULE_NAME = SweeterSwift;
  2198. PRODUCT_NAME = SweeterSwift;
  2199. SDKROOT = iphoneos;
  2200. SKIP_INSTALL = YES;
  2201. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2202. SWIFT_INSTALL_OBJC_HEADER = YES;
  2203. SWIFT_VERSION = 5.0;
  2204. TARGETED_DEVICE_FAMILY = "1,2";
  2205. VALIDATE_PRODUCT = YES;
  2206. VERSIONING_SYSTEM = "apple-generic";
  2207. VERSION_INFO_PREFIX = "";
  2208. };
  2209. name = Release;
  2210. };
  2211. /* End XCBuildConfiguration section */
  2212. /* Begin XCConfigurationList section */
  2213. 1458CACC1000EF206528E0402775ECB4 /* Build configuration list for PBXNativeTarget "MultiSlider-MultiSlider" */ = {
  2214. isa = XCConfigurationList;
  2215. buildConfigurations = (
  2216. 4858A06F385E7A10D3927AF29914380D /* Debug */,
  2217. 331C0F539295F9BDCEFA436143BA2B72 /* Release */,
  2218. );
  2219. defaultConfigurationIsVisible = 0;
  2220. defaultConfigurationName = Release;
  2221. };
  2222. 1D33C0E8AF073F3821E2C60FBD5451DB /* Build configuration list for PBXNativeTarget "ObjectMapper" */ = {
  2223. isa = XCConfigurationList;
  2224. buildConfigurations = (
  2225. BACEEBE82272754AFEE2CAE47AFFF1B0 /* Debug */,
  2226. 510A118D00A136D8992EE9985E4E0996 /* Release */,
  2227. );
  2228. defaultConfigurationIsVisible = 0;
  2229. defaultConfigurationName = Release;
  2230. };
  2231. 26EB5109BF2A432DC7DC1A3B8669DCAF /* Build configuration list for PBXNativeTarget "SweeterSwift" */ = {
  2232. isa = XCConfigurationList;
  2233. buildConfigurations = (
  2234. 5041755383E731E5026FB187F6786C48 /* Debug */,
  2235. F87AB2BD28A152B7E6A4496A02A279B5 /* Release */,
  2236. );
  2237. defaultConfigurationIsVisible = 0;
  2238. defaultConfigurationName = Release;
  2239. };
  2240. 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
  2241. isa = XCConfigurationList;
  2242. buildConfigurations = (
  2243. 4BC7450F9457737EE3E637BA155B56F7 /* Debug */,
  2244. 8B5A46FF8D3C1289CDEE3BAFACABCD2A /* Release */,
  2245. );
  2246. defaultConfigurationIsVisible = 0;
  2247. defaultConfigurationName = Release;
  2248. };
  2249. 66B152014077D8F36EFF337E427F59A7 /* Build configuration list for PBXNativeTarget "JXSegmentedView" */ = {
  2250. isa = XCConfigurationList;
  2251. buildConfigurations = (
  2252. 3D20659E5C020F5DBC43E48A06494495 /* Debug */,
  2253. 68DD6F644ED80DEA6970F7D7F1E570D4 /* Release */,
  2254. );
  2255. defaultConfigurationIsVisible = 0;
  2256. defaultConfigurationName = Release;
  2257. };
  2258. 76A1BA1226281B6189D7175F2974490C /* Build configuration list for PBXNativeTarget "Pods-Girly" */ = {
  2259. isa = XCConfigurationList;
  2260. buildConfigurations = (
  2261. 23EEB06B09CB3CBA2A84C8505DC148B0 /* Debug */,
  2262. 9450C56A3DFE060D29768ADEF164A734 /* Release */,
  2263. );
  2264. defaultConfigurationIsVisible = 0;
  2265. defaultConfigurationName = Release;
  2266. };
  2267. 7FA39A16EB9D6360E2E2ED9E3CFE37DA /* Build configuration list for PBXNativeTarget "MultiSlider" */ = {
  2268. isa = XCConfigurationList;
  2269. buildConfigurations = (
  2270. D7983B5C6F4AAAA4E4137170D7E2102A /* Debug */,
  2271. 6E9F849AB7D846BF4B95C792966500C8 /* Release */,
  2272. );
  2273. defaultConfigurationIsVisible = 0;
  2274. defaultConfigurationName = Release;
  2275. };
  2276. 80CE967CAA1D35721519F892BAF7A19B /* Build configuration list for PBXNativeTarget "SnapKit" */ = {
  2277. isa = XCConfigurationList;
  2278. buildConfigurations = (
  2279. 9D0D7572FEDA4CC9E75E7387846AFE57 /* Debug */,
  2280. BAD20131EC29650C6737E66854A3A9FD /* Release */,
  2281. );
  2282. defaultConfigurationIsVisible = 0;
  2283. defaultConfigurationName = Release;
  2284. };
  2285. AFDD0372F58011135391CED4554E3B11 /* Build configuration list for PBXNativeTarget "SnapKit-SnapKit_Privacy" */ = {
  2286. isa = XCConfigurationList;
  2287. buildConfigurations = (
  2288. 02CDAFD6FB4231929EFB1C6AB4BC54D1 /* Debug */,
  2289. A14209D27F5A1F2CE8C0DB4CFE5BB832 /* Release */,
  2290. );
  2291. defaultConfigurationIsVisible = 0;
  2292. defaultConfigurationName = Release;
  2293. };
  2294. C420D01260E642942DC12BDFA6AA8691 /* Build configuration list for PBXNativeTarget "JXSegmentedView-JXSegmentedView" */ = {
  2295. isa = XCConfigurationList;
  2296. buildConfigurations = (
  2297. 1379382B9AB4753D791988FF99164036 /* Debug */,
  2298. 8B23BAE2080D3905245B4898911F7D4F /* Release */,
  2299. );
  2300. defaultConfigurationIsVisible = 0;
  2301. defaultConfigurationName = Release;
  2302. };
  2303. CB4EBC095C4EF9903CE4FD69734EE085 /* Build configuration list for PBXNativeTarget "SweeterSwift-SweeterSwift" */ = {
  2304. isa = XCConfigurationList;
  2305. buildConfigurations = (
  2306. 7D4C0C21A6A87332B69B495285D8ABD5 /* Debug */,
  2307. 7CC664E0F2269682E89BA5FD218D1DFB /* Release */,
  2308. );
  2309. defaultConfigurationIsVisible = 0;
  2310. defaultConfigurationName = Release;
  2311. };
  2312. /* End XCConfigurationList section */
  2313. };
  2314. rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  2315. }