project.pbxproj 153 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 52;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 041D1E995A6AE92E9289DC49 /* BolusDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */; };
  10. 0CEA2EA070AB041AF3E3745B /* BolusRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10A0C32B0DAB52726EF9B6D9 /* BolusRootView.swift */; };
  11. 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */; };
  12. 17A9D0899046B45E87834820 /* CREditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */; };
  13. 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 1927C8E82744606D00347C69 /* InfoPlist.strings */; };
  14. 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 198377D4266BFFF6004DE65E /* Localizable.strings */; };
  15. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */; };
  16. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60744C3E9BB3652895C908CC /* DataTableProvider.swift */; };
  17. 23888883D4EA091C88480FF2 /* BolusProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C19984D62EFC0035A9E9644D /* BolusProvider.swift */; };
  18. 28089E07169488CF6DCC2A31 /* AddCarbsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86FC1CFD647CF34508AF9A3B /* AddCarbsRootView.swift */; };
  19. 2BE9A6FA20875F6F4F9CD461 /* PumpSettingsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */; };
  20. 3083261C4B268E353F36CD0B /* AutotuneConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */; };
  21. 320D030F724170A637F06D50 /* CalibrationsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 212E8BFE6D66EE65AA26A114 /* CalibrationsProvider.swift */; };
  22. 33E198D3039045D98C3DC5D4 /* AddCarbsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39E7C997E56DAF8D28D09014 /* AddCarbsStateModel.swift */; };
  23. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0725C9D32E00A708ED /* BaseView.swift */; };
  24. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0825C9D32F00A708ED /* BaseProvider.swift */; };
  25. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */ = {isa = PBXBuildFile; productRef = 3811DE0F25C9D37700A708ED /* Swinject */; };
  26. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1525C9D40400A708ED /* Screen.swift */; };
  27. 3811DE1825C9D40400A708ED /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1625C9D40400A708ED /* Router.swift */; };
  28. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1C25C9D48300A708ED /* MainProvider.swift */; };
  29. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */; };
  30. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2025C9D48300A708ED /* MainRootView.swift */; };
  31. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2825C9D49500A708ED /* HomeStateModel.swift */; };
  32. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2925C9D49500A708ED /* HomeProvider.swift */; };
  33. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */; };
  34. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2E25C9D49500A708ED /* HomeRootView.swift */; };
  35. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */; };
  36. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */; };
  37. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */; };
  38. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */; };
  39. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5425C9D4D500A708ED /* Formatters.swift */; };
  40. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5525C9D4D500A708ED /* Publisher.swift */; };
  41. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5725C9D4D500A708ED /* ProgressBar.swift */; };
  42. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */; };
  43. 3811DE8F25C9D80400A708ED /* User.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE8E25C9D80400A708ED /* User.swift */; };
  44. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9325C9D88200A708ED /* AppearanceManager.swift */; };
  45. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */; };
  46. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9725C9D88300A708ED /* NightscoutManager.swift */; };
  47. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */; };
  48. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9B25C9D88300A708ED /* Cache.swift */; };
  49. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */; };
  50. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */; };
  51. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9F25C9D88300A708ED /* Keychain.swift */; };
  52. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */; };
  53. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA625C9D88300A708ED /* UnlockManager.swift */; };
  54. 3811DEE825CA063400A708ED /* Injected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE425CA063400A708ED /* Injected.swift */; };
  55. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE625CA063400A708ED /* SyncAccess.swift */; };
  56. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE725CA063400A708ED /* PersistedProperty.swift */; };
  57. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0125CA9FEA00A708ED /* Credentials.swift */; };
  58. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0F25CAAAE200A708ED /* APSManager.swift */; };
  59. 38192E01261B826A0094D973 /* Alamofire in Frameworks */ = {isa = PBXBuildFile; productRef = 38192E00261B826A0094D973 /* Alamofire */; };
  60. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E03261B82FA0094D973 /* ReachabilityManager.swift */; };
  61. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */; };
  62. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */; };
  63. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3821ED4B25DD18BA00BC42AD /* Constants.swift */; };
  64. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */; };
  65. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C134A25F14E3700715CE1 /* BGTargets.swift */; };
  66. 3833B46D26012030003021B3 /* Algorithms in Frameworks */ = {isa = PBXBuildFile; productRef = 3833B46C26012030003021B3 /* Algorithms */; };
  67. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D525FFE38C002D46C1 /* LoopView.swift */; };
  68. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D825FFEB3F002D46C1 /* Popup.swift */; };
  69. 383948D325CD4D6D00E91849 /* Disk in Frameworks */ = {isa = PBXBuildFile; productRef = 383948D225CD4D6D00E91849 /* Disk */; };
  70. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D525CD4D8900E91849 /* FileStorage.swift */; };
  71. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D925CD64D500E91849 /* Glucose.swift */; };
  72. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803325C385E60086DB71 /* JavaScriptWorker.swift */; };
  73. 384E803825C388640086DB71 /* Script.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803725C388640086DB71 /* Script.swift */; };
  74. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569344270B5DFA0002C50D /* CGMType.swift */; };
  75. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569345270B5DFA0002C50D /* GlucoseSource.swift */; };
  76. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569346270B5DFB0002C50D /* AppGroupSource.swift */; };
  77. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569352270B5E350002C50D /* CGMRootView.swift */; };
  78. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */; };
  79. 385CEAC125F2EA52002D6D5B /* Announcement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEAC025F2EA52002D6D5B /* Announcement.swift */; };
  80. 385CEAC425F2F154002D6D5B /* AnnouncementsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */; };
  81. 3862CC05273D152B00BF832C /* CalibrationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC04273D152B00BF832C /* CalibrationService.swift */; };
  82. 3862CC1F273FDC9200BF832C /* CalibrationsChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC1E273FDC9200BF832C /* CalibrationsChart.swift */; };
  83. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC2D2743F9F700BF832C /* CalendarManager.swift */; };
  84. 386A124C271704DA00DDC61C /* CGMBLEKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 386A124B271704DA00DDC61C /* CGMBLEKit.framework */; };
  85. 386A124D271704DA00DDC61C /* CGMBLEKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 386A124B271704DA00DDC61C /* CGMBLEKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  86. 386A124F271707F000DDC61C /* DexcomSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 386A124E271707F000DDC61C /* DexcomSource.swift */; };
  87. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3870FF4225EC13F40088248F /* BloodGlucose.swift */; };
  88. 3871F38725ED661C0013ECB5 /* Suggestion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F38625ED661C0013ECB5 /* Suggestion.swift */; };
  89. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39B25ED892B0013ECB5 /* TempTarget.swift */; };
  90. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */; };
  91. 3883581C25EE79BB00E024B2 /* DecimalTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883581B25EE79BB00E024B2 /* DecimalTextField.swift */; };
  92. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883583325EEB38000E024B2 /* PumpSettings.swift */; };
  93. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */; };
  94. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38887CCD25F5725200944304 /* IOBEntry.swift */; };
  95. 38887DE025F61F7500944304 /* LoopKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD025F61F7500944304 /* LoopKit.framework */; };
  96. 38887DE125F61F7500944304 /* LoopKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD025F61F7500944304 /* LoopKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  97. 38887DE225F61F7500944304 /* LoopKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD125F61F7500944304 /* LoopKitUI.framework */; };
  98. 38887DE325F61F7500944304 /* LoopKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD125F61F7500944304 /* LoopKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  99. 38887DE425F61F7500944304 /* LoopTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD225F61F7500944304 /* LoopTestingKit.framework */; };
  100. 38887DE525F61F7500944304 /* LoopTestingKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD225F61F7500944304 /* LoopTestingKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  101. 38887DE625F61F7500944304 /* MockKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD325F61F7500944304 /* MockKit.framework */; };
  102. 38887DE725F61F7500944304 /* MockKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD325F61F7500944304 /* MockKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  103. 38887DE825F61F7500944304 /* MockKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD425F61F7500944304 /* MockKitUI.framework */; };
  104. 38887DE925F61F7500944304 /* MockKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD425F61F7500944304 /* MockKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  105. 38887DEC25F61F7500944304 /* Crypto.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD625F61F7500944304 /* Crypto.framework */; };
  106. 38887DED25F61F7500944304 /* Crypto.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD625F61F7500944304 /* Crypto.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  107. 38887DEE25F61F7500944304 /* MinimedKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD725F61F7500944304 /* MinimedKit.framework */; };
  108. 38887DEF25F61F7500944304 /* MinimedKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD725F61F7500944304 /* MinimedKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  109. 38887DF025F61F7500944304 /* MinimedKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD825F61F7500944304 /* MinimedKitUI.framework */; };
  110. 38887DF125F61F7500944304 /* MinimedKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD825F61F7500944304 /* MinimedKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  111. 38887DF225F61F7500944304 /* NightscoutUploadKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD925F61F7500944304 /* NightscoutUploadKit.framework */; };
  112. 38887DF325F61F7600944304 /* NightscoutUploadKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DD925F61F7500944304 /* NightscoutUploadKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  113. 38887DF425F61F7600944304 /* OmniKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DDA25F61F7500944304 /* OmniKit.framework */; };
  114. 38887DF525F61F7600944304 /* OmniKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DDA25F61F7500944304 /* OmniKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  115. 38887DF625F61F7600944304 /* OmniKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DDB25F61F7500944304 /* OmniKitUI.framework */; };
  116. 38887DF725F61F7600944304 /* OmniKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DDB25F61F7500944304 /* OmniKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  117. 38887DF825F61F7600944304 /* RileyLinkBLEKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DDC25F61F7500944304 /* RileyLinkBLEKit.framework */; };
  118. 38887DF925F61F7600944304 /* RileyLinkBLEKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DDC25F61F7500944304 /* RileyLinkBLEKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  119. 38887DFA25F61F7600944304 /* RileyLinkKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DDD25F61F7500944304 /* RileyLinkKit.framework */; };
  120. 38887DFB25F61F7600944304 /* RileyLinkKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DDD25F61F7500944304 /* RileyLinkKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  121. 38887DFC25F61F7600944304 /* RileyLinkKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DDE25F61F7500944304 /* RileyLinkKitUI.framework */; };
  122. 38887DFD25F61F7600944304 /* RileyLinkKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 38887DDE25F61F7500944304 /* RileyLinkKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  123. 388E595C25AD948C0019842D /* FreeAPSApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E595B25AD948C0019842D /* FreeAPSApp.swift */; };
  124. 388E596025AD948E0019842D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 388E595F25AD948E0019842D /* Assets.xcassets */; };
  125. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E596B25AD95110019842D /* OpenAPS.swift */; };
  126. 388E596F25AD96040019842D /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 388E596E25AD96040019842D /* javascript */; };
  127. 388E597225AD9CF10019842D /* json in Resources */ = {isa = PBXBuildFile; fileRef = 388E597125AD9CF10019842D /* json */; };
  128. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5B25B6F0770019842D /* JSON.swift */; };
  129. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5F25B6F2310019842D /* Autosens.swift */; };
  130. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */; };
  131. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389487392614928B004DF424 /* DispatchTimer.swift */; };
  132. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3895E4C525B9E00D00214B37 /* Preferences.swift */; };
  133. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389A571F26079BAA00BC102F /* Interpolation.swift */; };
  134. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECDFD2601061500D86C4F /* View+Snapshot.swift */; };
  135. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECE042601144100D86C4F /* ConcurrentMap.swift */; };
  136. 38A00B1F25FC00F7006BC0B0 /* Autotune.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */; };
  137. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */; };
  138. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */; };
  139. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0364125ED069400FCBB52 /* TempBasal.swift */; };
  140. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */; };
  141. 38A43598262E0E4900E80935 /* FetchAnnouncementsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */; };
  142. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */; };
  143. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A9260425F012D8009E3739 /* CarbRatios.swift */; };
  144. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */; };
  145. 38AAF8712600C1B0004AF583 /* MainChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AAF8702600C1B0004AF583 /* MainChartView.swift */; };
  146. 38AEE73D25F0200C0013F05B /* FreeAPSSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */; };
  147. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75125F022080013F05B /* SettingsManager.swift */; };
  148. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */; };
  149. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 38B17B6525DD90E0005CAE3D /* SwiftDate */; };
  150. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */; };
  151. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */; };
  152. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */; };
  153. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */; };
  154. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */; };
  155. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */; };
  156. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */; };
  157. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021A25E7D06400579895 /* PumpSettingsView.swift */; };
  158. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021C25E7E3AF00579895 /* Reservoir.swift */; };
  159. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */; };
  160. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */; };
  161. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */; };
  162. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3B525EBE24900CB6E88 /* Battery.swift */; };
  163. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */; };
  164. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB27F260CBB7F00F74C1A /* PumpView.swift */; };
  165. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */; };
  166. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E989DC25F5021400C0CED0 /* PumpStatus.swift */; };
  167. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1B25F52C9300C0CED0 /* Signpost.swift */; };
  168. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1C25F52C9300C0CED0 /* Logger.swift */; };
  169. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */; };
  170. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */; };
  171. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */; };
  172. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */; };
  173. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2F25F52FF700C0CED0 /* Config.swift */; };
  174. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A3625F5509500C0CED0 /* String+Extensions.swift */; };
  175. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */; };
  176. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */; };
  177. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F37827261260DC009DB701 /* Color+Extensions.swift */; };
  178. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */; };
  179. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3D525E8FDF40078B0D1 /* MD5.swift */; };
  180. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */; };
  181. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */; };
  182. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826925CC82DB001FF17A /* NetworkService.swift */; };
  183. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */; };
  184. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3F92737E42000574A46 /* BaseStateModel.swift */; };
  185. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FB2737E53800574A46 /* MainStateModel.swift */; };
  186. 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FD2738083E00574A46 /* CGMProvider.swift */; };
  187. 38FEF408273B011A00574A46 /* LibreTransmitterSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF407273B011A00574A46 /* LibreTransmitterSource.swift */; };
  188. 38FEF40F273B2BDA00574A46 /* LibreTransmitter in Frameworks */ = {isa = PBXBuildFile; productRef = 38FEF40E273B2BDA00574A46 /* LibreTransmitter */; };
  189. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF412273B317A00574A46 /* HKUnit.swift */; };
  190. 44190F0BBA464D74B857D1FB /* PreferencesEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */; };
  191. 448B6FCB252BD4796E2960C0 /* PumpSettingsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */; };
  192. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */; };
  193. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */; };
  194. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */; };
  195. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */; };
  196. 5BFA1C2208114643B77F8CEB /* AddTempTargetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEE53A13D26F101B332EFFC8 /* AddTempTargetProvider.swift */; };
  197. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */; };
  198. 61962FCAF8A2D222553AC5A3 /* LibreConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66A5B83E7967C38F7CBD883C /* LibreConfigDataFlow.swift */; };
  199. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */; };
  200. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */; };
  201. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */; };
  202. 69A31254F2451C20361D172F /* BolusStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */; };
  203. 69B9A368029F7EB39F525422 /* CREditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */; };
  204. 6B9625766B697D1C98E455A2 /* PumpSettingsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */; };
  205. 6EADD581738D64431902AC0A /* LibreConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2EBA7C03C26FCC67E16D798 /* LibreConfigProvider.swift */; };
  206. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */; };
  207. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */; };
  208. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */; };
  209. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */; };
  210. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */; };
  211. 891DECF7BC20968D7F566161 /* AutotuneConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */; };
  212. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */; };
  213. 8BC2F5A29AD1ED08AC0EE013 /* AddTempTargetRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9AAB83FB6C3B41EFD1846A0 /* AddTempTargetRootView.swift */; };
  214. 903D18976088B09110BCBE29 /* LibreConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E68CDC1E5C438D1BEAD4CF24 /* LibreConfigStateModel.swift */; };
  215. 9050F378F0063C064D7FFC86 /* LibreConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC210C0F3CB6D3C86E5DED4E /* LibreConfigRootView.swift */; };
  216. 919DBD08F13BAFB180DF6F47 /* AddTempTargetStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C3B5FD881CA45DFDEE0EDA9 /* AddTempTargetStateModel.swift */; };
  217. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */; };
  218. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */; };
  219. 98641AF4F92123DA668AB931 /* CREditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */; };
  220. A05235B9112E677ED03B6E8E /* AutotuneConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */; };
  221. A0B8EC8CC5CD1DD237D1BCD2 /* PumpSettingsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */; };
  222. A228DF96647338139F152B15 /* PreferencesEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */; };
  223. A33352ED40476125EBAC6EE0 /* CREditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */; };
  224. A6F097A14CAAE0CE0D11BE1B /* AddCarbsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 618E62C9757B2F95431B5DC0 /* AddCarbsProvider.swift */; };
  225. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */; };
  226. B7C465E9472624D8A2BE2A6A /* CalibrationsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA241FB1663EC96FDBE64C8A /* CalibrationsDataFlow.swift */; };
  227. BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */; };
  228. BA90041DC8991147E5C8C3AA /* CalibrationsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 500371C09F54F89A97D65FDB /* CalibrationsRootView.swift */; };
  229. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */; };
  230. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */; };
  231. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */; };
  232. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */; };
  233. D2165E9D78EFF692C1DED1C6 /* AddTempTargetDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B8A42073A2D03A278914448 /* AddTempTargetDataFlow.swift */; };
  234. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */; };
  235. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */; };
  236. D76333C9256787610B3B4875 /* AutotuneConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */; };
  237. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */; };
  238. DD399FB31EACB9343C944C4C /* PreferencesEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */; };
  239. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFD27368630002FF094 /* ServiceAssembly.swift */; };
  240. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFE27368630002FF094 /* SecurityAssembly.swift */; };
  241. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFF27368630002FF094 /* StorageAssembly.swift */; };
  242. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0027368630002FF094 /* UIAssembly.swift */; };
  243. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0127368630002FF094 /* APSAssembly.swift */; };
  244. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0227368630002FF094 /* NetworkAssembly.swift */; };
  245. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */; };
  246. E25073BC86C11C3D6A42F5AC /* CalibrationsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47DFCE895C930F784EF11843 /* CalibrationsStateModel.swift */; };
  247. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */; };
  248. E4984C5262A90469788754BB /* PreferencesEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */; };
  249. E97285ED9B814CD5253C6658 /* AddCarbsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F48C3AC770D4CCD0EA2B0C2 /* AddCarbsDataFlow.swift */; };
  250. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */; };
  251. F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */; };
  252. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */; };
  253. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */; };
  254. /* End PBXBuildFile section */
  255. /* Begin PBXContainerItemProxy section */
  256. 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */ = {
  257. isa = PBXContainerItemProxy;
  258. containerPortal = 388E595025AD948C0019842D /* Project object */;
  259. proxyType = 1;
  260. remoteGlobalIDString = 388E595725AD948C0019842D;
  261. remoteInfo = FreeAPS;
  262. };
  263. /* End PBXContainerItemProxy section */
  264. /* Begin PBXCopyFilesBuildPhase section */
  265. 3821ECD025DC703C00BC42AD /* Embed Frameworks */ = {
  266. isa = PBXCopyFilesBuildPhase;
  267. buildActionMask = 2147483647;
  268. dstPath = "";
  269. dstSubfolderSpec = 10;
  270. files = (
  271. 38887DED25F61F7500944304 /* Crypto.framework in Embed Frameworks */,
  272. 38887DE525F61F7500944304 /* LoopTestingKit.framework in Embed Frameworks */,
  273. 38887DE125F61F7500944304 /* LoopKit.framework in Embed Frameworks */,
  274. 38887DEF25F61F7500944304 /* MinimedKit.framework in Embed Frameworks */,
  275. 386A124D271704DA00DDC61C /* CGMBLEKit.framework in Embed Frameworks */,
  276. 38887DF325F61F7600944304 /* NightscoutUploadKit.framework in Embed Frameworks */,
  277. 38887DFB25F61F7600944304 /* RileyLinkKit.framework in Embed Frameworks */,
  278. 38887DFD25F61F7600944304 /* RileyLinkKitUI.framework in Embed Frameworks */,
  279. 38887DE325F61F7500944304 /* LoopKitUI.framework in Embed Frameworks */,
  280. 38887DE725F61F7500944304 /* MockKit.framework in Embed Frameworks */,
  281. 38887DF125F61F7500944304 /* MinimedKitUI.framework in Embed Frameworks */,
  282. 38887DF725F61F7600944304 /* OmniKitUI.framework in Embed Frameworks */,
  283. 38887DF925F61F7600944304 /* RileyLinkBLEKit.framework in Embed Frameworks */,
  284. 38887DF525F61F7600944304 /* OmniKit.framework in Embed Frameworks */,
  285. 38887DE925F61F7500944304 /* MockKitUI.framework in Embed Frameworks */,
  286. );
  287. name = "Embed Frameworks";
  288. runOnlyForDeploymentPostprocessing = 0;
  289. };
  290. /* End PBXCopyFilesBuildPhase section */
  291. /* Begin PBXFileReference section */
  292. 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorDataFlow.swift; sourceTree = "<group>"; };
  293. 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorStateModel.swift; sourceTree = "<group>"; };
  294. 10A0C32B0DAB52726EF9B6D9 /* BolusRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusRootView.swift; sourceTree = "<group>"; };
  295. 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorDataFlow.swift; sourceTree = "<group>"; };
  296. 1918333A26ADA46800F45722 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
  297. 1927C8E92744611700347C69 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  298. 1927C8EA2744611800347C69 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  299. 1927C8EB2744611900347C69 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  300. 1927C8EC2744611A00347C69 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  301. 1927C8ED2744611B00347C69 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  302. 1927C8EE2744611C00347C69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  303. 1927C8EF2744611D00347C69 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  304. 1927C8F02744611E00347C69 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  305. 1927C8F12744611E00347C69 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  306. 1927C8F22744611F00347C69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  307. 1927C8F32744612000347C69 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  308. 1927C8F42744612100347C69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  309. 1927C8F52744612100347C69 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  310. 1927C8F62744612200347C69 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  311. 1927C8F72744612300347C69 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  312. 1927C8F82744612400347C69 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  313. 1927C8F92744612400347C69 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  314. 1927C8FA2744612500347C69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  315. 1927C8FB2744612600347C69 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  316. 1927C8FE274489BA00347C69 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  317. 198377D3266BFFF6004DE65E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  318. 198377D5266C0A05004DE65E /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
  319. 198377D6266C0A0A004DE65E /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  320. 198377D7266C0A15004DE65E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  321. 198377D8266C0A1C004DE65E /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  322. 198377D9266C0A21004DE65E /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  323. 198377DA266C0A2B004DE65E /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  324. 198377DB266C0A32004DE65E /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  325. 198377DC266C0A3C004DE65E /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
  326. 198377DD266C0A51004DE65E /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  327. 198377DE266C0A69004DE65E /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/Localizable.strings; sourceTree = "<group>"; };
  328. 198377DF266C0A7F004DE65E /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  329. 198377E0266C0AB5004DE65E /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  330. 198377E1266C0ABF004DE65E /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  331. 198377E2266C0AC8004DE65E /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  332. 198377E3266C0ADC004DE65E /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  333. 198377E4266C13D2004DE65E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
  334. 199732B4271B72DD00129A3F /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  335. 199732B5271B9EE900129A3F /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  336. 212E8BFE6D66EE65AA26A114 /* CalibrationsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsProvider.swift; sourceTree = "<group>"; };
  337. 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusStateModel.swift; sourceTree = "<group>"; };
  338. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigRootView.swift; sourceTree = "<group>"; };
  339. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigDataFlow.swift; sourceTree = "<group>"; };
  340. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorStateModel.swift; sourceTree = "<group>"; };
  341. 3811DE0725C9D32E00A708ED /* BaseView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseView.swift; sourceTree = "<group>"; };
  342. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseProvider.swift; sourceTree = "<group>"; };
  343. 3811DE1525C9D40400A708ED /* Screen.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Screen.swift; sourceTree = "<group>"; };
  344. 3811DE1625C9D40400A708ED /* Router.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Router.swift; sourceTree = "<group>"; };
  345. 3811DE1C25C9D48300A708ED /* MainProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainProvider.swift; sourceTree = "<group>"; };
  346. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainDataFlow.swift; sourceTree = "<group>"; };
  347. 3811DE2025C9D48300A708ED /* MainRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainRootView.swift; sourceTree = "<group>"; };
  348. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeStateModel.swift; sourceTree = "<group>"; };
  349. 3811DE2925C9D49500A708ED /* HomeProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeProvider.swift; sourceTree = "<group>"; };
  350. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeDataFlow.swift; sourceTree = "<group>"; };
  351. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeRootView.swift; sourceTree = "<group>"; };
  352. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsStateModel.swift; sourceTree = "<group>"; };
  353. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsRootView.swift; sourceTree = "<group>"; };
  354. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsDataFlow.swift; sourceTree = "<group>"; };
  355. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsProvider.swift; sourceTree = "<group>"; };
  356. 3811DE5425C9D4D500A708ED /* Formatters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Formatters.swift; sourceTree = "<group>"; };
  357. 3811DE5525C9D4D500A708ED /* Publisher.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Publisher.swift; sourceTree = "<group>"; };
  358. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProgressBar.swift; sourceTree = "<group>"; };
  359. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewModifiers.swift; sourceTree = "<group>"; };
  360. 3811DE8E25C9D80400A708ED /* User.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = User.swift; sourceTree = "<group>"; };
  361. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppearanceManager.swift; sourceTree = "<group>"; };
  362. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HTTPResponseStatus.swift; sourceTree = "<group>"; };
  363. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NightscoutManager.swift; sourceTree = "<group>"; };
  364. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDefaults+Cache.swift"; sourceTree = "<group>"; };
  365. 3811DE9B25C9D88300A708ED /* Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Cache.swift; sourceTree = "<group>"; };
  366. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyValueStorage.swift; sourceTree = "<group>"; };
  367. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseKeychain.swift; sourceTree = "<group>"; };
  368. 3811DE9F25C9D88300A708ED /* Keychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Keychain.swift; sourceTree = "<group>"; };
  369. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeychainItemAccessibility.swift; sourceTree = "<group>"; };
  370. 3811DEA625C9D88300A708ED /* UnlockManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnlockManager.swift; sourceTree = "<group>"; };
  371. 3811DEC725C9DA7300A708ED /* FreeAPS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = FreeAPS.entitlements; sourceTree = "<group>"; };
  372. 3811DEE425CA063400A708ED /* Injected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Injected.swift; sourceTree = "<group>"; };
  373. 3811DEE625CA063400A708ED /* SyncAccess.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SyncAccess.swift; sourceTree = "<group>"; };
  374. 3811DEE725CA063400A708ED /* PersistedProperty.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PersistedProperty.swift; sourceTree = "<group>"; };
  375. 3811DF0125CA9FEA00A708ED /* Credentials.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Credentials.swift; sourceTree = "<group>"; };
  376. 3811DF0F25CAAAE200A708ED /* APSManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = APSManager.swift; sourceTree = "<group>"; };
  377. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReachabilityManager.swift; sourceTree = "<group>"; };
  378. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchTreatmentsManager.swift; sourceTree = "<group>"; };
  379. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConvenienceExtensions.swift; sourceTree = "<group>"; };
  380. 3821ED4B25DD18BA00BC42AD /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
  381. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinSensitivities.swift; sourceTree = "<group>"; };
  382. 382C134A25F14E3700715CE1 /* BGTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGTargets.swift; sourceTree = "<group>"; };
  383. 383420D525FFE38C002D46C1 /* LoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopView.swift; sourceTree = "<group>"; };
  384. 383420D825FFEB3F002D46C1 /* Popup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Popup.swift; sourceTree = "<group>"; };
  385. 383948D525CD4D8900E91849 /* FileStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorage.swift; sourceTree = "<group>"; };
  386. 383948D925CD64D500E91849 /* Glucose.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Glucose.swift; sourceTree = "<group>"; };
  387. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JavaScriptWorker.swift; sourceTree = "<group>"; };
  388. 384E803725C388640086DB71 /* Script.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Script.swift; sourceTree = "<group>"; };
  389. 38569344270B5DFA0002C50D /* CGMType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMType.swift; sourceTree = "<group>"; };
  390. 38569345270B5DFA0002C50D /* GlucoseSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucoseSource.swift; sourceTree = "<group>"; };
  391. 38569346270B5DFB0002C50D /* AppGroupSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppGroupSource.swift; sourceTree = "<group>"; };
  392. 38569352270B5E350002C50D /* CGMRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMRootView.swift; sourceTree = "<group>"; };
  393. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutStatus.swift; sourceTree = "<group>"; };
  394. 385CEAC025F2EA52002D6D5B /* Announcement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Announcement.swift; sourceTree = "<group>"; };
  395. 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnnouncementsStorage.swift; sourceTree = "<group>"; };
  396. 3862CC04273D152B00BF832C /* CalibrationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationService.swift; sourceTree = "<group>"; };
  397. 3862CC1E273FDC9200BF832C /* CalibrationsChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationsChart.swift; sourceTree = "<group>"; };
  398. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarManager.swift; sourceTree = "<group>"; };
  399. 386A124B271704DA00DDC61C /* CGMBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  400. 386A124E271707F000DDC61C /* DexcomSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DexcomSource.swift; sourceTree = "<group>"; };
  401. 3870FF4225EC13F40088248F /* BloodGlucose.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BloodGlucose.swift; sourceTree = "<group>"; };
  402. 3871F38625ED661C0013ECB5 /* Suggestion.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Suggestion.swift; sourceTree = "<group>"; };
  403. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTarget.swift; sourceTree = "<group>"; };
  404. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Decimal+Extensions.swift"; sourceTree = "<group>"; };
  405. 3883581B25EE79BB00E024B2 /* DecimalTextField.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DecimalTextField.swift; sourceTree = "<group>"; };
  406. 3883583325EEB38000E024B2 /* PumpSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettings.swift; sourceTree = "<group>"; };
  407. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasalProfileEntry.swift; sourceTree = "<group>"; };
  408. 38887CCD25F5725200944304 /* IOBEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOBEntry.swift; sourceTree = "<group>"; };
  409. 38887DD025F61F7500944304 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  410. 38887DD125F61F7500944304 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  411. 38887DD225F61F7500944304 /* LoopTestingKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopTestingKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  412. 38887DD325F61F7500944304 /* MockKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  413. 38887DD425F61F7500944304 /* MockKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  414. 38887DD525F61F7500944304 /* MKRingProgressView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MKRingProgressView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  415. 38887DD625F61F7500944304 /* Crypto.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Crypto.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  416. 38887DD725F61F7500944304 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  417. 38887DD825F61F7500944304 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  418. 38887DD925F61F7500944304 /* NightscoutUploadKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = NightscoutUploadKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  419. 38887DDA25F61F7500944304 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  420. 38887DDB25F61F7500944304 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  421. 38887DDC25F61F7500944304 /* RileyLinkBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  422. 38887DDD25F61F7500944304 /* RileyLinkKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  423. 38887DDE25F61F7500944304 /* RileyLinkKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  424. 38887DDF25F61F7500944304 /* SwiftCharts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = SwiftCharts.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  425. 38887E2025F6209B00944304 /* SwiftCharts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = SwiftCharts.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  426. 388E595825AD948C0019842D /* FreeAPS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FreeAPS.app; sourceTree = BUILT_PRODUCTS_DIR; };
  427. 388E595B25AD948C0019842D /* FreeAPSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSApp.swift; sourceTree = "<group>"; };
  428. 388E595F25AD948E0019842D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  429. 388E596425AD948E0019842D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  430. 388E596B25AD95110019842D /* OpenAPS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPS.swift; sourceTree = "<group>"; };
  431. 388E596E25AD96040019842D /* javascript */ = {isa = PBXFileReference; lastKnownFileType = folder; path = javascript; sourceTree = "<group>"; };
  432. 388E597125AD9CF10019842D /* json */ = {isa = PBXFileReference; lastKnownFileType = folder; path = json; sourceTree = "<group>"; };
  433. 388E5A5B25B6F0770019842D /* JSON.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSON.swift; sourceTree = "<group>"; };
  434. 388E5A5F25B6F2310019842D /* Autosens.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autosens.swift; sourceTree = "<group>"; };
  435. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutTreatment.swift; sourceTree = "<group>"; };
  436. 389487392614928B004DF424 /* DispatchTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DispatchTimer.swift; sourceTree = "<group>"; };
  437. 3895E4C525B9E00D00214B37 /* Preferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Preferences.swift; sourceTree = "<group>"; };
  438. 389A571F26079BAA00BC102F /* Interpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Interpolation.swift; sourceTree = "<group>"; };
  439. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Snapshot.swift"; sourceTree = "<group>"; };
  440. 389ECE042601144100D86C4F /* ConcurrentMap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConcurrentMap.swift; sourceTree = "<group>"; };
  441. 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autotune.swift; sourceTree = "<group>"; };
  442. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LRUCache.swift; sourceTree = "<group>"; };
  443. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseStorage.swift; sourceTree = "<group>"; };
  444. 38A0364125ED069400FCBB52 /* TempBasal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempBasal.swift; sourceTree = "<group>"; };
  445. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryEvent.swift; sourceTree = "<group>"; };
  446. 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchAnnouncementsManager.swift; sourceTree = "<group>"; };
  447. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDefaultsExtensions.swift; sourceTree = "<group>"; };
  448. 38A9260425F012D8009E3739 /* CarbRatios.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbRatios.swift; sourceTree = "<group>"; };
  449. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CurrentGlucoseView.swift; sourceTree = "<group>"; };
  450. 38AAF8702600C1B0004AF583 /* MainChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainChartView.swift; sourceTree = "<group>"; };
  451. 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSSettings.swift; sourceTree = "<group>"; };
  452. 38AEE75125F022080013F05B /* SettingsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsManager.swift; sourceTree = "<group>"; };
  453. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsStorage.swift; sourceTree = "<group>"; };
  454. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IndexedCollection.swift; sourceTree = "<group>"; };
  455. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSetupView.swift; sourceTree = "<group>"; };
  456. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationCenter.swift; sourceTree = "<group>"; };
  457. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftNotificationCenter.swift; sourceTree = "<group>"; };
  458. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WeakObjectSet.swift; sourceTree = "<group>"; };
  459. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Broadcaster.swift; sourceTree = "<group>"; };
  460. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpManagerExtensions.swift; sourceTree = "<group>"; };
  461. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettingsView.swift; sourceTree = "<group>"; };
  462. 38BF021C25E7E3AF00579895 /* Reservoir.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Reservoir.swift; sourceTree = "<group>"; };
  463. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceDataManager.swift; sourceTree = "<group>"; };
  464. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+Extensions.swift"; sourceTree = "<group>"; };
  465. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSObject+AssociatedValues.swift"; sourceTree = "<group>"; };
  466. 38D0B3B525EBE24900CB6E88 /* Battery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Battery.swift; sourceTree = "<group>"; };
  467. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsEntry.swift; sourceTree = "<group>"; };
  468. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpView.swift; sourceTree = "<group>"; };
  469. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchGlucoseManager.swift; sourceTree = "<group>"; };
  470. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpStatus.swift; sourceTree = "<group>"; };
  471. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Signpost.swift; sourceTree = "<group>"; };
  472. 38E98A1C25F52C9300C0CED0 /* Logger.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Logger.swift; sourceTree = "<group>"; };
  473. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IssueReporter.swift; sourceTree = "<group>"; };
  474. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CollectionIssueReporter.swift; sourceTree = "<group>"; };
  475. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Error+Extensions.swift"; sourceTree = "<group>"; };
  476. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSLocking+Extensions.swift"; sourceTree = "<group>"; };
  477. 38E98A2F25F52FF700C0CED0 /* Config.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Config.swift; sourceTree = "<group>"; };
  478. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extensions.swift"; sourceTree = "<group>"; };
  479. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleLogReporter.swift; sourceTree = "<group>"; };
  480. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusProgressViewStyle.swift; sourceTree = "<group>"; };
  481. 38F37827261260DC009DB701 /* Color+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Color+Extensions.swift"; sourceTree = "<group>"; };
  482. 38F3783A2613555C009DB701 /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
  483. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetsStorage.swift; sourceTree = "<group>"; };
  484. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MD5.swift; sourceTree = "<group>"; };
  485. 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FreeAPSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  486. 38FCF3F125E9028E0078B0D1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  487. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorageTests.swift; sourceTree = "<group>"; };
  488. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryStorage.swift; sourceTree = "<group>"; };
  489. 38FE826925CC82DB001FF17A /* NetworkService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkService.swift; sourceTree = "<group>"; };
  490. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutAPI.swift; sourceTree = "<group>"; };
  491. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseStateModel.swift; sourceTree = "<group>"; };
  492. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainStateModel.swift; sourceTree = "<group>"; };
  493. 38FEF3FD2738083E00574A46 /* CGMProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMProvider.swift; sourceTree = "<group>"; };
  494. 38FEF407273B011A00574A46 /* LibreTransmitterSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LibreTransmitterSource.swift; sourceTree = "<group>"; };
  495. 38FEF412273B317A00574A46 /* HKUnit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HKUnit.swift; sourceTree = "<group>"; };
  496. 39E7C997E56DAF8D28D09014 /* AddCarbsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddCarbsStateModel.swift; sourceTree = "<group>"; };
  497. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorProvider.swift; sourceTree = "<group>"; };
  498. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigProvider.swift; sourceTree = "<group>"; };
  499. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigStateModel.swift; sourceTree = "<group>"; };
  500. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorDataFlow.swift; sourceTree = "<group>"; };
  501. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorProvider.swift; sourceTree = "<group>"; };
  502. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorProvider.swift; sourceTree = "<group>"; };
  503. 47DFCE895C930F784EF11843 /* CalibrationsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsStateModel.swift; sourceTree = "<group>"; };
  504. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorRootView.swift; sourceTree = "<group>"; };
  505. 500371C09F54F89A97D65FDB /* CalibrationsRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsRootView.swift; sourceTree = "<group>"; };
  506. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorStateModel.swift; sourceTree = "<group>"; };
  507. 5B8A42073A2D03A278914448 /* AddTempTargetDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetDataFlow.swift; sourceTree = "<group>"; };
  508. 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMStateModel.swift; sourceTree = "<group>"; };
  509. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorStateModel.swift; sourceTree = "<group>"; };
  510. 5F48C3AC770D4CCD0EA2B0C2 /* AddCarbsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddCarbsDataFlow.swift; sourceTree = "<group>"; };
  511. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableProvider.swift; sourceTree = "<group>"; };
  512. 618E62C9757B2F95431B5DC0 /* AddCarbsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddCarbsProvider.swift; sourceTree = "<group>"; };
  513. 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorStateModel.swift; sourceTree = "<group>"; };
  514. 66A5B83E7967C38F7CBD883C /* LibreConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigDataFlow.swift; sourceTree = "<group>"; };
  515. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorDataFlow.swift; sourceTree = "<group>"; };
  516. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalProvider.swift; sourceTree = "<group>"; };
  517. 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorProvider.swift; sourceTree = "<group>"; };
  518. 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorStateModel.swift; sourceTree = "<group>"; };
  519. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorDataFlow.swift; sourceTree = "<group>"; };
  520. 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorDataFlow.swift; sourceTree = "<group>"; };
  521. 86FC1CFD647CF34508AF9A3B /* AddCarbsRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddCarbsRootView.swift; sourceTree = "<group>"; };
  522. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigRootView.swift; sourceTree = "<group>"; };
  523. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableRootView.swift; sourceTree = "<group>"; };
  524. 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorRootView.swift; sourceTree = "<group>"; };
  525. 8C3B5FD881CA45DFDEE0EDA9 /* AddTempTargetStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetStateModel.swift; sourceTree = "<group>"; };
  526. 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigRootView.swift; sourceTree = "<group>"; };
  527. 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigDataFlow.swift; sourceTree = "<group>"; };
  528. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorRootView.swift; sourceTree = "<group>"; };
  529. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableStateModel.swift; sourceTree = "<group>"; };
  530. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalDataFlow.swift; sourceTree = "<group>"; };
  531. 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorProvider.swift; sourceTree = "<group>"; };
  532. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorProvider.swift; sourceTree = "<group>"; };
  533. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigStateModel.swift; sourceTree = "<group>"; };
  534. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableDataFlow.swift; sourceTree = "<group>"; };
  535. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigProvider.swift; sourceTree = "<group>"; };
  536. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorStateModel.swift; sourceTree = "<group>"; };
  537. AEE53A13D26F101B332EFFC8 /* AddTempTargetProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetProvider.swift; sourceTree = "<group>"; };
  538. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigDataFlow.swift; sourceTree = "<group>"; };
  539. B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigProvider.swift; sourceTree = "<group>"; };
  540. B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorRootView.swift; sourceTree = "<group>"; };
  541. B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMDataFlow.swift; sourceTree = "<group>"; };
  542. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorDataFlow.swift; sourceTree = "<group>"; };
  543. BC210C0F3CB6D3C86E5DED4E /* LibreConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigRootView.swift; sourceTree = "<group>"; };
  544. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorRootView.swift; sourceTree = "<group>"; };
  545. C19984D62EFC0035A9E9644D /* BolusProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusProvider.swift; sourceTree = "<group>"; };
  546. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalRootView.swift; sourceTree = "<group>"; };
  547. C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusDataFlow.swift; sourceTree = "<group>"; };
  548. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalStateModel.swift; sourceTree = "<group>"; };
  549. D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorRootView.swift; sourceTree = "<group>"; };
  550. D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigStateModel.swift; sourceTree = "<group>"; };
  551. D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorProvider.swift; sourceTree = "<group>"; };
  552. DA241FB1663EC96FDBE64C8A /* CalibrationsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsDataFlow.swift; sourceTree = "<group>"; };
  553. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ServiceAssembly.swift; sourceTree = "<group>"; };
  554. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SecurityAssembly.swift; sourceTree = "<group>"; };
  555. E00EEBFF27368630002FF094 /* StorageAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StorageAssembly.swift; sourceTree = "<group>"; };
  556. E00EEC0027368630002FF094 /* UIAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIAssembly.swift; sourceTree = "<group>"; };
  557. E00EEC0127368630002FF094 /* APSAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = APSAssembly.swift; sourceTree = "<group>"; };
  558. E00EEC0227368630002FF094 /* NetworkAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkAssembly.swift; sourceTree = "<group>"; };
  559. E2EBA7C03C26FCC67E16D798 /* LibreConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigProvider.swift; sourceTree = "<group>"; };
  560. E68CDC1E5C438D1BEAD4CF24 /* LibreConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigStateModel.swift; sourceTree = "<group>"; };
  561. E9AAB83FB6C3B41EFD1846A0 /* AddTempTargetRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetRootView.swift; sourceTree = "<group>"; };
  562. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorRootView.swift; sourceTree = "<group>"; };
  563. /* End PBXFileReference section */
  564. /* Begin PBXFrameworksBuildPhase section */
  565. 388E595525AD948C0019842D /* Frameworks */ = {
  566. isa = PBXFrameworksBuildPhase;
  567. buildActionMask = 2147483647;
  568. files = (
  569. 38FEF40F273B2BDA00574A46 /* LibreTransmitter in Frameworks */,
  570. 38887DF225F61F7500944304 /* NightscoutUploadKit.framework in Frameworks */,
  571. 38887DE825F61F7500944304 /* MockKitUI.framework in Frameworks */,
  572. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */,
  573. 38192E01261B826A0094D973 /* Alamofire in Frameworks */,
  574. 383948D325CD4D6D00E91849 /* Disk in Frameworks */,
  575. 38887DF825F61F7600944304 /* RileyLinkBLEKit.framework in Frameworks */,
  576. 38887DEC25F61F7500944304 /* Crypto.framework in Frameworks */,
  577. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */,
  578. 38887DF425F61F7600944304 /* OmniKit.framework in Frameworks */,
  579. 386A124C271704DA00DDC61C /* CGMBLEKit.framework in Frameworks */,
  580. 38887DFA25F61F7600944304 /* RileyLinkKit.framework in Frameworks */,
  581. 38887DF625F61F7600944304 /* OmniKitUI.framework in Frameworks */,
  582. 38887DE425F61F7500944304 /* LoopTestingKit.framework in Frameworks */,
  583. 3833B46D26012030003021B3 /* Algorithms in Frameworks */,
  584. 38887DFC25F61F7600944304 /* RileyLinkKitUI.framework in Frameworks */,
  585. 38887DEE25F61F7500944304 /* MinimedKit.framework in Frameworks */,
  586. 38887DE025F61F7500944304 /* LoopKit.framework in Frameworks */,
  587. 38887DE225F61F7500944304 /* LoopKitUI.framework in Frameworks */,
  588. 38887DE625F61F7500944304 /* MockKit.framework in Frameworks */,
  589. 38887DF025F61F7500944304 /* MinimedKitUI.framework in Frameworks */,
  590. );
  591. runOnlyForDeploymentPostprocessing = 0;
  592. };
  593. 38FCF3EA25E9028E0078B0D1 /* Frameworks */ = {
  594. isa = PBXFrameworksBuildPhase;
  595. buildActionMask = 2147483647;
  596. files = (
  597. );
  598. runOnlyForDeploymentPostprocessing = 0;
  599. };
  600. /* End PBXFrameworksBuildPhase section */
  601. /* Begin PBXGroup section */
  602. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */ = {
  603. isa = PBXGroup;
  604. children = (
  605. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */,
  606. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */,
  607. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */,
  608. 4E8C7B59F8065047ECE20965 /* View */,
  609. );
  610. path = ConfigEditor;
  611. sourceTree = "<group>";
  612. };
  613. 0D76BBC81CEDC1A0050F45EF /* View */ = {
  614. isa = PBXGroup;
  615. children = (
  616. 38569352270B5E350002C50D /* CGMRootView.swift */,
  617. );
  618. path = View;
  619. sourceTree = "<group>";
  620. };
  621. 0EE66DD474AFFD4FD787D5B9 /* View */ = {
  622. isa = PBXGroup;
  623. children = (
  624. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */,
  625. );
  626. path = View;
  627. sourceTree = "<group>";
  628. };
  629. 18B49BC9587A59E3A347C1CD /* View */ = {
  630. isa = PBXGroup;
  631. children = (
  632. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */,
  633. );
  634. path = View;
  635. sourceTree = "<group>";
  636. };
  637. 198377CF266BFEDE004DE65E /* Localizations */ = {
  638. isa = PBXGroup;
  639. children = (
  640. 19D440A926B6FEBD008DA6C8 /* Main */,
  641. );
  642. path = Localizations;
  643. sourceTree = "<group>";
  644. };
  645. 19D440A926B6FEBD008DA6C8 /* Main */ = {
  646. isa = PBXGroup;
  647. children = (
  648. 198377D4266BFFF6004DE65E /* Localizable.strings */,
  649. );
  650. path = Main;
  651. sourceTree = "<group>";
  652. };
  653. 34CA4DF169B53D67EF18ED8A /* View */ = {
  654. isa = PBXGroup;
  655. children = (
  656. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */,
  657. );
  658. path = View;
  659. sourceTree = "<group>";
  660. };
  661. 3811DE0325C9D31700A708ED /* Modules */ = {
  662. isa = PBXGroup;
  663. children = (
  664. 6DC5D590658EF8B8DF94F9F5 /* AddCarbs */,
  665. A9A4C88374496B3C89058A89 /* AddTempTarget */,
  666. 672F63EEAE27400625E14BAD /* AutotuneConfig */,
  667. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */,
  668. 3811DE0425C9D32E00A708ED /* Base */,
  669. C2C98283C436DB934D7E7994 /* Bolus */,
  670. E8176B120B55CE89F1591542 /* Calibrations */,
  671. F75CB57ED6971B46F8756083 /* CGM */,
  672. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */,
  673. E42231DBF0DBE2B4B92D1B15 /* CREditor */,
  674. 9E56E3626FAD933385101B76 /* DataTable */,
  675. 3811DE2725C9D49500A708ED /* Home */,
  676. D8F047E14D567F2B5DBEFD96 /* ISFEditor */,
  677. C11D545CED3ECEB525EDEE23 /* LibreConfig */,
  678. 3811DE1A25C9D48300A708ED /* Main */,
  679. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */,
  680. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */,
  681. 3E1C41D9301B7058AA7BF5EA /* PreferencesEditor */,
  682. 99C01B871ACAB3F32CE755C7 /* PumpConfig */,
  683. E493126EA71765130F64CCE5 /* PumpSettingsEditor */,
  684. 3811DE3825C9D4A100A708ED /* Settings */,
  685. 6517011F19F244F64E1FF14B /* TargetsEditor */,
  686. );
  687. path = Modules;
  688. sourceTree = "<group>";
  689. };
  690. 3811DE0425C9D32E00A708ED /* Base */ = {
  691. isa = PBXGroup;
  692. children = (
  693. 3811DE0725C9D32E00A708ED /* BaseView.swift */,
  694. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */,
  695. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */,
  696. );
  697. path = Base;
  698. sourceTree = "<group>";
  699. };
  700. 3811DE1325C9D39E00A708ED /* Sources */ = {
  701. isa = PBXGroup;
  702. children = (
  703. E00EEBFC27368630002FF094 /* Assemblies */,
  704. 198377CF266BFEDE004DE65E /* Localizations */,
  705. 3811DEDE25C9E2DD00A708ED /* Application */,
  706. 3811DF0A25CAAAA500A708ED /* APS */,
  707. 38E98A3225F5300800C0CED0 /* Config */,
  708. 388E5A5A25B6F05F0019842D /* Helpers */,
  709. 38E98A1A25F52C9300C0CED0 /* Logger */,
  710. 388E5A5925B6F0250019842D /* Models */,
  711. 3811DE0325C9D31700A708ED /* Modules */,
  712. 3811DE1425C9D40400A708ED /* Router */,
  713. 3811DE9125C9D88200A708ED /* Services */,
  714. 3883582E25EEAFC000E024B2 /* Views */,
  715. );
  716. path = Sources;
  717. sourceTree = "<group>";
  718. };
  719. 3811DE1425C9D40400A708ED /* Router */ = {
  720. isa = PBXGroup;
  721. children = (
  722. 3811DE1525C9D40400A708ED /* Screen.swift */,
  723. 3811DE1625C9D40400A708ED /* Router.swift */,
  724. );
  725. path = Router;
  726. sourceTree = "<group>";
  727. };
  728. 3811DE1A25C9D48300A708ED /* Main */ = {
  729. isa = PBXGroup;
  730. children = (
  731. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */,
  732. 3811DE1C25C9D48300A708ED /* MainProvider.swift */,
  733. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */,
  734. 3811DE1F25C9D48300A708ED /* View */,
  735. );
  736. path = Main;
  737. sourceTree = "<group>";
  738. };
  739. 3811DE1F25C9D48300A708ED /* View */ = {
  740. isa = PBXGroup;
  741. children = (
  742. 3811DE2025C9D48300A708ED /* MainRootView.swift */,
  743. );
  744. path = View;
  745. sourceTree = "<group>";
  746. };
  747. 3811DE2725C9D49500A708ED /* Home */ = {
  748. isa = PBXGroup;
  749. children = (
  750. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */,
  751. 3811DE2925C9D49500A708ED /* HomeProvider.swift */,
  752. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */,
  753. 3811DE2C25C9D49500A708ED /* View */,
  754. );
  755. path = Home;
  756. sourceTree = "<group>";
  757. };
  758. 3811DE2C25C9D49500A708ED /* View */ = {
  759. isa = PBXGroup;
  760. children = (
  761. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */,
  762. 3833B51E260264AC003021B3 /* Chart */,
  763. 3833B51F260264B6003021B3 /* Header */,
  764. );
  765. path = View;
  766. sourceTree = "<group>";
  767. };
  768. 3811DE3825C9D4A100A708ED /* Settings */ = {
  769. isa = PBXGroup;
  770. children = (
  771. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */,
  772. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */,
  773. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */,
  774. 3811DE3B25C9D4A100A708ED /* View */,
  775. );
  776. path = Settings;
  777. sourceTree = "<group>";
  778. };
  779. 3811DE3B25C9D4A100A708ED /* View */ = {
  780. isa = PBXGroup;
  781. children = (
  782. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */,
  783. );
  784. path = View;
  785. sourceTree = "<group>";
  786. };
  787. 3811DE9125C9D88200A708ED /* Services */ = {
  788. isa = PBXGroup;
  789. children = (
  790. 3862CC2C2743F9DC00BF832C /* Calendar */,
  791. 38AEE75025F021F10013F05B /* SettingsManager */,
  792. 38B4F3C425E5016800E76A18 /* Notifications */,
  793. 3811DE9225C9D88200A708ED /* Appearance */,
  794. 3811DE9425C9D88200A708ED /* Network */,
  795. 3811DE9825C9D88300A708ED /* Storage */,
  796. 3811DEA525C9D88300A708ED /* UnlockManager */,
  797. );
  798. path = Services;
  799. sourceTree = "<group>";
  800. };
  801. 3811DE9225C9D88200A708ED /* Appearance */ = {
  802. isa = PBXGroup;
  803. children = (
  804. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */,
  805. );
  806. path = Appearance;
  807. sourceTree = "<group>";
  808. };
  809. 3811DE9425C9D88200A708ED /* Network */ = {
  810. isa = PBXGroup;
  811. children = (
  812. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */,
  813. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */,
  814. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */,
  815. 38FE826925CC82DB001FF17A /* NetworkService.swift */,
  816. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */,
  817. );
  818. path = Network;
  819. sourceTree = "<group>";
  820. };
  821. 3811DE9825C9D88300A708ED /* Storage */ = {
  822. isa = PBXGroup;
  823. children = (
  824. 383948D525CD4D8900E91849 /* FileStorage.swift */,
  825. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */,
  826. 3811DE9925C9D88300A708ED /* Cache */,
  827. 3811DE9D25C9D88300A708ED /* Keychain */,
  828. );
  829. path = Storage;
  830. sourceTree = "<group>";
  831. };
  832. 3811DE9925C9D88300A708ED /* Cache */ = {
  833. isa = PBXGroup;
  834. children = (
  835. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */,
  836. 3811DE9B25C9D88300A708ED /* Cache.swift */,
  837. );
  838. path = Cache;
  839. sourceTree = "<group>";
  840. };
  841. 3811DE9D25C9D88300A708ED /* Keychain */ = {
  842. isa = PBXGroup;
  843. children = (
  844. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */,
  845. 3811DE9F25C9D88300A708ED /* Keychain.swift */,
  846. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */,
  847. );
  848. path = Keychain;
  849. sourceTree = "<group>";
  850. };
  851. 3811DEA525C9D88300A708ED /* UnlockManager */ = {
  852. isa = PBXGroup;
  853. children = (
  854. 3811DEA625C9D88300A708ED /* UnlockManager.swift */,
  855. );
  856. path = UnlockManager;
  857. sourceTree = "<group>";
  858. };
  859. 3811DED425C9E1E300A708ED /* Resources */ = {
  860. isa = PBXGroup;
  861. children = (
  862. 388E597125AD9CF10019842D /* json */,
  863. 388E596E25AD96040019842D /* javascript */,
  864. 3811DEC725C9DA7300A708ED /* FreeAPS.entitlements */,
  865. 388E596425AD948E0019842D /* Info.plist */,
  866. 1927C8E82744606D00347C69 /* InfoPlist.strings */,
  867. 388E595F25AD948E0019842D /* Assets.xcassets */,
  868. 38F3783A2613555C009DB701 /* Config.xcconfig */,
  869. );
  870. path = Resources;
  871. sourceTree = "<group>";
  872. };
  873. 3811DEDE25C9E2DD00A708ED /* Application */ = {
  874. isa = PBXGroup;
  875. children = (
  876. 388E595B25AD948C0019842D /* FreeAPSApp.swift */,
  877. );
  878. path = Application;
  879. sourceTree = "<group>";
  880. };
  881. 3811DEE325CA063400A708ED /* PropertyWrappers */ = {
  882. isa = PBXGroup;
  883. children = (
  884. 3811DEE425CA063400A708ED /* Injected.swift */,
  885. 3811DEE625CA063400A708ED /* SyncAccess.swift */,
  886. 3811DEE725CA063400A708ED /* PersistedProperty.swift */,
  887. );
  888. path = PropertyWrappers;
  889. sourceTree = "<group>";
  890. };
  891. 3811DF0A25CAAAA500A708ED /* APS */ = {
  892. isa = PBXGroup;
  893. children = (
  894. 3811DF0F25CAAAE200A708ED /* APSManager.swift */,
  895. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */,
  896. 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */,
  897. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */,
  898. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */,
  899. 3856933F270B57A00002C50D /* CGM */,
  900. 38A504F625DDA0E200C5B9E8 /* Extensions */,
  901. 388E5A5825B6F0070019842D /* OpenAPS */,
  902. 38A0362725ECF05300FCBB52 /* Storage */,
  903. );
  904. path = APS;
  905. sourceTree = "<group>";
  906. };
  907. 3833B51E260264AC003021B3 /* Chart */ = {
  908. isa = PBXGroup;
  909. children = (
  910. 38AAF8702600C1B0004AF583 /* MainChartView.swift */,
  911. );
  912. path = Chart;
  913. sourceTree = "<group>";
  914. };
  915. 3833B51F260264B6003021B3 /* Header */ = {
  916. isa = PBXGroup;
  917. children = (
  918. 383420D525FFE38C002D46C1 /* LoopView.swift */,
  919. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */,
  920. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */,
  921. );
  922. path = Header;
  923. sourceTree = "<group>";
  924. };
  925. 3856933F270B57A00002C50D /* CGM */ = {
  926. isa = PBXGroup;
  927. children = (
  928. 38569346270B5DFB0002C50D /* AppGroupSource.swift */,
  929. 38569344270B5DFA0002C50D /* CGMType.swift */,
  930. 386A124E271707F000DDC61C /* DexcomSource.swift */,
  931. 38569345270B5DFA0002C50D /* GlucoseSource.swift */,
  932. 38FEF407273B011A00574A46 /* LibreTransmitterSource.swift */,
  933. 3862CC03273D150600BF832C /* Calibrations */,
  934. );
  935. path = CGM;
  936. sourceTree = "<group>";
  937. };
  938. 3862CC03273D150600BF832C /* Calibrations */ = {
  939. isa = PBXGroup;
  940. children = (
  941. 3862CC04273D152B00BF832C /* CalibrationService.swift */,
  942. );
  943. path = Calibrations;
  944. sourceTree = "<group>";
  945. };
  946. 3862CC2C2743F9DC00BF832C /* Calendar */ = {
  947. isa = PBXGroup;
  948. children = (
  949. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */,
  950. );
  951. path = Calendar;
  952. sourceTree = "<group>";
  953. };
  954. 3883582E25EEAFC000E024B2 /* Views */ = {
  955. isa = PBXGroup;
  956. children = (
  957. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */,
  958. 3883581B25EE79BB00E024B2 /* DecimalTextField.swift */,
  959. 383420D825FFEB3F002D46C1 /* Popup.swift */,
  960. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */,
  961. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */,
  962. );
  963. path = Views;
  964. sourceTree = "<group>";
  965. };
  966. 388E594F25AD948C0019842D = {
  967. isa = PBXGroup;
  968. children = (
  969. 388E595A25AD948C0019842D /* FreeAPS */,
  970. 38FCF3EE25E9028E0078B0D1 /* FreeAPSTests */,
  971. 388E595925AD948C0019842D /* Products */,
  972. 38B17B8525DD93BA005CAE3D /* Frameworks */,
  973. );
  974. sourceTree = "<group>";
  975. };
  976. 388E595925AD948C0019842D /* Products */ = {
  977. isa = PBXGroup;
  978. children = (
  979. 388E595825AD948C0019842D /* FreeAPS.app */,
  980. 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */,
  981. );
  982. name = Products;
  983. sourceTree = "<group>";
  984. };
  985. 388E595A25AD948C0019842D /* FreeAPS */ = {
  986. isa = PBXGroup;
  987. children = (
  988. 3811DED425C9E1E300A708ED /* Resources */,
  989. 3811DE1325C9D39E00A708ED /* Sources */,
  990. );
  991. path = FreeAPS;
  992. sourceTree = "<group>";
  993. };
  994. 388E5A5825B6F0070019842D /* OpenAPS */ = {
  995. isa = PBXGroup;
  996. children = (
  997. 388E596B25AD95110019842D /* OpenAPS.swift */,
  998. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */,
  999. 384E803725C388640086DB71 /* Script.swift */,
  1000. 3821ED4B25DD18BA00BC42AD /* Constants.swift */,
  1001. );
  1002. path = OpenAPS;
  1003. sourceTree = "<group>";
  1004. };
  1005. 388E5A5925B6F0250019842D /* Models */ = {
  1006. isa = PBXGroup;
  1007. children = (
  1008. 385CEAC025F2EA52002D6D5B /* Announcement.swift */,
  1009. 388E5A5F25B6F2310019842D /* Autosens.swift */,
  1010. 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */,
  1011. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */,
  1012. 38D0B3B525EBE24900CB6E88 /* Battery.swift */,
  1013. 382C134A25F14E3700715CE1 /* BGTargets.swift */,
  1014. 3870FF4225EC13F40088248F /* BloodGlucose.swift */,
  1015. 38A9260425F012D8009E3739 /* CarbRatios.swift */,
  1016. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */,
  1017. 3811DF0125CA9FEA00A708ED /* Credentials.swift */,
  1018. 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */,
  1019. 383948D925CD64D500E91849 /* Glucose.swift */,
  1020. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */,
  1021. 38887CCD25F5725200944304 /* IOBEntry.swift */,
  1022. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */,
  1023. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */,
  1024. 3895E4C525B9E00D00214B37 /* Preferences.swift */,
  1025. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */,
  1026. 3883583325EEB38000E024B2 /* PumpSettings.swift */,
  1027. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */,
  1028. 38BF021C25E7E3AF00579895 /* Reservoir.swift */,
  1029. 3871F38625ED661C0013ECB5 /* Suggestion.swift */,
  1030. 38A0364125ED069400FCBB52 /* TempBasal.swift */,
  1031. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */,
  1032. 3811DE8E25C9D80400A708ED /* User.swift */,
  1033. );
  1034. path = Models;
  1035. sourceTree = "<group>";
  1036. };
  1037. 388E5A5A25B6F05F0019842D /* Helpers */ = {
  1038. isa = PBXGroup;
  1039. children = (
  1040. 38FEF412273B317A00574A46 /* HKUnit.swift */,
  1041. 38F37827261260DC009DB701 /* Color+Extensions.swift */,
  1042. 389ECE042601144100D86C4F /* ConcurrentMap.swift */,
  1043. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */,
  1044. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */,
  1045. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */,
  1046. 389487392614928B004DF424 /* DispatchTimer.swift */,
  1047. 3811DE5425C9D4D500A708ED /* Formatters.swift */,
  1048. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */,
  1049. 389A571F26079BAA00BC102F /* Interpolation.swift */,
  1050. 388E5A5B25B6F0770019842D /* JSON.swift */,
  1051. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */,
  1052. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */,
  1053. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */,
  1054. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */,
  1055. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */,
  1056. 3811DE5525C9D4D500A708ED /* Publisher.swift */,
  1057. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */,
  1058. 3811DEE325CA063400A708ED /* PropertyWrappers */,
  1059. );
  1060. path = Helpers;
  1061. sourceTree = "<group>";
  1062. };
  1063. 38A0362725ECF05300FCBB52 /* Storage */ = {
  1064. isa = PBXGroup;
  1065. children = (
  1066. 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */,
  1067. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */,
  1068. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */,
  1069. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */,
  1070. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */,
  1071. );
  1072. path = Storage;
  1073. sourceTree = "<group>";
  1074. };
  1075. 38A504F625DDA0E200C5B9E8 /* Extensions */ = {
  1076. isa = PBXGroup;
  1077. children = (
  1078. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */,
  1079. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */,
  1080. );
  1081. path = Extensions;
  1082. sourceTree = "<group>";
  1083. };
  1084. 38AEE75025F021F10013F05B /* SettingsManager */ = {
  1085. isa = PBXGroup;
  1086. children = (
  1087. 38AEE75125F022080013F05B /* SettingsManager.swift */,
  1088. );
  1089. path = SettingsManager;
  1090. sourceTree = "<group>";
  1091. };
  1092. 38B17B8525DD93BA005CAE3D /* Frameworks */ = {
  1093. isa = PBXGroup;
  1094. children = (
  1095. 386A124B271704DA00DDC61C /* CGMBLEKit.framework */,
  1096. 38887E2025F6209B00944304 /* SwiftCharts.framework */,
  1097. 38887DD025F61F7500944304 /* LoopKit.framework */,
  1098. 38887DD125F61F7500944304 /* LoopKitUI.framework */,
  1099. 38887DD225F61F7500944304 /* LoopTestingKit.framework */,
  1100. 38887DD325F61F7500944304 /* MockKit.framework */,
  1101. 38887DD425F61F7500944304 /* MockKitUI.framework */,
  1102. 38887DD525F61F7500944304 /* MKRingProgressView.framework */,
  1103. 38887DD625F61F7500944304 /* Crypto.framework */,
  1104. 38887DD725F61F7500944304 /* MinimedKit.framework */,
  1105. 38887DD825F61F7500944304 /* MinimedKitUI.framework */,
  1106. 38887DD925F61F7500944304 /* NightscoutUploadKit.framework */,
  1107. 38887DDA25F61F7500944304 /* OmniKit.framework */,
  1108. 38887DDB25F61F7500944304 /* OmniKitUI.framework */,
  1109. 38887DDC25F61F7500944304 /* RileyLinkBLEKit.framework */,
  1110. 38887DDD25F61F7500944304 /* RileyLinkKit.framework */,
  1111. 38887DDE25F61F7500944304 /* RileyLinkKitUI.framework */,
  1112. 38887DDF25F61F7500944304 /* SwiftCharts.framework */,
  1113. );
  1114. name = Frameworks;
  1115. sourceTree = "<group>";
  1116. };
  1117. 38B4F3C425E5016800E76A18 /* Notifications */ = {
  1118. isa = PBXGroup;
  1119. children = (
  1120. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */,
  1121. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */,
  1122. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */,
  1123. );
  1124. path = Notifications;
  1125. sourceTree = "<group>";
  1126. };
  1127. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */ = {
  1128. isa = PBXGroup;
  1129. children = (
  1130. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */,
  1131. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */,
  1132. );
  1133. path = SwiftNotificationCenter;
  1134. sourceTree = "<group>";
  1135. };
  1136. 38E98A1A25F52C9300C0CED0 /* Logger */ = {
  1137. isa = PBXGroup;
  1138. children = (
  1139. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */,
  1140. 38E98A1C25F52C9300C0CED0 /* Logger.swift */,
  1141. 38E98A1D25F52C9300C0CED0 /* IssueReporter */,
  1142. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */,
  1143. );
  1144. path = Logger;
  1145. sourceTree = "<group>";
  1146. };
  1147. 38E98A1D25F52C9300C0CED0 /* IssueReporter */ = {
  1148. isa = PBXGroup;
  1149. children = (
  1150. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */,
  1151. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */,
  1152. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */,
  1153. );
  1154. path = IssueReporter;
  1155. sourceTree = "<group>";
  1156. };
  1157. 38E98A3225F5300800C0CED0 /* Config */ = {
  1158. isa = PBXGroup;
  1159. children = (
  1160. 38E98A2F25F52FF700C0CED0 /* Config.swift */,
  1161. );
  1162. path = Config;
  1163. sourceTree = "<group>";
  1164. };
  1165. 38FCF3EE25E9028E0078B0D1 /* FreeAPSTests */ = {
  1166. isa = PBXGroup;
  1167. children = (
  1168. 38FCF3F125E9028E0078B0D1 /* Info.plist */,
  1169. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */,
  1170. );
  1171. path = FreeAPSTests;
  1172. sourceTree = "<group>";
  1173. };
  1174. 3E1C41D9301B7058AA7BF5EA /* PreferencesEditor */ = {
  1175. isa = PBXGroup;
  1176. children = (
  1177. 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */,
  1178. 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */,
  1179. 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */,
  1180. 833DA2F9E47E64E305F92F9D /* View */,
  1181. );
  1182. path = PreferencesEditor;
  1183. sourceTree = "<group>";
  1184. };
  1185. 3F8670D63672AF88E2E9B09E /* View */ = {
  1186. isa = PBXGroup;
  1187. children = (
  1188. E9AAB83FB6C3B41EFD1846A0 /* AddTempTargetRootView.swift */,
  1189. );
  1190. path = View;
  1191. sourceTree = "<group>";
  1192. };
  1193. 43952E72FE7AF85715FE020E /* View */ = {
  1194. isa = PBXGroup;
  1195. children = (
  1196. 500371C09F54F89A97D65FDB /* CalibrationsRootView.swift */,
  1197. 3862CC1E273FDC9200BF832C /* CalibrationsChart.swift */,
  1198. );
  1199. path = View;
  1200. sourceTree = "<group>";
  1201. };
  1202. 4E8C7B59F8065047ECE20965 /* View */ = {
  1203. isa = PBXGroup;
  1204. children = (
  1205. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */,
  1206. );
  1207. path = View;
  1208. sourceTree = "<group>";
  1209. };
  1210. 4F4AE4D901E8BA872B207D7F /* View */ = {
  1211. isa = PBXGroup;
  1212. children = (
  1213. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */,
  1214. );
  1215. path = View;
  1216. sourceTree = "<group>";
  1217. };
  1218. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */ = {
  1219. isa = PBXGroup;
  1220. children = (
  1221. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */,
  1222. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */,
  1223. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */,
  1224. 84BDC840A57C65A1E6F9F780 /* View */,
  1225. );
  1226. path = ManualTempBasal;
  1227. sourceTree = "<group>";
  1228. };
  1229. 50E85421406582CF9D321A20 /* View */ = {
  1230. isa = PBXGroup;
  1231. children = (
  1232. 86FC1CFD647CF34508AF9A3B /* AddCarbsRootView.swift */,
  1233. );
  1234. path = View;
  1235. sourceTree = "<group>";
  1236. };
  1237. 510CCF29FD3216C5BBC49A15 /* View */ = {
  1238. isa = PBXGroup;
  1239. children = (
  1240. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */,
  1241. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */,
  1242. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */,
  1243. );
  1244. path = View;
  1245. sourceTree = "<group>";
  1246. };
  1247. 54946647FDCFE43028F60511 /* View */ = {
  1248. isa = PBXGroup;
  1249. children = (
  1250. D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */,
  1251. );
  1252. path = View;
  1253. sourceTree = "<group>";
  1254. };
  1255. 55DE731ACE8289FAF3819077 /* View */ = {
  1256. isa = PBXGroup;
  1257. children = (
  1258. 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */,
  1259. );
  1260. path = View;
  1261. sourceTree = "<group>";
  1262. };
  1263. 64271A287C92581EADCB47FA /* View */ = {
  1264. isa = PBXGroup;
  1265. children = (
  1266. B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */,
  1267. );
  1268. path = View;
  1269. sourceTree = "<group>";
  1270. };
  1271. 6517011F19F244F64E1FF14B /* TargetsEditor */ = {
  1272. isa = PBXGroup;
  1273. children = (
  1274. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */,
  1275. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */,
  1276. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */,
  1277. 34CA4DF169B53D67EF18ED8A /* View */,
  1278. );
  1279. path = TargetsEditor;
  1280. sourceTree = "<group>";
  1281. };
  1282. 672F63EEAE27400625E14BAD /* AutotuneConfig */ = {
  1283. isa = PBXGroup;
  1284. children = (
  1285. 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */,
  1286. B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */,
  1287. D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */,
  1288. 55DE731ACE8289FAF3819077 /* View */,
  1289. );
  1290. path = AutotuneConfig;
  1291. sourceTree = "<group>";
  1292. };
  1293. 6DC5D590658EF8B8DF94F9F5 /* AddCarbs */ = {
  1294. isa = PBXGroup;
  1295. children = (
  1296. 5F48C3AC770D4CCD0EA2B0C2 /* AddCarbsDataFlow.swift */,
  1297. 618E62C9757B2F95431B5DC0 /* AddCarbsProvider.swift */,
  1298. 39E7C997E56DAF8D28D09014 /* AddCarbsStateModel.swift */,
  1299. 50E85421406582CF9D321A20 /* View */,
  1300. );
  1301. path = AddCarbs;
  1302. sourceTree = "<group>";
  1303. };
  1304. 833DA2F9E47E64E305F92F9D /* View */ = {
  1305. isa = PBXGroup;
  1306. children = (
  1307. 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */,
  1308. );
  1309. path = View;
  1310. sourceTree = "<group>";
  1311. };
  1312. 84BDC840A57C65A1E6F9F780 /* View */ = {
  1313. isa = PBXGroup;
  1314. children = (
  1315. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */,
  1316. );
  1317. path = View;
  1318. sourceTree = "<group>";
  1319. };
  1320. 99C01B871ACAB3F32CE755C7 /* PumpConfig */ = {
  1321. isa = PBXGroup;
  1322. children = (
  1323. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */,
  1324. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */,
  1325. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */,
  1326. 510CCF29FD3216C5BBC49A15 /* View */,
  1327. );
  1328. path = PumpConfig;
  1329. sourceTree = "<group>";
  1330. };
  1331. 9E56E3626FAD933385101B76 /* DataTable */ = {
  1332. isa = PBXGroup;
  1333. children = (
  1334. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */,
  1335. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */,
  1336. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */,
  1337. 0EE66DD474AFFD4FD787D5B9 /* View */,
  1338. );
  1339. path = DataTable;
  1340. sourceTree = "<group>";
  1341. };
  1342. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */ = {
  1343. isa = PBXGroup;
  1344. children = (
  1345. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */,
  1346. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */,
  1347. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */,
  1348. 18B49BC9587A59E3A347C1CD /* View */,
  1349. );
  1350. path = BasalProfileEditor;
  1351. sourceTree = "<group>";
  1352. };
  1353. A56097CB1DCBCE98F2F42177 /* View */ = {
  1354. isa = PBXGroup;
  1355. children = (
  1356. BC210C0F3CB6D3C86E5DED4E /* LibreConfigRootView.swift */,
  1357. );
  1358. path = View;
  1359. sourceTree = "<group>";
  1360. };
  1361. A9A4C88374496B3C89058A89 /* AddTempTarget */ = {
  1362. isa = PBXGroup;
  1363. children = (
  1364. 5B8A42073A2D03A278914448 /* AddTempTargetDataFlow.swift */,
  1365. AEE53A13D26F101B332EFFC8 /* AddTempTargetProvider.swift */,
  1366. 8C3B5FD881CA45DFDEE0EDA9 /* AddTempTargetStateModel.swift */,
  1367. 3F8670D63672AF88E2E9B09E /* View */,
  1368. );
  1369. path = AddTempTarget;
  1370. sourceTree = "<group>";
  1371. };
  1372. B9488883C59C31550E0B4CEC /* View */ = {
  1373. isa = PBXGroup;
  1374. children = (
  1375. 10A0C32B0DAB52726EF9B6D9 /* BolusRootView.swift */,
  1376. );
  1377. path = View;
  1378. sourceTree = "<group>";
  1379. };
  1380. C11D545CED3ECEB525EDEE23 /* LibreConfig */ = {
  1381. isa = PBXGroup;
  1382. children = (
  1383. 66A5B83E7967C38F7CBD883C /* LibreConfigDataFlow.swift */,
  1384. E2EBA7C03C26FCC67E16D798 /* LibreConfigProvider.swift */,
  1385. E68CDC1E5C438D1BEAD4CF24 /* LibreConfigStateModel.swift */,
  1386. A56097CB1DCBCE98F2F42177 /* View */,
  1387. );
  1388. path = LibreConfig;
  1389. sourceTree = "<group>";
  1390. };
  1391. C2C98283C436DB934D7E7994 /* Bolus */ = {
  1392. isa = PBXGroup;
  1393. children = (
  1394. C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */,
  1395. C19984D62EFC0035A9E9644D /* BolusProvider.swift */,
  1396. 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */,
  1397. B9488883C59C31550E0B4CEC /* View */,
  1398. );
  1399. path = Bolus;
  1400. sourceTree = "<group>";
  1401. };
  1402. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */ = {
  1403. isa = PBXGroup;
  1404. children = (
  1405. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */,
  1406. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */,
  1407. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */,
  1408. 4F4AE4D901E8BA872B207D7F /* View */,
  1409. );
  1410. path = NightscoutConfig;
  1411. sourceTree = "<group>";
  1412. };
  1413. D8F047E14D567F2B5DBEFD96 /* ISFEditor */ = {
  1414. isa = PBXGroup;
  1415. children = (
  1416. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */,
  1417. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */,
  1418. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */,
  1419. EEC747824D6593B5CD87E195 /* View */,
  1420. );
  1421. path = ISFEditor;
  1422. sourceTree = "<group>";
  1423. };
  1424. E00EEBFC27368630002FF094 /* Assemblies */ = {
  1425. isa = PBXGroup;
  1426. children = (
  1427. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */,
  1428. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */,
  1429. E00EEBFF27368630002FF094 /* StorageAssembly.swift */,
  1430. E00EEC0027368630002FF094 /* UIAssembly.swift */,
  1431. E00EEC0127368630002FF094 /* APSAssembly.swift */,
  1432. E00EEC0227368630002FF094 /* NetworkAssembly.swift */,
  1433. );
  1434. path = Assemblies;
  1435. sourceTree = "<group>";
  1436. };
  1437. E42231DBF0DBE2B4B92D1B15 /* CREditor */ = {
  1438. isa = PBXGroup;
  1439. children = (
  1440. 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */,
  1441. 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */,
  1442. 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */,
  1443. 54946647FDCFE43028F60511 /* View */,
  1444. );
  1445. path = CREditor;
  1446. sourceTree = "<group>";
  1447. };
  1448. E493126EA71765130F64CCE5 /* PumpSettingsEditor */ = {
  1449. isa = PBXGroup;
  1450. children = (
  1451. 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */,
  1452. D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */,
  1453. 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */,
  1454. 64271A287C92581EADCB47FA /* View */,
  1455. );
  1456. path = PumpSettingsEditor;
  1457. sourceTree = "<group>";
  1458. };
  1459. E8176B120B55CE89F1591542 /* Calibrations */ = {
  1460. isa = PBXGroup;
  1461. children = (
  1462. DA241FB1663EC96FDBE64C8A /* CalibrationsDataFlow.swift */,
  1463. 212E8BFE6D66EE65AA26A114 /* CalibrationsProvider.swift */,
  1464. 47DFCE895C930F784EF11843 /* CalibrationsStateModel.swift */,
  1465. 43952E72FE7AF85715FE020E /* View */,
  1466. );
  1467. path = Calibrations;
  1468. sourceTree = "<group>";
  1469. };
  1470. EEC747824D6593B5CD87E195 /* View */ = {
  1471. isa = PBXGroup;
  1472. children = (
  1473. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */,
  1474. );
  1475. path = View;
  1476. sourceTree = "<group>";
  1477. };
  1478. F75CB57ED6971B46F8756083 /* CGM */ = {
  1479. isa = PBXGroup;
  1480. children = (
  1481. B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */,
  1482. 38FEF3FD2738083E00574A46 /* CGMProvider.swift */,
  1483. 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */,
  1484. 0D76BBC81CEDC1A0050F45EF /* View */,
  1485. );
  1486. path = CGM;
  1487. sourceTree = "<group>";
  1488. };
  1489. /* End PBXGroup section */
  1490. /* Begin PBXNativeTarget section */
  1491. 388E595725AD948C0019842D /* FreeAPS */ = {
  1492. isa = PBXNativeTarget;
  1493. buildConfigurationList = 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "FreeAPS" */;
  1494. buildPhases = (
  1495. 3811DEF525CA169200A708ED /* Swiftformat */,
  1496. 388E595425AD948C0019842D /* Sources */,
  1497. 388E595525AD948C0019842D /* Frameworks */,
  1498. 388E595625AD948C0019842D /* Resources */,
  1499. 3821ECD025DC703C00BC42AD /* Embed Frameworks */,
  1500. );
  1501. buildRules = (
  1502. );
  1503. dependencies = (
  1504. );
  1505. name = FreeAPS;
  1506. packageProductDependencies = (
  1507. 3811DE0F25C9D37700A708ED /* Swinject */,
  1508. 383948D225CD4D6D00E91849 /* Disk */,
  1509. 38B17B6525DD90E0005CAE3D /* SwiftDate */,
  1510. 3833B46C26012030003021B3 /* Algorithms */,
  1511. 38192E00261B826A0094D973 /* Alamofire */,
  1512. 38FEF40E273B2BDA00574A46 /* LibreTransmitter */,
  1513. );
  1514. productName = FreeAPS;
  1515. productReference = 388E595825AD948C0019842D /* FreeAPS.app */;
  1516. productType = "com.apple.product-type.application";
  1517. };
  1518. 38FCF3EC25E9028E0078B0D1 /* FreeAPSTests */ = {
  1519. isa = PBXNativeTarget;
  1520. buildConfigurationList = 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "FreeAPSTests" */;
  1521. buildPhases = (
  1522. 38FCF3E925E9028E0078B0D1 /* Sources */,
  1523. 38FCF3EA25E9028E0078B0D1 /* Frameworks */,
  1524. 38FCF3EB25E9028E0078B0D1 /* Resources */,
  1525. );
  1526. buildRules = (
  1527. );
  1528. dependencies = (
  1529. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */,
  1530. );
  1531. name = FreeAPSTests;
  1532. productName = FreeAPSTests;
  1533. productReference = 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */;
  1534. productType = "com.apple.product-type.bundle.unit-test";
  1535. };
  1536. /* End PBXNativeTarget section */
  1537. /* Begin PBXProject section */
  1538. 388E595025AD948C0019842D /* Project object */ = {
  1539. isa = PBXProject;
  1540. attributes = {
  1541. LastSwiftUpdateCheck = 1240;
  1542. LastUpgradeCheck = 1240;
  1543. TargetAttributes = {
  1544. 388E595725AD948C0019842D = {
  1545. CreatedOnToolsVersion = 12.3;
  1546. };
  1547. 38FCF3EC25E9028E0078B0D1 = {
  1548. CreatedOnToolsVersion = 12.4;
  1549. TestTargetID = 388E595725AD948C0019842D;
  1550. };
  1551. };
  1552. };
  1553. buildConfigurationList = 388E595325AD948C0019842D /* Build configuration list for PBXProject "FreeAPS" */;
  1554. compatibilityVersion = "Xcode 9.3";
  1555. developmentRegion = en;
  1556. hasScannedForEncodings = 0;
  1557. knownRegions = (
  1558. en,
  1559. Base,
  1560. ar,
  1561. ca,
  1562. "zh-Hans",
  1563. da,
  1564. nl,
  1565. fr,
  1566. de,
  1567. he,
  1568. it,
  1569. nb,
  1570. pl,
  1571. ru,
  1572. es,
  1573. sv,
  1574. tr,
  1575. uk,
  1576. fi,
  1577. "pt-PT",
  1578. "pt-BR",
  1579. );
  1580. mainGroup = 388E594F25AD948C0019842D;
  1581. packageReferences = (
  1582. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */,
  1583. 383948D125CD4D6D00E91849 /* XCRemoteSwiftPackageReference "Disk" */,
  1584. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */,
  1585. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */,
  1586. 38192DFF261B826A0094D973 /* XCRemoteSwiftPackageReference "Alamofire" */,
  1587. 38FEF40D273B2BDA00574A46 /* XCRemoteSwiftPackageReference "LibreTransmitterX" */,
  1588. );
  1589. productRefGroup = 388E595925AD948C0019842D /* Products */;
  1590. projectDirPath = "";
  1591. projectRoot = "";
  1592. targets = (
  1593. 388E595725AD948C0019842D /* FreeAPS */,
  1594. 38FCF3EC25E9028E0078B0D1 /* FreeAPSTests */,
  1595. );
  1596. };
  1597. /* End PBXProject section */
  1598. /* Begin PBXResourcesBuildPhase section */
  1599. 388E595625AD948C0019842D /* Resources */ = {
  1600. isa = PBXResourcesBuildPhase;
  1601. buildActionMask = 2147483647;
  1602. files = (
  1603. 388E596025AD948E0019842D /* Assets.xcassets in Resources */,
  1604. 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */,
  1605. 388E597225AD9CF10019842D /* json in Resources */,
  1606. 388E596F25AD96040019842D /* javascript in Resources */,
  1607. 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */,
  1608. );
  1609. runOnlyForDeploymentPostprocessing = 0;
  1610. };
  1611. 38FCF3EB25E9028E0078B0D1 /* Resources */ = {
  1612. isa = PBXResourcesBuildPhase;
  1613. buildActionMask = 2147483647;
  1614. files = (
  1615. );
  1616. runOnlyForDeploymentPostprocessing = 0;
  1617. };
  1618. /* End PBXResourcesBuildPhase section */
  1619. /* Begin PBXShellScriptBuildPhase section */
  1620. 3811DEF525CA169200A708ED /* Swiftformat */ = {
  1621. isa = PBXShellScriptBuildPhase;
  1622. buildActionMask = 2147483647;
  1623. files = (
  1624. );
  1625. inputFileListPaths = (
  1626. );
  1627. inputPaths = (
  1628. );
  1629. name = Swiftformat;
  1630. outputFileListPaths = (
  1631. );
  1632. outputPaths = (
  1633. );
  1634. runOnlyForDeploymentPostprocessing = 0;
  1635. shellPath = /bin/sh;
  1636. shellScript = "source \"${SRCROOT}\"/scripts/swiftformat.sh\n\n";
  1637. };
  1638. /* End PBXShellScriptBuildPhase section */
  1639. /* Begin PBXSourcesBuildPhase section */
  1640. 388E595425AD948C0019842D /* Sources */ = {
  1641. isa = PBXSourcesBuildPhase;
  1642. buildActionMask = 2147483647;
  1643. files = (
  1644. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */,
  1645. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */,
  1646. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */,
  1647. 3811DE8F25C9D80400A708ED /* User.swift in Sources */,
  1648. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */,
  1649. 385CEAC425F2F154002D6D5B /* AnnouncementsStorage.swift in Sources */,
  1650. 38AEE73D25F0200C0013F05B /* FreeAPSSettings.swift in Sources */,
  1651. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */,
  1652. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */,
  1653. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */,
  1654. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */,
  1655. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */,
  1656. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */,
  1657. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */,
  1658. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */,
  1659. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */,
  1660. 38FEF408273B011A00574A46 /* LibreTransmitterSource.swift in Sources */,
  1661. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */,
  1662. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */,
  1663. 386A124F271707F000DDC61C /* DexcomSource.swift in Sources */,
  1664. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */,
  1665. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */,
  1666. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */,
  1667. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */,
  1668. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */,
  1669. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */,
  1670. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */,
  1671. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */,
  1672. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */,
  1673. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */,
  1674. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */,
  1675. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */,
  1676. 384E803825C388640086DB71 /* Script.swift in Sources */,
  1677. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */,
  1678. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */,
  1679. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */,
  1680. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */,
  1681. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */,
  1682. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */,
  1683. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */,
  1684. 388E595C25AD948C0019842D /* FreeAPSApp.swift in Sources */,
  1685. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */,
  1686. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */,
  1687. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */,
  1688. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */,
  1689. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */,
  1690. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */,
  1691. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */,
  1692. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */,
  1693. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */,
  1694. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */,
  1695. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */,
  1696. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */,
  1697. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */,
  1698. 3811DE1825C9D40400A708ED /* Router.swift in Sources */,
  1699. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */,
  1700. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */,
  1701. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */,
  1702. 3811DEE825CA063400A708ED /* Injected.swift in Sources */,
  1703. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */,
  1704. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */,
  1705. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */,
  1706. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */,
  1707. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */,
  1708. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */,
  1709. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */,
  1710. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */,
  1711. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */,
  1712. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */,
  1713. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */,
  1714. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */,
  1715. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */,
  1716. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */,
  1717. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */,
  1718. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */,
  1719. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */,
  1720. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */,
  1721. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */,
  1722. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */,
  1723. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */,
  1724. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */,
  1725. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */,
  1726. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */,
  1727. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */,
  1728. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */,
  1729. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */,
  1730. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */,
  1731. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */,
  1732. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */,
  1733. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */,
  1734. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */,
  1735. 3862CC05273D152B00BF832C /* CalibrationService.swift in Sources */,
  1736. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */,
  1737. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */,
  1738. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */,
  1739. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */,
  1740. 3883581C25EE79BB00E024B2 /* DecimalTextField.swift in Sources */,
  1741. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */,
  1742. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */,
  1743. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */,
  1744. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */,
  1745. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */,
  1746. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */,
  1747. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */,
  1748. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */,
  1749. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */,
  1750. 3871F38725ED661C0013ECB5 /* Suggestion.swift in Sources */,
  1751. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */,
  1752. 38AAF8712600C1B0004AF583 /* MainChartView.swift in Sources */,
  1753. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */,
  1754. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */,
  1755. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */,
  1756. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */,
  1757. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */,
  1758. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */,
  1759. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */,
  1760. 38A43598262E0E4900E80935 /* FetchAnnouncementsManager.swift in Sources */,
  1761. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */,
  1762. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */,
  1763. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */,
  1764. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */,
  1765. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */,
  1766. 448B6FCB252BD4796E2960C0 /* PumpSettingsEditorDataFlow.swift in Sources */,
  1767. 2BE9A6FA20875F6F4F9CD461 /* PumpSettingsEditorProvider.swift in Sources */,
  1768. 6B9625766B697D1C98E455A2 /* PumpSettingsEditorStateModel.swift in Sources */,
  1769. A0B8EC8CC5CD1DD237D1BCD2 /* PumpSettingsEditorRootView.swift in Sources */,
  1770. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */,
  1771. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */,
  1772. 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */,
  1773. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */,
  1774. 385CEAC125F2EA52002D6D5B /* Announcement.swift in Sources */,
  1775. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */,
  1776. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */,
  1777. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */,
  1778. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */,
  1779. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */,
  1780. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */,
  1781. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */,
  1782. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */,
  1783. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */,
  1784. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */,
  1785. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */,
  1786. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */,
  1787. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */,
  1788. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */,
  1789. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */,
  1790. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */,
  1791. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */,
  1792. A33352ED40476125EBAC6EE0 /* CREditorDataFlow.swift in Sources */,
  1793. 17A9D0899046B45E87834820 /* CREditorProvider.swift in Sources */,
  1794. 69B9A368029F7EB39F525422 /* CREditorStateModel.swift in Sources */,
  1795. 98641AF4F92123DA668AB931 /* CREditorRootView.swift in Sources */,
  1796. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */,
  1797. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */,
  1798. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */,
  1799. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */,
  1800. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */,
  1801. A228DF96647338139F152B15 /* PreferencesEditorDataFlow.swift in Sources */,
  1802. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */,
  1803. E4984C5262A90469788754BB /* PreferencesEditorProvider.swift in Sources */,
  1804. DD399FB31EACB9343C944C4C /* PreferencesEditorStateModel.swift in Sources */,
  1805. 44190F0BBA464D74B857D1FB /* PreferencesEditorRootView.swift in Sources */,
  1806. E97285ED9B814CD5253C6658 /* AddCarbsDataFlow.swift in Sources */,
  1807. A6F097A14CAAE0CE0D11BE1B /* AddCarbsProvider.swift in Sources */,
  1808. 33E198D3039045D98C3DC5D4 /* AddCarbsStateModel.swift in Sources */,
  1809. 28089E07169488CF6DCC2A31 /* AddCarbsRootView.swift in Sources */,
  1810. D2165E9D78EFF692C1DED1C6 /* AddTempTargetDataFlow.swift in Sources */,
  1811. 5BFA1C2208114643B77F8CEB /* AddTempTargetProvider.swift in Sources */,
  1812. 919DBD08F13BAFB180DF6F47 /* AddTempTargetStateModel.swift in Sources */,
  1813. 8BC2F5A29AD1ED08AC0EE013 /* AddTempTargetRootView.swift in Sources */,
  1814. 38A00B1F25FC00F7006BC0B0 /* Autotune.swift in Sources */,
  1815. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */,
  1816. 041D1E995A6AE92E9289DC49 /* BolusDataFlow.swift in Sources */,
  1817. 23888883D4EA091C88480FF2 /* BolusProvider.swift in Sources */,
  1818. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */,
  1819. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */,
  1820. 69A31254F2451C20361D172F /* BolusStateModel.swift in Sources */,
  1821. 0CEA2EA070AB041AF3E3745B /* BolusRootView.swift in Sources */,
  1822. 3862CC1F273FDC9200BF832C /* CalibrationsChart.swift in Sources */,
  1823. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */,
  1824. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */,
  1825. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */,
  1826. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */,
  1827. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */,
  1828. 3083261C4B268E353F36CD0B /* AutotuneConfigDataFlow.swift in Sources */,
  1829. 891DECF7BC20968D7F566161 /* AutotuneConfigProvider.swift in Sources */,
  1830. D76333C9256787610B3B4875 /* AutotuneConfigStateModel.swift in Sources */,
  1831. A05235B9112E677ED03B6E8E /* AutotuneConfigRootView.swift in Sources */,
  1832. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */,
  1833. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */,
  1834. 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */,
  1835. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */,
  1836. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */,
  1837. F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */,
  1838. BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */,
  1839. 61962FCAF8A2D222553AC5A3 /* LibreConfigDataFlow.swift in Sources */,
  1840. 6EADD581738D64431902AC0A /* LibreConfigProvider.swift in Sources */,
  1841. 903D18976088B09110BCBE29 /* LibreConfigStateModel.swift in Sources */,
  1842. 9050F378F0063C064D7FFC86 /* LibreConfigRootView.swift in Sources */,
  1843. B7C465E9472624D8A2BE2A6A /* CalibrationsDataFlow.swift in Sources */,
  1844. 320D030F724170A637F06D50 /* CalibrationsProvider.swift in Sources */,
  1845. E25073BC86C11C3D6A42F5AC /* CalibrationsStateModel.swift in Sources */,
  1846. BA90041DC8991147E5C8C3AA /* CalibrationsRootView.swift in Sources */,
  1847. );
  1848. runOnlyForDeploymentPostprocessing = 0;
  1849. };
  1850. 38FCF3E925E9028E0078B0D1 /* Sources */ = {
  1851. isa = PBXSourcesBuildPhase;
  1852. buildActionMask = 2147483647;
  1853. files = (
  1854. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */,
  1855. );
  1856. runOnlyForDeploymentPostprocessing = 0;
  1857. };
  1858. /* End PBXSourcesBuildPhase section */
  1859. /* Begin PBXTargetDependency section */
  1860. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */ = {
  1861. isa = PBXTargetDependency;
  1862. target = 388E595725AD948C0019842D /* FreeAPS */;
  1863. targetProxy = 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */;
  1864. };
  1865. /* End PBXTargetDependency section */
  1866. /* Begin PBXVariantGroup section */
  1867. 1927C8E82744606D00347C69 /* InfoPlist.strings */ = {
  1868. isa = PBXVariantGroup;
  1869. children = (
  1870. 1927C8E92744611700347C69 /* ar */,
  1871. 1927C8EA2744611800347C69 /* ca */,
  1872. 1927C8EB2744611900347C69 /* zh-Hans */,
  1873. 1927C8EC2744611A00347C69 /* da */,
  1874. 1927C8ED2744611B00347C69 /* fi */,
  1875. 1927C8EE2744611C00347C69 /* nl */,
  1876. 1927C8EF2744611D00347C69 /* fr */,
  1877. 1927C8F02744611E00347C69 /* de */,
  1878. 1927C8F12744611E00347C69 /* he */,
  1879. 1927C8F22744611F00347C69 /* it */,
  1880. 1927C8F32744612000347C69 /* nb */,
  1881. 1927C8F42744612100347C69 /* pl */,
  1882. 1927C8F52744612100347C69 /* pt-BR */,
  1883. 1927C8F62744612200347C69 /* pt-PT */,
  1884. 1927C8F72744612300347C69 /* ru */,
  1885. 1927C8F82744612400347C69 /* es */,
  1886. 1927C8F92744612400347C69 /* sv */,
  1887. 1927C8FA2744612500347C69 /* tr */,
  1888. 1927C8FB2744612600347C69 /* uk */,
  1889. 1927C8FE274489BA00347C69 /* Base */,
  1890. );
  1891. name = InfoPlist.strings;
  1892. sourceTree = "<group>";
  1893. };
  1894. 198377D4266BFFF6004DE65E /* Localizable.strings */ = {
  1895. isa = PBXVariantGroup;
  1896. children = (
  1897. 198377D3266BFFF6004DE65E /* en */,
  1898. 198377D5266C0A05004DE65E /* ar */,
  1899. 198377D6266C0A0A004DE65E /* ca */,
  1900. 198377D7266C0A15004DE65E /* zh-Hans */,
  1901. 198377D8266C0A1C004DE65E /* da */,
  1902. 198377D9266C0A21004DE65E /* nl */,
  1903. 198377DA266C0A2B004DE65E /* fr */,
  1904. 198377DB266C0A32004DE65E /* de */,
  1905. 198377DC266C0A3C004DE65E /* he */,
  1906. 198377DD266C0A51004DE65E /* it */,
  1907. 198377DE266C0A69004DE65E /* nb */,
  1908. 198377DF266C0A7F004DE65E /* pl */,
  1909. 198377E0266C0AB5004DE65E /* ru */,
  1910. 198377E1266C0ABF004DE65E /* es */,
  1911. 198377E2266C0AC8004DE65E /* sv */,
  1912. 198377E3266C0ADC004DE65E /* tr */,
  1913. 198377E4266C13D2004DE65E /* uk */,
  1914. 1918333A26ADA46800F45722 /* fi */,
  1915. 199732B4271B72DD00129A3F /* pt-PT */,
  1916. 199732B5271B9EE900129A3F /* pt-BR */,
  1917. );
  1918. name = Localizable.strings;
  1919. sourceTree = "<group>";
  1920. };
  1921. /* End PBXVariantGroup section */
  1922. /* Begin XCBuildConfiguration section */
  1923. 388E596525AD948E0019842D /* Debug */ = {
  1924. isa = XCBuildConfiguration;
  1925. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  1926. buildSettings = {
  1927. ALWAYS_SEARCH_USER_PATHS = NO;
  1928. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1929. CLANG_ANALYZER_NONNULL = YES;
  1930. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1931. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  1932. CLANG_CXX_LIBRARY = "libc++";
  1933. CLANG_ENABLE_MODULES = YES;
  1934. CLANG_ENABLE_OBJC_ARC = YES;
  1935. CLANG_ENABLE_OBJC_WEAK = YES;
  1936. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1937. CLANG_WARN_BOOL_CONVERSION = YES;
  1938. CLANG_WARN_COMMA = YES;
  1939. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1940. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1941. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1942. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1943. CLANG_WARN_EMPTY_BODY = YES;
  1944. CLANG_WARN_ENUM_CONVERSION = YES;
  1945. CLANG_WARN_INFINITE_RECURSION = YES;
  1946. CLANG_WARN_INT_CONVERSION = YES;
  1947. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1948. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1949. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1950. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1951. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1952. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1953. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1954. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1955. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1956. CLANG_WARN_UNREACHABLE_CODE = YES;
  1957. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1958. COPY_PHASE_STRIP = NO;
  1959. CURRENT_PROJECT_VERSION = $CURRENT_PROJECT_VERSION;
  1960. DEBUG_INFORMATION_FORMAT = dwarf;
  1961. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1962. ENABLE_TESTABILITY = YES;
  1963. GCC_C_LANGUAGE_STANDARD = gnu11;
  1964. GCC_DYNAMIC_NO_PIC = NO;
  1965. GCC_NO_COMMON_BLOCKS = YES;
  1966. GCC_OPTIMIZATION_LEVEL = 0;
  1967. GCC_PREPROCESSOR_DEFINITIONS = (
  1968. "DEBUG=1",
  1969. "$(inherited)",
  1970. );
  1971. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1972. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1973. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1974. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1975. GCC_WARN_UNUSED_FUNCTION = YES;
  1976. GCC_WARN_UNUSED_VARIABLE = YES;
  1977. IPHONEOS_DEPLOYMENT_TARGET = 14.3;
  1978. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  1979. MTL_FAST_MATH = YES;
  1980. ONLY_ACTIVE_ARCH = YES;
  1981. SDKROOT = iphoneos;
  1982. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  1983. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  1984. };
  1985. name = Debug;
  1986. };
  1987. 388E596625AD948E0019842D /* Release */ = {
  1988. isa = XCBuildConfiguration;
  1989. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  1990. buildSettings = {
  1991. ALWAYS_SEARCH_USER_PATHS = NO;
  1992. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1993. CLANG_ANALYZER_NONNULL = YES;
  1994. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1995. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  1996. CLANG_CXX_LIBRARY = "libc++";
  1997. CLANG_ENABLE_MODULES = YES;
  1998. CLANG_ENABLE_OBJC_ARC = YES;
  1999. CLANG_ENABLE_OBJC_WEAK = YES;
  2000. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2001. CLANG_WARN_BOOL_CONVERSION = YES;
  2002. CLANG_WARN_COMMA = YES;
  2003. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2004. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2005. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2006. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2007. CLANG_WARN_EMPTY_BODY = YES;
  2008. CLANG_WARN_ENUM_CONVERSION = YES;
  2009. CLANG_WARN_INFINITE_RECURSION = YES;
  2010. CLANG_WARN_INT_CONVERSION = YES;
  2011. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2012. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2013. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2014. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2015. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2016. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2017. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2018. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2019. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2020. CLANG_WARN_UNREACHABLE_CODE = YES;
  2021. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2022. COPY_PHASE_STRIP = NO;
  2023. CURRENT_PROJECT_VERSION = $CURRENT_PROJECT_VERSION;
  2024. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2025. ENABLE_NS_ASSERTIONS = NO;
  2026. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2027. GCC_C_LANGUAGE_STANDARD = gnu11;
  2028. GCC_NO_COMMON_BLOCKS = YES;
  2029. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2030. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2031. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2032. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2033. GCC_WARN_UNUSED_FUNCTION = YES;
  2034. GCC_WARN_UNUSED_VARIABLE = YES;
  2035. IPHONEOS_DEPLOYMENT_TARGET = 14.3;
  2036. MTL_ENABLE_DEBUG_INFO = NO;
  2037. MTL_FAST_MATH = YES;
  2038. SDKROOT = iphoneos;
  2039. SWIFT_COMPILATION_MODE = wholemodule;
  2040. SWIFT_OPTIMIZATION_LEVEL = "-O";
  2041. VALIDATE_PRODUCT = YES;
  2042. };
  2043. name = Release;
  2044. };
  2045. 388E596825AD948E0019842D /* Debug */ = {
  2046. isa = XCBuildConfiguration;
  2047. buildSettings = {
  2048. APP_GROUP_ID = "group.com.${DEVELOPMENT_TEAM}.loopkit.LoopGroup";
  2049. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2050. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2051. CODE_SIGN_ENTITLEMENTS = FreeAPS/Resources/FreeAPS.entitlements;
  2052. CODE_SIGN_STYLE = Automatic;
  2053. CURRENT_PROJECT_VERSION = 1;
  2054. DEVELOPMENT_ASSET_PATHS = "";
  2055. DEVELOPMENT_TEAM = BA7ZHP4963;
  2056. ENABLE_PREVIEWS = YES;
  2057. INFOPLIST_FILE = FreeAPS/Resources/Info.plist;
  2058. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  2059. LD_RUNPATH_SEARCH_PATHS = (
  2060. "$(inherited)",
  2061. "@executable_path/Frameworks",
  2062. );
  2063. MARKETING_VERSION = "$(CURRENT_PROJECT_VERSION)";
  2064. PRODUCT_BUNDLE_IDENTIFIER = ru.artpancreas.FreeAPS;
  2065. PRODUCT_NAME = "$(TARGET_NAME)";
  2066. SWIFT_VERSION = 5.0;
  2067. TARGETED_DEVICE_FAMILY = "1,2";
  2068. };
  2069. name = Debug;
  2070. };
  2071. 388E596925AD948E0019842D /* Release */ = {
  2072. isa = XCBuildConfiguration;
  2073. buildSettings = {
  2074. APP_GROUP_ID = "group.com.${DEVELOPMENT_TEAM}.loopkit.LoopGroup";
  2075. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2076. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2077. CODE_SIGN_ENTITLEMENTS = FreeAPS/Resources/FreeAPS.entitlements;
  2078. CODE_SIGN_STYLE = Automatic;
  2079. CURRENT_PROJECT_VERSION = 1;
  2080. DEVELOPMENT_ASSET_PATHS = "";
  2081. DEVELOPMENT_TEAM = BA7ZHP4963;
  2082. ENABLE_PREVIEWS = YES;
  2083. INFOPLIST_FILE = FreeAPS/Resources/Info.plist;
  2084. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  2085. LD_RUNPATH_SEARCH_PATHS = (
  2086. "$(inherited)",
  2087. "@executable_path/Frameworks",
  2088. );
  2089. MARKETING_VERSION = "$(CURRENT_PROJECT_VERSION)";
  2090. PRODUCT_BUNDLE_IDENTIFIER = ru.artpancreas.FreeAPS;
  2091. PRODUCT_NAME = "$(TARGET_NAME)";
  2092. SWIFT_VERSION = 5.0;
  2093. TARGETED_DEVICE_FAMILY = "1,2";
  2094. };
  2095. name = Release;
  2096. };
  2097. 38FCF3F525E9028E0078B0D1 /* Debug */ = {
  2098. isa = XCBuildConfiguration;
  2099. buildSettings = {
  2100. BUNDLE_LOADER = "$(TEST_HOST)";
  2101. CODE_SIGN_STYLE = Automatic;
  2102. DEVELOPMENT_TEAM = 777258T3K8;
  2103. INFOPLIST_FILE = FreeAPSTests/Info.plist;
  2104. IPHONEOS_DEPLOYMENT_TARGET = 14.4;
  2105. LD_RUNPATH_SEARCH_PATHS = (
  2106. "$(inherited)",
  2107. "@executable_path/Frameworks",
  2108. "@loader_path/Frameworks",
  2109. );
  2110. PRODUCT_BUNDLE_IDENTIFIER = ru.artpancreas.FreeAPSTests;
  2111. PRODUCT_NAME = "$(TARGET_NAME)";
  2112. SWIFT_VERSION = 5.0;
  2113. TARGETED_DEVICE_FAMILY = "1,2";
  2114. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FreeAPS.app/FreeAPS";
  2115. };
  2116. name = Debug;
  2117. };
  2118. 38FCF3F625E9028E0078B0D1 /* Release */ = {
  2119. isa = XCBuildConfiguration;
  2120. buildSettings = {
  2121. BUNDLE_LOADER = "$(TEST_HOST)";
  2122. CODE_SIGN_STYLE = Automatic;
  2123. DEVELOPMENT_TEAM = 777258T3K8;
  2124. INFOPLIST_FILE = FreeAPSTests/Info.plist;
  2125. IPHONEOS_DEPLOYMENT_TARGET = 14.4;
  2126. LD_RUNPATH_SEARCH_PATHS = (
  2127. "$(inherited)",
  2128. "@executable_path/Frameworks",
  2129. "@loader_path/Frameworks",
  2130. );
  2131. PRODUCT_BUNDLE_IDENTIFIER = ru.artpancreas.FreeAPSTests;
  2132. PRODUCT_NAME = "$(TARGET_NAME)";
  2133. SWIFT_VERSION = 5.0;
  2134. TARGETED_DEVICE_FAMILY = "1,2";
  2135. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FreeAPS.app/FreeAPS";
  2136. };
  2137. name = Release;
  2138. };
  2139. /* End XCBuildConfiguration section */
  2140. /* Begin XCConfigurationList section */
  2141. 388E595325AD948C0019842D /* Build configuration list for PBXProject "FreeAPS" */ = {
  2142. isa = XCConfigurationList;
  2143. buildConfigurations = (
  2144. 388E596525AD948E0019842D /* Debug */,
  2145. 388E596625AD948E0019842D /* Release */,
  2146. );
  2147. defaultConfigurationIsVisible = 0;
  2148. defaultConfigurationName = Release;
  2149. };
  2150. 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "FreeAPS" */ = {
  2151. isa = XCConfigurationList;
  2152. buildConfigurations = (
  2153. 388E596825AD948E0019842D /* Debug */,
  2154. 388E596925AD948E0019842D /* Release */,
  2155. );
  2156. defaultConfigurationIsVisible = 0;
  2157. defaultConfigurationName = Release;
  2158. };
  2159. 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "FreeAPSTests" */ = {
  2160. isa = XCConfigurationList;
  2161. buildConfigurations = (
  2162. 38FCF3F525E9028E0078B0D1 /* Debug */,
  2163. 38FCF3F625E9028E0078B0D1 /* Release */,
  2164. );
  2165. defaultConfigurationIsVisible = 0;
  2166. defaultConfigurationName = Release;
  2167. };
  2168. /* End XCConfigurationList section */
  2169. /* Begin XCRemoteSwiftPackageReference section */
  2170. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */ = {
  2171. isa = XCRemoteSwiftPackageReference;
  2172. repositoryURL = "https://github.com/Swinject/Swinject";
  2173. requirement = {
  2174. kind = upToNextMajorVersion;
  2175. minimumVersion = 2.7.1;
  2176. };
  2177. };
  2178. 38192DFF261B826A0094D973 /* XCRemoteSwiftPackageReference "Alamofire" */ = {
  2179. isa = XCRemoteSwiftPackageReference;
  2180. repositoryURL = "https://github.com/Alamofire/Alamofire";
  2181. requirement = {
  2182. kind = upToNextMajorVersion;
  2183. minimumVersion = 5.4.2;
  2184. };
  2185. };
  2186. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */ = {
  2187. isa = XCRemoteSwiftPackageReference;
  2188. repositoryURL = "https://github.com/apple/swift-algorithms";
  2189. requirement = {
  2190. kind = upToNextMajorVersion;
  2191. minimumVersion = 0.0.3;
  2192. };
  2193. };
  2194. 383948D125CD4D6D00E91849 /* XCRemoteSwiftPackageReference "Disk" */ = {
  2195. isa = XCRemoteSwiftPackageReference;
  2196. repositoryURL = "https://github.com/saoudrizwan/Disk";
  2197. requirement = {
  2198. kind = upToNextMajorVersion;
  2199. minimumVersion = 0.6.4;
  2200. };
  2201. };
  2202. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */ = {
  2203. isa = XCRemoteSwiftPackageReference;
  2204. repositoryURL = "https://github.com/malcommac/SwiftDate";
  2205. requirement = {
  2206. kind = upToNextMajorVersion;
  2207. minimumVersion = 6.3.1;
  2208. };
  2209. };
  2210. 38FEF40D273B2BDA00574A46 /* XCRemoteSwiftPackageReference "LibreTransmitterX" */ = {
  2211. isa = XCRemoteSwiftPackageReference;
  2212. repositoryURL = "https://github.com/ivalkou/LibreTransmitterX";
  2213. requirement = {
  2214. kind = upToNextMajorVersion;
  2215. minimumVersion = 1.0.0;
  2216. };
  2217. };
  2218. /* End XCRemoteSwiftPackageReference section */
  2219. /* Begin XCSwiftPackageProductDependency section */
  2220. 3811DE0F25C9D37700A708ED /* Swinject */ = {
  2221. isa = XCSwiftPackageProductDependency;
  2222. package = 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */;
  2223. productName = Swinject;
  2224. };
  2225. 38192E00261B826A0094D973 /* Alamofire */ = {
  2226. isa = XCSwiftPackageProductDependency;
  2227. package = 38192DFF261B826A0094D973 /* XCRemoteSwiftPackageReference "Alamofire" */;
  2228. productName = Alamofire;
  2229. };
  2230. 3833B46C26012030003021B3 /* Algorithms */ = {
  2231. isa = XCSwiftPackageProductDependency;
  2232. package = 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */;
  2233. productName = Algorithms;
  2234. };
  2235. 383948D225CD4D6D00E91849 /* Disk */ = {
  2236. isa = XCSwiftPackageProductDependency;
  2237. package = 383948D125CD4D6D00E91849 /* XCRemoteSwiftPackageReference "Disk" */;
  2238. productName = Disk;
  2239. };
  2240. 38B17B6525DD90E0005CAE3D /* SwiftDate */ = {
  2241. isa = XCSwiftPackageProductDependency;
  2242. package = 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */;
  2243. productName = SwiftDate;
  2244. };
  2245. 38FEF40E273B2BDA00574A46 /* LibreTransmitter */ = {
  2246. isa = XCSwiftPackageProductDependency;
  2247. package = 38FEF40D273B2BDA00574A46 /* XCRemoteSwiftPackageReference "LibreTransmitterX" */;
  2248. productName = LibreTransmitter;
  2249. };
  2250. /* End XCSwiftPackageProductDependency section */
  2251. };
  2252. rootObject = 388E595025AD948C0019842D /* Project object */;
  2253. }