project.pbxproj 294 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 54;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 041D1E995A6AE92E9289DC49 /* BolusDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */; };
  10. 0437CE46C12535A56504EC19 /* SnoozeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5822B15939E719628E9FF7C /* SnoozeRootView.swift */; };
  11. 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */; };
  12. 0F7A65FBD2CD8D6477ED4539 /* NotificationsConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E625985B47742D498CB1681A /* NotificationsConfigProvider.swift */; };
  13. 17A9D0899046B45E87834820 /* CREditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */; };
  14. 19012CDC291D2CB900FB8210 /* LoopStats.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19012CDB291D2CB900FB8210 /* LoopStats.swift */; };
  15. 190EBCC429FF136900BA767D /* StatConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC329FF136900BA767D /* StatConfigDataFlow.swift */; };
  16. 190EBCC629FF138000BA767D /* StatConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC529FF138000BA767D /* StatConfigProvider.swift */; };
  17. 190EBCC829FF13AA00BA767D /* StatConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC729FF13AA00BA767D /* StatConfigStateModel.swift */; };
  18. 190EBCCB29FF13CB00BA767D /* StatConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCCA29FF13CB00BA767D /* StatConfigRootView.swift */; };
  19. 191F62682AD6B05A004D7911 /* NightscoutSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */; };
  20. 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 1927C8E82744606D00347C69 /* InfoPlist.strings */; };
  21. 1935364028496F7D001E0B16 /* Oref2_variables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1935363F28496F7D001E0B16 /* Oref2_variables.swift */; };
  22. 193F6CDD2A512C8F001240FD /* Loops.swift in Sources */ = {isa = PBXBuildFile; fileRef = 193F6CDC2A512C8F001240FD /* Loops.swift */; };
  23. 1956FB212AFF79E200C7B4FF /* CoreDataStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1956FB202AFF79E200C7B4FF /* CoreDataStorage.swift */; };
  24. 195D80B42AF6973A00D25097 /* DynamicRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B32AF6973A00D25097 /* DynamicRootView.swift */; };
  25. 195D80B72AF697B800D25097 /* DynamicDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B62AF697B800D25097 /* DynamicDataFlow.swift */; };
  26. 195D80B92AF697F700D25097 /* DynamicProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B82AF697F700D25097 /* DynamicProvider.swift */; };
  27. 195D80BB2AF6980B00D25097 /* DynamicStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80BA2AF6980B00D25097 /* DynamicStateModel.swift */; };
  28. 1967DFBE29D052C200759F30 /* Icons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFBD29D052C200759F30 /* Icons.swift */; };
  29. 1967DFC029D053AC00759F30 /* IconSelection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFBF29D053AC00759F30 /* IconSelection.swift */; };
  30. 1967DFC229D053D300759F30 /* IconImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFC129D053D300759F30 /* IconImage.swift */; };
  31. 19795118275953E50044850D /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 198377D4266BFFF6004DE65E /* Localizable.strings */; };
  32. 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 198377D4266BFFF6004DE65E /* Localizable.strings */; };
  33. 199561C1275E61A50077B976 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 199561C0275E61A50077B976 /* HealthKit.framework */; };
  34. 19A910302A24BF6300C8951B /* StatsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A9102F2A24BF6300C8951B /* StatsView.swift */; };
  35. 19A910362A24D6D700C8951B /* DateFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A910352A24D6D700C8951B /* DateFilter.swift */; };
  36. 19A910382A24EF3200C8951B /* ChartsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A910372A24EF3200C8951B /* ChartsView.swift */; };
  37. 19B0EF2128F6D66200069496 /* Statistics.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19B0EF2028F6D66200069496 /* Statistics.swift */; };
  38. 19D466A329AA2B80004D5F33 /* FPUConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A229AA2B80004D5F33 /* FPUConfigDataFlow.swift */; };
  39. 19D466A529AA2BD4004D5F33 /* FPUConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A429AA2BD4004D5F33 /* FPUConfigProvider.swift */; };
  40. 19D466A729AA2C22004D5F33 /* FPUConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A629AA2C22004D5F33 /* FPUConfigStateModel.swift */; };
  41. 19D466AA29AA3099004D5F33 /* FPUConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A929AA3099004D5F33 /* FPUConfigRootView.swift */; };
  42. 19D4E4EB29FC6A9F00351451 /* Charts.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D4E4EA29FC6A9F00351451 /* Charts.swift */; };
  43. 19DA48E829CD339B00EEA1E7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */; };
  44. 19DA48E929CD339C00EEA1E7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */; };
  45. 19DA48EA29CD339C00EEA1E7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */; };
  46. 19DC677F29CA675700FD9EC4 /* OverrideProfilesDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19DC677E29CA675700FD9EC4 /* OverrideProfilesDataFlow.swift */; };
  47. 19DC678129CA676A00FD9EC4 /* OverrideProfilesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19DC678029CA676A00FD9EC4 /* OverrideProfilesProvider.swift */; };
  48. 19DC678329CA677D00FD9EC4 /* OverrideProfilesStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19DC678229CA677D00FD9EC4 /* OverrideProfilesStateModel.swift */; };
  49. 19DC678529CA67A400FD9EC4 /* OverrideProfilesRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19DC678429CA67A400FD9EC4 /* OverrideProfilesRootView.swift */; };
  50. 19E1F7E829D082D0005C8D20 /* IconConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */; };
  51. 19E1F7EA29D082ED005C8D20 /* IconConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */; };
  52. 19E1F7EC29D082FE005C8D20 /* IconConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */; };
  53. 19E1F7EF29D08EBA005C8D20 /* IconConfigRootWiew.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */; };
  54. 19F95FF329F10FBC00314DDC /* StatDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */; };
  55. 19F95FF529F10FCF00314DDC /* StatProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF429F10FCF00314DDC /* StatProvider.swift */; };
  56. 19F95FF729F10FEE00314DDC /* StatStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF629F10FEE00314DDC /* StatStateModel.swift */; };
  57. 19F95FFA29F1102A00314DDC /* StatRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF929F1102A00314DDC /* StatRootView.swift */; };
  58. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */; };
  59. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60744C3E9BB3652895C908CC /* DataTableProvider.swift */; };
  60. 23888883D4EA091C88480FF2 /* BolusProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C19984D62EFC0035A9E9644D /* BolusProvider.swift */; };
  61. 2BE9A6FA20875F6F4F9CD461 /* PumpSettingsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */; };
  62. 3083261C4B268E353F36CD0B /* AutotuneConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */; };
  63. 3171D2818C7C72CD1584BB5E /* NotificationsConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2C6489D29ECCCAD78E0721 /* NotificationsConfigStateModel.swift */; };
  64. 320D030F724170A637F06D50 /* CalibrationsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 212E8BFE6D66EE65AA26A114 /* CalibrationsProvider.swift */; };
  65. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0725C9D32E00A708ED /* BaseView.swift */; };
  66. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0825C9D32F00A708ED /* BaseProvider.swift */; };
  67. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */ = {isa = PBXBuildFile; productRef = 3811DE0F25C9D37700A708ED /* Swinject */; };
  68. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1525C9D40400A708ED /* Screen.swift */; };
  69. 3811DE1825C9D40400A708ED /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1625C9D40400A708ED /* Router.swift */; };
  70. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1C25C9D48300A708ED /* MainProvider.swift */; };
  71. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */; };
  72. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2025C9D48300A708ED /* MainRootView.swift */; };
  73. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2825C9D49500A708ED /* HomeStateModel.swift */; };
  74. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2925C9D49500A708ED /* HomeProvider.swift */; };
  75. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */; };
  76. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2E25C9D49500A708ED /* HomeRootView.swift */; };
  77. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */; };
  78. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */; };
  79. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */; };
  80. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */; };
  81. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5425C9D4D500A708ED /* Formatters.swift */; };
  82. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5525C9D4D500A708ED /* Publisher.swift */; };
  83. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5725C9D4D500A708ED /* ProgressBar.swift */; };
  84. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */; };
  85. 3811DE8F25C9D80400A708ED /* User.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE8E25C9D80400A708ED /* User.swift */; };
  86. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9325C9D88200A708ED /* AppearanceManager.swift */; };
  87. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */; };
  88. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9725C9D88300A708ED /* NightscoutManager.swift */; };
  89. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */; };
  90. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9B25C9D88300A708ED /* Cache.swift */; };
  91. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */; };
  92. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */; };
  93. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9F25C9D88300A708ED /* Keychain.swift */; };
  94. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */; };
  95. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA625C9D88300A708ED /* UnlockManager.swift */; };
  96. 3811DEE825CA063400A708ED /* Injected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE425CA063400A708ED /* Injected.swift */; };
  97. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE625CA063400A708ED /* SyncAccess.swift */; };
  98. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE725CA063400A708ED /* PersistedProperty.swift */; };
  99. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0125CA9FEA00A708ED /* Credentials.swift */; };
  100. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0F25CAAAE200A708ED /* APSManager.swift */; };
  101. 3818AA47274C255A00843DB3 /* LibreTransmitter in Frameworks */ = {isa = PBXBuildFile; productRef = 3818AA46274C255A00843DB3 /* LibreTransmitter */; };
  102. 3818AA4A274C267000843DB3 /* CGMBLEKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA49274C267000843DB3 /* CGMBLEKit.framework */; };
  103. 3818AA4B274C267100843DB3 /* CGMBLEKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA49274C267000843DB3 /* CGMBLEKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  104. 3818AA58274C26A300843DB3 /* LoopKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4C274C26A300843DB3 /* LoopKit.framework */; };
  105. 3818AA59274C26A300843DB3 /* LoopKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4C274C26A300843DB3 /* LoopKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  106. 3818AA5A274C26A300843DB3 /* LoopKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */; };
  107. 3818AA5B274C26A300843DB3 /* LoopKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  108. 3818AA5C274C26A300843DB3 /* MockKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4E274C26A300843DB3 /* MockKit.framework */; };
  109. 3818AA5D274C26A300843DB3 /* MockKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4E274C26A300843DB3 /* MockKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  110. 3818AA5E274C26A300843DB3 /* MockKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4F274C26A300843DB3 /* MockKitUI.framework */; };
  111. 3818AA5F274C26A300843DB3 /* MockKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4F274C26A300843DB3 /* MockKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  112. 3818AA6A274C26A500843DB3 /* RileyLinkBLEKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */; };
  113. 3818AA6B274C26A500843DB3 /* RileyLinkBLEKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  114. 3818AA6C274C26A500843DB3 /* RileyLinkKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */; };
  115. 3818AA6D274C26A500843DB3 /* RileyLinkKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  116. 3818AA6E274C26A500843DB3 /* RileyLinkKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */; };
  117. 3818AA6F274C26A500843DB3 /* RileyLinkKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  118. 3818AA71274C278200843DB3 /* LoopTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA70274C278200843DB3 /* LoopTestingKit.framework */; };
  119. 3818AA72274C278200843DB3 /* LoopTestingKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA70274C278200843DB3 /* LoopTestingKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  120. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E03261B82FA0094D973 /* ReachabilityManager.swift */; };
  121. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */; };
  122. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */; };
  123. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3821ED4B25DD18BA00BC42AD /* Constants.swift */; };
  124. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */; };
  125. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C134A25F14E3700715CE1 /* BGTargets.swift */; };
  126. 3833B46D26012030003021B3 /* Algorithms in Frameworks */ = {isa = PBXBuildFile; productRef = 3833B46C26012030003021B3 /* Algorithms */; };
  127. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D525FFE38C002D46C1 /* LoopView.swift */; };
  128. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D825FFEB3F002D46C1 /* Popup.swift */; };
  129. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D525CD4D8900E91849 /* FileStorage.swift */; };
  130. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D925CD64D500E91849 /* Glucose.swift */; };
  131. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803325C385E60086DB71 /* JavaScriptWorker.swift */; };
  132. 384E803825C388640086DB71 /* Script.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803725C388640086DB71 /* Script.swift */; };
  133. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569344270B5DFA0002C50D /* CGMType.swift */; };
  134. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569345270B5DFA0002C50D /* GlucoseSource.swift */; };
  135. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569346270B5DFB0002C50D /* AppGroupSource.swift */; };
  136. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569352270B5E350002C50D /* CGMRootView.swift */; };
  137. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */; };
  138. 385CEAC125F2EA52002D6D5B /* Announcement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEAC025F2EA52002D6D5B /* Announcement.swift */; };
  139. 385CEAC425F2F154002D6D5B /* AnnouncementsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */; };
  140. 3862CC05273D152B00BF832C /* CalibrationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC04273D152B00BF832C /* CalibrationService.swift */; };
  141. 3862CC1F273FDC9200BF832C /* CalibrationsChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC1E273FDC9200BF832C /* CalibrationsChart.swift */; };
  142. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC2D2743F9F700BF832C /* CalendarManager.swift */; };
  143. 386A124F271707F000DDC61C /* DexcomSourceG6.swift in Sources */ = {isa = PBXBuildFile; fileRef = 386A124E271707F000DDC61C /* DexcomSourceG6.swift */; };
  144. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3870FF4225EC13F40088248F /* BloodGlucose.swift */; };
  145. 3871F38725ED661C0013ECB5 /* Suggestion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F38625ED661C0013ECB5 /* Suggestion.swift */; };
  146. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39B25ED892B0013ECB5 /* TempTarget.swift */; };
  147. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */; };
  148. 3883581C25EE79BB00E024B2 /* DecimalTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883581B25EE79BB00E024B2 /* DecimalTextField.swift */; };
  149. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883583325EEB38000E024B2 /* PumpSettings.swift */; };
  150. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */; };
  151. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38887CCD25F5725200944304 /* IOBEntry.swift */; };
  152. 388E595C25AD948C0019842D /* FreeAPSApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E595B25AD948C0019842D /* FreeAPSApp.swift */; };
  153. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E596B25AD95110019842D /* OpenAPS.swift */; };
  154. 388E596F25AD96040019842D /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 388E596E25AD96040019842D /* javascript */; };
  155. 388E597225AD9CF10019842D /* json in Resources */ = {isa = PBXBuildFile; fileRef = 388E597125AD9CF10019842D /* json */; };
  156. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5B25B6F0770019842D /* JSON.swift */; };
  157. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5F25B6F2310019842D /* Autosens.swift */; };
  158. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */; };
  159. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389487392614928B004DF424 /* DispatchTimer.swift */; };
  160. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3895E4C525B9E00D00214B37 /* Preferences.swift */; };
  161. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389A571F26079BAA00BC102F /* Interpolation.swift */; };
  162. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECDFD2601061500D86C4F /* View+Snapshot.swift */; };
  163. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECE042601144100D86C4F /* ConcurrentMap.swift */; };
  164. 38A00B1F25FC00F7006BC0B0 /* Autotune.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */; };
  165. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */; };
  166. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */; };
  167. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0364125ED069400FCBB52 /* TempBasal.swift */; };
  168. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */; };
  169. 38A43598262E0E4900E80935 /* FetchAnnouncementsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */; };
  170. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */; };
  171. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A9260425F012D8009E3739 /* CarbRatios.swift */; };
  172. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */; };
  173. 38AEE73D25F0200C0013F05B /* FreeAPSSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */; };
  174. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75125F022080013F05B /* SettingsManager.swift */; };
  175. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */; };
  176. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 38B17B6525DD90E0005CAE3D /* SwiftDate */; };
  177. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */; };
  178. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */; };
  179. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */; };
  180. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */; };
  181. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */; };
  182. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */; };
  183. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */; };
  184. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021A25E7D06400579895 /* PumpSettingsView.swift */; };
  185. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021C25E7E3AF00579895 /* Reservoir.swift */; };
  186. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */; };
  187. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */; };
  188. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */; };
  189. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3B525EBE24900CB6E88 /* Battery.swift */; };
  190. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */; };
  191. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB27F260CBB7F00F74C1A /* PumpView.swift */; };
  192. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */; };
  193. 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF1785276A73D400B3528F /* TagCloudView.swift */; };
  194. 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */ = {isa = PBXBuildFile; productRef = 38DF1788276FC8C400B3528F /* SwiftMessages */; };
  195. 38DF178D27733E6800B3528F /* snow.sks in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178B27733E6800B3528F /* snow.sks */; };
  196. 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178C27733E6800B3528F /* Assets.xcassets */; };
  197. 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF178F27733EAD00B3528F /* SnowScene.swift */; };
  198. 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4451D274DB04600EC9A94 /* AppDelegate.swift */; };
  199. 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */; };
  200. 38E44528274E401C00EC9A94 /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44527274E401C00EC9A94 /* Protected.swift */; };
  201. 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */; };
  202. 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452B274E411600EC9A94 /* Disk+Data.swift */; };
  203. 38E44536274E411700EC9A94 /* Disk.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452C274E411600EC9A94 /* Disk.swift */; };
  204. 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */; };
  205. 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452E274E411600EC9A94 /* Disk+[Data].swift */; };
  206. 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */; };
  207. 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */; };
  208. 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */; };
  209. 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44532274E411700EC9A94 /* Disk+Codable.swift */; };
  210. 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44533274E411700EC9A94 /* Disk+Errors.swift */; };
  211. 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E873FD274F761800975559 /* CoreNFC.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
  212. 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */; settings = {ATTRIBUTES = (Weak, ); }; };
  213. 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E87407274F9AD000975559 /* UserNotificationsManager.swift */; };
  214. 38E8752527554D5700975559 /* FreeAPSWatch WatchKit Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  215. 38E8752A27554D5700975559 /* FreeAPSApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752927554D5700975559 /* FreeAPSApp.swift */; };
  216. 38E8752C27554D5700975559 /* MainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752B27554D5700975559 /* MainView.swift */; };
  217. 38E8752E27554D5700975559 /* NotificationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752D27554D5700975559 /* NotificationController.swift */; };
  218. 38E8753027554D5700975559 /* NotificationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752F27554D5700975559 /* NotificationView.swift */; };
  219. 38E8753227554D5700975559 /* ComplicationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8753127554D5700975559 /* ComplicationController.swift */; };
  220. 38E8753427554D5800975559 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38E8753327554D5800975559 /* Assets.xcassets */; };
  221. 38E8753727554D5900975559 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38E8753627554D5800975559 /* Preview Assets.xcassets */; };
  222. 38E8753C27554D5900975559 /* FreeAPSWatch.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = 38E8751C27554D5500975559 /* FreeAPSWatch.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  223. 38E8754727554DF100975559 /* Color+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F37827261260DC009DB701 /* Color+Extensions.swift */; };
  224. 38E8754A275550BB00975559 /* CarbsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E87549275550BB00975559 /* CarbsView.swift */; };
  225. 38E8754C2755548F00975559 /* WatchStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8754B2755548F00975559 /* WatchStateModel.swift */; };
  226. 38E8754F275556FA00975559 /* WatchManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8754E275556FA00975559 /* WatchManager.swift */; };
  227. 38E8755127555D0500975559 /* DataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8755027555D0500975559 /* DataFlow.swift */; };
  228. 38E8755427561E9800975559 /* DataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8755027555D0500975559 /* DataFlow.swift */; };
  229. 38E8755827567AE400975559 /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 38E8755727567AE400975559 /* SwiftDate */; };
  230. 38E8755927567CA600975559 /* Decimal+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */; };
  231. 38E8755B27568A6800975559 /* ConfirmationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8755A27568A6700975559 /* ConfirmationView.swift */; };
  232. 38E8757927579D9200975559 /* Publisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5525C9D4D500A708ED /* Publisher.swift */; };
  233. 38E8757B2757B1C300975559 /* TempTargetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8757A2757B1C300975559 /* TempTargetsView.swift */; };
  234. 38E8757D2757C45D00975559 /* BolusView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8757C2757C45D00975559 /* BolusView.swift */; };
  235. 38E8757E2758C86A00975559 /* ConvenienceExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */; };
  236. 38E8758027595DC600975559 /* BolusConfirmationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8757F27595DC500975559 /* BolusConfirmationView.swift */; };
  237. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E989DC25F5021400C0CED0 /* PumpStatus.swift */; };
  238. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1B25F52C9300C0CED0 /* Signpost.swift */; };
  239. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1C25F52C9300C0CED0 /* Logger.swift */; };
  240. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */; };
  241. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */; };
  242. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */; };
  243. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */; };
  244. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2F25F52FF700C0CED0 /* Config.swift */; };
  245. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A3625F5509500C0CED0 /* String+Extensions.swift */; };
  246. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */; };
  247. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */; };
  248. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F37827261260DC009DB701 /* Color+Extensions.swift */; };
  249. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */; };
  250. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3D525E8FDF40078B0D1 /* MD5.swift */; };
  251. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */; };
  252. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */; };
  253. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826925CC82DB001FF17A /* NetworkService.swift */; };
  254. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */; };
  255. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3F92737E42000574A46 /* BaseStateModel.swift */; };
  256. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FB2737E53800574A46 /* MainStateModel.swift */; };
  257. 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FD2738083E00574A46 /* CGMProvider.swift */; };
  258. 38FEF408273B011A00574A46 /* LibreTransmitterSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF407273B011A00574A46 /* LibreTransmitterSource.swift */; };
  259. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF412273B317A00574A46 /* HKUnit.swift */; };
  260. 44190F0BBA464D74B857D1FB /* PreferencesEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */; };
  261. 448B6FCB252BD4796E2960C0 /* PumpSettingsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */; };
  262. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */; };
  263. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */; };
  264. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */; };
  265. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */; };
  266. 581516A42BCED84A00BF67D7 /* DebuggingIdentifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */; };
  267. 581516A92BCEEDF800BF67D7 /* NSPredicates.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */; };
  268. 581AC4392BE22ED10038760C /* JSONConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581AC4382BE22ED10038760C /* JSONConverter.swift */; };
  269. 581F7FB32BE7B2A0005A5F89 /* BolusStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581F7FB12BE7B2A0005A5F89 /* BolusStored+CoreDataClass.swift */; };
  270. 581F7FB42BE7B2A0005A5F89 /* BolusStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581F7FB22BE7B2A0005A5F89 /* BolusStored+CoreDataProperties.swift */; };
  271. 58237D9E2BCF0A6B00A47A79 /* PopupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */; };
  272. 5825D1342BD4058F00F36E9B /* BGaverages+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1062BD4058F00F36E9B /* BGaverages+CoreDataClass.swift */; };
  273. 5825D1352BD4058F00F36E9B /* BGaverages+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1072BD4058F00F36E9B /* BGaverages+CoreDataProperties.swift */; };
  274. 5825D1362BD4058F00F36E9B /* BGmedian+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1082BD4058F00F36E9B /* BGmedian+CoreDataClass.swift */; };
  275. 5825D1372BD4058F00F36E9B /* BGmedian+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1092BD4058F00F36E9B /* BGmedian+CoreDataProperties.swift */; };
  276. 5825D13A2BD4058F00F36E9B /* LoopStatRecord+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D10C2BD4058F00F36E9B /* LoopStatRecord+CoreDataClass.swift */; };
  277. 5825D13B2BD4058F00F36E9B /* LoopStatRecord+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D10D2BD4058F00F36E9B /* LoopStatRecord+CoreDataProperties.swift */; };
  278. 5825D13C2BD4058F00F36E9B /* ImportError+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D10E2BD4058F00F36E9B /* ImportError+CoreDataClass.swift */; };
  279. 5825D13D2BD4058F00F36E9B /* ImportError+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D10F2BD4058F00F36E9B /* ImportError+CoreDataProperties.swift */; };
  280. 5825D13E2BD4058F00F36E9B /* TDD+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1102BD4058F00F36E9B /* TDD+CoreDataClass.swift */; };
  281. 5825D13F2BD4058F00F36E9B /* TDD+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1112BD4058F00F36E9B /* TDD+CoreDataProperties.swift */; };
  282. 5825D1402BD4058F00F36E9B /* TempTargetsSlider+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1122BD4058F00F36E9B /* TempTargetsSlider+CoreDataClass.swift */; };
  283. 5825D1412BD4058F00F36E9B /* TempTargetsSlider+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1132BD4058F00F36E9B /* TempTargetsSlider+CoreDataProperties.swift */; };
  284. 5825D1422BD4058F00F36E9B /* Presets+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1142BD4058F00F36E9B /* Presets+CoreDataClass.swift */; };
  285. 5825D1432BD4058F00F36E9B /* Presets+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1152BD4058F00F36E9B /* Presets+CoreDataProperties.swift */; };
  286. 5825D1442BD4058F00F36E9B /* Autosens_+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1162BD4058F00F36E9B /* Autosens_+CoreDataClass.swift */; };
  287. 5825D1452BD4058F00F36E9B /* Autosens_+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1172BD4058F00F36E9B /* Autosens_+CoreDataProperties.swift */; };
  288. 5825D1462BD4058F00F36E9B /* Oref0Suggestion+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1182BD4058F00F36E9B /* Oref0Suggestion+CoreDataClass.swift */; };
  289. 5825D1472BD4058F00F36E9B /* Oref0Suggestion+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1192BD4058F00F36E9B /* Oref0Suggestion+CoreDataProperties.swift */; };
  290. 5825D1482BD4058F00F36E9B /* Override+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D11A2BD4058F00F36E9B /* Override+CoreDataClass.swift */; };
  291. 5825D1492BD4058F00F36E9B /* Override+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D11B2BD4058F00F36E9B /* Override+CoreDataProperties.swift */; };
  292. 5825D14A2BD4058F00F36E9B /* OrefDetermination+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D11C2BD4058F00F36E9B /* OrefDetermination+CoreDataClass.swift */; };
  293. 5825D14B2BD4058F00F36E9B /* OrefDetermination+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D11D2BD4058F00F36E9B /* OrefDetermination+CoreDataProperties.swift */; };
  294. 5825D14C2BD4058F00F36E9B /* TempTargets+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D11E2BD4058F00F36E9B /* TempTargets+CoreDataClass.swift */; };
  295. 5825D14D2BD4058F00F36E9B /* TempTargets+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D11F2BD4058F00F36E9B /* TempTargets+CoreDataProperties.swift */; };
  296. 5825D14E2BD4058F00F36E9B /* HbA1c+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1202BD4058F00F36E9B /* HbA1c+CoreDataClass.swift */; };
  297. 5825D14F2BD4058F00F36E9B /* HbA1c+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1212BD4058F00F36E9B /* HbA1c+CoreDataProperties.swift */; };
  298. 5825D1502BD4058F00F36E9B /* InsulinDistribution+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1222BD4058F00F36E9B /* InsulinDistribution+CoreDataClass.swift */; };
  299. 5825D1512BD4058F00F36E9B /* InsulinDistribution+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1232BD4058F00F36E9B /* InsulinDistribution+CoreDataProperties.swift */; };
  300. 5825D1522BD4058F00F36E9B /* LastLoop+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1242BD4058F00F36E9B /* LastLoop+CoreDataClass.swift */; };
  301. 5825D1532BD4058F00F36E9B /* LastLoop+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1252BD4058F00F36E9B /* LastLoop+CoreDataProperties.swift */; };
  302. 5825D1542BD4058F00F36E9B /* CarbEntryStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1262BD4058F00F36E9B /* CarbEntryStored+CoreDataClass.swift */; };
  303. 5825D1552BD4058F00F36E9B /* CarbEntryStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1272BD4058F00F36E9B /* CarbEntryStored+CoreDataProperties.swift */; };
  304. 5825D1562BD4058F00F36E9B /* Autotune_+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1282BD4058F00F36E9B /* Autotune_+CoreDataClass.swift */; };
  305. 5825D1572BD4058F00F36E9B /* Autotune_+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1292BD4058F00F36E9B /* Autotune_+CoreDataProperties.swift */; };
  306. 5825D1582BD4058F00F36E9B /* StatsData+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D12A2BD4058F00F36E9B /* StatsData+CoreDataClass.swift */; };
  307. 5825D1592BD4058F00F36E9B /* StatsData+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D12B2BD4058F00F36E9B /* StatsData+CoreDataProperties.swift */; };
  308. 5825D15A2BD4058F00F36E9B /* OverridePresets+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D12C2BD4058F00F36E9B /* OverridePresets+CoreDataClass.swift */; };
  309. 5825D15B2BD4058F00F36E9B /* OverridePresets+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D12D2BD4058F00F36E9B /* OverridePresets+CoreDataProperties.swift */; };
  310. 5825D15C2BD4058F00F36E9B /* Target+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D12E2BD4058F00F36E9B /* Target+CoreDataClass.swift */; };
  311. 5825D15D2BD4058F00F36E9B /* Target+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D12F2BD4058F00F36E9B /* Target+CoreDataProperties.swift */; };
  312. 5825D15E2BD4058F00F36E9B /* Protein+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1302BD4058F00F36E9B /* Protein+CoreDataClass.swift */; };
  313. 5825D15F2BD4058F00F36E9B /* Protein+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825D1312BD4058F00F36E9B /* Protein+CoreDataProperties.swift */; };
  314. 583684062BD178DB00070A60 /* GlucoseStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */; };
  315. 583684082BD195A700070A60 /* Determination.swift in Sources */ = {isa = PBXBuildFile; fileRef = 583684072BD195A700070A60 /* Determination.swift */; };
  316. 5837A5302BD2E3C700A5DC04 /* CarbEntryStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */; };
  317. 5856174D2BDADA3F009B23D7 /* GlucoseStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5856174B2BDADA3F009B23D7 /* GlucoseStored+CoreDataClass.swift */; };
  318. 5856174E2BDADA3F009B23D7 /* GlucoseStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5856174C2BDADA3F009B23D7 /* GlucoseStored+CoreDataProperties.swift */; };
  319. 585E2CAE2BE7BF46006ECF1A /* PumpEvent+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */; };
  320. 585E2CB32BE7DA03006ECF1A /* TempBasalStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 585E2CAF2BE7DA03006ECF1A /* TempBasalStored+CoreDataClass.swift */; };
  321. 585E2CB42BE7DA03006ECF1A /* TempBasalStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 585E2CB02BE7DA03006ECF1A /* TempBasalStored+CoreDataProperties.swift */; };
  322. 585E2CB52BE7DA03006ECF1A /* PumpEventStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 585E2CB12BE7DA03006ECF1A /* PumpEventStored+CoreDataClass.swift */; };
  323. 585E2CB62BE7DA03006ECF1A /* PumpEventStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 585E2CB22BE7DA03006ECF1A /* PumpEventStored+CoreDataProperties.swift */; };
  324. 587DA1F62B77F3DD00B28F8A /* SettingsRowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 587DA1F52B77F3DD00B28F8A /* SettingsRowView.swift */; };
  325. 5887527C2BD986E1008B081D /* OpenAPSBattery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */; };
  326. 588752842BD9986A008B081D /* OpenAPS_Battery+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 588752822BD9986A008B081D /* OpenAPS_Battery+CoreDataClass.swift */; };
  327. 588752852BD9986A008B081D /* OpenAPS_Battery+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 588752832BD9986A008B081D /* OpenAPS_Battery+CoreDataProperties.swift */; };
  328. 58F107742BD1A4D000B1A680 /* Determination+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58F107732BD1A4D000B1A680 /* Determination+helper.swift */; };
  329. 5BFA1C2208114643B77F8CEB /* AddTempTargetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEE53A13D26F101B332EFFC8 /* AddTempTargetProvider.swift */; };
  330. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */; };
  331. 61962FCAF8A2D222553AC5A3 /* LibreConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66A5B83E7967C38F7CBD883C /* LibreConfigDataFlow.swift */; };
  332. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */; };
  333. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */; };
  334. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */; };
  335. 69A31254F2451C20361D172F /* BolusStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */; };
  336. 69B9A368029F7EB39F525422 /* CREditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */; };
  337. 6B1A8D192B14D91600E76752 /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D182B14D91600E76752 /* WidgetKit.framework */; };
  338. 6B1A8D1B2B14D91600E76752 /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */; };
  339. 6B1A8D1E2B14D91600E76752 /* LiveActivityBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */; };
  340. 6B1A8D202B14D91600E76752 /* LiveActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */; };
  341. 6B1A8D242B14D91700E76752 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6B1A8D232B14D91700E76752 /* Assets.xcassets */; };
  342. 6B1A8D282B14D91700E76752 /* LiveActivityExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  343. 6B1A8D2E2B156EEF00E76752 /* LiveActivityBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D2D2B156EEF00E76752 /* LiveActivityBridge.swift */; };
  344. 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */; };
  345. 6B9625766B697D1C98E455A2 /* PumpSettingsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */; };
  346. 6BCF84DD2B16843A003AD46E /* LiveActitiyShared.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BCF84DC2B16843A003AD46E /* LiveActitiyShared.swift */; };
  347. 6BCF84DE2B16843A003AD46E /* LiveActitiyShared.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BCF84DC2B16843A003AD46E /* LiveActitiyShared.swift */; };
  348. 6EADD581738D64431902AC0A /* LibreConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2EBA7C03C26FCC67E16D798 /* LibreConfigProvider.swift */; };
  349. 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */; };
  350. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */; };
  351. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */; };
  352. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */; };
  353. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */; };
  354. 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */; };
  355. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */; };
  356. 891DECF7BC20968D7F566161 /* AutotuneConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */; };
  357. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */; };
  358. 8BC2F5A29AD1ED08AC0EE013 /* AddTempTargetRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9AAB83FB6C3B41EFD1846A0 /* AddTempTargetRootView.swift */; };
  359. 903D18976088B09110BCBE29 /* LibreConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E68CDC1E5C438D1BEAD4CF24 /* LibreConfigStateModel.swift */; };
  360. 9050F378F0063C064D7FFC86 /* LibreConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC210C0F3CB6D3C86E5DED4E /* LibreConfigRootView.swift */; };
  361. 919DBD08F13BAFB180DF6F47 /* AddTempTargetStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C3B5FD881CA45DFDEE0EDA9 /* AddTempTargetStateModel.swift */; };
  362. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */; };
  363. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */; };
  364. 98641AF4F92123DA668AB931 /* CREditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */; };
  365. A05235B9112E677ED03B6E8E /* AutotuneConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */; };
  366. A0B8EC8CC5CD1DD237D1BCD2 /* PumpSettingsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */; };
  367. A228DF96647338139F152B15 /* PreferencesEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */; };
  368. A33352ED40476125EBAC6EE0 /* CREditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */; };
  369. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */; };
  370. B7C465E9472624D8A2BE2A6A /* CalibrationsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA241FB1663EC96FDBE64C8A /* CalibrationsDataFlow.swift */; };
  371. B9CAAEFC2AE70836000F68BC /* branch.txt in Resources */ = {isa = PBXBuildFile; fileRef = B9CAAEFB2AE70836000F68BC /* branch.txt */; };
  372. BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */; };
  373. BA90041DC8991147E5C8C3AA /* CalibrationsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 500371C09F54F89A97D65FDB /* CalibrationsRootView.swift */; };
  374. BD1661312B82ADAB00256551 /* CustomProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1661302B82ADAB00256551 /* CustomProgressView.swift */; };
  375. BD188BEC2B1B805B00B183BF /* WidgetBobble.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD188BEB2B1B805A00B183BF /* WidgetBobble.swift */; };
  376. BD188BED2B1B805B00B183BF /* WidgetBobble.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD188BEB2B1B805A00B183BF /* WidgetBobble.swift */; };
  377. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */; };
  378. BD2FF1A02AE29D43005D1C5D /* CheckboxToggleStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */; };
  379. BD3CC0722B0B89D50013189E /* MainChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD3CC0712B0B89D50013189E /* MainChartView.swift */; };
  380. BD7DA9A52AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */; };
  381. BD7DA9A72AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */; };
  382. BD7DA9A92AE06E9200601B20 /* BolusCalculatorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */; };
  383. BD7DA9AC2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */; };
  384. BDF530D82B40F8AC002CAF43 /* LockScreenView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */; };
  385. BDFD165A2AE40438007F0DDA /* BolusRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFD16592AE40438007F0DDA /* BolusRootView.swift */; };
  386. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */; };
  387. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */; };
  388. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */; };
  389. CC41E29A2B1E1F460070974F /* HistoryLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC41E2992B1E1F460070974F /* HistoryLayout.swift */; };
  390. CC6C406E2ACDD69E009B8058 /* RawFetchedProfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */; };
  391. CC76E94C2BD471BA008BEB61 /* Forecast+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC76E9482BD471BA008BEB61 /* Forecast+CoreDataClass.swift */; };
  392. CC76E94D2BD471BA008BEB61 /* Forecast+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC76E9492BD471BA008BEB61 /* Forecast+CoreDataProperties.swift */; };
  393. CC76E94E2BD471BA008BEB61 /* ForecastValue+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC76E94A2BD471BA008BEB61 /* ForecastValue+CoreDataClass.swift */; };
  394. CC76E94F2BD471BA008BEB61 /* ForecastValue+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC76E94B2BD471BA008BEB61 /* ForecastValue+CoreDataProperties.swift */; };
  395. CC76E9512BD4812E008BEB61 /* Forecast+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */; };
  396. CD78BB94E43B249D60CC1A1B /* NotificationsConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22963BD06A9C83959D4914E4 /* NotificationsConfigRootView.swift */; };
  397. CE1856F52ADC4858007E39C7 /* AddCarbPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */; };
  398. CE1856F72ADC4869007E39C7 /* CarbPresetIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */; };
  399. CE2FAD38297D69E1001A872C /* ShareClient.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE398D1A297D69A900DF218F /* ShareClient.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  400. CE2FAD3A297D93F0001A872C /* BloodGlucoseExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */; };
  401. CE398D16297C9D1D00DF218F /* dexcomSourceG7.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE398D15297C9D1D00DF218F /* dexcomSourceG7.swift */; };
  402. CE398D18297C9EE800DF218F /* G7SensorKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE398D17297C9EE800DF218F /* G7SensorKit.framework */; };
  403. CE398D19297C9EFD00DF218F /* G7SensorKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE398D17297C9EE800DF218F /* G7SensorKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  404. CE398D1B297D69A900DF218F /* ShareClient.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE398D1A297D69A900DF218F /* ShareClient.framework */; };
  405. CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */; };
  406. CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */; };
  407. CE51DD1C2A01970900F163F7 /* ConnectIQ 2.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */; };
  408. CE51DD1D2A01970900F163F7 /* ConnectIQ 2.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  409. CE6B025728F350FF000C5502 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE6B025628F350FF000C5502 /* HealthKit.framework */; };
  410. CE7950242997D81700FA576E /* CGMSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7950232997D81700FA576E /* CGMSettingsView.swift */; };
  411. CE7950262998056D00FA576E /* CGMSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7950252998056D00FA576E /* CGMSetupView.swift */; };
  412. CE79502829980C9600FA576E /* CGMBLEKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE79502729980C9600FA576E /* CGMBLEKitUI.framework */; };
  413. CE79502A29980C9F00FA576E /* G7SensorKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE79502929980C9F00FA576E /* G7SensorKitUI.framework */; };
  414. CE79502B29980CAF00FA576E /* CGMBLEKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE79502729980C9600FA576E /* CGMBLEKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  415. CE79502C29980CB500FA576E /* G7SensorKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE79502929980C9F00FA576E /* G7SensorKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  416. CE79502E29980E4D00FA576E /* ShareClientUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE79502D29980E4D00FA576E /* ShareClientUI.framework */; };
  417. CE79502F29980E5800FA576E /* ShareClientUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE79502D29980E4D00FA576E /* ShareClientUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  418. CE7CA34E2A064973004BE681 /* AppShortcuts.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3432A064973004BE681 /* AppShortcuts.swift */; };
  419. CE7CA34F2A064973004BE681 /* BaseIntentsRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */; };
  420. CE7CA3502A064973004BE681 /* CancelTempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */; };
  421. CE7CA3512A064973004BE681 /* ApplyTempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */; };
  422. CE7CA3522A064973004BE681 /* ListTempPresetsIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3482A064973004BE681 /* ListTempPresetsIntent.swift */; };
  423. CE7CA3532A064973004BE681 /* tempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3492A064973004BE681 /* tempPresetIntent.swift */; };
  424. CE7CA3542A064973004BE681 /* TempPresetsIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */; };
  425. CE7CA3552A064973004BE681 /* ListStateIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34C2A064973004BE681 /* ListStateIntent.swift */; };
  426. CE7CA3562A064973004BE681 /* StateIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */; };
  427. CE7CA3582A064E2F004BE681 /* ListStateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3572A064E2F004BE681 /* ListStateView.swift */; };
  428. CE82E02528E867BA00473A9C /* AlertStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE82E02428E867BA00473A9C /* AlertStorage.swift */; };
  429. CE82E02728E869DF00473A9C /* AlertEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE82E02628E869DF00473A9C /* AlertEntry.swift */; };
  430. CE94597E29E9E1EE0047C9C6 /* GarminManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */; };
  431. CE94598029E9E3BD0047C9C6 /* WatchConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */; };
  432. CE94598229E9E3D30047C9C6 /* WatchConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */; };
  433. CE94598429E9E3E60047C9C6 /* WatchConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */; };
  434. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */; };
  435. CEA4F62329BE10F70011ADF7 /* SavitzkyGolayFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */; };
  436. CEB434DC28B8F5B900B70274 /* MKRingProgressView.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */; };
  437. CEB434DD28B8F5B900B70274 /* MKRingProgressView.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  438. CEB434DF28B8F5C400B70274 /* OmniBLE.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEB434DE28B8F5C400B70274 /* OmniBLE.framework */; };
  439. CEB434E028B8F5C400B70274 /* OmniBLE.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CEB434DE28B8F5C400B70274 /* OmniBLE.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  440. CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */; };
  441. CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E428B8FF5D00B70274 /* UIColor.swift */; };
  442. CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */; };
  443. CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; };
  444. CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
  445. CEC751D229D88257006E9D24 /* OmniKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC751D129D88257006E9D24 /* OmniKit.framework */; };
  446. CEC751D429D88257006E9D24 /* OmniKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC751D329D88257006E9D24 /* OmniKitUI.framework */; };
  447. CEC751D629D88262006E9D24 /* MinimedKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC751D529D88262006E9D24 /* MinimedKit.framework */; };
  448. CEC751D829D88262006E9D24 /* MinimedKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC751D729D88262006E9D24 /* MinimedKitUI.framework */; };
  449. CEC751D929D8827A006E9D24 /* OmniKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CEC751D129D88257006E9D24 /* OmniKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  450. CEC751DA29D8827A006E9D24 /* OmniKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CEC751D329D88257006E9D24 /* OmniKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  451. CEC751DB29D88280006E9D24 /* MinimedKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CEC751D529D88262006E9D24 /* MinimedKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  452. CEC751DC29D88280006E9D24 /* MinimedKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CEC751D729D88262006E9D24 /* MinimedKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  453. CECA4775298DA8310095139F /* DexcomSourceG5.swift in Sources */ = {isa = PBXBuildFile; fileRef = CECA4774298DA8310095139F /* DexcomSourceG5.swift */; };
  454. D2165E9D78EFF692C1DED1C6 /* AddTempTargetDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B8A42073A2D03A278914448 /* AddTempTargetDataFlow.swift */; };
  455. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */; };
  456. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */; };
  457. D76333C9256787610B3B4875 /* AutotuneConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */; };
  458. D8DA5CD12B49EEF000C54E6C /* SlideButton in Frameworks */ = {isa = PBXBuildFile; productRef = D8DA5CD02B49EEF000C54E6C /* SlideButton */; };
  459. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */; };
  460. DD399FB31EACB9343C944C4C /* PreferencesEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */; };
  461. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFD27368630002FF094 /* ServiceAssembly.swift */; };
  462. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFE27368630002FF094 /* SecurityAssembly.swift */; };
  463. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFF27368630002FF094 /* StorageAssembly.swift */; };
  464. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0027368630002FF094 /* UIAssembly.swift */; };
  465. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0127368630002FF094 /* APSAssembly.swift */; };
  466. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0227368630002FF094 /* NetworkAssembly.swift */; };
  467. E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */; };
  468. E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = E06B9119275B5EEA003C04B6 /* Array+Extension.swift */; };
  469. E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */; };
  470. E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */; };
  471. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */; };
  472. E25073BC86C11C3D6A42F5AC /* CalibrationsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47DFCE895C930F784EF11843 /* CalibrationsStateModel.swift */; };
  473. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */; };
  474. E3A08AAE59538BC8A8ABE477 /* NotificationsConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3260468377DA9DB4DEE9AF6D /* NotificationsConfigDataFlow.swift */; };
  475. E4984C5262A90469788754BB /* PreferencesEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */; };
  476. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */; };
  477. F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */; };
  478. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */; };
  479. F816825E28DB441200054060 /* HeartBeatManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F816825D28DB441200054060 /* HeartBeatManager.swift */; };
  480. F816826028DB441800054060 /* BluetoothTransmitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F816825F28DB441800054060 /* BluetoothTransmitter.swift */; };
  481. F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692A9274B7AAE0037068D /* HealthKitManager.swift */; };
  482. F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692CE274B999A0037068D /* HealthKitDataFlow.swift */; };
  483. F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D0274B99B60037068D /* HealthKitProvider.swift */; };
  484. F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */; };
  485. F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D5274B9A450037068D /* HealthKitStateModel.swift */; };
  486. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */; };
  487. FE41E4D429463C660047FD55 /* NightscoutStatistics.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE41E4D329463C660047FD55 /* NightscoutStatistics.swift */; };
  488. FE41E4D629463EE20047FD55 /* NightscoutPreferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */; };
  489. FE66D16B291F74F8005D6F77 /* Bundle+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */; };
  490. FEFA5C0F299F810B00765C17 /* Core_Data.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = FEFA5C0D299F810B00765C17 /* Core_Data.xcdatamodeld */; };
  491. FEFA5C11299F814A00765C17 /* CoreDataStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEFA5C10299F814A00765C17 /* CoreDataStack.swift */; };
  492. FEFFA7A22929FE49007B8193 /* UIDevice+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */; };
  493. /* End PBXBuildFile section */
  494. /* Begin PBXContainerItemProxy section */
  495. 38E8752627554D5700975559 /* PBXContainerItemProxy */ = {
  496. isa = PBXContainerItemProxy;
  497. containerPortal = 388E595025AD948C0019842D /* Project object */;
  498. proxyType = 1;
  499. remoteGlobalIDString = 38E8752327554D5700975559;
  500. remoteInfo = "FreeAPSWatch WatchKit Extension";
  501. };
  502. 38E8753A27554D5900975559 /* PBXContainerItemProxy */ = {
  503. isa = PBXContainerItemProxy;
  504. containerPortal = 388E595025AD948C0019842D /* Project object */;
  505. proxyType = 1;
  506. remoteGlobalIDString = 38E8751B27554D5500975559;
  507. remoteInfo = FreeAPSWatch;
  508. };
  509. 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */ = {
  510. isa = PBXContainerItemProxy;
  511. containerPortal = 388E595025AD948C0019842D /* Project object */;
  512. proxyType = 1;
  513. remoteGlobalIDString = 388E595725AD948C0019842D;
  514. remoteInfo = FreeAPS;
  515. };
  516. 6B1A8D262B14D91700E76752 /* PBXContainerItemProxy */ = {
  517. isa = PBXContainerItemProxy;
  518. containerPortal = 388E595025AD948C0019842D /* Project object */;
  519. proxyType = 1;
  520. remoteGlobalIDString = 6B1A8D162B14D91500E76752;
  521. remoteInfo = LiveActivityExtension;
  522. };
  523. /* End PBXContainerItemProxy section */
  524. /* Begin PBXCopyFilesBuildPhase section */
  525. 3821ECD025DC703C00BC42AD /* Embed Frameworks */ = {
  526. isa = PBXCopyFilesBuildPhase;
  527. buildActionMask = 2147483647;
  528. dstPath = "";
  529. dstSubfolderSpec = 10;
  530. files = (
  531. CEC751DB29D88280006E9D24 /* MinimedKit.framework in Embed Frameworks */,
  532. CEC751DC29D88280006E9D24 /* MinimedKitUI.framework in Embed Frameworks */,
  533. CEC751D929D8827A006E9D24 /* OmniKit.framework in Embed Frameworks */,
  534. CEC751DA29D8827A006E9D24 /* OmniKitUI.framework in Embed Frameworks */,
  535. CE79502F29980E5800FA576E /* ShareClientUI.framework in Embed Frameworks */,
  536. CE79502C29980CB500FA576E /* G7SensorKitUI.framework in Embed Frameworks */,
  537. CE51DD1D2A01970900F163F7 /* ConnectIQ 2.xcframework in Embed Frameworks */,
  538. CE79502B29980CAF00FA576E /* CGMBLEKitUI.framework in Embed Frameworks */,
  539. CE2FAD38297D69E1001A872C /* ShareClient.framework in Embed Frameworks */,
  540. CE398D19297C9EFD00DF218F /* G7SensorKit.framework in Embed Frameworks */,
  541. 3818AA6F274C26A500843DB3 /* RileyLinkKitUI.framework in Embed Frameworks */,
  542. 3818AA4B274C267100843DB3 /* CGMBLEKit.framework in Embed Frameworks */,
  543. CEB434E028B8F5C400B70274 /* OmniBLE.framework in Embed Frameworks */,
  544. CEB434DD28B8F5B900B70274 /* MKRingProgressView.framework in Embed Frameworks */,
  545. CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */,
  546. 3818AA6B274C26A500843DB3 /* RileyLinkBLEKit.framework in Embed Frameworks */,
  547. 3818AA59274C26A300843DB3 /* LoopKit.framework in Embed Frameworks */,
  548. 3818AA5B274C26A300843DB3 /* LoopKitUI.framework in Embed Frameworks */,
  549. 3818AA72274C278200843DB3 /* LoopTestingKit.framework in Embed Frameworks */,
  550. 3818AA6D274C26A500843DB3 /* RileyLinkKit.framework in Embed Frameworks */,
  551. 3818AA5D274C26A300843DB3 /* MockKit.framework in Embed Frameworks */,
  552. 3818AA5F274C26A300843DB3 /* MockKitUI.framework in Embed Frameworks */,
  553. );
  554. name = "Embed Frameworks";
  555. runOnlyForDeploymentPostprocessing = 0;
  556. };
  557. 38E8753D27554D5900975559 /* Embed Watch Content */ = {
  558. isa = PBXCopyFilesBuildPhase;
  559. buildActionMask = 2147483647;
  560. dstPath = "$(CONTENTS_FOLDER_PATH)/Watch";
  561. dstSubfolderSpec = 16;
  562. files = (
  563. 38E8753C27554D5900975559 /* FreeAPSWatch.app in Embed Watch Content */,
  564. );
  565. name = "Embed Watch Content";
  566. runOnlyForDeploymentPostprocessing = 0;
  567. };
  568. 38E8754027554D5900975559 /* Embed App Extensions */ = {
  569. isa = PBXCopyFilesBuildPhase;
  570. buildActionMask = 2147483647;
  571. dstPath = "";
  572. dstSubfolderSpec = 13;
  573. files = (
  574. 38E8752527554D5700975559 /* FreeAPSWatch WatchKit Extension.appex in Embed App Extensions */,
  575. );
  576. name = "Embed App Extensions";
  577. runOnlyForDeploymentPostprocessing = 0;
  578. };
  579. 6B1A8D122B14D88E00E76752 /* Embed Foundation Extensions */ = {
  580. isa = PBXCopyFilesBuildPhase;
  581. buildActionMask = 2147483647;
  582. dstPath = "";
  583. dstSubfolderSpec = 13;
  584. files = (
  585. 6B1A8D282B14D91700E76752 /* LiveActivityExtension.appex in Embed Foundation Extensions */,
  586. );
  587. name = "Embed Foundation Extensions";
  588. runOnlyForDeploymentPostprocessing = 0;
  589. };
  590. /* End PBXCopyFilesBuildPhase section */
  591. /* Begin PBXFileReference section */
  592. 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorDataFlow.swift; sourceTree = "<group>"; };
  593. 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorStateModel.swift; sourceTree = "<group>"; };
  594. 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorDataFlow.swift; sourceTree = "<group>"; };
  595. 19012CDB291D2CB900FB8210 /* LoopStats.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStats.swift; sourceTree = "<group>"; };
  596. 190EBCC329FF136900BA767D /* StatConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatConfigDataFlow.swift; sourceTree = "<group>"; };
  597. 190EBCC529FF138000BA767D /* StatConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatConfigProvider.swift; sourceTree = "<group>"; };
  598. 190EBCC729FF13AA00BA767D /* StatConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatConfigStateModel.swift; sourceTree = "<group>"; };
  599. 190EBCCA29FF13CB00BA767D /* StatConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatConfigRootView.swift; sourceTree = "<group>"; };
  600. 1918333A26ADA46800F45722 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
  601. 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutSettings.swift; sourceTree = "<group>"; };
  602. 1927C8E92744611700347C69 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  603. 1927C8EA2744611800347C69 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  604. 1927C8EB2744611900347C69 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  605. 1927C8EC2744611A00347C69 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  606. 1927C8ED2744611B00347C69 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  607. 1927C8EE2744611C00347C69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  608. 1927C8EF2744611D00347C69 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  609. 1927C8F02744611E00347C69 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  610. 1927C8F12744611E00347C69 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  611. 1927C8F22744611F00347C69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  612. 1927C8F32744612000347C69 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  613. 1927C8F42744612100347C69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  614. 1927C8F52744612100347C69 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  615. 1927C8F62744612200347C69 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  616. 1927C8F72744612300347C69 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  617. 1927C8F82744612400347C69 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  618. 1927C8F92744612400347C69 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  619. 1927C8FA2744612500347C69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  620. 1927C8FB2744612600347C69 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  621. 1927C8FE274489BA00347C69 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  622. 1935363F28496F7D001E0B16 /* Oref2_variables.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Oref2_variables.swift; sourceTree = "<group>"; };
  623. 193F6CDC2A512C8F001240FD /* Loops.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Loops.swift; sourceTree = "<group>"; };
  624. 1956FB202AFF79E200C7B4FF /* CoreDataStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataStorage.swift; sourceTree = "<group>"; };
  625. 195D80B32AF6973A00D25097 /* DynamicRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicRootView.swift; sourceTree = "<group>"; };
  626. 195D80B62AF697B800D25097 /* DynamicDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicDataFlow.swift; sourceTree = "<group>"; };
  627. 195D80B82AF697F700D25097 /* DynamicProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicProvider.swift; sourceTree = "<group>"; };
  628. 195D80BA2AF6980B00D25097 /* DynamicStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicStateModel.swift; sourceTree = "<group>"; };
  629. 1967DFBD29D052C200759F30 /* Icons.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Icons.swift; sourceTree = "<group>"; };
  630. 1967DFBF29D053AC00759F30 /* IconSelection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconSelection.swift; sourceTree = "<group>"; };
  631. 1967DFC129D053D300759F30 /* IconImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconImage.swift; sourceTree = "<group>"; };
  632. 1980131D29CC9839002FF024 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
  633. 198377D3266BFFF6004DE65E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  634. 198377D5266C0A05004DE65E /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
  635. 198377D6266C0A0A004DE65E /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  636. 198377D7266C0A15004DE65E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  637. 198377D8266C0A1C004DE65E /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  638. 198377D9266C0A21004DE65E /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  639. 198377DA266C0A2B004DE65E /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  640. 198377DB266C0A32004DE65E /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  641. 198377DC266C0A3C004DE65E /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
  642. 198377DD266C0A51004DE65E /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  643. 198377DE266C0A69004DE65E /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/Localizable.strings; sourceTree = "<group>"; };
  644. 198377DF266C0A7F004DE65E /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  645. 198377E0266C0AB5004DE65E /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  646. 198377E1266C0ABF004DE65E /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  647. 198377E2266C0AC8004DE65E /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  648. 198377E3266C0ADC004DE65E /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  649. 198377E4266C13D2004DE65E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
  650. 199561C0275E61A50077B976 /* HealthKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HealthKit.framework; path = Platforms/WatchOS.platform/Developer/SDKs/WatchOS8.0.sdk/System/Library/Frameworks/HealthKit.framework; sourceTree = DEVELOPER_DIR; };
  651. 199732B4271B72DD00129A3F /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  652. 199732B5271B9EE900129A3F /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  653. 19A9102F2A24BF6300C8951B /* StatsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatsView.swift; sourceTree = "<group>"; };
  654. 19A910352A24D6D700C8951B /* DateFilter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateFilter.swift; sourceTree = "<group>"; };
  655. 19A910372A24EF3200C8951B /* ChartsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChartsView.swift; sourceTree = "<group>"; };
  656. 19B0EF2028F6D66200069496 /* Statistics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Statistics.swift; sourceTree = "<group>"; };
  657. 19C166682756EFBD00ED12E3 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  658. 19C166692756EFBD00ED12E3 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
  659. 19D466A229AA2B80004D5F33 /* FPUConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FPUConfigDataFlow.swift; sourceTree = "<group>"; };
  660. 19D466A429AA2BD4004D5F33 /* FPUConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FPUConfigProvider.swift; sourceTree = "<group>"; };
  661. 19D466A629AA2C22004D5F33 /* FPUConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FPUConfigStateModel.swift; sourceTree = "<group>"; };
  662. 19D466A929AA3099004D5F33 /* FPUConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FPUConfigRootView.swift; sourceTree = "<group>"; };
  663. 19D4E4EA29FC6A9F00351451 /* Charts.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Charts.swift; sourceTree = "<group>"; };
  664. 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  665. 19DC677E29CA675700FD9EC4 /* OverrideProfilesDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideProfilesDataFlow.swift; sourceTree = "<group>"; };
  666. 19DC678029CA676A00FD9EC4 /* OverrideProfilesProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideProfilesProvider.swift; sourceTree = "<group>"; };
  667. 19DC678229CA677D00FD9EC4 /* OverrideProfilesStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideProfilesStateModel.swift; sourceTree = "<group>"; };
  668. 19DC678429CA67A400FD9EC4 /* OverrideProfilesRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideProfilesRootView.swift; sourceTree = "<group>"; };
  669. 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigDataFlow.swift; sourceTree = "<group>"; };
  670. 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigProvider.swift; sourceTree = "<group>"; };
  671. 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigStateModel.swift; sourceTree = "<group>"; };
  672. 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigRootWiew.swift; sourceTree = "<group>"; };
  673. 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatDataFlow.swift; sourceTree = "<group>"; };
  674. 19F95FF429F10FCF00314DDC /* StatProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatProvider.swift; sourceTree = "<group>"; };
  675. 19F95FF629F10FEE00314DDC /* StatStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatStateModel.swift; sourceTree = "<group>"; };
  676. 19F95FF929F1102A00314DDC /* StatRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatRootView.swift; sourceTree = "<group>"; };
  677. 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeProvider.swift; sourceTree = "<group>"; };
  678. 212E8BFE6D66EE65AA26A114 /* CalibrationsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsProvider.swift; sourceTree = "<group>"; };
  679. 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusStateModel.swift; sourceTree = "<group>"; };
  680. 22963BD06A9C83959D4914E4 /* NotificationsConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigRootView.swift; sourceTree = "<group>"; };
  681. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigRootView.swift; sourceTree = "<group>"; };
  682. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigDataFlow.swift; sourceTree = "<group>"; };
  683. 3260468377DA9DB4DEE9AF6D /* NotificationsConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigDataFlow.swift; sourceTree = "<group>"; };
  684. 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeDataFlow.swift; sourceTree = "<group>"; };
  685. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorStateModel.swift; sourceTree = "<group>"; };
  686. 3811DE0725C9D32E00A708ED /* BaseView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseView.swift; sourceTree = "<group>"; };
  687. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseProvider.swift; sourceTree = "<group>"; };
  688. 3811DE1525C9D40400A708ED /* Screen.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Screen.swift; sourceTree = "<group>"; };
  689. 3811DE1625C9D40400A708ED /* Router.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Router.swift; sourceTree = "<group>"; };
  690. 3811DE1C25C9D48300A708ED /* MainProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainProvider.swift; sourceTree = "<group>"; };
  691. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainDataFlow.swift; sourceTree = "<group>"; };
  692. 3811DE2025C9D48300A708ED /* MainRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainRootView.swift; sourceTree = "<group>"; };
  693. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeStateModel.swift; sourceTree = "<group>"; };
  694. 3811DE2925C9D49500A708ED /* HomeProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeProvider.swift; sourceTree = "<group>"; };
  695. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeDataFlow.swift; sourceTree = "<group>"; };
  696. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeRootView.swift; sourceTree = "<group>"; };
  697. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsStateModel.swift; sourceTree = "<group>"; };
  698. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsRootView.swift; sourceTree = "<group>"; };
  699. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsDataFlow.swift; sourceTree = "<group>"; };
  700. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsProvider.swift; sourceTree = "<group>"; };
  701. 3811DE5425C9D4D500A708ED /* Formatters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Formatters.swift; sourceTree = "<group>"; };
  702. 3811DE5525C9D4D500A708ED /* Publisher.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Publisher.swift; sourceTree = "<group>"; };
  703. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProgressBar.swift; sourceTree = "<group>"; };
  704. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewModifiers.swift; sourceTree = "<group>"; };
  705. 3811DE8E25C9D80400A708ED /* User.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = User.swift; sourceTree = "<group>"; };
  706. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppearanceManager.swift; sourceTree = "<group>"; };
  707. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HTTPResponseStatus.swift; sourceTree = "<group>"; };
  708. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NightscoutManager.swift; sourceTree = "<group>"; };
  709. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDefaults+Cache.swift"; sourceTree = "<group>"; };
  710. 3811DE9B25C9D88300A708ED /* Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Cache.swift; sourceTree = "<group>"; };
  711. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyValueStorage.swift; sourceTree = "<group>"; };
  712. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseKeychain.swift; sourceTree = "<group>"; };
  713. 3811DE9F25C9D88300A708ED /* Keychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Keychain.swift; sourceTree = "<group>"; };
  714. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeychainItemAccessibility.swift; sourceTree = "<group>"; };
  715. 3811DEA625C9D88300A708ED /* UnlockManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnlockManager.swift; sourceTree = "<group>"; };
  716. 3811DEC725C9DA7300A708ED /* FreeAPS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = FreeAPS.entitlements; sourceTree = "<group>"; };
  717. 3811DEE425CA063400A708ED /* Injected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Injected.swift; sourceTree = "<group>"; };
  718. 3811DEE625CA063400A708ED /* SyncAccess.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SyncAccess.swift; sourceTree = "<group>"; };
  719. 3811DEE725CA063400A708ED /* PersistedProperty.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PersistedProperty.swift; sourceTree = "<group>"; };
  720. 3811DF0125CA9FEA00A708ED /* Credentials.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Credentials.swift; sourceTree = "<group>"; };
  721. 3811DF0F25CAAAE200A708ED /* APSManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = APSManager.swift; sourceTree = "<group>"; };
  722. 3818AA42274BBC1100843DB3 /* ConfigOverride.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = ConfigOverride.xcconfig; sourceTree = "<group>"; };
  723. 3818AA45274C229000843DB3 /* LibreTransmitter */ = {isa = PBXFileReference; lastKnownFileType = folder; name = LibreTransmitter; path = Dependencies/LibreTransmitter; sourceTree = "<group>"; };
  724. 3818AA49274C267000843DB3 /* CGMBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  725. 3818AA4C274C26A300843DB3 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  726. 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  727. 3818AA4E274C26A300843DB3 /* MockKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  728. 3818AA4F274C26A300843DB3 /* MockKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  729. 3818AA51274C26A300843DB3 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  730. 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  731. 3818AA53274C26A300843DB3 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  732. 3818AA54274C26A300843DB3 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  733. 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  734. 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  735. 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  736. 3818AA70274C278200843DB3 /* LoopTestingKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopTestingKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  737. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReachabilityManager.swift; sourceTree = "<group>"; };
  738. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchTreatmentsManager.swift; sourceTree = "<group>"; };
  739. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConvenienceExtensions.swift; sourceTree = "<group>"; };
  740. 3821ED4B25DD18BA00BC42AD /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
  741. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinSensitivities.swift; sourceTree = "<group>"; };
  742. 382C134A25F14E3700715CE1 /* BGTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGTargets.swift; sourceTree = "<group>"; };
  743. 383420D525FFE38C002D46C1 /* LoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopView.swift; sourceTree = "<group>"; };
  744. 383420D825FFEB3F002D46C1 /* Popup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Popup.swift; sourceTree = "<group>"; };
  745. 383948D525CD4D8900E91849 /* FileStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorage.swift; sourceTree = "<group>"; };
  746. 383948D925CD64D500E91849 /* Glucose.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Glucose.swift; sourceTree = "<group>"; };
  747. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JavaScriptWorker.swift; sourceTree = "<group>"; };
  748. 384E803725C388640086DB71 /* Script.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Script.swift; sourceTree = "<group>"; };
  749. 38569344270B5DFA0002C50D /* CGMType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMType.swift; sourceTree = "<group>"; };
  750. 38569345270B5DFA0002C50D /* GlucoseSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucoseSource.swift; sourceTree = "<group>"; };
  751. 38569346270B5DFB0002C50D /* AppGroupSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppGroupSource.swift; sourceTree = "<group>"; };
  752. 38569352270B5E350002C50D /* CGMRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMRootView.swift; sourceTree = "<group>"; };
  753. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutStatus.swift; sourceTree = "<group>"; };
  754. 385CEAC025F2EA52002D6D5B /* Announcement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Announcement.swift; sourceTree = "<group>"; };
  755. 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnnouncementsStorage.swift; sourceTree = "<group>"; };
  756. 3862CC04273D152B00BF832C /* CalibrationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationService.swift; sourceTree = "<group>"; };
  757. 3862CC1E273FDC9200BF832C /* CalibrationsChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationsChart.swift; sourceTree = "<group>"; };
  758. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarManager.swift; sourceTree = "<group>"; };
  759. 386A124E271707F000DDC61C /* DexcomSourceG6.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DexcomSourceG6.swift; sourceTree = "<group>"; };
  760. 3870FF4225EC13F40088248F /* BloodGlucose.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BloodGlucose.swift; sourceTree = "<group>"; };
  761. 3871F38625ED661C0013ECB5 /* Suggestion.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Suggestion.swift; sourceTree = "<group>"; };
  762. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTarget.swift; sourceTree = "<group>"; };
  763. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Decimal+Extensions.swift"; sourceTree = "<group>"; };
  764. 3883581B25EE79BB00E024B2 /* DecimalTextField.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DecimalTextField.swift; sourceTree = "<group>"; };
  765. 3883583325EEB38000E024B2 /* PumpSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettings.swift; sourceTree = "<group>"; };
  766. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasalProfileEntry.swift; sourceTree = "<group>"; };
  767. 38887CCD25F5725200944304 /* IOBEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOBEntry.swift; sourceTree = "<group>"; };
  768. 388E595825AD948C0019842D /* FreeAPS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FreeAPS.app; sourceTree = BUILT_PRODUCTS_DIR; };
  769. 388E595B25AD948C0019842D /* FreeAPSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSApp.swift; sourceTree = "<group>"; };
  770. 388E596425AD948E0019842D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  771. 388E596B25AD95110019842D /* OpenAPS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPS.swift; sourceTree = "<group>"; };
  772. 388E596E25AD96040019842D /* javascript */ = {isa = PBXFileReference; lastKnownFileType = folder; path = javascript; sourceTree = "<group>"; };
  773. 388E597125AD9CF10019842D /* json */ = {isa = PBXFileReference; lastKnownFileType = folder; path = json; sourceTree = "<group>"; };
  774. 388E5A5B25B6F0770019842D /* JSON.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSON.swift; sourceTree = "<group>"; };
  775. 388E5A5F25B6F2310019842D /* Autosens.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autosens.swift; sourceTree = "<group>"; };
  776. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutTreatment.swift; sourceTree = "<group>"; };
  777. 389487392614928B004DF424 /* DispatchTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DispatchTimer.swift; sourceTree = "<group>"; };
  778. 3895E4C525B9E00D00214B37 /* Preferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Preferences.swift; sourceTree = "<group>"; };
  779. 389A571F26079BAA00BC102F /* Interpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Interpolation.swift; sourceTree = "<group>"; };
  780. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Snapshot.swift"; sourceTree = "<group>"; };
  781. 389ECE042601144100D86C4F /* ConcurrentMap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConcurrentMap.swift; sourceTree = "<group>"; };
  782. 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autotune.swift; sourceTree = "<group>"; };
  783. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LRUCache.swift; sourceTree = "<group>"; };
  784. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseStorage.swift; sourceTree = "<group>"; };
  785. 38A0364125ED069400FCBB52 /* TempBasal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempBasal.swift; sourceTree = "<group>"; };
  786. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryEvent.swift; sourceTree = "<group>"; };
  787. 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchAnnouncementsManager.swift; sourceTree = "<group>"; };
  788. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDefaultsExtensions.swift; sourceTree = "<group>"; };
  789. 38A9260425F012D8009E3739 /* CarbRatios.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbRatios.swift; sourceTree = "<group>"; };
  790. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CurrentGlucoseView.swift; sourceTree = "<group>"; };
  791. 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSSettings.swift; sourceTree = "<group>"; };
  792. 38AEE75125F022080013F05B /* SettingsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsManager.swift; sourceTree = "<group>"; };
  793. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsStorage.swift; sourceTree = "<group>"; };
  794. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IndexedCollection.swift; sourceTree = "<group>"; };
  795. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSetupView.swift; sourceTree = "<group>"; };
  796. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationCenter.swift; sourceTree = "<group>"; };
  797. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftNotificationCenter.swift; sourceTree = "<group>"; };
  798. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WeakObjectSet.swift; sourceTree = "<group>"; };
  799. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Broadcaster.swift; sourceTree = "<group>"; };
  800. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpManagerExtensions.swift; sourceTree = "<group>"; };
  801. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettingsView.swift; sourceTree = "<group>"; };
  802. 38BF021C25E7E3AF00579895 /* Reservoir.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Reservoir.swift; sourceTree = "<group>"; };
  803. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceDataManager.swift; sourceTree = "<group>"; };
  804. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+Extensions.swift"; sourceTree = "<group>"; };
  805. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSObject+AssociatedValues.swift"; sourceTree = "<group>"; };
  806. 38D0B3B525EBE24900CB6E88 /* Battery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Battery.swift; sourceTree = "<group>"; };
  807. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsEntry.swift; sourceTree = "<group>"; };
  808. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpView.swift; sourceTree = "<group>"; };
  809. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchGlucoseManager.swift; sourceTree = "<group>"; };
  810. 38DF1785276A73D400B3528F /* TagCloudView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TagCloudView.swift; sourceTree = "<group>"; };
  811. 38DF178B27733E6800B3528F /* snow.sks */ = {isa = PBXFileReference; lastKnownFileType = file.sks; path = snow.sks; sourceTree = "<group>"; };
  812. 38DF178C27733E6800B3528F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  813. 38DF178F27733EAD00B3528F /* SnowScene.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnowScene.swift; sourceTree = "<group>"; };
  814. 38E4451D274DB04600EC9A94 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  815. 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkReachabilityManager.swift; sourceTree = "<group>"; };
  816. 38E44527274E401C00EC9A94 /* Protected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Protected.swift; sourceTree = "<group>"; };
  817. 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+InternalHelpers.swift"; sourceTree = "<group>"; };
  818. 38E4452B274E411600EC9A94 /* Disk+Data.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Data.swift"; sourceTree = "<group>"; };
  819. 38E4452C274E411600EC9A94 /* Disk.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Disk.swift; sourceTree = "<group>"; };
  820. 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Helpers.swift"; sourceTree = "<group>"; };
  821. 38E4452E274E411600EC9A94 /* Disk+[Data].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[Data].swift"; sourceTree = "<group>"; };
  822. 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+UIImage.swift"; sourceTree = "<group>"; };
  823. 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[UIImage].swift"; sourceTree = "<group>"; };
  824. 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+VolumeInformation.swift"; sourceTree = "<group>"; };
  825. 38E44532274E411700EC9A94 /* Disk+Codable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Codable.swift"; sourceTree = "<group>"; };
  826. 38E44533274E411700EC9A94 /* Disk+Errors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Errors.swift"; sourceTree = "<group>"; };
  827. 38E873FD274F761800975559 /* CoreNFC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreNFC.framework; path = System/Library/Frameworks/CoreNFC.framework; sourceTree = SDKROOT; };
  828. 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libswiftCoreNFC.tbd; path = usr/lib/swift/libswiftCoreNFC.tbd; sourceTree = SDKROOT; };
  829. 38E87407274F9AD000975559 /* UserNotificationsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserNotificationsManager.swift; sourceTree = "<group>"; };
  830. 38E8751C27554D5500975559 /* FreeAPSWatch.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FreeAPSWatch.app; sourceTree = BUILT_PRODUCTS_DIR; };
  831. 38E8751E27554D5700975559 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  832. 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "FreeAPSWatch WatchKit Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  833. 38E8752927554D5700975559 /* FreeAPSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSApp.swift; sourceTree = "<group>"; };
  834. 38E8752B27554D5700975559 /* MainView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainView.swift; sourceTree = "<group>"; };
  835. 38E8752D27554D5700975559 /* NotificationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationController.swift; sourceTree = "<group>"; };
  836. 38E8752F27554D5700975559 /* NotificationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationView.swift; sourceTree = "<group>"; };
  837. 38E8753127554D5700975559 /* ComplicationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComplicationController.swift; sourceTree = "<group>"; };
  838. 38E8753327554D5800975559 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  839. 38E8753627554D5800975559 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
  840. 38E8753827554D5900975559 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  841. 38E8753927554D5900975559 /* PushNotificationPayload.apns */ = {isa = PBXFileReference; lastKnownFileType = text; path = PushNotificationPayload.apns; sourceTree = "<group>"; };
  842. 38E87549275550BB00975559 /* CarbsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsView.swift; sourceTree = "<group>"; };
  843. 38E8754B2755548F00975559 /* WatchStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchStateModel.swift; sourceTree = "<group>"; };
  844. 38E8754E275556FA00975559 /* WatchManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchManager.swift; sourceTree = "<group>"; };
  845. 38E8755027555D0500975559 /* DataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataFlow.swift; sourceTree = "<group>"; };
  846. 38E8755527564B5000975559 /* FreeAPSWatch WatchKit Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "FreeAPSWatch WatchKit Extension.entitlements"; sourceTree = "<group>"; };
  847. 38E8755627564B6100975559 /* FreeAPSWatch.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = FreeAPSWatch.entitlements; sourceTree = "<group>"; };
  848. 38E8755A27568A6700975559 /* ConfirmationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConfirmationView.swift; sourceTree = "<group>"; };
  849. 38E8757A2757B1C300975559 /* TempTargetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetsView.swift; sourceTree = "<group>"; };
  850. 38E8757C2757C45D00975559 /* BolusView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusView.swift; sourceTree = "<group>"; };
  851. 38E8757F27595DC500975559 /* BolusConfirmationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusConfirmationView.swift; sourceTree = "<group>"; };
  852. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpStatus.swift; sourceTree = "<group>"; };
  853. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Signpost.swift; sourceTree = "<group>"; };
  854. 38E98A1C25F52C9300C0CED0 /* Logger.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Logger.swift; sourceTree = "<group>"; };
  855. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IssueReporter.swift; sourceTree = "<group>"; };
  856. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CollectionIssueReporter.swift; sourceTree = "<group>"; };
  857. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Error+Extensions.swift"; sourceTree = "<group>"; };
  858. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSLocking+Extensions.swift"; sourceTree = "<group>"; };
  859. 38E98A2F25F52FF700C0CED0 /* Config.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Config.swift; sourceTree = "<group>"; };
  860. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extensions.swift"; sourceTree = "<group>"; };
  861. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleLogReporter.swift; sourceTree = "<group>"; };
  862. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusProgressViewStyle.swift; sourceTree = "<group>"; };
  863. 38F37827261260DC009DB701 /* Color+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Color+Extensions.swift"; sourceTree = "<group>"; };
  864. 38F3783A2613555C009DB701 /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
  865. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetsStorage.swift; sourceTree = "<group>"; };
  866. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MD5.swift; sourceTree = "<group>"; };
  867. 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FreeAPSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  868. 38FCF3F125E9028E0078B0D1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  869. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorageTests.swift; sourceTree = "<group>"; };
  870. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryStorage.swift; sourceTree = "<group>"; };
  871. 38FE826925CC82DB001FF17A /* NetworkService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkService.swift; sourceTree = "<group>"; };
  872. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutAPI.swift; sourceTree = "<group>"; };
  873. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseStateModel.swift; sourceTree = "<group>"; };
  874. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainStateModel.swift; sourceTree = "<group>"; };
  875. 38FEF3FD2738083E00574A46 /* CGMProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMProvider.swift; sourceTree = "<group>"; };
  876. 38FEF407273B011A00574A46 /* LibreTransmitterSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LibreTransmitterSource.swift; sourceTree = "<group>"; };
  877. 38FEF412273B317A00574A46 /* HKUnit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HKUnit.swift; sourceTree = "<group>"; };
  878. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorProvider.swift; sourceTree = "<group>"; };
  879. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigProvider.swift; sourceTree = "<group>"; };
  880. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigStateModel.swift; sourceTree = "<group>"; };
  881. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorDataFlow.swift; sourceTree = "<group>"; };
  882. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorProvider.swift; sourceTree = "<group>"; };
  883. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorProvider.swift; sourceTree = "<group>"; };
  884. 47DFCE895C930F784EF11843 /* CalibrationsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsStateModel.swift; sourceTree = "<group>"; };
  885. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorRootView.swift; sourceTree = "<group>"; };
  886. 500371C09F54F89A97D65FDB /* CalibrationsRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsRootView.swift; sourceTree = "<group>"; };
  887. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorStateModel.swift; sourceTree = "<group>"; };
  888. 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DebuggingIdentifiers.swift; sourceTree = "<group>"; };
  889. 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSPredicates.swift; sourceTree = "<group>"; };
  890. 581AC4382BE22ED10038760C /* JSONConverter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSONConverter.swift; sourceTree = "<group>"; };
  891. 581F7FB12BE7B2A0005A5F89 /* BolusStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BolusStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  892. 581F7FB22BE7B2A0005A5F89 /* BolusStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BolusStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  893. 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PopupView.swift; sourceTree = "<group>"; };
  894. 5825D1062BD4058F00F36E9B /* BGaverages+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BGaverages+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  895. 5825D1072BD4058F00F36E9B /* BGaverages+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BGaverages+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  896. 5825D1082BD4058F00F36E9B /* BGmedian+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BGmedian+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  897. 5825D1092BD4058F00F36E9B /* BGmedian+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BGmedian+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  898. 5825D10C2BD4058F00F36E9B /* LoopStatRecord+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopStatRecord+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  899. 5825D10D2BD4058F00F36E9B /* LoopStatRecord+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopStatRecord+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  900. 5825D10E2BD4058F00F36E9B /* ImportError+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ImportError+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  901. 5825D10F2BD4058F00F36E9B /* ImportError+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ImportError+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  902. 5825D1102BD4058F00F36E9B /* TDD+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TDD+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  903. 5825D1112BD4058F00F36E9B /* TDD+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TDD+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  904. 5825D1122BD4058F00F36E9B /* TempTargetsSlider+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetsSlider+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  905. 5825D1132BD4058F00F36E9B /* TempTargetsSlider+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetsSlider+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  906. 5825D1142BD4058F00F36E9B /* Presets+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Presets+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  907. 5825D1152BD4058F00F36E9B /* Presets+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Presets+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  908. 5825D1162BD4058F00F36E9B /* Autosens_+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Autosens_+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  909. 5825D1172BD4058F00F36E9B /* Autosens_+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Autosens_+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  910. 5825D1182BD4058F00F36E9B /* Oref0Suggestion+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Oref0Suggestion+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  911. 5825D1192BD4058F00F36E9B /* Oref0Suggestion+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Oref0Suggestion+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  912. 5825D11A2BD4058F00F36E9B /* Override+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Override+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  913. 5825D11B2BD4058F00F36E9B /* Override+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Override+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  914. 5825D11C2BD4058F00F36E9B /* OrefDetermination+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OrefDetermination+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  915. 5825D11D2BD4058F00F36E9B /* OrefDetermination+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OrefDetermination+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  916. 5825D11E2BD4058F00F36E9B /* TempTargets+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargets+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  917. 5825D11F2BD4058F00F36E9B /* TempTargets+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargets+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  918. 5825D1202BD4058F00F36E9B /* HbA1c+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "HbA1c+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  919. 5825D1212BD4058F00F36E9B /* HbA1c+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "HbA1c+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  920. 5825D1222BD4058F00F36E9B /* InsulinDistribution+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "InsulinDistribution+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  921. 5825D1232BD4058F00F36E9B /* InsulinDistribution+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "InsulinDistribution+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  922. 5825D1242BD4058F00F36E9B /* LastLoop+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LastLoop+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  923. 5825D1252BD4058F00F36E9B /* LastLoop+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LastLoop+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  924. 5825D1262BD4058F00F36E9B /* CarbEntryStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  925. 5825D1272BD4058F00F36E9B /* CarbEntryStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  926. 5825D1282BD4058F00F36E9B /* Autotune_+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Autotune_+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  927. 5825D1292BD4058F00F36E9B /* Autotune_+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Autotune_+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  928. 5825D12A2BD4058F00F36E9B /* StatsData+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "StatsData+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  929. 5825D12B2BD4058F00F36E9B /* StatsData+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "StatsData+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  930. 5825D12C2BD4058F00F36E9B /* OverridePresets+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverridePresets+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  931. 5825D12D2BD4058F00F36E9B /* OverridePresets+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverridePresets+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  932. 5825D12E2BD4058F00F36E9B /* Target+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Target+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  933. 5825D12F2BD4058F00F36E9B /* Target+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Target+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  934. 5825D1302BD4058F00F36E9B /* Protein+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Protein+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  935. 5825D1312BD4058F00F36E9B /* Protein+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Protein+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  936. 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+helper.swift"; sourceTree = "<group>"; };
  937. 583684072BD195A700070A60 /* Determination.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Determination.swift; sourceTree = "<group>"; };
  938. 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+helper.swift"; sourceTree = "<group>"; };
  939. 5856174B2BDADA3F009B23D7 /* GlucoseStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  940. 5856174C2BDADA3F009B23D7 /* GlucoseStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  941. 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEvent+helper.swift"; sourceTree = "<group>"; };
  942. 585E2CAF2BE7DA03006ECF1A /* TempBasalStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempBasalStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  943. 585E2CB02BE7DA03006ECF1A /* TempBasalStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempBasalStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  944. 585E2CB12BE7DA03006ECF1A /* PumpEventStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEventStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  945. 585E2CB22BE7DA03006ECF1A /* PumpEventStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEventStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  946. 587DA1F52B77F3DD00B28F8A /* SettingsRowView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsRowView.swift; sourceTree = "<group>"; };
  947. 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPSBattery.swift; sourceTree = "<group>"; };
  948. 588752822BD9986A008B081D /* OpenAPS_Battery+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OpenAPS_Battery+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  949. 588752832BD9986A008B081D /* OpenAPS_Battery+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OpenAPS_Battery+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  950. 58F107732BD1A4D000B1A680 /* Determination+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Determination+helper.swift"; sourceTree = "<group>"; };
  951. 5B8A42073A2D03A278914448 /* AddTempTargetDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetDataFlow.swift; sourceTree = "<group>"; };
  952. 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMStateModel.swift; sourceTree = "<group>"; };
  953. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorStateModel.swift; sourceTree = "<group>"; };
  954. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableProvider.swift; sourceTree = "<group>"; };
  955. 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorStateModel.swift; sourceTree = "<group>"; };
  956. 66A5B83E7967C38F7CBD883C /* LibreConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigDataFlow.swift; sourceTree = "<group>"; };
  957. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorDataFlow.swift; sourceTree = "<group>"; };
  958. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalProvider.swift; sourceTree = "<group>"; };
  959. 6B1A8D012B14D88B00E76752 /* UniformTypeIdentifiers.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UniformTypeIdentifiers.framework; path = System/Library/Frameworks/UniformTypeIdentifiers.framework; sourceTree = SDKROOT; };
  960. 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = LiveActivityExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  961. 6B1A8D182B14D91600E76752 /* WidgetKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WidgetKit.framework; path = System/Library/Frameworks/WidgetKit.framework; sourceTree = SDKROOT; };
  962. 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftUI.framework; path = System/Library/Frameworks/SwiftUI.framework; sourceTree = SDKROOT; };
  963. 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityBundle.swift; sourceTree = "<group>"; };
  964. 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivity.swift; sourceTree = "<group>"; };
  965. 6B1A8D232B14D91700E76752 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  966. 6B1A8D252B14D91700E76752 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  967. 6B1A8D2D2B156EEF00E76752 /* LiveActivityBridge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityBridge.swift; sourceTree = "<group>"; };
  968. 6BCF84DC2B16843A003AD46E /* LiveActitiyShared.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActitiyShared.swift; sourceTree = "<group>"; };
  969. 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorProvider.swift; sourceTree = "<group>"; };
  970. 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorStateModel.swift; sourceTree = "<group>"; };
  971. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorDataFlow.swift; sourceTree = "<group>"; };
  972. 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorDataFlow.swift; sourceTree = "<group>"; };
  973. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigRootView.swift; sourceTree = "<group>"; };
  974. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableRootView.swift; sourceTree = "<group>"; };
  975. 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorRootView.swift; sourceTree = "<group>"; };
  976. 8C3B5FD881CA45DFDEE0EDA9 /* AddTempTargetStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetStateModel.swift; sourceTree = "<group>"; };
  977. 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigRootView.swift; sourceTree = "<group>"; };
  978. 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigDataFlow.swift; sourceTree = "<group>"; };
  979. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorRootView.swift; sourceTree = "<group>"; };
  980. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableStateModel.swift; sourceTree = "<group>"; };
  981. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalDataFlow.swift; sourceTree = "<group>"; };
  982. 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorProvider.swift; sourceTree = "<group>"; };
  983. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorProvider.swift; sourceTree = "<group>"; };
  984. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigStateModel.swift; sourceTree = "<group>"; };
  985. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableDataFlow.swift; sourceTree = "<group>"; };
  986. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigProvider.swift; sourceTree = "<group>"; };
  987. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorStateModel.swift; sourceTree = "<group>"; };
  988. AEE53A13D26F101B332EFFC8 /* AddTempTargetProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetProvider.swift; sourceTree = "<group>"; };
  989. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigDataFlow.swift; sourceTree = "<group>"; };
  990. B5822B15939E719628E9FF7C /* SnoozeRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeRootView.swift; sourceTree = "<group>"; };
  991. B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigProvider.swift; sourceTree = "<group>"; };
  992. B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorRootView.swift; sourceTree = "<group>"; };
  993. B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMDataFlow.swift; sourceTree = "<group>"; };
  994. B9CAAEFB2AE70836000F68BC /* branch.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = branch.txt; sourceTree = SOURCE_ROOT; };
  995. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorDataFlow.swift; sourceTree = "<group>"; };
  996. BC210C0F3CB6D3C86E5DED4E /* LibreConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigRootView.swift; sourceTree = "<group>"; };
  997. BD1661302B82ADAB00256551 /* CustomProgressView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomProgressView.swift; sourceTree = "<group>"; };
  998. BD188BEB2B1B805A00B183BF /* WidgetBobble.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WidgetBobble.swift; sourceTree = "<group>"; };
  999. BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CheckboxToggleStyle.swift; sourceTree = "<group>"; };
  1000. BD3CC0712B0B89D50013189E /* MainChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainChartView.swift; sourceTree = "<group>"; };
  1001. BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigDataFlow.swift; sourceTree = "<group>"; };
  1002. BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigProvider.swift; sourceTree = "<group>"; };
  1003. BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorStateModel.swift; sourceTree = "<group>"; };
  1004. BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigRootView.swift; sourceTree = "<group>"; };
  1005. BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LockScreenView.swift; sourceTree = "<group>"; };
  1006. BDFD16592AE40438007F0DDA /* BolusRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusRootView.swift; sourceTree = "<group>"; };
  1007. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorRootView.swift; sourceTree = "<group>"; };
  1008. C19984D62EFC0035A9E9644D /* BolusProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusProvider.swift; sourceTree = "<group>"; };
  1009. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalRootView.swift; sourceTree = "<group>"; };
  1010. C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusDataFlow.swift; sourceTree = "<group>"; };
  1011. CC41E2992B1E1F460070974F /* HistoryLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HistoryLayout.swift; sourceTree = "<group>"; };
  1012. CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RawFetchedProfile.swift; sourceTree = "<group>"; };
  1013. CC76E9482BD471BA008BEB61 /* Forecast+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1014. CC76E9492BD471BA008BEB61 /* Forecast+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1015. CC76E94A2BD471BA008BEB61 /* ForecastValue+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ForecastValue+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1016. CC76E94B2BD471BA008BEB61 /* ForecastValue+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ForecastValue+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1017. CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+helper.swift"; sourceTree = "<group>"; };
  1018. CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddCarbPresetIntent.swift; sourceTree = "<group>"; };
  1019. CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbPresetIntentRequest.swift; sourceTree = "<group>"; };
  1020. CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BloodGlucoseExtensions.swift; sourceTree = "<group>"; };
  1021. CE398D012977349800DF218F /* CryptoKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CryptoKit.framework; path = System/Library/Frameworks/CryptoKit.framework; sourceTree = SDKROOT; };
  1022. CE398D15297C9D1D00DF218F /* dexcomSourceG7.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = dexcomSourceG7.swift; sourceTree = "<group>"; };
  1023. CE398D17297C9EE800DF218F /* G7SensorKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1024. CE398D1A297D69A900DF218F /* ShareClient.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ShareClient.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1025. CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniBLEPumpManagerExtensions.swift; sourceTree = "<group>"; };
  1026. CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniPodManagerExtensions.swift; sourceTree = "<group>"; };
  1027. CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = "ConnectIQ 2.xcframework"; path = "Dependencies/ConnectIQ 2.xcframework"; sourceTree = "<group>"; };
  1028. CE6B025628F350FF000C5502 /* HealthKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HealthKit.framework; path = Platforms/WatchOS.platform/Developer/SDKs/WatchOS9.1.sdk/System/Library/Frameworks/HealthKit.framework; sourceTree = DEVELOPER_DIR; };
  1029. CE7950232997D81700FA576E /* CGMSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMSettingsView.swift; sourceTree = "<group>"; };
  1030. CE7950252998056D00FA576E /* CGMSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMSetupView.swift; sourceTree = "<group>"; };
  1031. CE79502729980C9600FA576E /* CGMBLEKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1032. CE79502929980C9F00FA576E /* G7SensorKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1033. CE79502D29980E4D00FA576E /* ShareClientUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ShareClientUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1034. CE7CA3432A064973004BE681 /* AppShortcuts.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppShortcuts.swift; sourceTree = "<group>"; };
  1035. CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseIntentsRequest.swift; sourceTree = "<group>"; };
  1036. CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CancelTempPresetIntent.swift; sourceTree = "<group>"; };
  1037. CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApplyTempPresetIntent.swift; sourceTree = "<group>"; };
  1038. CE7CA3482A064973004BE681 /* ListTempPresetsIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListTempPresetsIntent.swift; sourceTree = "<group>"; };
  1039. CE7CA3492A064973004BE681 /* tempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = tempPresetIntent.swift; sourceTree = "<group>"; };
  1040. CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TempPresetsIntentRequest.swift; sourceTree = "<group>"; };
  1041. CE7CA34C2A064973004BE681 /* ListStateIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListStateIntent.swift; sourceTree = "<group>"; };
  1042. CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StateIntentRequest.swift; sourceTree = "<group>"; };
  1043. CE7CA3572A064E2F004BE681 /* ListStateView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ListStateView.swift; sourceTree = "<group>"; };
  1044. CE82E02428E867BA00473A9C /* AlertStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertStorage.swift; sourceTree = "<group>"; };
  1045. CE82E02628E869DF00473A9C /* AlertEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertEntry.swift; sourceTree = "<group>"; };
  1046. CE94597929E9DF7B0047C9C6 /* ConnectIQ.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ConnectIQ.framework; path = "Dependencies/ios-armv7_arm64/ConnectIQ.framework"; sourceTree = "<group>"; };
  1047. CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GarminManager.swift; sourceTree = "<group>"; };
  1048. CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigDataFlow.swift; sourceTree = "<group>"; };
  1049. CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigProvider.swift; sourceTree = "<group>"; };
  1050. CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigStateModel.swift; sourceTree = "<group>"; };
  1051. CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigRootView.swift; sourceTree = "<group>"; };
  1052. CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SavitzkyGolayFilter.swift; sourceTree = "<group>"; };
  1053. CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MKRingProgressView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1054. CEB434DE28B8F5C400B70274 /* OmniBLE.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniBLE.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1055. CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BluetoothStateManager.swift; sourceTree = "<group>"; };
  1056. CEB434E428B8FF5D00B70274 /* UIColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIColor.swift; sourceTree = "<group>"; };
  1057. CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopUIColorPalette+Default.swift"; sourceTree = "<group>"; };
  1058. CEC751D129D88257006E9D24 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1059. CEC751D329D88257006E9D24 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1060. CEC751D529D88262006E9D24 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1061. CEC751D729D88262006E9D24 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1062. CECA4774298DA8310095139F /* DexcomSourceG5.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DexcomSourceG5.swift; sourceTree = "<group>"; };
  1063. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalStateModel.swift; sourceTree = "<group>"; };
  1064. D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorRootView.swift; sourceTree = "<group>"; };
  1065. D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigStateModel.swift; sourceTree = "<group>"; };
  1066. D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorProvider.swift; sourceTree = "<group>"; };
  1067. DA241FB1663EC96FDBE64C8A /* CalibrationsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsDataFlow.swift; sourceTree = "<group>"; };
  1068. DC2C6489D29ECCCAD78E0721 /* NotificationsConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigStateModel.swift; sourceTree = "<group>"; };
  1069. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ServiceAssembly.swift; sourceTree = "<group>"; };
  1070. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SecurityAssembly.swift; sourceTree = "<group>"; };
  1071. E00EEBFF27368630002FF094 /* StorageAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StorageAssembly.swift; sourceTree = "<group>"; };
  1072. E00EEC0027368630002FF094 /* UIAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIAssembly.swift; sourceTree = "<group>"; };
  1073. E00EEC0127368630002FF094 /* APSAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = APSAssembly.swift; sourceTree = "<group>"; };
  1074. E00EEC0227368630002FF094 /* NetworkAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkAssembly.swift; sourceTree = "<group>"; };
  1075. E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSimulatorSource.swift; sourceTree = "<group>"; };
  1076. E06B9119275B5EEA003C04B6 /* Array+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Array+Extension.swift"; sourceTree = "<group>"; };
  1077. E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HealthKit.framework; path = System/Library/Frameworks/HealthKit.framework; sourceTree = SDKROOT; };
  1078. E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitSample.swift; sourceTree = "<group>"; };
  1079. E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeStateModel.swift; sourceTree = "<group>"; };
  1080. E2EBA7C03C26FCC67E16D798 /* LibreConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigProvider.swift; sourceTree = "<group>"; };
  1081. E625985B47742D498CB1681A /* NotificationsConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigProvider.swift; sourceTree = "<group>"; };
  1082. E68CDC1E5C438D1BEAD4CF24 /* LibreConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigStateModel.swift; sourceTree = "<group>"; };
  1083. E9AAB83FB6C3B41EFD1846A0 /* AddTempTargetRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetRootView.swift; sourceTree = "<group>"; };
  1084. F816825D28DB441200054060 /* HeartBeatManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HeartBeatManager.swift; sourceTree = "<group>"; };
  1085. F816825F28DB441800054060 /* BluetoothTransmitter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BluetoothTransmitter.swift; sourceTree = "<group>"; };
  1086. F90692A9274B7AAE0037068D /* HealthKitManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitManager.swift; sourceTree = "<group>"; };
  1087. F90692CE274B999A0037068D /* HealthKitDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitDataFlow.swift; sourceTree = "<group>"; };
  1088. F90692D0274B99B60037068D /* HealthKitProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitProvider.swift; sourceTree = "<group>"; };
  1089. F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppleHealthKitRootView.swift; sourceTree = "<group>"; };
  1090. F90692D5274B9A450037068D /* HealthKitStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitStateModel.swift; sourceTree = "<group>"; };
  1091. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorRootView.swift; sourceTree = "<group>"; };
  1092. FE41E4D329463C660047FD55 /* NightscoutStatistics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutStatistics.swift; sourceTree = "<group>"; };
  1093. FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutPreferences.swift; sourceTree = "<group>"; };
  1094. FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Bundle+Extensions.swift"; sourceTree = "<group>"; };
  1095. FEFA5C0E299F810B00765C17 /* Core_Data.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = Core_Data.xcdatamodel; sourceTree = "<group>"; };
  1096. FEFA5C10299F814A00765C17 /* CoreDataStack.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreDataStack.swift; sourceTree = "<group>"; };
  1097. FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIDevice+Extensions.swift"; sourceTree = "<group>"; };
  1098. /* End PBXFileReference section */
  1099. /* Begin PBXFrameworksBuildPhase section */
  1100. 388E595525AD948C0019842D /* Frameworks */ = {
  1101. isa = PBXFrameworksBuildPhase;
  1102. buildActionMask = 2147483647;
  1103. files = (
  1104. CEC751D829D88262006E9D24 /* MinimedKitUI.framework in Frameworks */,
  1105. D8DA5CD12B49EEF000C54E6C /* SlideButton in Frameworks */,
  1106. CEC751D629D88262006E9D24 /* MinimedKit.framework in Frameworks */,
  1107. CEC751D429D88257006E9D24 /* OmniKitUI.framework in Frameworks */,
  1108. CEC751D229D88257006E9D24 /* OmniKit.framework in Frameworks */,
  1109. CE79502E29980E4D00FA576E /* ShareClientUI.framework in Frameworks */,
  1110. CE79502A29980C9F00FA576E /* G7SensorKitUI.framework in Frameworks */,
  1111. CE79502829980C9600FA576E /* CGMBLEKitUI.framework in Frameworks */,
  1112. CEB434DC28B8F5B900B70274 /* MKRingProgressView.framework in Frameworks */,
  1113. 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */,
  1114. 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */,
  1115. CEB434DF28B8F5C400B70274 /* OmniBLE.framework in Frameworks */,
  1116. 3818AA71274C278200843DB3 /* LoopTestingKit.framework in Frameworks */,
  1117. 3818AA47274C255A00843DB3 /* LibreTransmitter in Frameworks */,
  1118. 3818AA4A274C267000843DB3 /* CGMBLEKit.framework in Frameworks */,
  1119. CE51DD1C2A01970900F163F7 /* ConnectIQ 2.xcframework in Frameworks */,
  1120. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */,
  1121. 3818AA5C274C26A300843DB3 /* MockKit.framework in Frameworks */,
  1122. 3818AA6A274C26A500843DB3 /* RileyLinkBLEKit.framework in Frameworks */,
  1123. 3818AA6C274C26A500843DB3 /* RileyLinkKit.framework in Frameworks */,
  1124. 3818AA5E274C26A300843DB3 /* MockKitUI.framework in Frameworks */,
  1125. CE398D18297C9EE800DF218F /* G7SensorKit.framework in Frameworks */,
  1126. 3818AA5A274C26A300843DB3 /* LoopKitUI.framework in Frameworks */,
  1127. 3818AA58274C26A300843DB3 /* LoopKit.framework in Frameworks */,
  1128. CE398D1B297D69A900DF218F /* ShareClient.framework in Frameworks */,
  1129. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */,
  1130. 3833B46D26012030003021B3 /* Algorithms in Frameworks */,
  1131. CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */,
  1132. 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */,
  1133. E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */,
  1134. 3818AA6E274C26A500843DB3 /* RileyLinkKitUI.framework in Frameworks */,
  1135. );
  1136. runOnlyForDeploymentPostprocessing = 0;
  1137. };
  1138. 38E8752127554D5700975559 /* Frameworks */ = {
  1139. isa = PBXFrameworksBuildPhase;
  1140. buildActionMask = 2147483647;
  1141. files = (
  1142. CE6B025728F350FF000C5502 /* HealthKit.framework in Frameworks */,
  1143. 38E8755827567AE400975559 /* SwiftDate in Frameworks */,
  1144. 199561C1275E61A50077B976 /* HealthKit.framework in Frameworks */,
  1145. );
  1146. runOnlyForDeploymentPostprocessing = 0;
  1147. };
  1148. 38FCF3EA25E9028E0078B0D1 /* Frameworks */ = {
  1149. isa = PBXFrameworksBuildPhase;
  1150. buildActionMask = 2147483647;
  1151. files = (
  1152. );
  1153. runOnlyForDeploymentPostprocessing = 0;
  1154. };
  1155. 6B1A8D142B14D91500E76752 /* Frameworks */ = {
  1156. isa = PBXFrameworksBuildPhase;
  1157. buildActionMask = 2147483647;
  1158. files = (
  1159. 6B1A8D1B2B14D91600E76752 /* SwiftUI.framework in Frameworks */,
  1160. 6B1A8D192B14D91600E76752 /* WidgetKit.framework in Frameworks */,
  1161. );
  1162. runOnlyForDeploymentPostprocessing = 0;
  1163. };
  1164. /* End PBXFrameworksBuildPhase section */
  1165. /* Begin PBXGroup section */
  1166. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */ = {
  1167. isa = PBXGroup;
  1168. children = (
  1169. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */,
  1170. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */,
  1171. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */,
  1172. 4E8C7B59F8065047ECE20965 /* View */,
  1173. );
  1174. path = ConfigEditor;
  1175. sourceTree = "<group>";
  1176. };
  1177. 0A67A70F9438DB6586398458 /* View */ = {
  1178. isa = PBXGroup;
  1179. children = (
  1180. B5822B15939E719628E9FF7C /* SnoozeRootView.swift */,
  1181. );
  1182. path = View;
  1183. sourceTree = "<group>";
  1184. };
  1185. 0D76BBC81CEDC1A0050F45EF /* View */ = {
  1186. isa = PBXGroup;
  1187. children = (
  1188. 38569352270B5E350002C50D /* CGMRootView.swift */,
  1189. CE7950232997D81700FA576E /* CGMSettingsView.swift */,
  1190. CE7950252998056D00FA576E /* CGMSetupView.swift */,
  1191. );
  1192. path = View;
  1193. sourceTree = "<group>";
  1194. };
  1195. 0EE66DD474AFFD4FD787D5B9 /* View */ = {
  1196. isa = PBXGroup;
  1197. children = (
  1198. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */,
  1199. );
  1200. path = View;
  1201. sourceTree = "<group>";
  1202. };
  1203. 18B49BC9587A59E3A347C1CD /* View */ = {
  1204. isa = PBXGroup;
  1205. children = (
  1206. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */,
  1207. );
  1208. path = View;
  1209. sourceTree = "<group>";
  1210. };
  1211. 190EBCC229FF134900BA767D /* StatConfig */ = {
  1212. isa = PBXGroup;
  1213. children = (
  1214. 190EBCC329FF136900BA767D /* StatConfigDataFlow.swift */,
  1215. 190EBCC529FF138000BA767D /* StatConfigProvider.swift */,
  1216. 190EBCC729FF13AA00BA767D /* StatConfigStateModel.swift */,
  1217. 190EBCC929FF13AF00BA767D /* View */,
  1218. );
  1219. path = StatConfig;
  1220. sourceTree = "<group>";
  1221. };
  1222. 190EBCC929FF13AF00BA767D /* View */ = {
  1223. isa = PBXGroup;
  1224. children = (
  1225. 190EBCCA29FF13CB00BA767D /* StatConfigRootView.swift */,
  1226. );
  1227. path = View;
  1228. sourceTree = "<group>";
  1229. };
  1230. 192F0FF5276AC36D0085BE4D /* Recovered References */ = {
  1231. isa = PBXGroup;
  1232. children = (
  1233. 199561C0275E61A50077B976 /* HealthKit.framework */,
  1234. );
  1235. name = "Recovered References";
  1236. sourceTree = "<group>";
  1237. };
  1238. 195D80B22AF696EE00D25097 /* Dynamic */ = {
  1239. isa = PBXGroup;
  1240. children = (
  1241. 195D80B62AF697B800D25097 /* DynamicDataFlow.swift */,
  1242. 195D80B82AF697F700D25097 /* DynamicProvider.swift */,
  1243. 195D80BA2AF6980B00D25097 /* DynamicStateModel.swift */,
  1244. 195D80B52AF6974200D25097 /* View */,
  1245. );
  1246. path = Dynamic;
  1247. sourceTree = "<group>";
  1248. };
  1249. 195D80B52AF6974200D25097 /* View */ = {
  1250. isa = PBXGroup;
  1251. children = (
  1252. 195D80B32AF6973A00D25097 /* DynamicRootView.swift */,
  1253. );
  1254. path = View;
  1255. sourceTree = "<group>";
  1256. };
  1257. 198377CF266BFEDE004DE65E /* Localizations */ = {
  1258. isa = PBXGroup;
  1259. children = (
  1260. 19D440A926B6FEBD008DA6C8 /* Main */,
  1261. );
  1262. path = Localizations;
  1263. sourceTree = "<group>";
  1264. };
  1265. 19D440A926B6FEBD008DA6C8 /* Main */ = {
  1266. isa = PBXGroup;
  1267. children = (
  1268. 198377D4266BFFF6004DE65E /* Localizable.strings */,
  1269. );
  1270. path = Main;
  1271. sourceTree = "<group>";
  1272. };
  1273. 19D466A129AA2B0A004D5F33 /* FPUConfig */ = {
  1274. isa = PBXGroup;
  1275. children = (
  1276. 19D466A229AA2B80004D5F33 /* FPUConfigDataFlow.swift */,
  1277. 19D466A429AA2BD4004D5F33 /* FPUConfigProvider.swift */,
  1278. 19D466A629AA2C22004D5F33 /* FPUConfigStateModel.swift */,
  1279. 19D466A829AA306E004D5F33 /* View */,
  1280. );
  1281. path = FPUConfig;
  1282. sourceTree = "<group>";
  1283. };
  1284. 19D466A829AA306E004D5F33 /* View */ = {
  1285. isa = PBXGroup;
  1286. children = (
  1287. 19D466A929AA3099004D5F33 /* FPUConfigRootView.swift */,
  1288. );
  1289. path = View;
  1290. sourceTree = "<group>";
  1291. };
  1292. 19DC677C29CA66F200FD9EC4 /* OverrideProfilesConfig */ = {
  1293. isa = PBXGroup;
  1294. children = (
  1295. 19DC677E29CA675700FD9EC4 /* OverrideProfilesDataFlow.swift */,
  1296. 19DC678029CA676A00FD9EC4 /* OverrideProfilesProvider.swift */,
  1297. 19DC678229CA677D00FD9EC4 /* OverrideProfilesStateModel.swift */,
  1298. 19DC677D29CA672500FD9EC4 /* View */,
  1299. );
  1300. path = OverrideProfilesConfig;
  1301. sourceTree = "<group>";
  1302. };
  1303. 19DC677D29CA672500FD9EC4 /* View */ = {
  1304. isa = PBXGroup;
  1305. children = (
  1306. 19DC678429CA67A400FD9EC4 /* OverrideProfilesRootView.swift */,
  1307. );
  1308. path = View;
  1309. sourceTree = "<group>";
  1310. };
  1311. 19E1F7E629D0828B005C8D20 /* IconConfig */ = {
  1312. isa = PBXGroup;
  1313. children = (
  1314. 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */,
  1315. 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */,
  1316. 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */,
  1317. 19E1F7ED29D088C0005C8D20 /* View */,
  1318. );
  1319. path = IconConfig;
  1320. sourceTree = "<group>";
  1321. };
  1322. 19E1F7ED29D088C0005C8D20 /* View */ = {
  1323. isa = PBXGroup;
  1324. children = (
  1325. 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */,
  1326. 1967DFC129D053D300759F30 /* IconImage.swift */,
  1327. 1967DFBF29D053AC00759F30 /* IconSelection.swift */,
  1328. );
  1329. path = View;
  1330. sourceTree = "<group>";
  1331. };
  1332. 19F95FF129F10F9C00314DDC /* Stat */ = {
  1333. isa = PBXGroup;
  1334. children = (
  1335. 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */,
  1336. 19F95FF429F10FCF00314DDC /* StatProvider.swift */,
  1337. 19F95FF629F10FEE00314DDC /* StatStateModel.swift */,
  1338. 19F95FF829F10FF600314DDC /* View */,
  1339. );
  1340. path = Stat;
  1341. sourceTree = "<group>";
  1342. };
  1343. 19F95FF829F10FF600314DDC /* View */ = {
  1344. isa = PBXGroup;
  1345. children = (
  1346. 19F95FF929F1102A00314DDC /* StatRootView.swift */,
  1347. 19A9102F2A24BF6300C8951B /* StatsView.swift */,
  1348. 19A910372A24EF3200C8951B /* ChartsView.swift */,
  1349. );
  1350. path = View;
  1351. sourceTree = "<group>";
  1352. };
  1353. 29B478DF61BF8D270F7D8954 /* Snooze */ = {
  1354. isa = PBXGroup;
  1355. children = (
  1356. 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */,
  1357. 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */,
  1358. E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */,
  1359. 0A67A70F9438DB6586398458 /* View */,
  1360. );
  1361. path = Snooze;
  1362. sourceTree = "<group>";
  1363. };
  1364. 34CA4DF169B53D67EF18ED8A /* View */ = {
  1365. isa = PBXGroup;
  1366. children = (
  1367. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */,
  1368. );
  1369. path = View;
  1370. sourceTree = "<group>";
  1371. };
  1372. 3811DE0325C9D31700A708ED /* Modules */ = {
  1373. isa = PBXGroup;
  1374. children = (
  1375. 195D80B22AF696EE00D25097 /* Dynamic */,
  1376. BD7DA9A32AE06DBA00601B20 /* BolusCalculatorConfig */,
  1377. 190EBCC229FF134900BA767D /* StatConfig */,
  1378. 19F95FF129F10F9C00314DDC /* Stat */,
  1379. CE94597C29E9E1CD0047C9C6 /* WatchConfig */,
  1380. 19E1F7E629D0828B005C8D20 /* IconConfig */,
  1381. 19D466A129AA2B0A004D5F33 /* FPUConfig */,
  1382. F90692CD274B99850037068D /* HealthKit */,
  1383. A9A4C88374496B3C89058A89 /* AddTempTarget */,
  1384. 672F63EEAE27400625E14BAD /* AutotuneConfig */,
  1385. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */,
  1386. 3811DE0425C9D32E00A708ED /* Base */,
  1387. E8176B120B55CE89F1591542 /* Calibrations */,
  1388. F75CB57ED6971B46F8756083 /* CGM */,
  1389. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */,
  1390. E42231DBF0DBE2B4B92D1B15 /* CREditor */,
  1391. 9E56E3626FAD933385101B76 /* DataTable */,
  1392. C2C98283C436DB934D7E7994 /* Bolus */,
  1393. 3811DE2725C9D49500A708ED /* Home */,
  1394. D8F047E14D567F2B5DBEFD96 /* ISFEditor */,
  1395. C11D545CED3ECEB525EDEE23 /* LibreConfig */,
  1396. 3811DE1A25C9D48300A708ED /* Main */,
  1397. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */,
  1398. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */,
  1399. F66B236E00924A05D6A9F9DF /* NotificationsConfig */,
  1400. 19DC677C29CA66F200FD9EC4 /* OverrideProfilesConfig */,
  1401. 3E1C41D9301B7058AA7BF5EA /* PreferencesEditor */,
  1402. 99C01B871ACAB3F32CE755C7 /* PumpConfig */,
  1403. E493126EA71765130F64CCE5 /* PumpSettingsEditor */,
  1404. 3811DE3825C9D4A100A708ED /* Settings */,
  1405. 29B478DF61BF8D270F7D8954 /* Snooze */,
  1406. 6517011F19F244F64E1FF14B /* TargetsEditor */,
  1407. );
  1408. path = Modules;
  1409. sourceTree = "<group>";
  1410. };
  1411. 3811DE0425C9D32E00A708ED /* Base */ = {
  1412. isa = PBXGroup;
  1413. children = (
  1414. 3811DE0725C9D32E00A708ED /* BaseView.swift */,
  1415. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */,
  1416. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */,
  1417. );
  1418. path = Base;
  1419. sourceTree = "<group>";
  1420. };
  1421. 3811DE1325C9D39E00A708ED /* Sources */ = {
  1422. isa = PBXGroup;
  1423. children = (
  1424. CE7CA3422A064973004BE681 /* Shortcuts */,
  1425. 3811DEDE25C9E2DD00A708ED /* Application */,
  1426. 3811DF0A25CAAAA500A708ED /* APS */,
  1427. E00EEBFC27368630002FF094 /* Assemblies */,
  1428. 38E98A3225F5300800C0CED0 /* Config */,
  1429. 388E5A5A25B6F05F0019842D /* Helpers */,
  1430. 38DF178A27733E0F00B3528F /* AnimatedBackground */,
  1431. 198377CF266BFEDE004DE65E /* Localizations */,
  1432. 38E98A1A25F52C9300C0CED0 /* Logger */,
  1433. 388E5A5925B6F0250019842D /* Models */,
  1434. 3811DE0325C9D31700A708ED /* Modules */,
  1435. 3811DE1425C9D40400A708ED /* Router */,
  1436. 3811DE9125C9D88200A708ED /* Services */,
  1437. 3883582E25EEAFC000E024B2 /* Views */,
  1438. );
  1439. path = Sources;
  1440. sourceTree = "<group>";
  1441. };
  1442. 3811DE1425C9D40400A708ED /* Router */ = {
  1443. isa = PBXGroup;
  1444. children = (
  1445. 3811DE1525C9D40400A708ED /* Screen.swift */,
  1446. 3811DE1625C9D40400A708ED /* Router.swift */,
  1447. );
  1448. path = Router;
  1449. sourceTree = "<group>";
  1450. };
  1451. 3811DE1A25C9D48300A708ED /* Main */ = {
  1452. isa = PBXGroup;
  1453. children = (
  1454. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */,
  1455. 3811DE1C25C9D48300A708ED /* MainProvider.swift */,
  1456. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */,
  1457. 3811DE1F25C9D48300A708ED /* View */,
  1458. );
  1459. path = Main;
  1460. sourceTree = "<group>";
  1461. };
  1462. 3811DE1F25C9D48300A708ED /* View */ = {
  1463. isa = PBXGroup;
  1464. children = (
  1465. 3811DE2025C9D48300A708ED /* MainRootView.swift */,
  1466. );
  1467. path = View;
  1468. sourceTree = "<group>";
  1469. };
  1470. 3811DE2725C9D49500A708ED /* Home */ = {
  1471. isa = PBXGroup;
  1472. children = (
  1473. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */,
  1474. 3811DE2925C9D49500A708ED /* HomeProvider.swift */,
  1475. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */,
  1476. 3811DE2C25C9D49500A708ED /* View */,
  1477. );
  1478. path = Home;
  1479. sourceTree = "<group>";
  1480. };
  1481. 3811DE2C25C9D49500A708ED /* View */ = {
  1482. isa = PBXGroup;
  1483. children = (
  1484. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */,
  1485. 3833B51E260264AC003021B3 /* Chart */,
  1486. 3833B51F260264B6003021B3 /* Header */,
  1487. );
  1488. path = View;
  1489. sourceTree = "<group>";
  1490. };
  1491. 3811DE3825C9D4A100A708ED /* Settings */ = {
  1492. isa = PBXGroup;
  1493. children = (
  1494. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */,
  1495. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */,
  1496. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */,
  1497. 3811DE3B25C9D4A100A708ED /* View */,
  1498. );
  1499. path = Settings;
  1500. sourceTree = "<group>";
  1501. };
  1502. 3811DE3B25C9D4A100A708ED /* View */ = {
  1503. isa = PBXGroup;
  1504. children = (
  1505. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */,
  1506. );
  1507. path = View;
  1508. sourceTree = "<group>";
  1509. };
  1510. 3811DE9125C9D88200A708ED /* Services */ = {
  1511. isa = PBXGroup;
  1512. children = (
  1513. 6B1A8D2C2B156EC100E76752 /* LiveActivity */,
  1514. CEB434E128B8F9BC00B70274 /* Bluetooth */,
  1515. F90692A8274B7A980037068D /* HealthKit */,
  1516. 38E8754D275556E100975559 /* WatchManager */,
  1517. 38E87406274F9AA500975559 /* UserNotifiactions */,
  1518. 3862CC2C2743F9DC00BF832C /* Calendar */,
  1519. 38AEE75025F021F10013F05B /* SettingsManager */,
  1520. 38B4F3C425E5016800E76A18 /* Notifications */,
  1521. 3811DE9225C9D88200A708ED /* Appearance */,
  1522. 3811DE9425C9D88200A708ED /* Network */,
  1523. 3811DE9825C9D88300A708ED /* Storage */,
  1524. 3811DEA525C9D88300A708ED /* UnlockManager */,
  1525. );
  1526. path = Services;
  1527. sourceTree = "<group>";
  1528. };
  1529. 3811DE9225C9D88200A708ED /* Appearance */ = {
  1530. isa = PBXGroup;
  1531. children = (
  1532. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */,
  1533. );
  1534. path = Appearance;
  1535. sourceTree = "<group>";
  1536. };
  1537. 3811DE9425C9D88200A708ED /* Network */ = {
  1538. isa = PBXGroup;
  1539. children = (
  1540. 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */,
  1541. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */,
  1542. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */,
  1543. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */,
  1544. 38FE826925CC82DB001FF17A /* NetworkService.swift */,
  1545. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */,
  1546. );
  1547. path = Network;
  1548. sourceTree = "<group>";
  1549. };
  1550. 3811DE9825C9D88300A708ED /* Storage */ = {
  1551. isa = PBXGroup;
  1552. children = (
  1553. 383948D525CD4D8900E91849 /* FileStorage.swift */,
  1554. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */,
  1555. 3811DE9925C9D88300A708ED /* Cache */,
  1556. 38E44529274E40F100EC9A94 /* Disk */,
  1557. 3811DE9D25C9D88300A708ED /* Keychain */,
  1558. );
  1559. path = Storage;
  1560. sourceTree = "<group>";
  1561. };
  1562. 3811DE9925C9D88300A708ED /* Cache */ = {
  1563. isa = PBXGroup;
  1564. children = (
  1565. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */,
  1566. 3811DE9B25C9D88300A708ED /* Cache.swift */,
  1567. );
  1568. path = Cache;
  1569. sourceTree = "<group>";
  1570. };
  1571. 3811DE9D25C9D88300A708ED /* Keychain */ = {
  1572. isa = PBXGroup;
  1573. children = (
  1574. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */,
  1575. 3811DE9F25C9D88300A708ED /* Keychain.swift */,
  1576. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */,
  1577. );
  1578. path = Keychain;
  1579. sourceTree = "<group>";
  1580. };
  1581. 3811DEA525C9D88300A708ED /* UnlockManager */ = {
  1582. isa = PBXGroup;
  1583. children = (
  1584. 3811DEA625C9D88300A708ED /* UnlockManager.swift */,
  1585. );
  1586. path = UnlockManager;
  1587. sourceTree = "<group>";
  1588. };
  1589. 3811DED425C9E1E300A708ED /* Resources */ = {
  1590. isa = PBXGroup;
  1591. children = (
  1592. 388E597125AD9CF10019842D /* json */,
  1593. 388E596E25AD96040019842D /* javascript */,
  1594. 3811DEC725C9DA7300A708ED /* FreeAPS.entitlements */,
  1595. 388E596425AD948E0019842D /* Info.plist */,
  1596. 1927C8E82744606D00347C69 /* InfoPlist.strings */,
  1597. B9CAAEFB2AE70836000F68BC /* branch.txt */,
  1598. 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */,
  1599. );
  1600. path = Resources;
  1601. sourceTree = "<group>";
  1602. };
  1603. 3811DEDE25C9E2DD00A708ED /* Application */ = {
  1604. isa = PBXGroup;
  1605. children = (
  1606. 38E4451D274DB04600EC9A94 /* AppDelegate.swift */,
  1607. 388E595B25AD948C0019842D /* FreeAPSApp.swift */,
  1608. );
  1609. path = Application;
  1610. sourceTree = "<group>";
  1611. };
  1612. 3811DEE325CA063400A708ED /* PropertyWrappers */ = {
  1613. isa = PBXGroup;
  1614. children = (
  1615. 38E44527274E401C00EC9A94 /* Protected.swift */,
  1616. 3811DEE425CA063400A708ED /* Injected.swift */,
  1617. 3811DEE625CA063400A708ED /* SyncAccess.swift */,
  1618. 3811DEE725CA063400A708ED /* PersistedProperty.swift */,
  1619. );
  1620. path = PropertyWrappers;
  1621. sourceTree = "<group>";
  1622. };
  1623. 3811DF0A25CAAAA500A708ED /* APS */ = {
  1624. isa = PBXGroup;
  1625. children = (
  1626. 3811DF0F25CAAAE200A708ED /* APSManager.swift */,
  1627. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */,
  1628. 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */,
  1629. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */,
  1630. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */,
  1631. 3856933F270B57A00002C50D /* CGM */,
  1632. 38A504F625DDA0E200C5B9E8 /* Extensions */,
  1633. 388E5A5825B6F0070019842D /* OpenAPS */,
  1634. 38A0362725ECF05300FCBB52 /* Storage */,
  1635. );
  1636. path = APS;
  1637. sourceTree = "<group>";
  1638. };
  1639. 3818AA44274C229000843DB3 /* Packages */ = {
  1640. isa = PBXGroup;
  1641. children = (
  1642. 3818AA45274C229000843DB3 /* LibreTransmitter */,
  1643. );
  1644. name = Packages;
  1645. sourceTree = "<group>";
  1646. };
  1647. 3818AA48274C267000843DB3 /* Frameworks */ = {
  1648. isa = PBXGroup;
  1649. children = (
  1650. CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */,
  1651. CE94597929E9DF7B0047C9C6 /* ConnectIQ.framework */,
  1652. CEC751D529D88262006E9D24 /* MinimedKit.framework */,
  1653. CEC751D729D88262006E9D24 /* MinimedKitUI.framework */,
  1654. CEC751D129D88257006E9D24 /* OmniKit.framework */,
  1655. CEC751D329D88257006E9D24 /* OmniKitUI.framework */,
  1656. CE79502D29980E4D00FA576E /* ShareClientUI.framework */,
  1657. CE79502929980C9F00FA576E /* G7SensorKitUI.framework */,
  1658. CE79502729980C9600FA576E /* CGMBLEKitUI.framework */,
  1659. CE398D1A297D69A900DF218F /* ShareClient.framework */,
  1660. CE398D17297C9EE800DF218F /* G7SensorKit.framework */,
  1661. CE398D012977349800DF218F /* CryptoKit.framework */,
  1662. CE6B025628F350FF000C5502 /* HealthKit.framework */,
  1663. CEB434DE28B8F5C400B70274 /* OmniBLE.framework */,
  1664. CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */,
  1665. E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */,
  1666. 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */,
  1667. 38E873FD274F761800975559 /* CoreNFC.framework */,
  1668. 3818AA70274C278200843DB3 /* LoopTestingKit.framework */,
  1669. 3818AA4C274C26A300843DB3 /* LoopKit.framework */,
  1670. 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */,
  1671. 3818AA4E274C26A300843DB3 /* MockKit.framework */,
  1672. 3818AA4F274C26A300843DB3 /* MockKitUI.framework */,
  1673. 3818AA51274C26A300843DB3 /* MinimedKit.framework */,
  1674. 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */,
  1675. 3818AA53274C26A300843DB3 /* OmniKit.framework */,
  1676. 3818AA54274C26A300843DB3 /* OmniKitUI.framework */,
  1677. 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */,
  1678. 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */,
  1679. 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */,
  1680. 3818AA49274C267000843DB3 /* CGMBLEKit.framework */,
  1681. 6B1A8D012B14D88B00E76752 /* UniformTypeIdentifiers.framework */,
  1682. 6B1A8D182B14D91600E76752 /* WidgetKit.framework */,
  1683. 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */,
  1684. );
  1685. name = Frameworks;
  1686. sourceTree = "<group>";
  1687. };
  1688. 3833B51E260264AC003021B3 /* Chart */ = {
  1689. isa = PBXGroup;
  1690. children = (
  1691. BD3CC0712B0B89D50013189E /* MainChartView.swift */,
  1692. );
  1693. path = Chart;
  1694. sourceTree = "<group>";
  1695. };
  1696. 3833B51F260264B6003021B3 /* Header */ = {
  1697. isa = PBXGroup;
  1698. children = (
  1699. 383420D525FFE38C002D46C1 /* LoopView.swift */,
  1700. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */,
  1701. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */,
  1702. );
  1703. path = Header;
  1704. sourceTree = "<group>";
  1705. };
  1706. 3856933F270B57A00002C50D /* CGM */ = {
  1707. isa = PBXGroup;
  1708. children = (
  1709. CE398D15297C9D1D00DF218F /* dexcomSourceG7.swift */,
  1710. F816825F28DB441800054060 /* BluetoothTransmitter.swift */,
  1711. F816825D28DB441200054060 /* HeartBeatManager.swift */,
  1712. 38569346270B5DFB0002C50D /* AppGroupSource.swift */,
  1713. 38569344270B5DFA0002C50D /* CGMType.swift */,
  1714. 386A124E271707F000DDC61C /* DexcomSourceG6.swift */,
  1715. 38569345270B5DFA0002C50D /* GlucoseSource.swift */,
  1716. E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */,
  1717. 38FEF407273B011A00574A46 /* LibreTransmitterSource.swift */,
  1718. 3862CC03273D150600BF832C /* Calibrations */,
  1719. CECA4774298DA8310095139F /* DexcomSourceG5.swift */,
  1720. );
  1721. path = CGM;
  1722. sourceTree = "<group>";
  1723. };
  1724. 3862CC03273D150600BF832C /* Calibrations */ = {
  1725. isa = PBXGroup;
  1726. children = (
  1727. 3862CC04273D152B00BF832C /* CalibrationService.swift */,
  1728. );
  1729. path = Calibrations;
  1730. sourceTree = "<group>";
  1731. };
  1732. 3862CC2C2743F9DC00BF832C /* Calendar */ = {
  1733. isa = PBXGroup;
  1734. children = (
  1735. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */,
  1736. );
  1737. path = Calendar;
  1738. sourceTree = "<group>";
  1739. };
  1740. 3883582E25EEAFC000E024B2 /* Views */ = {
  1741. isa = PBXGroup;
  1742. children = (
  1743. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */,
  1744. 3883581B25EE79BB00E024B2 /* DecimalTextField.swift */,
  1745. 383420D825FFEB3F002D46C1 /* Popup.swift */,
  1746. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */,
  1747. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */,
  1748. 38DF1785276A73D400B3528F /* TagCloudView.swift */,
  1749. );
  1750. path = Views;
  1751. sourceTree = "<group>";
  1752. };
  1753. 388E594F25AD948C0019842D = {
  1754. isa = PBXGroup;
  1755. children = (
  1756. 587A54C82BCDCE0F009D38E2 /* Model */,
  1757. 38F3783A2613555C009DB701 /* Config.xcconfig */,
  1758. 3818AA42274BBC1100843DB3 /* ConfigOverride.xcconfig */,
  1759. 388E595A25AD948C0019842D /* FreeAPS */,
  1760. 38FCF3EE25E9028E0078B0D1 /* FreeAPSTests */,
  1761. 3818AA44274C229000843DB3 /* Packages */,
  1762. 38E8751D27554D5500975559 /* FreeAPSWatch */,
  1763. 38E8752827554D5700975559 /* FreeAPSWatch WatchKit Extension */,
  1764. 6B1A8D1C2B14D91600E76752 /* LiveActivity */,
  1765. 388E595925AD948C0019842D /* Products */,
  1766. 3818AA48274C267000843DB3 /* Frameworks */,
  1767. 192F0FF5276AC36D0085BE4D /* Recovered References */,
  1768. );
  1769. sourceTree = "<group>";
  1770. };
  1771. 388E595925AD948C0019842D /* Products */ = {
  1772. isa = PBXGroup;
  1773. children = (
  1774. 388E595825AD948C0019842D /* FreeAPS.app */,
  1775. 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */,
  1776. 38E8751C27554D5500975559 /* FreeAPSWatch.app */,
  1777. 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */,
  1778. 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */,
  1779. );
  1780. name = Products;
  1781. sourceTree = "<group>";
  1782. };
  1783. 388E595A25AD948C0019842D /* FreeAPS */ = {
  1784. isa = PBXGroup;
  1785. children = (
  1786. 3811DED425C9E1E300A708ED /* Resources */,
  1787. 3811DE1325C9D39E00A708ED /* Sources */,
  1788. );
  1789. path = FreeAPS;
  1790. sourceTree = "<group>";
  1791. };
  1792. 388E5A5825B6F0070019842D /* OpenAPS */ = {
  1793. isa = PBXGroup;
  1794. children = (
  1795. 388E596B25AD95110019842D /* OpenAPS.swift */,
  1796. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */,
  1797. 384E803725C388640086DB71 /* Script.swift */,
  1798. 3821ED4B25DD18BA00BC42AD /* Constants.swift */,
  1799. );
  1800. path = OpenAPS;
  1801. sourceTree = "<group>";
  1802. };
  1803. 388E5A5925B6F0250019842D /* Models */ = {
  1804. isa = PBXGroup;
  1805. children = (
  1806. 385CEAC025F2EA52002D6D5B /* Announcement.swift */,
  1807. 388E5A5F25B6F2310019842D /* Autosens.swift */,
  1808. 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */,
  1809. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */,
  1810. 38D0B3B525EBE24900CB6E88 /* Battery.swift */,
  1811. 382C134A25F14E3700715CE1 /* BGTargets.swift */,
  1812. 3870FF4225EC13F40088248F /* BloodGlucose.swift */,
  1813. 38A9260425F012D8009E3739 /* CarbRatios.swift */,
  1814. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */,
  1815. 3811DF0125CA9FEA00A708ED /* Credentials.swift */,
  1816. 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */,
  1817. 383948D925CD64D500E91849 /* Glucose.swift */,
  1818. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */,
  1819. 38887CCD25F5725200944304 /* IOBEntry.swift */,
  1820. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */,
  1821. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */,
  1822. 3895E4C525B9E00D00214B37 /* Preferences.swift */,
  1823. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */,
  1824. 3883583325EEB38000E024B2 /* PumpSettings.swift */,
  1825. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */,
  1826. 38BF021C25E7E3AF00579895 /* Reservoir.swift */,
  1827. 3871F38625ED661C0013ECB5 /* Suggestion.swift */,
  1828. 38A0364125ED069400FCBB52 /* TempBasal.swift */,
  1829. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */,
  1830. 3811DE8E25C9D80400A708ED /* User.swift */,
  1831. E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */,
  1832. 1935363F28496F7D001E0B16 /* Oref2_variables.swift */,
  1833. CE82E02628E869DF00473A9C /* AlertEntry.swift */,
  1834. 19B0EF2028F6D66200069496 /* Statistics.swift */,
  1835. 19012CDB291D2CB900FB8210 /* LoopStats.swift */,
  1836. FE41E4D329463C660047FD55 /* NightscoutStatistics.swift */,
  1837. FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */,
  1838. 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */,
  1839. 1967DFBD29D052C200759F30 /* Icons.swift */,
  1840. 19D4E4EA29FC6A9F00351451 /* Charts.swift */,
  1841. 19A910352A24D6D700C8951B /* DateFilter.swift */,
  1842. 193F6CDC2A512C8F001240FD /* Loops.swift */,
  1843. CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */,
  1844. CC41E2992B1E1F460070974F /* HistoryLayout.swift */,
  1845. BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */,
  1846. 583684072BD195A700070A60 /* Determination.swift */,
  1847. );
  1848. path = Models;
  1849. sourceTree = "<group>";
  1850. };
  1851. 388E5A5A25B6F05F0019842D /* Helpers */ = {
  1852. isa = PBXGroup;
  1853. children = (
  1854. 38F37827261260DC009DB701 /* Color+Extensions.swift */,
  1855. 389ECE042601144100D86C4F /* ConcurrentMap.swift */,
  1856. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */,
  1857. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */,
  1858. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */,
  1859. 389487392614928B004DF424 /* DispatchTimer.swift */,
  1860. 3811DE5425C9D4D500A708ED /* Formatters.swift */,
  1861. 38FEF412273B317A00574A46 /* HKUnit.swift */,
  1862. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */,
  1863. 389A571F26079BAA00BC102F /* Interpolation.swift */,
  1864. 388E5A5B25B6F0770019842D /* JSON.swift */,
  1865. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */,
  1866. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */,
  1867. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */,
  1868. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */,
  1869. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */,
  1870. 3811DE5525C9D4D500A708ED /* Publisher.swift */,
  1871. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */,
  1872. 3811DEE325CA063400A708ED /* PropertyWrappers */,
  1873. E06B9119275B5EEA003C04B6 /* Array+Extension.swift */,
  1874. CEB434E428B8FF5D00B70274 /* UIColor.swift */,
  1875. FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */,
  1876. FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */,
  1877. CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */,
  1878. 587DA1F52B77F3DD00B28F8A /* SettingsRowView.swift */,
  1879. BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */,
  1880. BD1661302B82ADAB00256551 /* CustomProgressView.swift */,
  1881. 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */,
  1882. );
  1883. path = Helpers;
  1884. sourceTree = "<group>";
  1885. };
  1886. 38A0362725ECF05300FCBB52 /* Storage */ = {
  1887. isa = PBXGroup;
  1888. children = (
  1889. 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */,
  1890. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */,
  1891. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */,
  1892. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */,
  1893. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */,
  1894. CE82E02428E867BA00473A9C /* AlertStorage.swift */,
  1895. );
  1896. path = Storage;
  1897. sourceTree = "<group>";
  1898. };
  1899. 38A504F625DDA0E200C5B9E8 /* Extensions */ = {
  1900. isa = PBXGroup;
  1901. children = (
  1902. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */,
  1903. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */,
  1904. CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */,
  1905. CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */,
  1906. CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */,
  1907. CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */,
  1908. );
  1909. path = Extensions;
  1910. sourceTree = "<group>";
  1911. };
  1912. 38AEE75025F021F10013F05B /* SettingsManager */ = {
  1913. isa = PBXGroup;
  1914. children = (
  1915. 38AEE75125F022080013F05B /* SettingsManager.swift */,
  1916. );
  1917. path = SettingsManager;
  1918. sourceTree = "<group>";
  1919. };
  1920. 38B4F3C425E5016800E76A18 /* Notifications */ = {
  1921. isa = PBXGroup;
  1922. children = (
  1923. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */,
  1924. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */,
  1925. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */,
  1926. );
  1927. path = Notifications;
  1928. sourceTree = "<group>";
  1929. };
  1930. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */ = {
  1931. isa = PBXGroup;
  1932. children = (
  1933. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */,
  1934. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */,
  1935. );
  1936. path = SwiftNotificationCenter;
  1937. sourceTree = "<group>";
  1938. };
  1939. 38DF178A27733E0F00B3528F /* AnimatedBackground */ = {
  1940. isa = PBXGroup;
  1941. children = (
  1942. 38DF178B27733E6800B3528F /* snow.sks */,
  1943. 38DF178C27733E6800B3528F /* Assets.xcassets */,
  1944. 38DF178F27733EAD00B3528F /* SnowScene.swift */,
  1945. );
  1946. path = AnimatedBackground;
  1947. sourceTree = "<group>";
  1948. };
  1949. 38E44529274E40F100EC9A94 /* Disk */ = {
  1950. isa = PBXGroup;
  1951. children = (
  1952. 38E4452C274E411600EC9A94 /* Disk.swift */,
  1953. 38E4452E274E411600EC9A94 /* Disk+[Data].swift */,
  1954. 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */,
  1955. 38E44532274E411700EC9A94 /* Disk+Codable.swift */,
  1956. 38E4452B274E411600EC9A94 /* Disk+Data.swift */,
  1957. 38E44533274E411700EC9A94 /* Disk+Errors.swift */,
  1958. 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */,
  1959. 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */,
  1960. 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */,
  1961. 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */,
  1962. );
  1963. path = Disk;
  1964. sourceTree = "<group>";
  1965. };
  1966. 38E87406274F9AA500975559 /* UserNotifiactions */ = {
  1967. isa = PBXGroup;
  1968. children = (
  1969. 38E87407274F9AD000975559 /* UserNotificationsManager.swift */,
  1970. );
  1971. path = UserNotifiactions;
  1972. sourceTree = "<group>";
  1973. };
  1974. 38E8751D27554D5500975559 /* FreeAPSWatch */ = {
  1975. isa = PBXGroup;
  1976. children = (
  1977. 1980131D29CC9839002FF024 /* Info.plist */,
  1978. 38E8755627564B6100975559 /* FreeAPSWatch.entitlements */,
  1979. 38E8751E27554D5700975559 /* Assets.xcassets */,
  1980. );
  1981. path = FreeAPSWatch;
  1982. sourceTree = "<group>";
  1983. };
  1984. 38E8752827554D5700975559 /* FreeAPSWatch WatchKit Extension */ = {
  1985. isa = PBXGroup;
  1986. children = (
  1987. 38E8755527564B5000975559 /* FreeAPSWatch WatchKit Extension.entitlements */,
  1988. 38E8755027555D0500975559 /* DataFlow.swift */,
  1989. 38E8754B2755548F00975559 /* WatchStateModel.swift */,
  1990. 38E875482755505800975559 /* Views */,
  1991. 38E8752927554D5700975559 /* FreeAPSApp.swift */,
  1992. 38E8752D27554D5700975559 /* NotificationController.swift */,
  1993. 38E8752F27554D5700975559 /* NotificationView.swift */,
  1994. 38E8753127554D5700975559 /* ComplicationController.swift */,
  1995. 38E8753327554D5800975559 /* Assets.xcassets */,
  1996. 38E8753827554D5900975559 /* Info.plist */,
  1997. 38E8753927554D5900975559 /* PushNotificationPayload.apns */,
  1998. 38E8753527554D5800975559 /* Preview Content */,
  1999. );
  2000. path = "FreeAPSWatch WatchKit Extension";
  2001. sourceTree = "<group>";
  2002. };
  2003. 38E8753527554D5800975559 /* Preview Content */ = {
  2004. isa = PBXGroup;
  2005. children = (
  2006. 38E8753627554D5800975559 /* Preview Assets.xcassets */,
  2007. );
  2008. path = "Preview Content";
  2009. sourceTree = "<group>";
  2010. };
  2011. 38E875482755505800975559 /* Views */ = {
  2012. isa = PBXGroup;
  2013. children = (
  2014. 38E8752B27554D5700975559 /* MainView.swift */,
  2015. 38E87549275550BB00975559 /* CarbsView.swift */,
  2016. 38E8755A27568A6700975559 /* ConfirmationView.swift */,
  2017. 38E8757A2757B1C300975559 /* TempTargetsView.swift */,
  2018. 38E8757C2757C45D00975559 /* BolusView.swift */,
  2019. 38E8757F27595DC500975559 /* BolusConfirmationView.swift */,
  2020. );
  2021. path = Views;
  2022. sourceTree = "<group>";
  2023. };
  2024. 38E8754D275556E100975559 /* WatchManager */ = {
  2025. isa = PBXGroup;
  2026. children = (
  2027. 38E8754E275556FA00975559 /* WatchManager.swift */,
  2028. CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */,
  2029. );
  2030. path = WatchManager;
  2031. sourceTree = "<group>";
  2032. };
  2033. 38E98A1A25F52C9300C0CED0 /* Logger */ = {
  2034. isa = PBXGroup;
  2035. children = (
  2036. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */,
  2037. 38E98A1C25F52C9300C0CED0 /* Logger.swift */,
  2038. 38E98A1D25F52C9300C0CED0 /* IssueReporter */,
  2039. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */,
  2040. );
  2041. path = Logger;
  2042. sourceTree = "<group>";
  2043. };
  2044. 38E98A1D25F52C9300C0CED0 /* IssueReporter */ = {
  2045. isa = PBXGroup;
  2046. children = (
  2047. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */,
  2048. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */,
  2049. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */,
  2050. );
  2051. path = IssueReporter;
  2052. sourceTree = "<group>";
  2053. };
  2054. 38E98A3225F5300800C0CED0 /* Config */ = {
  2055. isa = PBXGroup;
  2056. children = (
  2057. 38E98A2F25F52FF700C0CED0 /* Config.swift */,
  2058. );
  2059. path = Config;
  2060. sourceTree = "<group>";
  2061. };
  2062. 38FCF3EE25E9028E0078B0D1 /* FreeAPSTests */ = {
  2063. isa = PBXGroup;
  2064. children = (
  2065. 38FCF3F125E9028E0078B0D1 /* Info.plist */,
  2066. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */,
  2067. );
  2068. path = FreeAPSTests;
  2069. sourceTree = "<group>";
  2070. };
  2071. 3E1C41D9301B7058AA7BF5EA /* PreferencesEditor */ = {
  2072. isa = PBXGroup;
  2073. children = (
  2074. 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */,
  2075. 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */,
  2076. 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */,
  2077. 833DA2F9E47E64E305F92F9D /* View */,
  2078. );
  2079. path = PreferencesEditor;
  2080. sourceTree = "<group>";
  2081. };
  2082. 3F8670D63672AF88E2E9B09E /* View */ = {
  2083. isa = PBXGroup;
  2084. children = (
  2085. E9AAB83FB6C3B41EFD1846A0 /* AddTempTargetRootView.swift */,
  2086. );
  2087. path = View;
  2088. sourceTree = "<group>";
  2089. };
  2090. 43952E72FE7AF85715FE020E /* View */ = {
  2091. isa = PBXGroup;
  2092. children = (
  2093. 500371C09F54F89A97D65FDB /* CalibrationsRootView.swift */,
  2094. 3862CC1E273FDC9200BF832C /* CalibrationsChart.swift */,
  2095. );
  2096. path = View;
  2097. sourceTree = "<group>";
  2098. };
  2099. 4E8C7B59F8065047ECE20965 /* View */ = {
  2100. isa = PBXGroup;
  2101. children = (
  2102. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */,
  2103. );
  2104. path = View;
  2105. sourceTree = "<group>";
  2106. };
  2107. 4F4AE4D901E8BA872B207D7F /* View */ = {
  2108. isa = PBXGroup;
  2109. children = (
  2110. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */,
  2111. );
  2112. path = View;
  2113. sourceTree = "<group>";
  2114. };
  2115. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */ = {
  2116. isa = PBXGroup;
  2117. children = (
  2118. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */,
  2119. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */,
  2120. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */,
  2121. 84BDC840A57C65A1E6F9F780 /* View */,
  2122. );
  2123. path = ManualTempBasal;
  2124. sourceTree = "<group>";
  2125. };
  2126. 510CCF29FD3216C5BBC49A15 /* View */ = {
  2127. isa = PBXGroup;
  2128. children = (
  2129. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */,
  2130. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */,
  2131. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */,
  2132. );
  2133. path = View;
  2134. sourceTree = "<group>";
  2135. };
  2136. 54946647FDCFE43028F60511 /* View */ = {
  2137. isa = PBXGroup;
  2138. children = (
  2139. D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */,
  2140. );
  2141. path = View;
  2142. sourceTree = "<group>";
  2143. };
  2144. 55DE731ACE8289FAF3819077 /* View */ = {
  2145. isa = PBXGroup;
  2146. children = (
  2147. 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */,
  2148. );
  2149. path = View;
  2150. sourceTree = "<group>";
  2151. };
  2152. 5825D1052BD4056700F36E9B /* Classes+Properties */ = {
  2153. isa = PBXGroup;
  2154. children = (
  2155. 585E2CAF2BE7DA03006ECF1A /* TempBasalStored+CoreDataClass.swift */,
  2156. 585E2CB02BE7DA03006ECF1A /* TempBasalStored+CoreDataProperties.swift */,
  2157. 585E2CB12BE7DA03006ECF1A /* PumpEventStored+CoreDataClass.swift */,
  2158. 585E2CB22BE7DA03006ECF1A /* PumpEventStored+CoreDataProperties.swift */,
  2159. 581F7FB12BE7B2A0005A5F89 /* BolusStored+CoreDataClass.swift */,
  2160. 581F7FB22BE7B2A0005A5F89 /* BolusStored+CoreDataProperties.swift */,
  2161. CC76E9482BD471BA008BEB61 /* Forecast+CoreDataClass.swift */,
  2162. CC76E9492BD471BA008BEB61 /* Forecast+CoreDataProperties.swift */,
  2163. CC76E94A2BD471BA008BEB61 /* ForecastValue+CoreDataClass.swift */,
  2164. CC76E94B2BD471BA008BEB61 /* ForecastValue+CoreDataProperties.swift */,
  2165. 5856174B2BDADA3F009B23D7 /* GlucoseStored+CoreDataClass.swift */,
  2166. 5856174C2BDADA3F009B23D7 /* GlucoseStored+CoreDataProperties.swift */,
  2167. 588752822BD9986A008B081D /* OpenAPS_Battery+CoreDataClass.swift */,
  2168. 588752832BD9986A008B081D /* OpenAPS_Battery+CoreDataProperties.swift */,
  2169. 5825D1062BD4058F00F36E9B /* BGaverages+CoreDataClass.swift */,
  2170. 5825D1072BD4058F00F36E9B /* BGaverages+CoreDataProperties.swift */,
  2171. 5825D1082BD4058F00F36E9B /* BGmedian+CoreDataClass.swift */,
  2172. 5825D1092BD4058F00F36E9B /* BGmedian+CoreDataProperties.swift */,
  2173. 5825D10C2BD4058F00F36E9B /* LoopStatRecord+CoreDataClass.swift */,
  2174. 5825D10D2BD4058F00F36E9B /* LoopStatRecord+CoreDataProperties.swift */,
  2175. 5825D10E2BD4058F00F36E9B /* ImportError+CoreDataClass.swift */,
  2176. 5825D10F2BD4058F00F36E9B /* ImportError+CoreDataProperties.swift */,
  2177. 5825D1102BD4058F00F36E9B /* TDD+CoreDataClass.swift */,
  2178. 5825D1112BD4058F00F36E9B /* TDD+CoreDataProperties.swift */,
  2179. 5825D1122BD4058F00F36E9B /* TempTargetsSlider+CoreDataClass.swift */,
  2180. 5825D1132BD4058F00F36E9B /* TempTargetsSlider+CoreDataProperties.swift */,
  2181. 5825D1142BD4058F00F36E9B /* Presets+CoreDataClass.swift */,
  2182. 5825D1152BD4058F00F36E9B /* Presets+CoreDataProperties.swift */,
  2183. 5825D1162BD4058F00F36E9B /* Autosens_+CoreDataClass.swift */,
  2184. 5825D1172BD4058F00F36E9B /* Autosens_+CoreDataProperties.swift */,
  2185. 5825D1182BD4058F00F36E9B /* Oref0Suggestion+CoreDataClass.swift */,
  2186. 5825D1192BD4058F00F36E9B /* Oref0Suggestion+CoreDataProperties.swift */,
  2187. 5825D11A2BD4058F00F36E9B /* Override+CoreDataClass.swift */,
  2188. 5825D11B2BD4058F00F36E9B /* Override+CoreDataProperties.swift */,
  2189. 5825D11C2BD4058F00F36E9B /* OrefDetermination+CoreDataClass.swift */,
  2190. 5825D11D2BD4058F00F36E9B /* OrefDetermination+CoreDataProperties.swift */,
  2191. 5825D11E2BD4058F00F36E9B /* TempTargets+CoreDataClass.swift */,
  2192. 5825D11F2BD4058F00F36E9B /* TempTargets+CoreDataProperties.swift */,
  2193. 5825D1202BD4058F00F36E9B /* HbA1c+CoreDataClass.swift */,
  2194. 5825D1212BD4058F00F36E9B /* HbA1c+CoreDataProperties.swift */,
  2195. 5825D1222BD4058F00F36E9B /* InsulinDistribution+CoreDataClass.swift */,
  2196. 5825D1232BD4058F00F36E9B /* InsulinDistribution+CoreDataProperties.swift */,
  2197. 5825D1242BD4058F00F36E9B /* LastLoop+CoreDataClass.swift */,
  2198. 5825D1252BD4058F00F36E9B /* LastLoop+CoreDataProperties.swift */,
  2199. 5825D1262BD4058F00F36E9B /* CarbEntryStored+CoreDataClass.swift */,
  2200. 5825D1272BD4058F00F36E9B /* CarbEntryStored+CoreDataProperties.swift */,
  2201. 5825D1282BD4058F00F36E9B /* Autotune_+CoreDataClass.swift */,
  2202. 5825D1292BD4058F00F36E9B /* Autotune_+CoreDataProperties.swift */,
  2203. 5825D12A2BD4058F00F36E9B /* StatsData+CoreDataClass.swift */,
  2204. 5825D12B2BD4058F00F36E9B /* StatsData+CoreDataProperties.swift */,
  2205. 5825D12C2BD4058F00F36E9B /* OverridePresets+CoreDataClass.swift */,
  2206. 5825D12D2BD4058F00F36E9B /* OverridePresets+CoreDataProperties.swift */,
  2207. 5825D12E2BD4058F00F36E9B /* Target+CoreDataClass.swift */,
  2208. 5825D12F2BD4058F00F36E9B /* Target+CoreDataProperties.swift */,
  2209. 5825D1302BD4058F00F36E9B /* Protein+CoreDataClass.swift */,
  2210. 5825D1312BD4058F00F36E9B /* Protein+CoreDataProperties.swift */,
  2211. );
  2212. path = "Classes+Properties";
  2213. sourceTree = "<group>";
  2214. };
  2215. 5825D1622BD405AE00F36E9B /* Helper */ = {
  2216. isa = PBXGroup;
  2217. children = (
  2218. 1956FB202AFF79E200C7B4FF /* CoreDataStorage.swift */,
  2219. 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */,
  2220. 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */,
  2221. 58F107732BD1A4D000B1A680 /* Determination+helper.swift */,
  2222. 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */,
  2223. 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */,
  2224. CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */,
  2225. 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */,
  2226. 581AC4382BE22ED10038760C /* JSONConverter.swift */,
  2227. );
  2228. path = Helper;
  2229. sourceTree = "<group>";
  2230. };
  2231. 587A54C82BCDCE0F009D38E2 /* Model */ = {
  2232. isa = PBXGroup;
  2233. children = (
  2234. FEFA5C0D299F810B00765C17 /* Core_Data.xcdatamodeld */,
  2235. FEFA5C10299F814A00765C17 /* CoreDataStack.swift */,
  2236. 5825D1052BD4056700F36E9B /* Classes+Properties */,
  2237. 5825D1622BD405AE00F36E9B /* Helper */,
  2238. );
  2239. path = Model;
  2240. sourceTree = "<group>";
  2241. };
  2242. 64271A287C92581EADCB47FA /* View */ = {
  2243. isa = PBXGroup;
  2244. children = (
  2245. B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */,
  2246. );
  2247. path = View;
  2248. sourceTree = "<group>";
  2249. };
  2250. 6517011F19F244F64E1FF14B /* TargetsEditor */ = {
  2251. isa = PBXGroup;
  2252. children = (
  2253. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */,
  2254. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */,
  2255. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */,
  2256. 34CA4DF169B53D67EF18ED8A /* View */,
  2257. );
  2258. path = TargetsEditor;
  2259. sourceTree = "<group>";
  2260. };
  2261. 672F63EEAE27400625E14BAD /* AutotuneConfig */ = {
  2262. isa = PBXGroup;
  2263. children = (
  2264. 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */,
  2265. B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */,
  2266. D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */,
  2267. 55DE731ACE8289FAF3819077 /* View */,
  2268. );
  2269. path = AutotuneConfig;
  2270. sourceTree = "<group>";
  2271. };
  2272. 6B1A8D1C2B14D91600E76752 /* LiveActivity */ = {
  2273. isa = PBXGroup;
  2274. children = (
  2275. 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */,
  2276. 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */,
  2277. BD188BEB2B1B805A00B183BF /* WidgetBobble.swift */,
  2278. 6B1A8D232B14D91700E76752 /* Assets.xcassets */,
  2279. 6B1A8D252B14D91700E76752 /* Info.plist */,
  2280. );
  2281. path = LiveActivity;
  2282. sourceTree = "<group>";
  2283. };
  2284. 6B1A8D2C2B156EC100E76752 /* LiveActivity */ = {
  2285. isa = PBXGroup;
  2286. children = (
  2287. 6B1A8D2D2B156EEF00E76752 /* LiveActivityBridge.swift */,
  2288. 6BCF84DC2B16843A003AD46E /* LiveActitiyShared.swift */,
  2289. );
  2290. path = LiveActivity;
  2291. sourceTree = "<group>";
  2292. };
  2293. 833DA2F9E47E64E305F92F9D /* View */ = {
  2294. isa = PBXGroup;
  2295. children = (
  2296. 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */,
  2297. );
  2298. path = View;
  2299. sourceTree = "<group>";
  2300. };
  2301. 84BDC840A57C65A1E6F9F780 /* View */ = {
  2302. isa = PBXGroup;
  2303. children = (
  2304. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */,
  2305. );
  2306. path = View;
  2307. sourceTree = "<group>";
  2308. };
  2309. 99C01B871ACAB3F32CE755C7 /* PumpConfig */ = {
  2310. isa = PBXGroup;
  2311. children = (
  2312. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */,
  2313. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */,
  2314. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */,
  2315. 510CCF29FD3216C5BBC49A15 /* View */,
  2316. );
  2317. path = PumpConfig;
  2318. sourceTree = "<group>";
  2319. };
  2320. 9E56E3626FAD933385101B76 /* DataTable */ = {
  2321. isa = PBXGroup;
  2322. children = (
  2323. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */,
  2324. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */,
  2325. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */,
  2326. 0EE66DD474AFFD4FD787D5B9 /* View */,
  2327. );
  2328. path = DataTable;
  2329. sourceTree = "<group>";
  2330. };
  2331. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */ = {
  2332. isa = PBXGroup;
  2333. children = (
  2334. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */,
  2335. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */,
  2336. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */,
  2337. 18B49BC9587A59E3A347C1CD /* View */,
  2338. );
  2339. path = BasalProfileEditor;
  2340. sourceTree = "<group>";
  2341. };
  2342. A56097CB1DCBCE98F2F42177 /* View */ = {
  2343. isa = PBXGroup;
  2344. children = (
  2345. BC210C0F3CB6D3C86E5DED4E /* LibreConfigRootView.swift */,
  2346. );
  2347. path = View;
  2348. sourceTree = "<group>";
  2349. };
  2350. A9A4C88374496B3C89058A89 /* AddTempTarget */ = {
  2351. isa = PBXGroup;
  2352. children = (
  2353. 5B8A42073A2D03A278914448 /* AddTempTargetDataFlow.swift */,
  2354. AEE53A13D26F101B332EFFC8 /* AddTempTargetProvider.swift */,
  2355. 8C3B5FD881CA45DFDEE0EDA9 /* AddTempTargetStateModel.swift */,
  2356. 3F8670D63672AF88E2E9B09E /* View */,
  2357. );
  2358. path = AddTempTarget;
  2359. sourceTree = "<group>";
  2360. };
  2361. B9488883C59C31550E0B4CEC /* View */ = {
  2362. isa = PBXGroup;
  2363. children = (
  2364. BDFD16592AE40438007F0DDA /* BolusRootView.swift */,
  2365. 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */,
  2366. );
  2367. path = View;
  2368. sourceTree = "<group>";
  2369. };
  2370. BD7DA9A32AE06DBA00601B20 /* BolusCalculatorConfig */ = {
  2371. isa = PBXGroup;
  2372. children = (
  2373. BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */,
  2374. BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */,
  2375. BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */,
  2376. BD7DA9AA2AE06E9600601B20 /* View */,
  2377. );
  2378. path = BolusCalculatorConfig;
  2379. sourceTree = "<group>";
  2380. };
  2381. BD7DA9AA2AE06E9600601B20 /* View */ = {
  2382. isa = PBXGroup;
  2383. children = (
  2384. BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */,
  2385. );
  2386. path = View;
  2387. sourceTree = "<group>";
  2388. };
  2389. C11D545CED3ECEB525EDEE23 /* LibreConfig */ = {
  2390. isa = PBXGroup;
  2391. children = (
  2392. 66A5B83E7967C38F7CBD883C /* LibreConfigDataFlow.swift */,
  2393. E2EBA7C03C26FCC67E16D798 /* LibreConfigProvider.swift */,
  2394. E68CDC1E5C438D1BEAD4CF24 /* LibreConfigStateModel.swift */,
  2395. A56097CB1DCBCE98F2F42177 /* View */,
  2396. );
  2397. path = LibreConfig;
  2398. sourceTree = "<group>";
  2399. };
  2400. C2C98283C436DB934D7E7994 /* Bolus */ = {
  2401. isa = PBXGroup;
  2402. children = (
  2403. C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */,
  2404. C19984D62EFC0035A9E9644D /* BolusProvider.swift */,
  2405. 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */,
  2406. B9488883C59C31550E0B4CEC /* View */,
  2407. );
  2408. path = Bolus;
  2409. sourceTree = "<group>";
  2410. };
  2411. CE1856F32ADC4835007E39C7 /* Carbs */ = {
  2412. isa = PBXGroup;
  2413. children = (
  2414. CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */,
  2415. CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */,
  2416. );
  2417. path = Carbs;
  2418. sourceTree = "<group>";
  2419. };
  2420. CE7CA3422A064973004BE681 /* Shortcuts */ = {
  2421. isa = PBXGroup;
  2422. children = (
  2423. CE1856F32ADC4835007E39C7 /* Carbs */,
  2424. CE7CA3432A064973004BE681 /* AppShortcuts.swift */,
  2425. CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */,
  2426. CE7CA3452A064973004BE681 /* TempPresets */,
  2427. CE7CA34B2A064973004BE681 /* State */,
  2428. );
  2429. path = Shortcuts;
  2430. sourceTree = "<group>";
  2431. };
  2432. CE7CA3452A064973004BE681 /* TempPresets */ = {
  2433. isa = PBXGroup;
  2434. children = (
  2435. CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */,
  2436. CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */,
  2437. CE7CA3482A064973004BE681 /* ListTempPresetsIntent.swift */,
  2438. CE7CA3492A064973004BE681 /* tempPresetIntent.swift */,
  2439. CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */,
  2440. );
  2441. path = TempPresets;
  2442. sourceTree = "<group>";
  2443. };
  2444. CE7CA34B2A064973004BE681 /* State */ = {
  2445. isa = PBXGroup;
  2446. children = (
  2447. CE7CA34C2A064973004BE681 /* ListStateIntent.swift */,
  2448. CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */,
  2449. CE7CA3572A064E2F004BE681 /* ListStateView.swift */,
  2450. );
  2451. path = State;
  2452. sourceTree = "<group>";
  2453. };
  2454. CE94597C29E9E1CD0047C9C6 /* WatchConfig */ = {
  2455. isa = PBXGroup;
  2456. children = (
  2457. CE94598529E9E3FE0047C9C6 /* View */,
  2458. CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */,
  2459. CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */,
  2460. CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */,
  2461. );
  2462. path = WatchConfig;
  2463. sourceTree = "<group>";
  2464. };
  2465. CE94598529E9E3FE0047C9C6 /* View */ = {
  2466. isa = PBXGroup;
  2467. children = (
  2468. CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */,
  2469. );
  2470. path = View;
  2471. sourceTree = "<group>";
  2472. };
  2473. CEB434E128B8F9BC00B70274 /* Bluetooth */ = {
  2474. isa = PBXGroup;
  2475. children = (
  2476. CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */,
  2477. );
  2478. path = Bluetooth;
  2479. sourceTree = "<group>";
  2480. };
  2481. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */ = {
  2482. isa = PBXGroup;
  2483. children = (
  2484. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */,
  2485. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */,
  2486. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */,
  2487. 4F4AE4D901E8BA872B207D7F /* View */,
  2488. );
  2489. path = NightscoutConfig;
  2490. sourceTree = "<group>";
  2491. };
  2492. D8F047E14D567F2B5DBEFD96 /* ISFEditor */ = {
  2493. isa = PBXGroup;
  2494. children = (
  2495. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */,
  2496. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */,
  2497. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */,
  2498. EEC747824D6593B5CD87E195 /* View */,
  2499. );
  2500. path = ISFEditor;
  2501. sourceTree = "<group>";
  2502. };
  2503. E00EEBFC27368630002FF094 /* Assemblies */ = {
  2504. isa = PBXGroup;
  2505. children = (
  2506. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */,
  2507. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */,
  2508. E00EEBFF27368630002FF094 /* StorageAssembly.swift */,
  2509. E00EEC0027368630002FF094 /* UIAssembly.swift */,
  2510. E00EEC0127368630002FF094 /* APSAssembly.swift */,
  2511. E00EEC0227368630002FF094 /* NetworkAssembly.swift */,
  2512. );
  2513. path = Assemblies;
  2514. sourceTree = "<group>";
  2515. };
  2516. E42231DBF0DBE2B4B92D1B15 /* CREditor */ = {
  2517. isa = PBXGroup;
  2518. children = (
  2519. 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */,
  2520. 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */,
  2521. 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */,
  2522. 54946647FDCFE43028F60511 /* View */,
  2523. );
  2524. path = CREditor;
  2525. sourceTree = "<group>";
  2526. };
  2527. E493126EA71765130F64CCE5 /* PumpSettingsEditor */ = {
  2528. isa = PBXGroup;
  2529. children = (
  2530. 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */,
  2531. D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */,
  2532. 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */,
  2533. 64271A287C92581EADCB47FA /* View */,
  2534. );
  2535. path = PumpSettingsEditor;
  2536. sourceTree = "<group>";
  2537. };
  2538. E8176B120B55CE89F1591542 /* Calibrations */ = {
  2539. isa = PBXGroup;
  2540. children = (
  2541. DA241FB1663EC96FDBE64C8A /* CalibrationsDataFlow.swift */,
  2542. 212E8BFE6D66EE65AA26A114 /* CalibrationsProvider.swift */,
  2543. 47DFCE895C930F784EF11843 /* CalibrationsStateModel.swift */,
  2544. 43952E72FE7AF85715FE020E /* View */,
  2545. );
  2546. path = Calibrations;
  2547. sourceTree = "<group>";
  2548. };
  2549. EEC747824D6593B5CD87E195 /* View */ = {
  2550. isa = PBXGroup;
  2551. children = (
  2552. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */,
  2553. );
  2554. path = View;
  2555. sourceTree = "<group>";
  2556. };
  2557. F5DE2E6D7B2133BBD3353DC7 /* View */ = {
  2558. isa = PBXGroup;
  2559. children = (
  2560. 22963BD06A9C83959D4914E4 /* NotificationsConfigRootView.swift */,
  2561. );
  2562. path = View;
  2563. sourceTree = "<group>";
  2564. };
  2565. F66B236E00924A05D6A9F9DF /* NotificationsConfig */ = {
  2566. isa = PBXGroup;
  2567. children = (
  2568. 3260468377DA9DB4DEE9AF6D /* NotificationsConfigDataFlow.swift */,
  2569. E625985B47742D498CB1681A /* NotificationsConfigProvider.swift */,
  2570. DC2C6489D29ECCCAD78E0721 /* NotificationsConfigStateModel.swift */,
  2571. F5DE2E6D7B2133BBD3353DC7 /* View */,
  2572. );
  2573. path = NotificationsConfig;
  2574. sourceTree = "<group>";
  2575. };
  2576. F75CB57ED6971B46F8756083 /* CGM */ = {
  2577. isa = PBXGroup;
  2578. children = (
  2579. B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */,
  2580. 38FEF3FD2738083E00574A46 /* CGMProvider.swift */,
  2581. 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */,
  2582. 0D76BBC81CEDC1A0050F45EF /* View */,
  2583. );
  2584. path = CGM;
  2585. sourceTree = "<group>";
  2586. };
  2587. F90692A8274B7A980037068D /* HealthKit */ = {
  2588. isa = PBXGroup;
  2589. children = (
  2590. F90692A9274B7AAE0037068D /* HealthKitManager.swift */,
  2591. );
  2592. path = HealthKit;
  2593. sourceTree = "<group>";
  2594. };
  2595. F90692CD274B99850037068D /* HealthKit */ = {
  2596. isa = PBXGroup;
  2597. children = (
  2598. F90692CE274B999A0037068D /* HealthKitDataFlow.swift */,
  2599. F90692D0274B99B60037068D /* HealthKitProvider.swift */,
  2600. F90692D5274B9A450037068D /* HealthKitStateModel.swift */,
  2601. F90692D4274B9A160037068D /* View */,
  2602. );
  2603. path = HealthKit;
  2604. sourceTree = "<group>";
  2605. };
  2606. F90692D4274B9A160037068D /* View */ = {
  2607. isa = PBXGroup;
  2608. children = (
  2609. F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */,
  2610. );
  2611. path = View;
  2612. sourceTree = "<group>";
  2613. };
  2614. /* End PBXGroup section */
  2615. /* Begin PBXNativeTarget section */
  2616. 388E595725AD948C0019842D /* FreeAPS */ = {
  2617. isa = PBXNativeTarget;
  2618. buildConfigurationList = 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "FreeAPS" */;
  2619. buildPhases = (
  2620. B9CAAEFA2AE6FDE6000F68BC /* Run Script: get branch name and commit ID */,
  2621. 3811DEF525CA169200A708ED /* Swiftformat */,
  2622. 388E595425AD948C0019842D /* Sources */,
  2623. 388E595525AD948C0019842D /* Frameworks */,
  2624. 388E595625AD948C0019842D /* Resources */,
  2625. 3821ECD025DC703C00BC42AD /* Embed Frameworks */,
  2626. 38E8753D27554D5900975559 /* Embed Watch Content */,
  2627. 6B1A8D122B14D88E00E76752 /* Embed Foundation Extensions */,
  2628. );
  2629. buildRules = (
  2630. );
  2631. dependencies = (
  2632. 38E8753B27554D5900975559 /* PBXTargetDependency */,
  2633. 6B1A8D272B14D91700E76752 /* PBXTargetDependency */,
  2634. );
  2635. name = FreeAPS;
  2636. packageProductDependencies = (
  2637. 3811DE0F25C9D37700A708ED /* Swinject */,
  2638. 38B17B6525DD90E0005CAE3D /* SwiftDate */,
  2639. 3833B46C26012030003021B3 /* Algorithms */,
  2640. 3818AA46274C255A00843DB3 /* LibreTransmitter */,
  2641. 38DF1788276FC8C400B3528F /* SwiftMessages */,
  2642. CEB434FC28B90B7C00B70274 /* SwiftCharts */,
  2643. D8DA5CD02B49EEF000C54E6C /* SlideButton */,
  2644. );
  2645. productName = FreeAPS;
  2646. productReference = 388E595825AD948C0019842D /* FreeAPS.app */;
  2647. productType = "com.apple.product-type.application";
  2648. };
  2649. 38E8751B27554D5500975559 /* FreeAPSWatch */ = {
  2650. isa = PBXNativeTarget;
  2651. buildConfigurationList = 38E8754427554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch" */;
  2652. buildPhases = (
  2653. 38E8751A27554D5500975559 /* Resources */,
  2654. 38E8754027554D5900975559 /* Embed App Extensions */,
  2655. );
  2656. buildRules = (
  2657. );
  2658. dependencies = (
  2659. 38E8752727554D5700975559 /* PBXTargetDependency */,
  2660. );
  2661. name = FreeAPSWatch;
  2662. productName = FreeAPSWatch;
  2663. productReference = 38E8751C27554D5500975559 /* FreeAPSWatch.app */;
  2664. productType = "com.apple.product-type.application.watchapp2";
  2665. };
  2666. 38E8752327554D5700975559 /* FreeAPSWatch WatchKit Extension */ = {
  2667. isa = PBXNativeTarget;
  2668. buildConfigurationList = 38E8754327554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch WatchKit Extension" */;
  2669. buildPhases = (
  2670. 38E8752027554D5700975559 /* Sources */,
  2671. 38E8752127554D5700975559 /* Frameworks */,
  2672. 38E8752227554D5700975559 /* Resources */,
  2673. );
  2674. buildRules = (
  2675. );
  2676. dependencies = (
  2677. );
  2678. name = "FreeAPSWatch WatchKit Extension";
  2679. packageProductDependencies = (
  2680. 38E8755727567AE400975559 /* SwiftDate */,
  2681. );
  2682. productName = "FreeAPSWatch WatchKit Extension";
  2683. productReference = 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */;
  2684. productType = "com.apple.product-type.watchkit2-extension";
  2685. };
  2686. 38FCF3EC25E9028E0078B0D1 /* FreeAPSTests */ = {
  2687. isa = PBXNativeTarget;
  2688. buildConfigurationList = 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "FreeAPSTests" */;
  2689. buildPhases = (
  2690. 38FCF3E925E9028E0078B0D1 /* Sources */,
  2691. 38FCF3EA25E9028E0078B0D1 /* Frameworks */,
  2692. 38FCF3EB25E9028E0078B0D1 /* Resources */,
  2693. );
  2694. buildRules = (
  2695. );
  2696. dependencies = (
  2697. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */,
  2698. );
  2699. name = FreeAPSTests;
  2700. productName = FreeAPSTests;
  2701. productReference = 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */;
  2702. productType = "com.apple.product-type.bundle.unit-test";
  2703. };
  2704. 6B1A8D162B14D91500E76752 /* LiveActivityExtension */ = {
  2705. isa = PBXNativeTarget;
  2706. buildConfigurationList = 6B1A8D292B14D91800E76752 /* Build configuration list for PBXNativeTarget "LiveActivityExtension" */;
  2707. buildPhases = (
  2708. 6B1A8D132B14D91500E76752 /* Sources */,
  2709. 6B1A8D142B14D91500E76752 /* Frameworks */,
  2710. 6B1A8D152B14D91500E76752 /* Resources */,
  2711. );
  2712. buildRules = (
  2713. );
  2714. dependencies = (
  2715. );
  2716. name = LiveActivityExtension;
  2717. productName = LiveActivityExtension;
  2718. productReference = 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */;
  2719. productType = "com.apple.product-type.app-extension";
  2720. };
  2721. /* End PBXNativeTarget section */
  2722. /* Begin PBXProject section */
  2723. 388E595025AD948C0019842D /* Project object */ = {
  2724. isa = PBXProject;
  2725. attributes = {
  2726. LastUpgradeCheck = 1240;
  2727. TargetAttributes = {
  2728. 388E595725AD948C0019842D = {
  2729. CreatedOnToolsVersion = 12.3;
  2730. };
  2731. 38E8751B27554D5500975559 = {
  2732. CreatedOnToolsVersion = 13.1;
  2733. };
  2734. 38E8752327554D5700975559 = {
  2735. CreatedOnToolsVersion = 13.1;
  2736. };
  2737. 38FCF3EC25E9028E0078B0D1 = {
  2738. CreatedOnToolsVersion = 12.4;
  2739. TestTargetID = 388E595725AD948C0019842D;
  2740. };
  2741. };
  2742. };
  2743. buildConfigurationList = 388E595325AD948C0019842D /* Build configuration list for PBXProject "FreeAPS" */;
  2744. compatibilityVersion = "Xcode 9.3";
  2745. developmentRegion = en;
  2746. hasScannedForEncodings = 0;
  2747. knownRegions = (
  2748. en,
  2749. Base,
  2750. ar,
  2751. ca,
  2752. "zh-Hans",
  2753. da,
  2754. nl,
  2755. fr,
  2756. de,
  2757. he,
  2758. it,
  2759. nb,
  2760. pl,
  2761. ru,
  2762. es,
  2763. sv,
  2764. tr,
  2765. uk,
  2766. fi,
  2767. "pt-PT",
  2768. "pt-BR",
  2769. sk,
  2770. );
  2771. mainGroup = 388E594F25AD948C0019842D;
  2772. packageReferences = (
  2773. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */,
  2774. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */,
  2775. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */,
  2776. 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */,
  2777. CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */,
  2778. D8DA5CCF2B49EEF000C54E6C /* XCRemoteSwiftPackageReference "SlideButton" */,
  2779. );
  2780. productRefGroup = 388E595925AD948C0019842D /* Products */;
  2781. projectDirPath = "";
  2782. projectRoot = "";
  2783. targets = (
  2784. 388E595725AD948C0019842D /* FreeAPS */,
  2785. 38FCF3EC25E9028E0078B0D1 /* FreeAPSTests */,
  2786. 38E8751B27554D5500975559 /* FreeAPSWatch */,
  2787. 38E8752327554D5700975559 /* FreeAPSWatch WatchKit Extension */,
  2788. 6B1A8D162B14D91500E76752 /* LiveActivityExtension */,
  2789. );
  2790. };
  2791. /* End PBXProject section */
  2792. /* Begin PBXResourcesBuildPhase section */
  2793. 388E595625AD948C0019842D /* Resources */ = {
  2794. isa = PBXResourcesBuildPhase;
  2795. buildActionMask = 2147483647;
  2796. files = (
  2797. 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */,
  2798. 38DF178D27733E6800B3528F /* snow.sks in Resources */,
  2799. 388E597225AD9CF10019842D /* json in Resources */,
  2800. 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */,
  2801. 19DA48E829CD339B00EEA1E7 /* Assets.xcassets in Resources */,
  2802. 388E596F25AD96040019842D /* javascript in Resources */,
  2803. B9CAAEFC2AE70836000F68BC /* branch.txt in Resources */,
  2804. 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */,
  2805. );
  2806. runOnlyForDeploymentPostprocessing = 0;
  2807. };
  2808. 38E8751A27554D5500975559 /* Resources */ = {
  2809. isa = PBXResourcesBuildPhase;
  2810. buildActionMask = 2147483647;
  2811. files = (
  2812. 19DA48E929CD339C00EEA1E7 /* Assets.xcassets in Resources */,
  2813. );
  2814. runOnlyForDeploymentPostprocessing = 0;
  2815. };
  2816. 38E8752227554D5700975559 /* Resources */ = {
  2817. isa = PBXResourcesBuildPhase;
  2818. buildActionMask = 2147483647;
  2819. files = (
  2820. 38E8753727554D5900975559 /* Preview Assets.xcassets in Resources */,
  2821. 19795118275953E50044850D /* Localizable.strings in Resources */,
  2822. 19DA48EA29CD339C00EEA1E7 /* Assets.xcassets in Resources */,
  2823. 38E8753427554D5800975559 /* Assets.xcassets in Resources */,
  2824. );
  2825. runOnlyForDeploymentPostprocessing = 0;
  2826. };
  2827. 38FCF3EB25E9028E0078B0D1 /* Resources */ = {
  2828. isa = PBXResourcesBuildPhase;
  2829. buildActionMask = 2147483647;
  2830. files = (
  2831. );
  2832. runOnlyForDeploymentPostprocessing = 0;
  2833. };
  2834. 6B1A8D152B14D91500E76752 /* Resources */ = {
  2835. isa = PBXResourcesBuildPhase;
  2836. buildActionMask = 2147483647;
  2837. files = (
  2838. 6B1A8D242B14D91700E76752 /* Assets.xcassets in Resources */,
  2839. );
  2840. runOnlyForDeploymentPostprocessing = 0;
  2841. };
  2842. /* End PBXResourcesBuildPhase section */
  2843. /* Begin PBXShellScriptBuildPhase section */
  2844. 3811DEF525CA169200A708ED /* Swiftformat */ = {
  2845. isa = PBXShellScriptBuildPhase;
  2846. buildActionMask = 2147483647;
  2847. files = (
  2848. );
  2849. inputFileListPaths = (
  2850. );
  2851. inputPaths = (
  2852. );
  2853. name = Swiftformat;
  2854. outputFileListPaths = (
  2855. );
  2856. outputPaths = (
  2857. );
  2858. runOnlyForDeploymentPostprocessing = 0;
  2859. shellPath = /bin/sh;
  2860. shellScript = "source \"${SRCROOT}\"/scripts/swiftformat.sh\n\n";
  2861. };
  2862. B9CAAEFA2AE6FDE6000F68BC /* Run Script: get branch name and commit ID */ = {
  2863. isa = PBXShellScriptBuildPhase;
  2864. alwaysOutOfDate = 1;
  2865. buildActionMask = 2147483647;
  2866. files = (
  2867. );
  2868. inputFileListPaths = (
  2869. );
  2870. inputPaths = (
  2871. );
  2872. name = "Run Script: get branch name and commit ID";
  2873. outputFileListPaths = (
  2874. );
  2875. outputPaths = (
  2876. );
  2877. runOnlyForDeploymentPostprocessing = 0;
  2878. shellPath = /bin/sh;
  2879. shellScript = "# Prints a message\necho \"writing BRANCH to branch.txt\"\n\n# Retrieves version, branch, and tag information from Git\ngit_version=$(git log -1 --format=\"%h\" --abbrev=7)\ngit_branch=$(git symbolic-ref --short -q HEAD)\ngit_tag=$(git describe --tags --exact-match 2>/dev/null)\n\n# Determines branch or tag information\ngit_branch_or_tag=\"${git_branch:-${git_tag}}\"\ngit_branch_or_tag_version=\"${git_branch_or_tag} ${git_version}\"\n\necho \"BRANCH = ${git_branch_or_tag_version}\" > \"./branch.txt\"\n\n# Prints a message about the working directory and branch.txt\necho \"branch.txt is created/modified in ${PWD}\"\n";
  2880. };
  2881. /* End PBXShellScriptBuildPhase section */
  2882. /* Begin PBXSourcesBuildPhase section */
  2883. 388E595425AD948C0019842D /* Sources */ = {
  2884. isa = PBXSourcesBuildPhase;
  2885. buildActionMask = 2147483647;
  2886. files = (
  2887. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */,
  2888. BD3CC0722B0B89D50013189E /* MainChartView.swift in Sources */,
  2889. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */,
  2890. 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */,
  2891. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */,
  2892. 3811DE8F25C9D80400A708ED /* User.swift in Sources */,
  2893. 19D466A329AA2B80004D5F33 /* FPUConfigDataFlow.swift in Sources */,
  2894. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */,
  2895. 385CEAC425F2F154002D6D5B /* AnnouncementsStorage.swift in Sources */,
  2896. 38AEE73D25F0200C0013F05B /* FreeAPSSettings.swift in Sources */,
  2897. 5825D1352BD4058F00F36E9B /* BGaverages+CoreDataProperties.swift in Sources */,
  2898. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */,
  2899. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */,
  2900. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */,
  2901. F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */,
  2902. CE7CA3552A064973004BE681 /* ListStateIntent.swift in Sources */,
  2903. 581F7FB42BE7B2A0005A5F89 /* BolusStored+CoreDataProperties.swift in Sources */,
  2904. BDF530D82B40F8AC002CAF43 /* LockScreenView.swift in Sources */,
  2905. 5825D15F2BD4058F00F36E9B /* Protein+CoreDataProperties.swift in Sources */,
  2906. 5825D15D2BD4058F00F36E9B /* Target+CoreDataProperties.swift in Sources */,
  2907. 5825D1402BD4058F00F36E9B /* TempTargetsSlider+CoreDataClass.swift in Sources */,
  2908. 195D80B72AF697B800D25097 /* DynamicDataFlow.swift in Sources */,
  2909. 5825D1542BD4058F00F36E9B /* CarbEntryStored+CoreDataClass.swift in Sources */,
  2910. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */,
  2911. CEA4F62329BE10F70011ADF7 /* SavitzkyGolayFilter.swift in Sources */,
  2912. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */,
  2913. 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */,
  2914. 585E2CB52BE7DA03006ECF1A /* PumpEventStored+CoreDataClass.swift in Sources */,
  2915. 19E1F7EF29D08EBA005C8D20 /* IconConfigRootWiew.swift in Sources */,
  2916. 1967DFC229D053D300759F30 /* IconImage.swift in Sources */,
  2917. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */,
  2918. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */,
  2919. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */,
  2920. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */,
  2921. 38FEF408273B011A00574A46 /* LibreTransmitterSource.swift in Sources */,
  2922. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */,
  2923. 5825D14E2BD4058F00F36E9B /* HbA1c+CoreDataClass.swift in Sources */,
  2924. 585E2CB32BE7DA03006ECF1A /* TempBasalStored+CoreDataClass.swift in Sources */,
  2925. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */,
  2926. 386A124F271707F000DDC61C /* DexcomSourceG6.swift in Sources */,
  2927. CE94598429E9E3E60047C9C6 /* WatchConfigStateModel.swift in Sources */,
  2928. 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */,
  2929. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */,
  2930. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */,
  2931. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */,
  2932. 5825D15A2BD4058F00F36E9B /* OverridePresets+CoreDataClass.swift in Sources */,
  2933. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */,
  2934. 5825D1492BD4058F00F36E9B /* Override+CoreDataProperties.swift in Sources */,
  2935. 19F95FF529F10FCF00314DDC /* StatProvider.swift in Sources */,
  2936. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */,
  2937. 19B0EF2128F6D66200069496 /* Statistics.swift in Sources */,
  2938. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */,
  2939. 5825D13E2BD4058F00F36E9B /* TDD+CoreDataClass.swift in Sources */,
  2940. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */,
  2941. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */,
  2942. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */,
  2943. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */,
  2944. CE94598029E9E3BD0047C9C6 /* WatchConfigDataFlow.swift in Sources */,
  2945. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */,
  2946. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */,
  2947. 384E803825C388640086DB71 /* Script.swift in Sources */,
  2948. CE94597E29E9E1EE0047C9C6 /* GarminManager.swift in Sources */,
  2949. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */,
  2950. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */,
  2951. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */,
  2952. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */,
  2953. 19D466A529AA2BD4004D5F33 /* FPUConfigProvider.swift in Sources */,
  2954. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */,
  2955. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */,
  2956. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */,
  2957. 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */,
  2958. 388E595C25AD948C0019842D /* FreeAPSApp.swift in Sources */,
  2959. 5825D1522BD4058F00F36E9B /* LastLoop+CoreDataClass.swift in Sources */,
  2960. 588752852BD9986A008B081D /* OpenAPS_Battery+CoreDataProperties.swift in Sources */,
  2961. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */,
  2962. 5825D13A2BD4058F00F36E9B /* LoopStatRecord+CoreDataClass.swift in Sources */,
  2963. 5887527C2BD986E1008B081D /* OpenAPSBattery.swift in Sources */,
  2964. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */,
  2965. 5825D15B2BD4058F00F36E9B /* OverridePresets+CoreDataProperties.swift in Sources */,
  2966. CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */,
  2967. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */,
  2968. 5825D1502BD4058F00F36E9B /* InsulinDistribution+CoreDataClass.swift in Sources */,
  2969. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */,
  2970. CE94598229E9E3D30047C9C6 /* WatchConfigProvider.swift in Sources */,
  2971. 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */,
  2972. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */,
  2973. FE41E4D629463EE20047FD55 /* NightscoutPreferences.swift in Sources */,
  2974. E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */,
  2975. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */,
  2976. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */,
  2977. 5825D1452BD4058F00F36E9B /* Autosens_+CoreDataProperties.swift in Sources */,
  2978. 585E2CB42BE7DA03006ECF1A /* TempBasalStored+CoreDataProperties.swift in Sources */,
  2979. 19DC678529CA67A400FD9EC4 /* OverrideProfilesRootView.swift in Sources */,
  2980. 5837A5302BD2E3C700A5DC04 /* CarbEntryStored+helper.swift in Sources */,
  2981. CC76E94C2BD471BA008BEB61 /* Forecast+CoreDataClass.swift in Sources */,
  2982. CC76E94D2BD471BA008BEB61 /* Forecast+CoreDataProperties.swift in Sources */,
  2983. CC76E94E2BD471BA008BEB61 /* ForecastValue+CoreDataClass.swift in Sources */,
  2984. CC76E94F2BD471BA008BEB61 /* ForecastValue+CoreDataProperties.swift in Sources */,
  2985. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */,
  2986. 19A910382A24EF3200C8951B /* ChartsView.swift in Sources */,
  2987. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */,
  2988. 19D466A729AA2C22004D5F33 /* FPUConfigStateModel.swift in Sources */,
  2989. 38E44528274E401C00EC9A94 /* Protected.swift in Sources */,
  2990. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */,
  2991. 581516A42BCED84A00BF67D7 /* DebuggingIdentifiers.swift in Sources */,
  2992. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */,
  2993. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */,
  2994. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */,
  2995. 3811DE1825C9D40400A708ED /* Router.swift in Sources */,
  2996. 5825D1462BD4058F00F36E9B /* Oref0Suggestion+CoreDataClass.swift in Sources */,
  2997. CE7950262998056D00FA576E /* CGMSetupView.swift in Sources */,
  2998. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */,
  2999. 190EBCC629FF138000BA767D /* StatConfigProvider.swift in Sources */,
  3000. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */,
  3001. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */,
  3002. 3811DEE825CA063400A708ED /* Injected.swift in Sources */,
  3003. 5825D14A2BD4058F00F36E9B /* OrefDetermination+CoreDataClass.swift in Sources */,
  3004. 585E2CAE2BE7BF46006ECF1A /* PumpEvent+helper.swift in Sources */,
  3005. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */,
  3006. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */,
  3007. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */,
  3008. 5825D1582BD4058F00F36E9B /* StatsData+CoreDataClass.swift in Sources */,
  3009. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */,
  3010. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */,
  3011. CE1856F52ADC4858007E39C7 /* AddCarbPresetIntent.swift in Sources */,
  3012. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */,
  3013. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */,
  3014. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */,
  3015. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */,
  3016. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */,
  3017. 5825D1482BD4058F00F36E9B /* Override+CoreDataClass.swift in Sources */,
  3018. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */,
  3019. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */,
  3020. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */,
  3021. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */,
  3022. CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */,
  3023. CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */,
  3024. CECA4775298DA8310095139F /* DexcomSourceG5.swift in Sources */,
  3025. 19F95FF329F10FBC00314DDC /* StatDataFlow.swift in Sources */,
  3026. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */,
  3027. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */,
  3028. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */,
  3029. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */,
  3030. 5825D1562BD4058F00F36E9B /* Autotune_+CoreDataClass.swift in Sources */,
  3031. 5825D13D2BD4058F00F36E9B /* ImportError+CoreDataProperties.swift in Sources */,
  3032. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */,
  3033. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */,
  3034. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */,
  3035. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */,
  3036. CC41E29A2B1E1F460070974F /* HistoryLayout.swift in Sources */,
  3037. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */,
  3038. 19A910302A24BF6300C8951B /* StatsView.swift in Sources */,
  3039. BD7DA9A92AE06E9200601B20 /* BolusCalculatorStateModel.swift in Sources */,
  3040. CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */,
  3041. 190EBCCB29FF13CB00BA767D /* StatConfigRootView.swift in Sources */,
  3042. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */,
  3043. CE7950242997D81700FA576E /* CGMSettingsView.swift in Sources */,
  3044. 58237D9E2BCF0A6B00A47A79 /* PopupView.swift in Sources */,
  3045. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */,
  3046. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */,
  3047. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */,
  3048. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */,
  3049. 191F62682AD6B05A004D7911 /* NightscoutSettings.swift in Sources */,
  3050. 5825D1342BD4058F00F36E9B /* BGaverages+CoreDataClass.swift in Sources */,
  3051. FEFA5C11299F814A00765C17 /* CoreDataStack.swift in Sources */,
  3052. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */,
  3053. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */,
  3054. 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */,
  3055. CE82E02528E867BA00473A9C /* AlertStorage.swift in Sources */,
  3056. 5825D1422BD4058F00F36E9B /* Presets+CoreDataClass.swift in Sources */,
  3057. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */,
  3058. 583684082BD195A700070A60 /* Determination.swift in Sources */,
  3059. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */,
  3060. 3862CC05273D152B00BF832C /* CalibrationService.swift in Sources */,
  3061. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */,
  3062. 190EBCC829FF13AA00BA767D /* StatConfigStateModel.swift in Sources */,
  3063. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */,
  3064. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */,
  3065. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */,
  3066. FE66D16B291F74F8005D6F77 /* Bundle+Extensions.swift in Sources */,
  3067. 3883581C25EE79BB00E024B2 /* DecimalTextField.swift in Sources */,
  3068. 6B1A8D2E2B156EEF00E76752 /* LiveActivityBridge.swift in Sources */,
  3069. 581516A92BCEEDF800BF67D7 /* NSPredicates.swift in Sources */,
  3070. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */,
  3071. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */,
  3072. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */,
  3073. CE7CA3582A064E2F004BE681 /* ListStateView.swift in Sources */,
  3074. 193F6CDD2A512C8F001240FD /* Loops.swift in Sources */,
  3075. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */,
  3076. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */,
  3077. BDFD165A2AE40438007F0DDA /* BolusRootView.swift in Sources */,
  3078. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */,
  3079. 5825D1592BD4058F00F36E9B /* StatsData+CoreDataProperties.swift in Sources */,
  3080. 190EBCC429FF136900BA767D /* StatConfigDataFlow.swift in Sources */,
  3081. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */,
  3082. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */,
  3083. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */,
  3084. 587DA1F62B77F3DD00B28F8A /* SettingsRowView.swift in Sources */,
  3085. 3871F38725ED661C0013ECB5 /* Suggestion.swift in Sources */,
  3086. 5825D1572BD4058F00F36E9B /* Autotune_+CoreDataProperties.swift in Sources */,
  3087. CE7CA34E2A064973004BE681 /* AppShortcuts.swift in Sources */,
  3088. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */,
  3089. 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */,
  3090. 19DC677F29CA675700FD9EC4 /* OverrideProfilesDataFlow.swift in Sources */,
  3091. 1935364028496F7D001E0B16 /* Oref2_variables.swift in Sources */,
  3092. CE2FAD3A297D93F0001A872C /* BloodGlucoseExtensions.swift in Sources */,
  3093. 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */,
  3094. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */,
  3095. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */,
  3096. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */,
  3097. CE7CA3532A064973004BE681 /* tempPresetIntent.swift in Sources */,
  3098. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */,
  3099. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */,
  3100. 5825D14C2BD4058F00F36E9B /* TempTargets+CoreDataClass.swift in Sources */,
  3101. CE1856F72ADC4869007E39C7 /* CarbPresetIntentRequest.swift in Sources */,
  3102. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */,
  3103. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */,
  3104. 38A43598262E0E4900E80935 /* FetchAnnouncementsManager.swift in Sources */,
  3105. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */,
  3106. 5825D1512BD4058F00F36E9B /* InsulinDistribution+CoreDataProperties.swift in Sources */,
  3107. BD7DA9AC2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift in Sources */,
  3108. 5825D15E2BD4058F00F36E9B /* Protein+CoreDataClass.swift in Sources */,
  3109. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */,
  3110. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */,
  3111. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */,
  3112. 19D466AA29AA3099004D5F33 /* FPUConfigRootView.swift in Sources */,
  3113. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */,
  3114. 581AC4392BE22ED10038760C /* JSONConverter.swift in Sources */,
  3115. CE7CA3522A064973004BE681 /* ListTempPresetsIntent.swift in Sources */,
  3116. 448B6FCB252BD4796E2960C0 /* PumpSettingsEditorDataFlow.swift in Sources */,
  3117. 38E44536274E411700EC9A94 /* Disk.swift in Sources */,
  3118. 2BE9A6FA20875F6F4F9CD461 /* PumpSettingsEditorProvider.swift in Sources */,
  3119. 6B9625766B697D1C98E455A2 /* PumpSettingsEditorStateModel.swift in Sources */,
  3120. 19A910362A24D6D700C8951B /* DateFilter.swift in Sources */,
  3121. A0B8EC8CC5CD1DD237D1BCD2 /* PumpSettingsEditorRootView.swift in Sources */,
  3122. E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */,
  3123. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */,
  3124. 19DC678329CA677D00FD9EC4 /* OverrideProfilesStateModel.swift in Sources */,
  3125. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */,
  3126. 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */,
  3127. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */,
  3128. 5825D13C2BD4058F00F36E9B /* ImportError+CoreDataClass.swift in Sources */,
  3129. 5825D13F2BD4058F00F36E9B /* TDD+CoreDataProperties.swift in Sources */,
  3130. CC76E9512BD4812E008BEB61 /* Forecast+helper.swift in Sources */,
  3131. F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */,
  3132. 19F95FF729F10FEE00314DDC /* StatStateModel.swift in Sources */,
  3133. 5825D1432BD4058F00F36E9B /* Presets+CoreDataProperties.swift in Sources */,
  3134. 385CEAC125F2EA52002D6D5B /* Announcement.swift in Sources */,
  3135. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */,
  3136. 195D80B42AF6973A00D25097 /* DynamicRootView.swift in Sources */,
  3137. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */,
  3138. CE7CA3512A064973004BE681 /* ApplyTempPresetIntent.swift in Sources */,
  3139. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */,
  3140. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */,
  3141. CE398D16297C9D1D00DF218F /* dexcomSourceG7.swift in Sources */,
  3142. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */,
  3143. CC6C406E2ACDD69E009B8058 /* RawFetchedProfile.swift in Sources */,
  3144. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */,
  3145. BD188BEC2B1B805B00B183BF /* WidgetBobble.swift in Sources */,
  3146. F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */,
  3147. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */,
  3148. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */,
  3149. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */,
  3150. 5825D1552BD4058F00F36E9B /* CarbEntryStored+CoreDataProperties.swift in Sources */,
  3151. 195D80BB2AF6980B00D25097 /* DynamicStateModel.swift in Sources */,
  3152. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */,
  3153. 5825D1412BD4058F00F36E9B /* TempTargetsSlider+CoreDataProperties.swift in Sources */,
  3154. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */,
  3155. 19012CDC291D2CB900FB8210 /* LoopStats.swift in Sources */,
  3156. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */,
  3157. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */,
  3158. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */,
  3159. 5856174E2BDADA3F009B23D7 /* GlucoseStored+CoreDataProperties.swift in Sources */,
  3160. F816826028DB441800054060 /* BluetoothTransmitter.swift in Sources */,
  3161. BD7DA9A72AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift in Sources */,
  3162. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */,
  3163. FEFA5C0F299F810B00765C17 /* Core_Data.xcdatamodeld in Sources */,
  3164. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */,
  3165. F816825E28DB441200054060 /* HeartBeatManager.swift in Sources */,
  3166. 58F107742BD1A4D000B1A680 /* Determination+helper.swift in Sources */,
  3167. 5825D13B2BD4058F00F36E9B /* LoopStatRecord+CoreDataProperties.swift in Sources */,
  3168. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */,
  3169. A33352ED40476125EBAC6EE0 /* CREditorDataFlow.swift in Sources */,
  3170. 17A9D0899046B45E87834820 /* CREditorProvider.swift in Sources */,
  3171. 69B9A368029F7EB39F525422 /* CREditorStateModel.swift in Sources */,
  3172. 5825D1472BD4058F00F36E9B /* Oref0Suggestion+CoreDataProperties.swift in Sources */,
  3173. 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */,
  3174. 98641AF4F92123DA668AB931 /* CREditorRootView.swift in Sources */,
  3175. 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */,
  3176. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */,
  3177. CE7CA3542A064973004BE681 /* TempPresetsIntentRequest.swift in Sources */,
  3178. 581F7FB32BE7B2A0005A5F89 /* BolusStored+CoreDataClass.swift in Sources */,
  3179. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */,
  3180. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */,
  3181. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */,
  3182. 19DC678129CA676A00FD9EC4 /* OverrideProfilesProvider.swift in Sources */,
  3183. 5825D1442BD4058F00F36E9B /* Autosens_+CoreDataClass.swift in Sources */,
  3184. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */,
  3185. 1967DFBE29D052C200759F30 /* Icons.swift in Sources */,
  3186. 38E8754F275556FA00975559 /* WatchManager.swift in Sources */,
  3187. A228DF96647338139F152B15 /* PreferencesEditorDataFlow.swift in Sources */,
  3188. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */,
  3189. CE7CA3562A064973004BE681 /* StateIntentRequest.swift in Sources */,
  3190. E4984C5262A90469788754BB /* PreferencesEditorProvider.swift in Sources */,
  3191. DD399FB31EACB9343C944C4C /* PreferencesEditorStateModel.swift in Sources */,
  3192. 19E1F7EA29D082ED005C8D20 /* IconConfigProvider.swift in Sources */,
  3193. 44190F0BBA464D74B857D1FB /* PreferencesEditorRootView.swift in Sources */,
  3194. CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */,
  3195. 38E8755427561E9800975559 /* DataFlow.swift in Sources */,
  3196. 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */,
  3197. CE7CA34F2A064973004BE681 /* BaseIntentsRequest.swift in Sources */,
  3198. D2165E9D78EFF692C1DED1C6 /* AddTempTargetDataFlow.swift in Sources */,
  3199. CE82E02728E869DF00473A9C /* AlertEntry.swift in Sources */,
  3200. 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */,
  3201. 5BFA1C2208114643B77F8CEB /* AddTempTargetProvider.swift in Sources */,
  3202. BD2FF1A02AE29D43005D1C5D /* CheckboxToggleStyle.swift in Sources */,
  3203. E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */,
  3204. 919DBD08F13BAFB180DF6F47 /* AddTempTargetStateModel.swift in Sources */,
  3205. 8BC2F5A29AD1ED08AC0EE013 /* AddTempTargetRootView.swift in Sources */,
  3206. 5856174D2BDADA3F009B23D7 /* GlucoseStored+CoreDataClass.swift in Sources */,
  3207. 38A00B1F25FC00F7006BC0B0 /* Autotune.swift in Sources */,
  3208. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */,
  3209. 041D1E995A6AE92E9289DC49 /* BolusDataFlow.swift in Sources */,
  3210. 23888883D4EA091C88480FF2 /* BolusProvider.swift in Sources */,
  3211. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */,
  3212. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */,
  3213. 69A31254F2451C20361D172F /* BolusStateModel.swift in Sources */,
  3214. 1967DFC029D053AC00759F30 /* IconSelection.swift in Sources */,
  3215. 19D4E4EB29FC6A9F00351451 /* Charts.swift in Sources */,
  3216. FEFFA7A22929FE49007B8193 /* UIDevice+Extensions.swift in Sources */,
  3217. F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */,
  3218. 3862CC1F273FDC9200BF832C /* CalibrationsChart.swift in Sources */,
  3219. 19E1F7EC29D082FE005C8D20 /* IconConfigStateModel.swift in Sources */,
  3220. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */,
  3221. 588752842BD9986A008B081D /* OpenAPS_Battery+CoreDataClass.swift in Sources */,
  3222. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */,
  3223. 583684062BD178DB00070A60 /* GlucoseStored+helper.swift in Sources */,
  3224. F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */,
  3225. BD1661312B82ADAB00256551 /* CustomProgressView.swift in Sources */,
  3226. 5825D14B2BD4058F00F36E9B /* OrefDetermination+CoreDataProperties.swift in Sources */,
  3227. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */,
  3228. FE41E4D429463C660047FD55 /* NightscoutStatistics.swift in Sources */,
  3229. 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */,
  3230. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */,
  3231. 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */,
  3232. 5825D1532BD4058F00F36E9B /* LastLoop+CoreDataProperties.swift in Sources */,
  3233. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */,
  3234. 3083261C4B268E353F36CD0B /* AutotuneConfigDataFlow.swift in Sources */,
  3235. 891DECF7BC20968D7F566161 /* AutotuneConfigProvider.swift in Sources */,
  3236. 5825D15C2BD4058F00F36E9B /* Target+CoreDataClass.swift in Sources */,
  3237. D76333C9256787610B3B4875 /* AutotuneConfigStateModel.swift in Sources */,
  3238. 585E2CB62BE7DA03006ECF1A /* PumpEventStored+CoreDataProperties.swift in Sources */,
  3239. A05235B9112E677ED03B6E8E /* AutotuneConfigRootView.swift in Sources */,
  3240. 5825D14F2BD4058F00F36E9B /* HbA1c+CoreDataProperties.swift in Sources */,
  3241. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */,
  3242. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */,
  3243. 5825D1372BD4058F00F36E9B /* BGmedian+CoreDataProperties.swift in Sources */,
  3244. 19F95FFA29F1102A00314DDC /* StatRootView.swift in Sources */,
  3245. 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */,
  3246. 6BCF84DD2B16843A003AD46E /* LiveActitiyShared.swift in Sources */,
  3247. 195D80B92AF697F700D25097 /* DynamicProvider.swift in Sources */,
  3248. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */,
  3249. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */,
  3250. F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */,
  3251. BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */,
  3252. 61962FCAF8A2D222553AC5A3 /* LibreConfigDataFlow.swift in Sources */,
  3253. BD7DA9A52AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift in Sources */,
  3254. 6EADD581738D64431902AC0A /* LibreConfigProvider.swift in Sources */,
  3255. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */,
  3256. 903D18976088B09110BCBE29 /* LibreConfigStateModel.swift in Sources */,
  3257. 9050F378F0063C064D7FFC86 /* LibreConfigRootView.swift in Sources */,
  3258. 5825D14D2BD4058F00F36E9B /* TempTargets+CoreDataProperties.swift in Sources */,
  3259. B7C465E9472624D8A2BE2A6A /* CalibrationsDataFlow.swift in Sources */,
  3260. 320D030F724170A637F06D50 /* CalibrationsProvider.swift in Sources */,
  3261. 19E1F7E829D082D0005C8D20 /* IconConfigDataFlow.swift in Sources */,
  3262. E25073BC86C11C3D6A42F5AC /* CalibrationsStateModel.swift in Sources */,
  3263. BA90041DC8991147E5C8C3AA /* CalibrationsRootView.swift in Sources */,
  3264. E3A08AAE59538BC8A8ABE477 /* NotificationsConfigDataFlow.swift in Sources */,
  3265. 1956FB212AFF79E200C7B4FF /* CoreDataStorage.swift in Sources */,
  3266. 0F7A65FBD2CD8D6477ED4539 /* NotificationsConfigProvider.swift in Sources */,
  3267. 3171D2818C7C72CD1584BB5E /* NotificationsConfigStateModel.swift in Sources */,
  3268. CD78BB94E43B249D60CC1A1B /* NotificationsConfigRootView.swift in Sources */,
  3269. CE7CA3502A064973004BE681 /* CancelTempPresetIntent.swift in Sources */,
  3270. 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */,
  3271. 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */,
  3272. 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */,
  3273. 5825D1362BD4058F00F36E9B /* BGmedian+CoreDataClass.swift in Sources */,
  3274. 0437CE46C12535A56504EC19 /* SnoozeRootView.swift in Sources */,
  3275. );
  3276. runOnlyForDeploymentPostprocessing = 0;
  3277. };
  3278. 38E8752027554D5700975559 /* Sources */ = {
  3279. isa = PBXSourcesBuildPhase;
  3280. buildActionMask = 2147483647;
  3281. files = (
  3282. 38E8757927579D9200975559 /* Publisher.swift in Sources */,
  3283. 38E8755B27568A6800975559 /* ConfirmationView.swift in Sources */,
  3284. 38E8757D2757C45D00975559 /* BolusView.swift in Sources */,
  3285. 38E8752E27554D5700975559 /* NotificationController.swift in Sources */,
  3286. 38E8754C2755548F00975559 /* WatchStateModel.swift in Sources */,
  3287. 38E8754A275550BB00975559 /* CarbsView.swift in Sources */,
  3288. 38E8752C27554D5700975559 /* MainView.swift in Sources */,
  3289. 38E8755127555D0500975559 /* DataFlow.swift in Sources */,
  3290. 38E8753227554D5700975559 /* ComplicationController.swift in Sources */,
  3291. 38E8752A27554D5700975559 /* FreeAPSApp.swift in Sources */,
  3292. 38E8757B2757B1C300975559 /* TempTargetsView.swift in Sources */,
  3293. 38E8753027554D5700975559 /* NotificationView.swift in Sources */,
  3294. 38E8757E2758C86A00975559 /* ConvenienceExtensions.swift in Sources */,
  3295. 38E8754727554DF100975559 /* Color+Extensions.swift in Sources */,
  3296. 38E8755927567CA600975559 /* Decimal+Extensions.swift in Sources */,
  3297. 38E8758027595DC600975559 /* BolusConfirmationView.swift in Sources */,
  3298. );
  3299. runOnlyForDeploymentPostprocessing = 0;
  3300. };
  3301. 38FCF3E925E9028E0078B0D1 /* Sources */ = {
  3302. isa = PBXSourcesBuildPhase;
  3303. buildActionMask = 2147483647;
  3304. files = (
  3305. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */,
  3306. );
  3307. runOnlyForDeploymentPostprocessing = 0;
  3308. };
  3309. 6B1A8D132B14D91500E76752 /* Sources */ = {
  3310. isa = PBXSourcesBuildPhase;
  3311. buildActionMask = 2147483647;
  3312. files = (
  3313. 6BCF84DE2B16843A003AD46E /* LiveActitiyShared.swift in Sources */,
  3314. 6B1A8D1E2B14D91600E76752 /* LiveActivityBundle.swift in Sources */,
  3315. 6B1A8D202B14D91600E76752 /* LiveActivity.swift in Sources */,
  3316. BD188BED2B1B805B00B183BF /* WidgetBobble.swift in Sources */,
  3317. );
  3318. runOnlyForDeploymentPostprocessing = 0;
  3319. };
  3320. /* End PBXSourcesBuildPhase section */
  3321. /* Begin PBXTargetDependency section */
  3322. 38E8752727554D5700975559 /* PBXTargetDependency */ = {
  3323. isa = PBXTargetDependency;
  3324. target = 38E8752327554D5700975559 /* FreeAPSWatch WatchKit Extension */;
  3325. targetProxy = 38E8752627554D5700975559 /* PBXContainerItemProxy */;
  3326. };
  3327. 38E8753B27554D5900975559 /* PBXTargetDependency */ = {
  3328. isa = PBXTargetDependency;
  3329. target = 38E8751B27554D5500975559 /* FreeAPSWatch */;
  3330. targetProxy = 38E8753A27554D5900975559 /* PBXContainerItemProxy */;
  3331. };
  3332. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */ = {
  3333. isa = PBXTargetDependency;
  3334. target = 388E595725AD948C0019842D /* FreeAPS */;
  3335. targetProxy = 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */;
  3336. };
  3337. 6B1A8D272B14D91700E76752 /* PBXTargetDependency */ = {
  3338. isa = PBXTargetDependency;
  3339. target = 6B1A8D162B14D91500E76752 /* LiveActivityExtension */;
  3340. targetProxy = 6B1A8D262B14D91700E76752 /* PBXContainerItemProxy */;
  3341. };
  3342. /* End PBXTargetDependency section */
  3343. /* Begin PBXVariantGroup section */
  3344. 1927C8E82744606D00347C69 /* InfoPlist.strings */ = {
  3345. isa = PBXVariantGroup;
  3346. children = (
  3347. 1927C8E92744611700347C69 /* ar */,
  3348. 1927C8EA2744611800347C69 /* ca */,
  3349. 1927C8EB2744611900347C69 /* zh-Hans */,
  3350. 1927C8EC2744611A00347C69 /* da */,
  3351. 1927C8ED2744611B00347C69 /* fi */,
  3352. 1927C8EE2744611C00347C69 /* nl */,
  3353. 1927C8EF2744611D00347C69 /* fr */,
  3354. 1927C8F02744611E00347C69 /* de */,
  3355. 1927C8F12744611E00347C69 /* he */,
  3356. 1927C8F22744611F00347C69 /* it */,
  3357. 1927C8F32744612000347C69 /* nb */,
  3358. 1927C8F42744612100347C69 /* pl */,
  3359. 1927C8F52744612100347C69 /* pt-BR */,
  3360. 1927C8F62744612200347C69 /* pt-PT */,
  3361. 1927C8F72744612300347C69 /* ru */,
  3362. 1927C8F82744612400347C69 /* es */,
  3363. 1927C8F92744612400347C69 /* sv */,
  3364. 1927C8FA2744612500347C69 /* tr */,
  3365. 1927C8FB2744612600347C69 /* uk */,
  3366. 1927C8FE274489BA00347C69 /* Base */,
  3367. 19C166682756EFBD00ED12E3 /* sk */,
  3368. );
  3369. name = InfoPlist.strings;
  3370. sourceTree = "<group>";
  3371. };
  3372. 198377D4266BFFF6004DE65E /* Localizable.strings */ = {
  3373. isa = PBXVariantGroup;
  3374. children = (
  3375. 198377D3266BFFF6004DE65E /* en */,
  3376. 198377D5266C0A05004DE65E /* ar */,
  3377. 198377D6266C0A0A004DE65E /* ca */,
  3378. 198377D7266C0A15004DE65E /* zh-Hans */,
  3379. 198377D8266C0A1C004DE65E /* da */,
  3380. 198377D9266C0A21004DE65E /* nl */,
  3381. 198377DA266C0A2B004DE65E /* fr */,
  3382. 198377DB266C0A32004DE65E /* de */,
  3383. 198377DC266C0A3C004DE65E /* he */,
  3384. 198377DD266C0A51004DE65E /* it */,
  3385. 198377DE266C0A69004DE65E /* nb */,
  3386. 198377DF266C0A7F004DE65E /* pl */,
  3387. 198377E0266C0AB5004DE65E /* ru */,
  3388. 198377E1266C0ABF004DE65E /* es */,
  3389. 198377E2266C0AC8004DE65E /* sv */,
  3390. 198377E3266C0ADC004DE65E /* tr */,
  3391. 198377E4266C13D2004DE65E /* uk */,
  3392. 1918333A26ADA46800F45722 /* fi */,
  3393. 199732B4271B72DD00129A3F /* pt-PT */,
  3394. 199732B5271B9EE900129A3F /* pt-BR */,
  3395. 19C166692756EFBD00ED12E3 /* sk */,
  3396. );
  3397. name = Localizable.strings;
  3398. sourceTree = "<group>";
  3399. };
  3400. /* End PBXVariantGroup section */
  3401. /* Begin XCBuildConfiguration section */
  3402. 388E596525AD948E0019842D /* Debug */ = {
  3403. isa = XCBuildConfiguration;
  3404. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  3405. buildSettings = {
  3406. ALWAYS_SEARCH_USER_PATHS = NO;
  3407. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3408. CLANG_ANALYZER_NONNULL = YES;
  3409. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3410. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3411. CLANG_CXX_LIBRARY = "libc++";
  3412. CLANG_ENABLE_MODULES = YES;
  3413. CLANG_ENABLE_OBJC_ARC = YES;
  3414. CLANG_ENABLE_OBJC_WEAK = YES;
  3415. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3416. CLANG_WARN_BOOL_CONVERSION = YES;
  3417. CLANG_WARN_COMMA = YES;
  3418. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3419. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3420. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3421. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3422. CLANG_WARN_EMPTY_BODY = YES;
  3423. CLANG_WARN_ENUM_CONVERSION = YES;
  3424. CLANG_WARN_INFINITE_RECURSION = YES;
  3425. CLANG_WARN_INT_CONVERSION = YES;
  3426. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3427. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3428. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3429. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3430. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3431. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3432. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3433. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3434. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3435. CLANG_WARN_UNREACHABLE_CODE = YES;
  3436. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3437. COPY_PHASE_STRIP = NO;
  3438. CURRENT_PROJECT_VERSION = "$(APP_BUILD_NUMBER)";
  3439. DEBUG_INFORMATION_FORMAT = dwarf;
  3440. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3441. ENABLE_TESTABILITY = YES;
  3442. GCC_C_LANGUAGE_STANDARD = gnu11;
  3443. GCC_DYNAMIC_NO_PIC = NO;
  3444. GCC_NO_COMMON_BLOCKS = YES;
  3445. GCC_OPTIMIZATION_LEVEL = 0;
  3446. GCC_PREPROCESSOR_DEFINITIONS = (
  3447. "DEBUG=1",
  3448. "$(inherited)",
  3449. );
  3450. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3451. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3452. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3453. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3454. GCC_WARN_UNUSED_FUNCTION = YES;
  3455. GCC_WARN_UNUSED_VARIABLE = YES;
  3456. IPHONEOS_DEPLOYMENT_TARGET = 16.0;
  3457. MARKETING_VERSION = "$(APP_VERSION)";
  3458. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3459. MTL_FAST_MATH = YES;
  3460. ONLY_ACTIVE_ARCH = YES;
  3461. SDKROOT = iphoneos;
  3462. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  3463. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3464. };
  3465. name = Debug;
  3466. };
  3467. 388E596625AD948E0019842D /* Release */ = {
  3468. isa = XCBuildConfiguration;
  3469. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  3470. buildSettings = {
  3471. ALWAYS_SEARCH_USER_PATHS = NO;
  3472. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3473. CLANG_ANALYZER_NONNULL = YES;
  3474. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3475. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3476. CLANG_CXX_LIBRARY = "libc++";
  3477. CLANG_ENABLE_MODULES = YES;
  3478. CLANG_ENABLE_OBJC_ARC = YES;
  3479. CLANG_ENABLE_OBJC_WEAK = YES;
  3480. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3481. CLANG_WARN_BOOL_CONVERSION = YES;
  3482. CLANG_WARN_COMMA = YES;
  3483. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3484. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3485. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3486. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3487. CLANG_WARN_EMPTY_BODY = YES;
  3488. CLANG_WARN_ENUM_CONVERSION = YES;
  3489. CLANG_WARN_INFINITE_RECURSION = YES;
  3490. CLANG_WARN_INT_CONVERSION = YES;
  3491. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3492. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3493. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3494. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3495. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3496. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3497. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3498. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3499. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3500. CLANG_WARN_UNREACHABLE_CODE = YES;
  3501. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3502. COPY_PHASE_STRIP = NO;
  3503. CURRENT_PROJECT_VERSION = "$(APP_BUILD_NUMBER)";
  3504. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3505. ENABLE_NS_ASSERTIONS = NO;
  3506. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3507. GCC_C_LANGUAGE_STANDARD = gnu11;
  3508. GCC_NO_COMMON_BLOCKS = YES;
  3509. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3510. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3511. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3512. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3513. GCC_WARN_UNUSED_FUNCTION = YES;
  3514. GCC_WARN_UNUSED_VARIABLE = YES;
  3515. IPHONEOS_DEPLOYMENT_TARGET = 16.0;
  3516. MARKETING_VERSION = "$(APP_VERSION)";
  3517. MTL_ENABLE_DEBUG_INFO = NO;
  3518. MTL_FAST_MATH = YES;
  3519. SDKROOT = iphoneos;
  3520. SWIFT_COMPILATION_MODE = wholemodule;
  3521. SWIFT_OPTIMIZATION_LEVEL = "-O";
  3522. VALIDATE_PRODUCT = YES;
  3523. };
  3524. name = Release;
  3525. };
  3526. 388E596825AD948E0019842D /* Debug */ = {
  3527. isa = XCBuildConfiguration;
  3528. buildSettings = {
  3529. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  3530. APP_GROUP_ID = "$(APP_GROUP_ID)";
  3531. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  3532. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3533. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  3534. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3535. CODE_SIGN_ENTITLEMENTS = FreeAPS/Resources/FreeAPS.entitlements;
  3536. CODE_SIGN_STYLE = Automatic;
  3537. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  3538. DEVELOPMENT_ASSET_PATHS = "";
  3539. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3540. ENABLE_PREVIEWS = YES;
  3541. FRAMEWORK_SEARCH_PATHS = (
  3542. "$(inherited)",
  3543. "$(PROJECT_DIR)/Dependencies/ios-armv7_arm64",
  3544. );
  3545. INFOPLIST_FILE = FreeAPS/Resources/Info.plist;
  3546. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  3547. LD_RUNPATH_SEARCH_PATHS = (
  3548. "$(inherited)",
  3549. "@executable_path/Frameworks",
  3550. );
  3551. LIBRARY_SEARCH_PATHS = (
  3552. "$(inherited)",
  3553. "$(SDKROOT)/usr/lib/swift",
  3554. );
  3555. MARKETING_VERSION = "$(APP_VERSION)";
  3556. OTHER_LDFLAGS = (
  3557. "-weak_framework",
  3558. CoreNFC,
  3559. "-ObjC",
  3560. );
  3561. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3562. PRODUCT_NAME = "$(TARGET_NAME)";
  3563. SWIFT_VERSION = 5.0;
  3564. TARGETED_DEVICE_FAMILY = "1,2";
  3565. };
  3566. name = Debug;
  3567. };
  3568. 388E596925AD948E0019842D /* Release */ = {
  3569. isa = XCBuildConfiguration;
  3570. buildSettings = {
  3571. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  3572. APP_GROUP_ID = "$(APP_GROUP_ID)";
  3573. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  3574. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3575. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  3576. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3577. CODE_SIGN_ENTITLEMENTS = FreeAPS/Resources/FreeAPS.entitlements;
  3578. CODE_SIGN_STYLE = Automatic;
  3579. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  3580. DEVELOPMENT_ASSET_PATHS = "";
  3581. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3582. ENABLE_PREVIEWS = YES;
  3583. FRAMEWORK_SEARCH_PATHS = (
  3584. "$(inherited)",
  3585. "$(PROJECT_DIR)/Dependencies/ios-armv7_arm64",
  3586. );
  3587. INFOPLIST_FILE = FreeAPS/Resources/Info.plist;
  3588. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  3589. LD_RUNPATH_SEARCH_PATHS = (
  3590. "$(inherited)",
  3591. "@executable_path/Frameworks",
  3592. );
  3593. LIBRARY_SEARCH_PATHS = (
  3594. "$(inherited)",
  3595. "$(SDKROOT)/usr/lib/swift",
  3596. );
  3597. MARKETING_VERSION = "$(APP_VERSION)";
  3598. OTHER_LDFLAGS = (
  3599. "-weak_framework",
  3600. CoreNFC,
  3601. "-ObjC",
  3602. );
  3603. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3604. PRODUCT_NAME = "$(TARGET_NAME)";
  3605. SWIFT_VERSION = 5.0;
  3606. TARGETED_DEVICE_FAMILY = "1,2";
  3607. };
  3608. name = Release;
  3609. };
  3610. 38E8753E27554D5900975559 /* Debug */ = {
  3611. isa = XCBuildConfiguration;
  3612. buildSettings = {
  3613. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3614. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  3615. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  3616. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3617. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  3618. ASSETCATALOG_COMPILER_INCLUDE_STICKER_CONTENT = YES;
  3619. ASSETCATALOG_COMPILER_STANDALONE_ICON_BEHAVIOR = all;
  3620. ASSETCATALOG_COMPILER_TARGET_STICKERS_ICON_ROLE = "host-app";
  3621. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3622. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  3623. CODE_SIGN_ENTITLEMENTS = FreeAPSWatch/FreeAPSWatch.entitlements;
  3624. CODE_SIGN_STYLE = Automatic;
  3625. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  3626. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3627. GENERATE_INFOPLIST_FILE = YES;
  3628. IBSC_MODULE = FreeAPSWatch_WatchKit_Extension;
  3629. INFOPLIST_FILE = FreeAPSWatch/Info.plist;
  3630. INFOPLIST_KEY_CFBundleDisplayName = iAPS;
  3631. INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  3632. INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
  3633. MARKETING_VERSION = "$(APP_VERSION)";
  3634. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
  3635. PRODUCT_NAME = "$(TARGET_NAME)";
  3636. SDKROOT = watchos;
  3637. SKIP_INSTALL = YES;
  3638. SWIFT_EMIT_LOC_STRINGS = YES;
  3639. SWIFT_VERSION = 5.0;
  3640. TARGETED_DEVICE_FAMILY = 4;
  3641. WATCHOS_DEPLOYMENT_TARGET = 8.0;
  3642. };
  3643. name = Debug;
  3644. };
  3645. 38E8753F27554D5900975559 /* Release */ = {
  3646. isa = XCBuildConfiguration;
  3647. buildSettings = {
  3648. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3649. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  3650. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  3651. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3652. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  3653. ASSETCATALOG_COMPILER_INCLUDE_STICKER_CONTENT = YES;
  3654. ASSETCATALOG_COMPILER_STANDALONE_ICON_BEHAVIOR = all;
  3655. ASSETCATALOG_COMPILER_TARGET_STICKERS_ICON_ROLE = "host-app";
  3656. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3657. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  3658. CODE_SIGN_ENTITLEMENTS = FreeAPSWatch/FreeAPSWatch.entitlements;
  3659. CODE_SIGN_STYLE = Automatic;
  3660. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  3661. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3662. GENERATE_INFOPLIST_FILE = YES;
  3663. IBSC_MODULE = FreeAPSWatch_WatchKit_Extension;
  3664. INFOPLIST_FILE = FreeAPSWatch/Info.plist;
  3665. INFOPLIST_KEY_CFBundleDisplayName = iAPS;
  3666. INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  3667. INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
  3668. MARKETING_VERSION = "$(APP_VERSION)";
  3669. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
  3670. PRODUCT_NAME = "$(TARGET_NAME)";
  3671. SDKROOT = watchos;
  3672. SKIP_INSTALL = YES;
  3673. SWIFT_EMIT_LOC_STRINGS = YES;
  3674. SWIFT_VERSION = 5.0;
  3675. TARGETED_DEVICE_FAMILY = 4;
  3676. WATCHOS_DEPLOYMENT_TARGET = 8.0;
  3677. };
  3678. name = Release;
  3679. };
  3680. 38E8754127554D5900975559 /* Debug */ = {
  3681. isa = XCBuildConfiguration;
  3682. buildSettings = {
  3683. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  3684. ASSETCATALOG_COMPILER_COMPLICATION_NAME = Complication;
  3685. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3686. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  3687. CODE_SIGN_ENTITLEMENTS = "FreeAPSWatch WatchKit Extension/FreeAPSWatch WatchKit Extension.entitlements";
  3688. CODE_SIGN_STYLE = Automatic;
  3689. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  3690. DEVELOPMENT_ASSET_PATHS = "\"FreeAPSWatch WatchKit Extension/Preview Content\"";
  3691. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3692. ENABLE_PREVIEWS = YES;
  3693. GENERATE_INFOPLIST_FILE = YES;
  3694. INFOPLIST_FILE = "FreeAPSWatch WatchKit Extension/Info.plist";
  3695. INFOPLIST_KEY_CFBundleDisplayName = "iAPS WatchKit Extension";
  3696. INFOPLIST_KEY_CLKComplicationPrincipalClass = FreeAPSWatch_WatchKit_Extension.ComplicationController;
  3697. INFOPLIST_KEY_NSHealthClinicalHealthRecordsShareUsageDescription = "Bla bla Record Health";
  3698. INFOPLIST_KEY_NSHealthShareUsageDescription = "Bla bla Share Health";
  3699. INFOPLIST_KEY_NSHealthUpdateUsageDescription = "Bla bla Update Health";
  3700. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  3701. INFOPLIST_KEY_WKRunsIndependentlyOfCompanionApp = NO;
  3702. LD_RUNPATH_SEARCH_PATHS = (
  3703. "$(inherited)",
  3704. "@executable_path/Frameworks",
  3705. "@executable_path/../../Frameworks",
  3706. );
  3707. MARKETING_VERSION = "$(APP_VERSION)";
  3708. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.watchkitextension";
  3709. PRODUCT_NAME = "${TARGET_NAME}";
  3710. SDKROOT = watchos;
  3711. SKIP_INSTALL = YES;
  3712. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG RUN_STATISTICS";
  3713. SWIFT_EMIT_LOC_STRINGS = YES;
  3714. SWIFT_VERSION = 5.0;
  3715. TARGETED_DEVICE_FAMILY = 4;
  3716. WATCHOS_DEPLOYMENT_TARGET = 8.0;
  3717. };
  3718. name = Debug;
  3719. };
  3720. 38E8754227554D5900975559 /* Release */ = {
  3721. isa = XCBuildConfiguration;
  3722. buildSettings = {
  3723. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  3724. ASSETCATALOG_COMPILER_COMPLICATION_NAME = Complication;
  3725. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3726. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  3727. CODE_SIGN_ENTITLEMENTS = "FreeAPSWatch WatchKit Extension/FreeAPSWatch WatchKit Extension.entitlements";
  3728. CODE_SIGN_STYLE = Automatic;
  3729. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  3730. DEVELOPMENT_ASSET_PATHS = "\"FreeAPSWatch WatchKit Extension/Preview Content\"";
  3731. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3732. ENABLE_PREVIEWS = YES;
  3733. GENERATE_INFOPLIST_FILE = YES;
  3734. INFOPLIST_FILE = "FreeAPSWatch WatchKit Extension/Info.plist";
  3735. INFOPLIST_KEY_CFBundleDisplayName = "iAPS WatchKit Extension";
  3736. INFOPLIST_KEY_CLKComplicationPrincipalClass = FreeAPSWatch_WatchKit_Extension.ComplicationController;
  3737. INFOPLIST_KEY_NSHealthClinicalHealthRecordsShareUsageDescription = "Bla bla Record Health";
  3738. INFOPLIST_KEY_NSHealthShareUsageDescription = "Bla bla Share Health";
  3739. INFOPLIST_KEY_NSHealthUpdateUsageDescription = "Bla bla Update Health";
  3740. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  3741. INFOPLIST_KEY_WKRunsIndependentlyOfCompanionApp = NO;
  3742. LD_RUNPATH_SEARCH_PATHS = (
  3743. "$(inherited)",
  3744. "@executable_path/Frameworks",
  3745. "@executable_path/../../Frameworks",
  3746. );
  3747. MARKETING_VERSION = "$(APP_VERSION)";
  3748. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.watchkitextension";
  3749. PRODUCT_NAME = "${TARGET_NAME}";
  3750. SDKROOT = watchos;
  3751. SKIP_INSTALL = YES;
  3752. SWIFT_ACTIVE_COMPILATION_CONDITIONS = RUN_STATISTICS;
  3753. SWIFT_EMIT_LOC_STRINGS = YES;
  3754. SWIFT_VERSION = 5.0;
  3755. TARGETED_DEVICE_FAMILY = 4;
  3756. WATCHOS_DEPLOYMENT_TARGET = 8.0;
  3757. };
  3758. name = Release;
  3759. };
  3760. 38FCF3F525E9028E0078B0D1 /* Debug */ = {
  3761. isa = XCBuildConfiguration;
  3762. buildSettings = {
  3763. BUNDLE_LOADER = "$(TEST_HOST)";
  3764. CODE_SIGN_STYLE = Automatic;
  3765. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3766. INFOPLIST_FILE = FreeAPSTests/Info.plist;
  3767. IPHONEOS_DEPLOYMENT_TARGET = 14.4;
  3768. LD_RUNPATH_SEARCH_PATHS = (
  3769. "$(inherited)",
  3770. "@executable_path/Frameworks",
  3771. "@loader_path/Frameworks",
  3772. );
  3773. PRODUCT_BUNDLE_IDENTIFIER = ru.artpancreas.FreeAPSTests;
  3774. PRODUCT_NAME = "$(TARGET_NAME)";
  3775. SWIFT_VERSION = 5.0;
  3776. TARGETED_DEVICE_FAMILY = "1,2";
  3777. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FreeAPS.app/FreeAPS";
  3778. };
  3779. name = Debug;
  3780. };
  3781. 38FCF3F625E9028E0078B0D1 /* Release */ = {
  3782. isa = XCBuildConfiguration;
  3783. buildSettings = {
  3784. BUNDLE_LOADER = "$(TEST_HOST)";
  3785. CODE_SIGN_STYLE = Automatic;
  3786. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3787. INFOPLIST_FILE = FreeAPSTests/Info.plist;
  3788. IPHONEOS_DEPLOYMENT_TARGET = 14.4;
  3789. LD_RUNPATH_SEARCH_PATHS = (
  3790. "$(inherited)",
  3791. "@executable_path/Frameworks",
  3792. "@loader_path/Frameworks",
  3793. );
  3794. PRODUCT_BUNDLE_IDENTIFIER = ru.artpancreas.FreeAPSTests;
  3795. PRODUCT_NAME = "$(TARGET_NAME)";
  3796. SWIFT_VERSION = 5.0;
  3797. TARGETED_DEVICE_FAMILY = "1,2";
  3798. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FreeAPS.app/FreeAPS";
  3799. };
  3800. name = Release;
  3801. };
  3802. 6B1A8D2A2B14D91800E76752 /* Debug */ = {
  3803. isa = XCBuildConfiguration;
  3804. buildSettings = {
  3805. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  3806. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3807. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  3808. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3809. CODE_SIGN_STYLE = Automatic;
  3810. CURRENT_PROJECT_VERSION = 1;
  3811. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3812. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  3813. GCC_C_LANGUAGE_STANDARD = gnu17;
  3814. GENERATE_INFOPLIST_FILE = YES;
  3815. INFOPLIST_FILE = LiveActivity/Info.plist;
  3816. INFOPLIST_KEY_CFBundleDisplayName = LiveActivity;
  3817. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  3818. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  3819. LD_RUNPATH_SEARCH_PATHS = (
  3820. "$(inherited)",
  3821. "@executable_path/Frameworks",
  3822. "@executable_path/../../Frameworks",
  3823. );
  3824. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  3825. MARKETING_VERSION = 1.0;
  3826. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).LiveActivity";
  3827. PRODUCT_NAME = "$(TARGET_NAME)";
  3828. SKIP_INSTALL = YES;
  3829. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  3830. SWIFT_EMIT_LOC_STRINGS = YES;
  3831. SWIFT_VERSION = 5.0;
  3832. TARGETED_DEVICE_FAMILY = "1,2";
  3833. };
  3834. name = Debug;
  3835. };
  3836. 6B1A8D2B2B14D91800E76752 /* Release */ = {
  3837. isa = XCBuildConfiguration;
  3838. buildSettings = {
  3839. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  3840. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3841. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  3842. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3843. CODE_SIGN_STYLE = Automatic;
  3844. CURRENT_PROJECT_VERSION = 1;
  3845. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3846. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  3847. GCC_C_LANGUAGE_STANDARD = gnu17;
  3848. GENERATE_INFOPLIST_FILE = YES;
  3849. INFOPLIST_FILE = LiveActivity/Info.plist;
  3850. INFOPLIST_KEY_CFBundleDisplayName = LiveActivity;
  3851. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  3852. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  3853. LD_RUNPATH_SEARCH_PATHS = (
  3854. "$(inherited)",
  3855. "@executable_path/Frameworks",
  3856. "@executable_path/../../Frameworks",
  3857. );
  3858. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  3859. MARKETING_VERSION = 1.0;
  3860. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).LiveActivity";
  3861. PRODUCT_NAME = "$(TARGET_NAME)";
  3862. SKIP_INSTALL = YES;
  3863. SWIFT_EMIT_LOC_STRINGS = YES;
  3864. SWIFT_VERSION = 5.0;
  3865. TARGETED_DEVICE_FAMILY = "1,2";
  3866. };
  3867. name = Release;
  3868. };
  3869. /* End XCBuildConfiguration section */
  3870. /* Begin XCConfigurationList section */
  3871. 388E595325AD948C0019842D /* Build configuration list for PBXProject "FreeAPS" */ = {
  3872. isa = XCConfigurationList;
  3873. buildConfigurations = (
  3874. 388E596525AD948E0019842D /* Debug */,
  3875. 388E596625AD948E0019842D /* Release */,
  3876. );
  3877. defaultConfigurationIsVisible = 0;
  3878. defaultConfigurationName = Debug;
  3879. };
  3880. 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "FreeAPS" */ = {
  3881. isa = XCConfigurationList;
  3882. buildConfigurations = (
  3883. 388E596825AD948E0019842D /* Debug */,
  3884. 388E596925AD948E0019842D /* Release */,
  3885. );
  3886. defaultConfigurationIsVisible = 0;
  3887. defaultConfigurationName = Debug;
  3888. };
  3889. 38E8754327554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch WatchKit Extension" */ = {
  3890. isa = XCConfigurationList;
  3891. buildConfigurations = (
  3892. 38E8754127554D5900975559 /* Debug */,
  3893. 38E8754227554D5900975559 /* Release */,
  3894. );
  3895. defaultConfigurationIsVisible = 0;
  3896. defaultConfigurationName = Debug;
  3897. };
  3898. 38E8754427554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch" */ = {
  3899. isa = XCConfigurationList;
  3900. buildConfigurations = (
  3901. 38E8753E27554D5900975559 /* Debug */,
  3902. 38E8753F27554D5900975559 /* Release */,
  3903. );
  3904. defaultConfigurationIsVisible = 0;
  3905. defaultConfigurationName = Debug;
  3906. };
  3907. 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "FreeAPSTests" */ = {
  3908. isa = XCConfigurationList;
  3909. buildConfigurations = (
  3910. 38FCF3F525E9028E0078B0D1 /* Debug */,
  3911. 38FCF3F625E9028E0078B0D1 /* Release */,
  3912. );
  3913. defaultConfigurationIsVisible = 0;
  3914. defaultConfigurationName = Debug;
  3915. };
  3916. 6B1A8D292B14D91800E76752 /* Build configuration list for PBXNativeTarget "LiveActivityExtension" */ = {
  3917. isa = XCConfigurationList;
  3918. buildConfigurations = (
  3919. 6B1A8D2A2B14D91800E76752 /* Debug */,
  3920. 6B1A8D2B2B14D91800E76752 /* Release */,
  3921. );
  3922. defaultConfigurationIsVisible = 0;
  3923. defaultConfigurationName = Debug;
  3924. };
  3925. /* End XCConfigurationList section */
  3926. /* Begin XCRemoteSwiftPackageReference section */
  3927. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */ = {
  3928. isa = XCRemoteSwiftPackageReference;
  3929. repositoryURL = "https://github.com/Swinject/Swinject";
  3930. requirement = {
  3931. kind = upToNextMajorVersion;
  3932. minimumVersion = 2.7.1;
  3933. };
  3934. };
  3935. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */ = {
  3936. isa = XCRemoteSwiftPackageReference;
  3937. repositoryURL = "https://github.com/apple/swift-algorithms";
  3938. requirement = {
  3939. kind = upToNextMajorVersion;
  3940. minimumVersion = 0.0.3;
  3941. };
  3942. };
  3943. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */ = {
  3944. isa = XCRemoteSwiftPackageReference;
  3945. repositoryURL = "https://github.com/malcommac/SwiftDate";
  3946. requirement = {
  3947. kind = upToNextMajorVersion;
  3948. minimumVersion = 6.3.1;
  3949. };
  3950. };
  3951. 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */ = {
  3952. isa = XCRemoteSwiftPackageReference;
  3953. repositoryURL = "https://github.com/SwiftKickMobile/SwiftMessages";
  3954. requirement = {
  3955. kind = upToNextMajorVersion;
  3956. minimumVersion = 9.0.0;
  3957. };
  3958. };
  3959. CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */ = {
  3960. isa = XCRemoteSwiftPackageReference;
  3961. repositoryURL = "https://github.com/ivanschuetz/SwiftCharts.git";
  3962. requirement = {
  3963. branch = master;
  3964. kind = branch;
  3965. };
  3966. };
  3967. D8DA5CCF2B49EEF000C54E6C /* XCRemoteSwiftPackageReference "SlideButton" */ = {
  3968. isa = XCRemoteSwiftPackageReference;
  3969. repositoryURL = "https://github.com/no-comment/SlideButton";
  3970. requirement = {
  3971. branch = main;
  3972. kind = branch;
  3973. };
  3974. };
  3975. /* End XCRemoteSwiftPackageReference section */
  3976. /* Begin XCSwiftPackageProductDependency section */
  3977. 3811DE0F25C9D37700A708ED /* Swinject */ = {
  3978. isa = XCSwiftPackageProductDependency;
  3979. package = 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */;
  3980. productName = Swinject;
  3981. };
  3982. 3818AA46274C255A00843DB3 /* LibreTransmitter */ = {
  3983. isa = XCSwiftPackageProductDependency;
  3984. productName = LibreTransmitter;
  3985. };
  3986. 3833B46C26012030003021B3 /* Algorithms */ = {
  3987. isa = XCSwiftPackageProductDependency;
  3988. package = 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */;
  3989. productName = Algorithms;
  3990. };
  3991. 38B17B6525DD90E0005CAE3D /* SwiftDate */ = {
  3992. isa = XCSwiftPackageProductDependency;
  3993. package = 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */;
  3994. productName = SwiftDate;
  3995. };
  3996. 38DF1788276FC8C400B3528F /* SwiftMessages */ = {
  3997. isa = XCSwiftPackageProductDependency;
  3998. package = 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */;
  3999. productName = SwiftMessages;
  4000. };
  4001. 38E8755727567AE400975559 /* SwiftDate */ = {
  4002. isa = XCSwiftPackageProductDependency;
  4003. package = 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */;
  4004. productName = SwiftDate;
  4005. };
  4006. CEB434FC28B90B7C00B70274 /* SwiftCharts */ = {
  4007. isa = XCSwiftPackageProductDependency;
  4008. package = CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */;
  4009. productName = SwiftCharts;
  4010. };
  4011. D8DA5CD02B49EEF000C54E6C /* SlideButton */ = {
  4012. isa = XCSwiftPackageProductDependency;
  4013. package = D8DA5CCF2B49EEF000C54E6C /* XCRemoteSwiftPackageReference "SlideButton" */;
  4014. productName = SlideButton;
  4015. };
  4016. /* End XCSwiftPackageProductDependency section */
  4017. /* Begin XCVersionGroup section */
  4018. FEFA5C0D299F810B00765C17 /* Core_Data.xcdatamodeld */ = {
  4019. isa = XCVersionGroup;
  4020. children = (
  4021. FEFA5C0E299F810B00765C17 /* Core_Data.xcdatamodel */,
  4022. );
  4023. currentVersion = FEFA5C0E299F810B00765C17 /* Core_Data.xcdatamodel */;
  4024. path = Core_Data.xcdatamodeld;
  4025. sourceTree = "<group>";
  4026. versionGroupType = wrapper.xcdatamodel;
  4027. };
  4028. /* End XCVersionGroup section */
  4029. };
  4030. rootObject = 388E595025AD948C0019842D /* Project object */;
  4031. }