project.pbxproj 356 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 70;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 041D1E995A6AE92E9289DC49 /* TreatmentsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8D1A7CA8C10C4403D4BBFA7 /* TreatmentsDataFlow.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 /* GlucoseNotificationSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E625985B47742D498CB1681A /* GlucoseNotificationSettingsProvider.swift */; };
  13. 110AEDE32C5193D200615CC9 /* BolusIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE02C5193D100615CC9 /* BolusIntent.swift */; };
  14. 110AEDE42C5193D200615CC9 /* BolusIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE12C5193D100615CC9 /* BolusIntentRequest.swift */; };
  15. 110AEDEB2C51A0AE00615CC9 /* ShortcutsConfigView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE52C51A0AE00615CC9 /* ShortcutsConfigView.swift */; };
  16. 110AEDEC2C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE72C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift */; };
  17. 110AEDED2C51A0AE00615CC9 /* ShortcutsConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE82C51A0AE00615CC9 /* ShortcutsConfigProvider.swift */; };
  18. 110AEDEE2C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE92C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift */; };
  19. 118DF76A2C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 118DF7642C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift */; };
  20. 118DF76B2C5ECBC60067FEB7 /* CancelOverrideIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 118DF7652C5ECBC60067FEB7 /* CancelOverrideIntent.swift */; };
  21. 118DF76D2C5ECBC60067FEB7 /* OverridePresetEntity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 118DF7672C5ECBC60067FEB7 /* OverridePresetEntity.swift */; };
  22. 118DF76E2C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 118DF7682C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift */; };
  23. 17A9D0899046B45E87834820 /* CarbRatioEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C8D5F457B5AFF763F8CF3DF /* CarbRatioEditorProvider.swift */; };
  24. 19012CDC291D2CB900FB8210 /* LoopStats.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19012CDB291D2CB900FB8210 /* LoopStats.swift */; };
  25. 190EBCC429FF136900BA767D /* UserInterfaceSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC329FF136900BA767D /* UserInterfaceSettingsDataFlow.swift */; };
  26. 190EBCC629FF138000BA767D /* UserInterfaceSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC529FF138000BA767D /* UserInterfaceSettingsProvider.swift */; };
  27. 190EBCC829FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC729FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift */; };
  28. 190EBCCB29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCCA29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift */; };
  29. 191F62682AD6B05A004D7911 /* NightscoutSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */; };
  30. 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 1927C8E82744606D00347C69 /* InfoPlist.strings */; };
  31. 1935364028496F7D001E0B16 /* Oref2_variables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1935363F28496F7D001E0B16 /* Oref2_variables.swift */; };
  32. 193F6CDD2A512C8F001240FD /* Loops.swift in Sources */ = {isa = PBXBuildFile; fileRef = 193F6CDC2A512C8F001240FD /* Loops.swift */; };
  33. 195D80B42AF6973A00D25097 /* DynamicSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B32AF6973A00D25097 /* DynamicSettingsRootView.swift */; };
  34. 195D80B72AF697B800D25097 /* DynamicSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B62AF697B800D25097 /* DynamicSettingsDataFlow.swift */; };
  35. 195D80B92AF697F700D25097 /* DynamicSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B82AF697F700D25097 /* DynamicSettingsProvider.swift */; };
  36. 195D80BB2AF6980B00D25097 /* DynamicSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80BA2AF6980B00D25097 /* DynamicSettingsStateModel.swift */; };
  37. 1967DFBE29D052C200759F30 /* Icons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFBD29D052C200759F30 /* Icons.swift */; };
  38. 1967DFC029D053AC00759F30 /* IconSelection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFBF29D053AC00759F30 /* IconSelection.swift */; };
  39. 1967DFC229D053D300759F30 /* IconImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFC129D053D300759F30 /* IconImage.swift */; };
  40. 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 198377D4266BFFF6004DE65E /* Localizable.strings */; };
  41. 19A910302A24BF6300C8951B /* StatsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A9102F2A24BF6300C8951B /* StatsView.swift */; };
  42. 19A910362A24D6D700C8951B /* DateFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A910352A24D6D700C8951B /* DateFilter.swift */; };
  43. 19A910382A24EF3200C8951B /* ChartsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A910372A24EF3200C8951B /* ChartsView.swift */; };
  44. 19B0EF2128F6D66200069496 /* Statistics.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19B0EF2028F6D66200069496 /* Statistics.swift */; };
  45. 19D466A329AA2B80004D5F33 /* MealSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A229AA2B80004D5F33 /* MealSettingsDataFlow.swift */; };
  46. 19D466A529AA2BD4004D5F33 /* MealSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A429AA2BD4004D5F33 /* MealSettingsProvider.swift */; };
  47. 19D466A729AA2C22004D5F33 /* MealSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A629AA2C22004D5F33 /* MealSettingsStateModel.swift */; };
  48. 19D466AA29AA3099004D5F33 /* MealSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A929AA3099004D5F33 /* MealSettingsRootView.swift */; };
  49. 19D4E4EB29FC6A9F00351451 /* Charts.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D4E4EA29FC6A9F00351451 /* Charts.swift */; };
  50. 19DA48E829CD339B00EEA1E7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */; };
  51. 19E1F7E829D082D0005C8D20 /* IconConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */; };
  52. 19E1F7EA29D082ED005C8D20 /* IconConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */; };
  53. 19E1F7EC29D082FE005C8D20 /* IconConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */; };
  54. 19E1F7EF29D08EBA005C8D20 /* IconConfigRootWiew.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */; };
  55. 19F95FF329F10FBC00314DDC /* StatDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */; };
  56. 19F95FF529F10FCF00314DDC /* StatProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF429F10FCF00314DDC /* StatProvider.swift */; };
  57. 19F95FF729F10FEE00314DDC /* StatStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF629F10FEE00314DDC /* StatStateModel.swift */; };
  58. 19F95FFA29F1102A00314DDC /* StatRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF929F1102A00314DDC /* StatRootView.swift */; };
  59. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */; };
  60. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60744C3E9BB3652895C908CC /* DataTableProvider.swift */; };
  61. 23888883D4EA091C88480FF2 /* TreatmentsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C19984D62EFC0035A9E9644D /* TreatmentsProvider.swift */; };
  62. 3171D2818C7C72CD1584BB5E /* GlucoseNotificationSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2C6489D29ECCCAD78E0721 /* GlucoseNotificationSettingsStateModel.swift */; };
  63. 320D030F724170A637F06D50 /* (null) in Sources */ = {isa = PBXBuildFile; };
  64. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0725C9D32E00A708ED /* BaseView.swift */; };
  65. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0825C9D32F00A708ED /* BaseProvider.swift */; };
  66. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */ = {isa = PBXBuildFile; productRef = 3811DE0F25C9D37700A708ED /* Swinject */; };
  67. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1525C9D40400A708ED /* Screen.swift */; };
  68. 3811DE1825C9D40400A708ED /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1625C9D40400A708ED /* Router.swift */; };
  69. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1C25C9D48300A708ED /* MainProvider.swift */; };
  70. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */; };
  71. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2025C9D48300A708ED /* MainRootView.swift */; };
  72. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2825C9D49500A708ED /* HomeStateModel.swift */; };
  73. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2925C9D49500A708ED /* HomeProvider.swift */; };
  74. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */; };
  75. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2E25C9D49500A708ED /* HomeRootView.swift */; };
  76. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */; };
  77. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */; };
  78. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */; };
  79. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */; };
  80. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5425C9D4D500A708ED /* Formatters.swift */; };
  81. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5525C9D4D500A708ED /* Publisher.swift */; };
  82. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5725C9D4D500A708ED /* ProgressBar.swift */; };
  83. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */; };
  84. 3811DE8F25C9D80400A708ED /* User.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE8E25C9D80400A708ED /* User.swift */; };
  85. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9325C9D88200A708ED /* AppearanceManager.swift */; };
  86. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */; };
  87. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9725C9D88300A708ED /* NightscoutManager.swift */; };
  88. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */; };
  89. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9B25C9D88300A708ED /* Cache.swift */; };
  90. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */; };
  91. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */; };
  92. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9F25C9D88300A708ED /* Keychain.swift */; };
  93. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */; };
  94. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA625C9D88300A708ED /* UnlockManager.swift */; };
  95. 3811DEE825CA063400A708ED /* Injected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE425CA063400A708ED /* Injected.swift */; };
  96. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE625CA063400A708ED /* SyncAccess.swift */; };
  97. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE725CA063400A708ED /* PersistedProperty.swift */; };
  98. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0125CA9FEA00A708ED /* Credentials.swift */; };
  99. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0F25CAAAE200A708ED /* APSManager.swift */; };
  100. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E03261B82FA0094D973 /* ReachabilityManager.swift */; };
  101. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */; };
  102. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */; };
  103. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3821ED4B25DD18BA00BC42AD /* Constants.swift */; };
  104. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */; };
  105. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C134A25F14E3700715CE1 /* BGTargets.swift */; };
  106. 3833B46D26012030003021B3 /* Algorithms in Frameworks */ = {isa = PBXBuildFile; productRef = 3833B46C26012030003021B3 /* Algorithms */; };
  107. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D525FFE38C002D46C1 /* LoopView.swift */; };
  108. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D825FFEB3F002D46C1 /* Popup.swift */; };
  109. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D525CD4D8900E91849 /* FileStorage.swift */; };
  110. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D925CD64D500E91849 /* Glucose.swift */; };
  111. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803325C385E60086DB71 /* JavaScriptWorker.swift */; };
  112. 384E803825C388640086DB71 /* Script.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803725C388640086DB71 /* Script.swift */; };
  113. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569344270B5DFA0002C50D /* CGMType.swift */; };
  114. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569345270B5DFA0002C50D /* GlucoseSource.swift */; };
  115. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569346270B5DFB0002C50D /* AppGroupSource.swift */; };
  116. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569352270B5E350002C50D /* CGMRootView.swift */; };
  117. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */; };
  118. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC2D2743F9F700BF832C /* CalendarManager.swift */; };
  119. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3870FF4225EC13F40088248F /* BloodGlucose.swift */; };
  120. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39B25ED892B0013ECB5 /* TempTarget.swift */; };
  121. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */; };
  122. 3883581C25EE79BB00E024B2 /* TextFieldWithToolBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883581B25EE79BB00E024B2 /* TextFieldWithToolBar.swift */; };
  123. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883583325EEB38000E024B2 /* PumpSettings.swift */; };
  124. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */; };
  125. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38887CCD25F5725200944304 /* IOBEntry.swift */; };
  126. 388E595C25AD948C0019842D /* TrioApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E595B25AD948C0019842D /* TrioApp.swift */; };
  127. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E596B25AD95110019842D /* OpenAPS.swift */; };
  128. 388E596F25AD96040019842D /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 388E596E25AD96040019842D /* javascript */; };
  129. 388E597225AD9CF10019842D /* json in Resources */ = {isa = PBXBuildFile; fileRef = 388E597125AD9CF10019842D /* json */; };
  130. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5B25B6F0770019842D /* JSON.swift */; };
  131. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5F25B6F2310019842D /* Autosens.swift */; };
  132. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */; };
  133. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389487392614928B004DF424 /* DispatchTimer.swift */; };
  134. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3895E4C525B9E00D00214B37 /* Preferences.swift */; };
  135. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389A571F26079BAA00BC102F /* Interpolation.swift */; };
  136. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECDFD2601061500D86C4F /* View+Snapshot.swift */; };
  137. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECE042601144100D86C4F /* ConcurrentMap.swift */; };
  138. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */; };
  139. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */; };
  140. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0364125ED069400FCBB52 /* TempBasal.swift */; };
  141. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */; };
  142. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */; };
  143. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A9260425F012D8009E3739 /* CarbRatios.swift */; };
  144. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */; };
  145. 38AEE73D25F0200C0013F05B /* TrioSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE73C25F0200C0013F05B /* TrioSettings.swift */; };
  146. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75125F022080013F05B /* SettingsManager.swift */; };
  147. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */; };
  148. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 38B17B6525DD90E0005CAE3D /* SwiftDate */; };
  149. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */; };
  150. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */; };
  151. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */; };
  152. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */; };
  153. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */; };
  154. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */; };
  155. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */; };
  156. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021A25E7D06400579895 /* PumpSettingsView.swift */; };
  157. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021C25E7E3AF00579895 /* Reservoir.swift */; };
  158. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */; };
  159. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */; };
  160. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */; };
  161. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3B525EBE24900CB6E88 /* Battery.swift */; };
  162. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */; };
  163. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB27F260CBB7F00F74C1A /* PumpView.swift */; };
  164. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */; };
  165. 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF1785276A73D400B3528F /* TagCloudView.swift */; };
  166. 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */ = {isa = PBXBuildFile; productRef = 38DF1788276FC8C400B3528F /* SwiftMessages */; };
  167. 38DF178D27733E6800B3528F /* snow.sks in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178B27733E6800B3528F /* snow.sks */; };
  168. 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178C27733E6800B3528F /* Assets.xcassets */; };
  169. 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF178F27733EAD00B3528F /* SnowScene.swift */; };
  170. 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4451D274DB04600EC9A94 /* AppDelegate.swift */; };
  171. 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */; };
  172. 38E44528274E401C00EC9A94 /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44527274E401C00EC9A94 /* Protected.swift */; };
  173. 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */; };
  174. 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452B274E411600EC9A94 /* Disk+Data.swift */; };
  175. 38E44536274E411700EC9A94 /* Disk.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452C274E411600EC9A94 /* Disk.swift */; };
  176. 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */; };
  177. 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452E274E411600EC9A94 /* Disk+[Data].swift */; };
  178. 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */; };
  179. 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */; };
  180. 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */; };
  181. 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44532274E411700EC9A94 /* Disk+Codable.swift */; };
  182. 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44533274E411700EC9A94 /* Disk+Errors.swift */; };
  183. 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E873FD274F761800975559 /* CoreNFC.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
  184. 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */; settings = {ATTRIBUTES = (Weak, ); }; };
  185. 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E87407274F9AD000975559 /* UserNotificationsManager.swift */; };
  186. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E989DC25F5021400C0CED0 /* PumpStatus.swift */; };
  187. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1B25F52C9300C0CED0 /* Signpost.swift */; };
  188. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1C25F52C9300C0CED0 /* Logger.swift */; };
  189. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */; };
  190. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */; };
  191. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */; };
  192. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */; };
  193. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2F25F52FF700C0CED0 /* Config.swift */; };
  194. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A3625F5509500C0CED0 /* String+Extensions.swift */; };
  195. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */; };
  196. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */; };
  197. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F37827261260DC009DB701 /* Color+Extensions.swift */; };
  198. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */; };
  199. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3D525E8FDF40078B0D1 /* MD5.swift */; };
  200. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */; };
  201. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */; };
  202. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826925CC82DB001FF17A /* NetworkService.swift */; };
  203. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */; };
  204. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3F92737E42000574A46 /* BaseStateModel.swift */; };
  205. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FB2737E53800574A46 /* MainStateModel.swift */; };
  206. 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FD2738083E00574A46 /* CGMProvider.swift */; };
  207. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF412273B317A00574A46 /* HKUnit.swift */; };
  208. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */; };
  209. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */; };
  210. 491D6FBD2D56741C00C49F67 /* TempTargetStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 491D6FBC2D56741C00C49F67 /* TempTargetStored+CoreDataProperties.swift */; };
  211. 491D6FBE2D56741C00C49F67 /* TempTargetRunStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 491D6FB92D56741C00C49F67 /* TempTargetRunStored+CoreDataClass.swift */; };
  212. 491D6FBF2D56741C00C49F67 /* TempTargetRunStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 491D6FBA2D56741C00C49F67 /* TempTargetRunStored+CoreDataProperties.swift */; };
  213. 491D6FC02D56741C00C49F67 /* TempTargetStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 491D6FBB2D56741C00C49F67 /* TempTargetStored+CoreDataClass.swift */; };
  214. 49B9B57F2D5768D2009C6B59 /* AdjustmentStored+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49B9B57E2D5768D2009C6B59 /* AdjustmentStored+Helper.swift */; };
  215. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */; };
  216. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */; };
  217. 581516A42BCED84A00BF67D7 /* DebuggingIdentifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */; };
  218. 581516A92BCEEDF800BF67D7 /* NSPredicates.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */; };
  219. 581AC4392BE22ED10038760C /* JSONConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581AC4382BE22ED10038760C /* JSONConverter.swift */; };
  220. 58237D9E2BCF0A6B00A47A79 /* PopupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */; };
  221. 5825A1BE2C97335C0046467E /* EditTempTargetForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825A1BD2C97335C0046467E /* EditTempTargetForm.swift */; };
  222. 582DF9752C8CDB92001F516D /* GlucoseChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582DF9742C8CDB92001F516D /* GlucoseChartView.swift */; };
  223. 582DF9772C8CDBE7001F516D /* InsulinView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582DF9762C8CDBE7001F516D /* InsulinView.swift */; };
  224. 582DF9792C8CE1E5001F516D /* MainChartHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582DF9782C8CE1E5001F516D /* MainChartHelper.swift */; };
  225. 582DF97B2C8CE209001F516D /* CarbView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582DF97A2C8CE209001F516D /* CarbView.swift */; };
  226. 582FAE432C05102C00D1C13F /* CoreDataError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582FAE422C05102C00D1C13F /* CoreDataError.swift */; };
  227. 583684062BD178DB00070A60 /* GlucoseStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */; };
  228. 583684082BD195A700070A60 /* Determination.swift in Sources */ = {isa = PBXBuildFile; fileRef = 583684072BD195A700070A60 /* Determination.swift */; };
  229. 5837A5302BD2E3C700A5DC04 /* CarbEntryStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */; };
  230. 585E2CAE2BE7BF46006ECF1A /* PumpEvent+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */; };
  231. 58645B992CA2D1A4008AFCE7 /* GlucoseSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645B982CA2D1A4008AFCE7 /* GlucoseSetup.swift */; };
  232. 58645B9B2CA2D24F008AFCE7 /* CarbSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645B9A2CA2D24F008AFCE7 /* CarbSetup.swift */; };
  233. 58645B9D2CA2D275008AFCE7 /* DeterminationSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645B9C2CA2D275008AFCE7 /* DeterminationSetup.swift */; };
  234. 58645B9F2CA2D2BE008AFCE7 /* PumpHistorySetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645B9E2CA2D2BE008AFCE7 /* PumpHistorySetup.swift */; };
  235. 58645BA12CA2D2F8008AFCE7 /* OverrideSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645BA02CA2D2F8008AFCE7 /* OverrideSetup.swift */; };
  236. 58645BA32CA2D325008AFCE7 /* BatterySetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645BA22CA2D325008AFCE7 /* BatterySetup.swift */; };
  237. 58645BA52CA2D347008AFCE7 /* ForecastSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645BA42CA2D347008AFCE7 /* ForecastSetup.swift */; };
  238. 58645BA72CA2D390008AFCE7 /* ChartAxisSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645BA62CA2D390008AFCE7 /* ChartAxisSetup.swift */; };
  239. 5864E8592C42CFAE00294306 /* DeterminationStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5864E8582C42CFAE00294306 /* DeterminationStorage.swift */; };
  240. 5887527C2BD986E1008B081D /* OpenAPSBattery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */; };
  241. 58A3D53A2C96D4DE003F90FC /* AddTempTargetForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58A3D5392C96D4DE003F90FC /* AddTempTargetForm.swift */; };
  242. 58A3D5442C96DE11003F90FC /* TempTargetStored+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58A3D5432C96DE11003F90FC /* TempTargetStored+Helper.swift */; };
  243. 58D08B222C8DAA8E00AA37D3 /* OverrideView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B212C8DAA8E00AA37D3 /* OverrideView.swift */; };
  244. 58D08B302C8DEA7500AA37D3 /* ForecastView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B2F2C8DEA7500AA37D3 /* ForecastView.swift */; };
  245. 58D08B322C8DF88900AA37D3 /* DummyCharts.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B312C8DF88900AA37D3 /* DummyCharts.swift */; };
  246. 58D08B342C8DF9A700AA37D3 /* CobIobChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B332C8DF9A700AA37D3 /* CobIobChart.swift */; };
  247. 58D08B382C8DFB6000AA37D3 /* BasalChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B372C8DFB6000AA37D3 /* BasalChart.swift */; };
  248. 58D08B3A2C8DFECD00AA37D3 /* TempTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B392C8DFECD00AA37D3 /* TempTargets.swift */; };
  249. 58F107742BD1A4D000B1A680 /* Determination+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58F107732BD1A4D000B1A680 /* Determination+helper.swift */; };
  250. 5A2325522BFCBF55003518CA /* NightscoutUploadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2325512BFCBF55003518CA /* NightscoutUploadView.swift */; };
  251. 5A2325542BFCBF66003518CA /* NightscoutFetchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2325532BFCBF65003518CA /* NightscoutFetchView.swift */; };
  252. 5A2325582BFCC168003518CA /* NightscoutConnectView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2325572BFCC168003518CA /* NightscoutConnectView.swift */; };
  253. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */; };
  254. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */; };
  255. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */; };
  256. 65070A332BFDCB83006F213F /* TidepoolStartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65070A322BFDCB83006F213F /* TidepoolStartView.swift */; };
  257. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */; };
  258. 69A31254F2451C20361D172F /* TreatmentsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 223EC0494F55A91E3EA69EF4 /* TreatmentsStateModel.swift */; };
  259. 69B9A368029F7EB39F525422 /* CarbRatioEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64AA5E04A2761F6EEA6568E1 /* CarbRatioEditorStateModel.swift */; };
  260. 6B1A8D192B14D91600E76752 /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D182B14D91600E76752 /* WidgetKit.framework */; };
  261. 6B1A8D1B2B14D91600E76752 /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */; };
  262. 6B1A8D1E2B14D91600E76752 /* LiveActivityBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */; };
  263. 6B1A8D202B14D91600E76752 /* LiveActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */; };
  264. 6B1A8D242B14D91700E76752 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6B1A8D232B14D91700E76752 /* Assets.xcassets */; };
  265. 6B1A8D282B14D91700E76752 /* LiveActivityExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  266. 6B1A8D2E2B156EEF00E76752 /* LiveActivityBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D2D2B156EEF00E76752 /* LiveActivityBridge.swift */; };
  267. 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */; };
  268. 6BCF84DD2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */; };
  269. 6BCF84DE2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */; };
  270. 6EADD581738D64431902AC0A /* (null) in Sources */ = {isa = PBXBuildFile; };
  271. 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */; };
  272. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */; };
  273. 715120D22D3C2BB4005D9FB6 /* GlucoseNotificationsOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 715120D12D3C2B84005D9FB6 /* GlucoseNotificationsOption.swift */; };
  274. 71D44AAB2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71D44AAA2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift */; };
  275. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */; };
  276. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */; };
  277. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */; };
  278. 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */; };
  279. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */; };
  280. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */; };
  281. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */; };
  282. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */; };
  283. 98641AF4F92123DA668AB931 /* CarbRatioEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0BDC6993C1087310EDFC428 /* CarbRatioEditorRootView.swift */; };
  284. A33352ED40476125EBAC6EE0 /* CarbRatioEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E22146D3DF4853786C78132 /* CarbRatioEditorDataFlow.swift */; };
  285. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */; };
  286. B7C465E9472624D8A2BE2A6A /* (null) in Sources */ = {isa = PBXBuildFile; };
  287. B958F1B72BA0711600484851 /* MKRingProgressView in Frameworks */ = {isa = PBXBuildFile; productRef = B958F1B62BA0711600484851 /* MKRingProgressView */; };
  288. B9CAAEFC2AE70836000F68BC /* branch.txt in Resources */ = {isa = PBXBuildFile; fileRef = B9CAAEFB2AE70836000F68BC /* branch.txt */; };
  289. BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */; };
  290. BD04ECCE2D29952A008C5FEB /* BolusProgressOverlay.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD04ECCD2D299522008C5FEB /* BolusProgressOverlay.swift */; };
  291. BD0B2EF32C5998E600B3298F /* MealPresetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD0B2EF22C5998E600B3298F /* MealPresetView.swift */; };
  292. BD1661312B82ADAB00256551 /* CustomProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1661302B82ADAB00256551 /* CustomProgressView.swift */; };
  293. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */; };
  294. BD2FF1A02AE29D43005D1C5D /* CheckboxToggleStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */; };
  295. BD3CC0722B0B89D50013189E /* MainChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD3CC0712B0B89D50013189E /* MainChartView.swift */; };
  296. BD4064D12C4ED26900582F43 /* CoreDataObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4064D02C4ED26900582F43 /* CoreDataObserver.swift */; };
  297. BD432CA12D2F4E3600D1EB79 /* WatchMessageKeys.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD432CA02D2F4E3300D1EB79 /* WatchMessageKeys.swift */; };
  298. BD432CA22D2F4E4000D1EB79 /* WatchMessageKeys.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD432CA02D2F4E3300D1EB79 /* WatchMessageKeys.swift */; };
  299. BD4E1A7A2D3681B700D21626 /* GlucoseTargetSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4E1A792D3681AD00D21626 /* GlucoseTargetSetup.swift */; };
  300. BD4E1A7C2D3686D900D21626 /* StartEndMarkerSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4E1A7B2D3686D400D21626 /* StartEndMarkerSetup.swift */; };
  301. BD4ED4FD2CF9D5E8000EDC9C /* AppState.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4ED4FC2CF9D5E8000EDC9C /* AppState.swift */; };
  302. BD54A9592D27FB7800F9C1EE /* OverridePresetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A9582D27FB6A00F9C1EE /* OverridePresetsView.swift */; };
  303. BD54A95B2D28087C00F9C1EE /* OverridePresetWatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A95A2D28087700F9C1EE /* OverridePresetWatch.swift */; };
  304. BD54A95C2D2808A300F9C1EE /* OverridePresetWatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A95A2D28087700F9C1EE /* OverridePresetWatch.swift */; };
  305. BD54A9712D281A8100F9C1EE /* TempTargetPresetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A9702D281A7A00F9C1EE /* TempTargetPresetsView.swift */; };
  306. BD54A9732D281ABC00F9C1EE /* TempTargetPresetWatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A9722D281A9C00F9C1EE /* TempTargetPresetWatch.swift */; };
  307. BD54A9742D281AEF00F9C1EE /* TempTargetPresetWatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A9722D281A9C00F9C1EE /* TempTargetPresetWatch.swift */; };
  308. BD6EB2D62C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD6EB2D52C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift */; };
  309. BD793CB02CE7C61500D669AC /* OverrideRunStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD793CAF2CE7C60E00D669AC /* OverrideRunStored+helper.swift */; };
  310. BD793CB22CE8033500D669AC /* TempTargetRunStored.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD793CB12CE8032E00D669AC /* TempTargetRunStored.swift */; };
  311. BD7DA9A52AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */; };
  312. BD7DA9A72AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */; };
  313. BD7DA9A92AE06E9200601B20 /* BolusCalculatorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */; };
  314. BD7DA9AC2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */; };
  315. BD7DB88E2D2C4A17003D3155 /* BolusCalculationManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DB88D2D2C4A0A003D3155 /* BolusCalculationManager.swift */; };
  316. BD8207C42D2B42E60023339D /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D182B14D91600E76752 /* WidgetKit.framework */; };
  317. BD8207C52D2B42E60023339D /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */; };
  318. BD8207CE2D2B42E70023339D /* Trio Watch Complication Extension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = BD8207C32D2B42E50023339D /* Trio Watch Complication Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  319. BDA25EE42D260CD500035F34 /* AppleWatchManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25EE32D260CCF00035F34 /* AppleWatchManager.swift */; };
  320. BDA25EE62D260D5E00035F34 /* WatchState.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25EE52D260D5800035F34 /* WatchState.swift */; };
  321. BDA25EFD2D261C0000035F34 /* WatchState.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25EFC2D261BF200035F34 /* WatchState.swift */; };
  322. BDA25F1C2D26BD0700035F34 /* TrendShape.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25F1B2D26BD0300035F34 /* TrendShape.swift */; };
  323. BDA25F1E2D26D5DD00035F34 /* GlucoseChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25F1D2D26D5D800035F34 /* GlucoseChartView.swift */; };
  324. BDA25F202D26D5FE00035F34 /* CarbsInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25F1F2D26D5FB00035F34 /* CarbsInputView.swift */; };
  325. BDA25F222D26D62800035F34 /* BolusInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25F212D26D62200035F34 /* BolusInputView.swift */; };
  326. BDA6CC882CAF219B00F942F9 /* TempTargetSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA6CC872CAF219800F942F9 /* TempTargetSetup.swift */; };
  327. BDA7593E2D37CFC400E649A4 /* CarbEntryEditorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA7593D2D37CFC000E649A4 /* CarbEntryEditorView.swift */; };
  328. BDAE40002D372BAD009C12B1 /* WatchState+Requests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAE3FFF2D372BA8009C12B1 /* WatchState+Requests.swift */; };
  329. BDB3C1192C03DD1000CEEAA1 /* UserDefaultsExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB3C1182C03DD1000CEEAA1 /* UserDefaultsExtension.swift */; };
  330. BDB899882C564509006F3298 /* ForecastChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB899872C564509006F3298 /* ForecastChart.swift */; };
  331. BDB8998A2C565D0C006F3298 /* CarbsGlucose+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB899892C565D0B006F3298 /* CarbsGlucose+helper.swift */; };
  332. BDBAACFA2C2D439700370AAE /* OverrideData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDBAACF92C2D439700370AAE /* OverrideData.swift */; };
  333. BDC2EA452C3043B000E5BBD0 /* OverrideStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC2EA442C3043B000E5BBD0 /* OverrideStorage.swift */; };
  334. BDC2EA472C3045AD00E5BBD0 /* Override.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC2EA462C3045AD00E5BBD0 /* Override.swift */; };
  335. BDC530FF2D0F6BE300088832 /* ContactImageManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC530FE2D0F6BE300088832 /* ContactImageManager.swift */; };
  336. BDC531122D1060FA00088832 /* ContactImageDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC531112D1060FA00088832 /* ContactImageDetailView.swift */; };
  337. BDC531142D10611D00088832 /* AddContactImageSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC531132D10611D00088832 /* AddContactImageSheet.swift */; };
  338. BDC531162D10629000088832 /* ContactPicture.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC531152D10629000088832 /* ContactPicture.swift */; };
  339. BDC531182D1062F200088832 /* ContactImageState.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC531172D1062F200088832 /* ContactImageState.swift */; };
  340. BDCAF2382C639F35002DC907 /* SettingItems.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCAF2372C639F35002DC907 /* SettingItems.swift */; };
  341. BDCD47AF2C1F3F1700F8BCD5 /* OverrideStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCD47AE2C1F3F1700F8BCD5 /* OverrideStored+helper.swift */; };
  342. BDDAF9EF2D00554500B34E7A /* SelectionPopoverView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDDAF9EE2D00553E00B34E7A /* SelectionPopoverView.swift */; };
  343. BDF34EBE2C0A31D100D51995 /* CustomNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34EBD2C0A31D000D51995 /* CustomNotification.swift */; };
  344. BDF34F832C10C5B600D51995 /* DataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F822C10C5B600D51995 /* DataManager.swift */; };
  345. BDF34F852C10C62E00D51995 /* GlucoseData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F842C10C62E00D51995 /* GlucoseData.swift */; };
  346. BDF34F902C10CF8C00D51995 /* CoreDataStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F8F2C10CF8C00D51995 /* CoreDataStack.swift */; };
  347. BDF34F932C10D0E100D51995 /* LiveActivityAttributes+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F922C10D0E100D51995 /* LiveActivityAttributes+Helper.swift */; };
  348. BDF34F952C10D27300D51995 /* DeterminationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F942C10D27300D51995 /* DeterminationData.swift */; };
  349. BDF530D82B40F8AC002CAF43 /* LockScreenView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */; };
  350. BDFD165A2AE40438007F0DDA /* TreatmentsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFD16592AE40438007F0DDA /* TreatmentsRootView.swift */; };
  351. BDFF799F2D25AA890016C40C /* Trio Watch App.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = BDFF797C2D25AA870016C40C /* Trio Watch App.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  352. BDFF7A872D25F97D0016C40C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BDFF7A832D25F97D0016C40C /* Assets.xcassets */; };
  353. BDFF7A882D25F97D0016C40C /* TrioMainWatchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFF7A842D25F97D0016C40C /* TrioMainWatchView.swift */; };
  354. BDFF7A892D25F97D0016C40C /* TrioWatchApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFF7A852D25F97D0016C40C /* TrioWatchApp.swift */; };
  355. BDFF7A8B2D25F97D0016C40C /* Unit Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFF7A8A2D25F97D0016C40C /* Unit Tests.swift */; };
  356. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */; };
  357. C2A0A42F2CE03131003B98E8 /* ConstantValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2A0A42E2CE0312C003B98E8 /* ConstantValues.swift */; };
  358. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */; };
  359. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */; };
  360. CC6C406E2ACDD69E009B8058 /* RawFetchedProfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */; };
  361. CC76E9512BD4812E008BEB61 /* Forecast+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */; };
  362. CD78BB94E43B249D60CC1A1B /* GlucoseNotificationSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22963BD06A9C83959D4914E4 /* GlucoseNotificationSettingsRootView.swift */; };
  363. CE1856F52ADC4858007E39C7 /* AddCarbPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */; };
  364. CE1856F72ADC4869007E39C7 /* CarbPresetIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */; };
  365. CE1F6DD92BADF4620064EB8D /* PluginManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1F6DD82BADF4620064EB8D /* PluginManagerTests.swift */; };
  366. CE1F6DDB2BAE08B60064EB8D /* TidepoolManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1F6DDA2BAE08B60064EB8D /* TidepoolManager.swift */; };
  367. CE1F6DE72BAF1A180064EB8D /* BuildDetails.plist in Resources */ = {isa = PBXBuildFile; fileRef = CE1F6DE62BAF1A180064EB8D /* BuildDetails.plist */; };
  368. CE1F6DE92BAF37C90064EB8D /* TidepoolConfigView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1F6DE82BAF37C90064EB8D /* TidepoolConfigView.swift */; };
  369. CE2FAD3A297D93F0001A872C /* BloodGlucoseExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */; };
  370. CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */; };
  371. CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */; };
  372. CE51DD1C2A01970900F163F7 /* ConnectIQ 2.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */; };
  373. CE51DD1D2A01970900F163F7 /* ConnectIQ 2.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  374. CE7950242997D81700FA576E /* CGMSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7950232997D81700FA576E /* CGMSettingsView.swift */; };
  375. CE7950262998056D00FA576E /* CGMSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7950252998056D00FA576E /* CGMSetupView.swift */; };
  376. CE7CA34E2A064973004BE681 /* AppShortcuts.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3432A064973004BE681 /* AppShortcuts.swift */; };
  377. CE7CA34F2A064973004BE681 /* BaseIntentsRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */; };
  378. CE7CA3502A064973004BE681 /* CancelTempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */; };
  379. CE7CA3512A064973004BE681 /* ApplyTempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */; };
  380. CE7CA3532A064973004BE681 /* TempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3492A064973004BE681 /* TempPresetIntent.swift */; };
  381. CE7CA3542A064973004BE681 /* TempPresetsIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */; };
  382. CE7CA3552A064973004BE681 /* ListStateIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34C2A064973004BE681 /* ListStateIntent.swift */; };
  383. CE7CA3562A064973004BE681 /* StateIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */; };
  384. CE7CA3582A064E2F004BE681 /* ListStateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3572A064E2F004BE681 /* ListStateView.swift */; };
  385. CE82E02528E867BA00473A9C /* AlertStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE82E02428E867BA00473A9C /* AlertStorage.swift */; };
  386. CE82E02728E869DF00473A9C /* AlertEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE82E02628E869DF00473A9C /* AlertEntry.swift */; };
  387. CE94597E29E9E1EE0047C9C6 /* GarminManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */; };
  388. CE94598029E9E3BD0047C9C6 /* WatchConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */; };
  389. CE94598229E9E3D30047C9C6 /* WatchConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */; };
  390. CE94598429E9E3E60047C9C6 /* WatchConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */; };
  391. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */; };
  392. CE95BF572BA5F5FE00DC3DE3 /* PluginManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE95BF562BA5F5FE00DC3DE3 /* PluginManager.swift */; };
  393. CE95BF5A2BA62E4A00DC3DE3 /* PluginSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE95BF592BA62E4A00DC3DE3 /* PluginSource.swift */; };
  394. CE95BF5B2BA770C300DC3DE3 /* LoopKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4C274C26A300843DB3 /* LoopKit.framework */; };
  395. CE95BF5C2BA770C300DC3DE3 /* LoopKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4C274C26A300843DB3 /* LoopKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  396. CE95BF5D2BA770C300DC3DE3 /* LoopKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */; };
  397. CE95BF5E2BA770C300DC3DE3 /* LoopKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  398. CE95BF5F2BA7715800DC3DE3 /* MockKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4E274C26A300843DB3 /* MockKit.framework */; };
  399. CE95BF602BA7715800DC3DE3 /* MockKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4E274C26A300843DB3 /* MockKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  400. CE95BF612BA7715900DC3DE3 /* MockKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4F274C26A300843DB3 /* MockKitUI.framework */; };
  401. CE95BF622BA7715900DC3DE3 /* MockKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4F274C26A300843DB3 /* MockKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  402. CE95BF632BA771BE00DC3DE3 /* LoopTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA70274C278200843DB3 /* LoopTestingKit.framework */; };
  403. CE95BF642BA771BE00DC3DE3 /* LoopTestingKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA70274C278200843DB3 /* LoopTestingKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  404. CEA4F62329BE10F70011ADF7 /* SavitzkyGolayFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */; };
  405. CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */; };
  406. CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E428B8FF5D00B70274 /* UIColor.swift */; };
  407. CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */; };
  408. CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; };
  409. CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
  410. CEE9A6552BBB418300EB5194 /* CalibrationsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A64F2BBB418300EB5194 /* CalibrationsProvider.swift */; };
  411. CEE9A6562BBB418300EB5194 /* CalibrationsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6512BBB418300EB5194 /* CalibrationsRootView.swift */; };
  412. CEE9A6572BBB418300EB5194 /* CalibrationsChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6522BBB418300EB5194 /* CalibrationsChart.swift */; };
  413. CEE9A6582BBB418300EB5194 /* CalibrationsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6532BBB418300EB5194 /* CalibrationsStateModel.swift */; };
  414. CEE9A6592BBB418300EB5194 /* CalibrationsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6542BBB418300EB5194 /* CalibrationsDataFlow.swift */; };
  415. CEE9A65C2BBB41C800EB5194 /* CalibrationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A65B2BBB41C800EB5194 /* CalibrationService.swift */; };
  416. CEE9A65E2BBC9F6500EB5194 /* CalibrationsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A65D2BBC9F6500EB5194 /* CalibrationsTests.swift */; };
  417. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */; };
  418. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */; };
  419. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */; };
  420. DD07CA142CE80B73002D45A9 /* TimeInRangeChartStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD07CA132CE80B73002D45A9 /* TimeInRangeChartStyle.swift */; };
  421. DD09D47B2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D47A2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift */; };
  422. DD09D47D2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D47C2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift */; };
  423. DD09D47F2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D47E2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift */; };
  424. DD09D4822C5986F6003FEA5D /* CalendarEventSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D4812C5986F6003FEA5D /* CalendarEventSettingsRootView.swift */; };
  425. DD09D5C72D29EB2F000D82C9 /* Helper+Enums.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D5C62D29EB26000D82C9 /* Helper+Enums.swift */; };
  426. DD09D5C92D29F3D0000D82C9 /* AcknowledgementPendingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D5C82D29F3D0000D82C9 /* AcknowledgementPendingView.swift */; };
  427. DD09D6442D2B553A000D82C9 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DD09D6412D2B553A000D82C9 /* Assets.xcassets */; };
  428. DD09D6462D2B553A000D82C9 /* TrioWatchComplication.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D6432D2B553A000D82C9 /* TrioWatchComplication.swift */; };
  429. DD1745132C54169400211FAC /* DevicesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745122C54169400211FAC /* DevicesView.swift */; };
  430. DD1745152C54388A00211FAC /* TherapySettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745142C54388A00211FAC /* TherapySettingsView.swift */; };
  431. DD1745172C54389F00211FAC /* FeatureSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745162C54389F00211FAC /* FeatureSettingsView.swift */; };
  432. DD1745192C543B5700211FAC /* NotificationsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745182C543B5700211FAC /* NotificationsView.swift */; };
  433. DD17451D2C543C5F00211FAC /* ServicesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17451C2C543C5F00211FAC /* ServicesView.swift */; };
  434. DD1745202C55523E00211FAC /* SMBSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17451F2C55523E00211FAC /* SMBSettingsDataFlow.swift */; };
  435. DD1745222C55524800211FAC /* SMBSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745212C55524800211FAC /* SMBSettingsProvider.swift */; };
  436. DD1745242C55526000211FAC /* SMBSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745232C55526000211FAC /* SMBSettingsStateModel.swift */; };
  437. DD1745262C55526F00211FAC /* SMBSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745252C55526F00211FAC /* SMBSettingsRootView.swift */; };
  438. DD1745292C55642100211FAC /* SettingInputSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745282C55642100211FAC /* SettingInputSection.swift */; };
  439. DD17452B2C556E8100211FAC /* SettingInputHintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17452A2C556E8100211FAC /* SettingInputHintView.swift */; };
  440. DD17452E2C55AE4800211FAC /* TargetBehavoirDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17452D2C55AE4800211FAC /* TargetBehavoirDataFlow.swift */; };
  441. DD1745302C55AE5300211FAC /* TargetBehaviorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17452F2C55AE5300211FAC /* TargetBehaviorProvider.swift */; };
  442. DD1745322C55AE6000211FAC /* TargetBehavoirStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745312C55AE6000211FAC /* TargetBehavoirStateModel.swift */; };
  443. DD1745352C55AE7E00211FAC /* TargetBehavoirRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745342C55AE7E00211FAC /* TargetBehavoirRootView.swift */; };
  444. DD1745372C55B74200211FAC /* AlgorithmSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745362C55B74200211FAC /* AlgorithmSettings.swift */; };
  445. DD17453A2C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745392C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift */; };
  446. DD17453C2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17453B2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift */; };
  447. DD17453E2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17453D2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift */; };
  448. DD1745402C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17453F2C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift */; };
  449. DD1745442C55C60E00211FAC /* AutosensSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745432C55C60E00211FAC /* AutosensSettingsDataFlow.swift */; };
  450. DD1745462C55C61500211FAC /* AutosensSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745452C55C61500211FAC /* AutosensSettingsProvider.swift */; };
  451. DD1745482C55C61D00211FAC /* AutosensSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745472C55C61D00211FAC /* AutosensSettingsStateModel.swift */; };
  452. DD17454B2C55C62800211FAC /* AutosensSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17454A2C55C62800211FAC /* AutosensSettingsRootView.swift */; };
  453. DD17454E2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17454D2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift */; };
  454. DD1745502C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17454F2C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift */; };
  455. DD1745522C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745512C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift */; };
  456. DD1745552C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745542C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift */; };
  457. DD1DB7CC2BECCA1F0048B367 /* BuildDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1DB7CB2BECCA1F0048B367 /* BuildDetails.swift */; };
  458. DD1E53592D273F26008F32A4 /* LoopStatusHelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1E53582D273F20008F32A4 /* LoopStatusHelpView.swift */; };
  459. DD21FCB52C6952AD00AF2C25 /* DecimalPickerSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD21FCB42C6952AD00AF2C25 /* DecimalPickerSettings.swift */; };
  460. DD246F062D2836AA0027DDE0 /* GlucoseTrendView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD246F052D2836AA0027DDE0 /* GlucoseTrendView.swift */; };
  461. DD2CC85C2D25DA1000445446 /* GlucoseTargetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD2CC85B2D25D9CE00445446 /* GlucoseTargetsView.swift */; };
  462. DD3078682D42F5CE00DE0490 /* WatchGlucoseObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD3078672D42F5CE00DE0490 /* WatchGlucoseObject.swift */; };
  463. DD30786A2D42F94000DE0490 /* GarminDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD3078692D42F94000DE0490 /* GarminDevice.swift */; };
  464. DD32CF982CC82463003686D6 /* TrioRemoteControl+Bolus.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF972CC82460003686D6 /* TrioRemoteControl+Bolus.swift */; };
  465. DD32CF9A2CC8247B003686D6 /* TrioRemoteControl+Meal.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF992CC8246F003686D6 /* TrioRemoteControl+Meal.swift */; };
  466. DD32CF9C2CC82499003686D6 /* TrioRemoteControl+TempTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF9B2CC82495003686D6 /* TrioRemoteControl+TempTarget.swift */; };
  467. DD32CF9E2CC824C5003686D6 /* TrioRemoteControl+Override.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF9D2CC824C2003686D6 /* TrioRemoteControl+Override.swift */; };
  468. DD32CFA02CC824D6003686D6 /* TrioRemoteControl+APNS.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF9F2CC824D3003686D6 /* TrioRemoteControl+APNS.swift */; };
  469. DD32CFA22CC824E2003686D6 /* TrioRemoteControl+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CFA12CC824E1003686D6 /* TrioRemoteControl+Helpers.swift */; };
  470. DD3A3CE72D29C93F00AE478E /* Helper+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD3A3CE62D29C93F00AE478E /* Helper+Extensions.swift */; };
  471. DD3A3CE92D29C97800AE478E /* Helper+ButtonStyles.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD3A3CE82D29C97800AE478E /* Helper+ButtonStyles.swift */; };
  472. DD4FFF332D458EE600B6CFF9 /* GarminWatchState.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4FFF322D458EE600B6CFF9 /* GarminWatchState.swift */; };
  473. DD5DC9F12CF3D97C00AB8703 /* AdjustmentsStateModel+Overrides.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9F02CF3D96E00AB8703 /* AdjustmentsStateModel+Overrides.swift */; };
  474. DD5DC9F32CF3D9DD00AB8703 /* AdjustmentsStateModel+TempTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9F22CF3D9D600AB8703 /* AdjustmentsStateModel+TempTargets.swift */; };
  475. DD5DC9F72CF3DA9300AB8703 /* TargetPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9F62CF3DA9300AB8703 /* TargetPicker.swift */; };
  476. DD5DC9F92CF3DAA900AB8703 /* RadioButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9F82CF3DAA900AB8703 /* RadioButton.swift */; };
  477. DD5DC9FB2CF3E1B100AB8703 /* AdjustmentsStateModel+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9FA2CF3E1AA00AB8703 /* AdjustmentsStateModel+Helpers.swift */; };
  478. DD68889D2C386E17006E3C44 /* NightscoutExercise.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD68889C2C386E17006E3C44 /* NightscoutExercise.swift */; };
  479. DD6B7CB22C7B6F0800B75029 /* Rounding.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CB12C7B6F0800B75029 /* Rounding.swift */; };
  480. DD6B7CB42C7B71F700B75029 /* ForecastDisplayType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CB32C7B71F700B75029 /* ForecastDisplayType.swift */; };
  481. DD6B7CB62C7B748B00B75029 /* TotalInsulinDisplayType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CB52C7B748B00B75029 /* TotalInsulinDisplayType.swift */; };
  482. DD6B7CB92C7BAC6900B75029 /* NightscoutImportResultView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CB82C7BAC6900B75029 /* NightscoutImportResultView.swift */; };
  483. DD6B7CBB2C7FBBFA00B75029 /* ReviewInsulinActionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CBA2C7FBBFA00B75029 /* ReviewInsulinActionView.swift */; };
  484. DD6D67E42C9C253500660C9B /* ColorSchemeOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6D67E32C9C253500660C9B /* ColorSchemeOption.swift */; };
  485. DD6F63CC2D27F615007D94CF /* TreatmentMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6F63CB2D27F606007D94CF /* TreatmentMenuView.swift */; };
  486. DD8262CB2D289297009F6F62 /* BolusConfirmationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD8262CA2D289297009F6F62 /* BolusConfirmationView.swift */; };
  487. DD88C8E22C50420800F2D558 /* DefinitionRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD88C8E12C50420800F2D558 /* DefinitionRow.swift */; };
  488. DD940BAA2CA7585D000830A5 /* GlucoseColorScheme.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD940BA92CA7585D000830A5 /* GlucoseColorScheme.swift */; };
  489. DD940BAC2CA75889000830A5 /* DynamicGlucoseColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD940BAB2CA75889000830A5 /* DynamicGlucoseColor.swift */; };
  490. DD9ECB682CA99F4500AA7C45 /* TrioRemoteControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB672CA99F4500AA7C45 /* TrioRemoteControl.swift */; };
  491. DD9ECB6A2CA99F6C00AA7C45 /* PushMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB692CA99F6C00AA7C45 /* PushMessage.swift */; };
  492. DD9ECB702CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB6D2CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift */; };
  493. DD9ECB712CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB6E2CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift */; };
  494. DD9ECB722CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB6F2CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift */; };
  495. DD9ECB742CA9A0C300AA7C45 /* RemoteControlConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB732CA9A0C300AA7C45 /* RemoteControlConfig.swift */; };
  496. DDA6E2502D22187500C2988C /* ChartLegendView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E24F2D22187500C2988C /* ChartLegendView.swift */; };
  497. DDA6E2852D2361F800C2988C /* LoopStatusView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E2842D2361F800C2988C /* LoopStatusView.swift */; };
  498. DDA6E3202D258E0500C2988C /* OverrideHelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E31F2D258E0500C2988C /* OverrideHelpView.swift */; };
  499. DDA6E3222D25901100C2988C /* TempTargetHelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E3212D25901100C2988C /* TempTargetHelpView.swift */; };
  500. DDA6E3572D25988500C2988C /* ContactImageHelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E3562D25988500C2988C /* ContactImageHelpView.swift */; };
  501. DDAA29832D2D1D93006546A1 /* AdjustmentsRootView+Overrides.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDAA29822D2D1D7B006546A1 /* AdjustmentsRootView+Overrides.swift */; };
  502. DDAA29852D2D1D9E006546A1 /* AdjustmentsRootView+TempTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDAA29842D2D1D98006546A1 /* AdjustmentsRootView+TempTargets.swift */; };
  503. DDB37CC52D05048F00D99BF4 /* ContactImageStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB37CC42D05048F00D99BF4 /* ContactImageStorage.swift */; };
  504. DDB37CC72D05127500D99BF4 /* FontExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB37CC62D05127500D99BF4 /* FontExtensions.swift */; };
  505. DDCEBF5B2CC1B76400DF4C36 /* LiveActivity+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCEBF5A2CC1B76400DF4C36 /* LiveActivity+Helper.swift */; };
  506. DDD163122C4C689900CD525A /* AdjustmentsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163112C4C689900CD525A /* AdjustmentsStateModel.swift */; };
  507. DDD163142C4C68D300CD525A /* AdjustmentsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163132C4C68D300CD525A /* AdjustmentsProvider.swift */; };
  508. DDD163162C4C690300CD525A /* AdjustmentsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163152C4C690300CD525A /* AdjustmentsDataFlow.swift */; };
  509. DDD163182C4C694000CD525A /* AdjustmentsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163172C4C694000CD525A /* AdjustmentsRootView.swift */; };
  510. DDD1631A2C4C695E00CD525A /* EditOverrideForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163192C4C695E00CD525A /* EditOverrideForm.swift */; };
  511. DDD1631C2C4C697400CD525A /* AddOverrideForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD1631B2C4C697400CD525A /* AddOverrideForm.swift */; };
  512. DDD1631F2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = DDD1631D2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld */; };
  513. DDD6D4D32CDE90720029439A /* HbA1cDisplayUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD6D4D22CDE90720029439A /* HbA1cDisplayUnit.swift */; };
  514. DDE179522C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179322C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift */; };
  515. DDE179532C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179332C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift */; };
  516. DDE179542C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179342C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift */; };
  517. DDE179552C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179352C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift */; };
  518. DDE179562C910127003CDDB7 /* BolusStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179362C910127003CDDB7 /* BolusStored+CoreDataClass.swift */; };
  519. DDE179572C910127003CDDB7 /* BolusStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179372C910127003CDDB7 /* BolusStored+CoreDataProperties.swift */; };
  520. DDE179582C910127003CDDB7 /* ForecastValue+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179382C910127003CDDB7 /* ForecastValue+CoreDataClass.swift */; };
  521. DDE179592C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179392C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift */; };
  522. DDE1795A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1793A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift */; };
  523. DDE1795B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1793B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift */; };
  524. DDE1795E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1793E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift */; };
  525. DDE1795F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1793F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift */; };
  526. DDE179602C910127003CDDB7 /* StatsData+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179402C910127003CDDB7 /* StatsData+CoreDataClass.swift */; };
  527. DDE179612C910127003CDDB7 /* StatsData+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179412C910127003CDDB7 /* StatsData+CoreDataProperties.swift */; };
  528. DDE179622C910127003CDDB7 /* Forecast+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179422C910127003CDDB7 /* Forecast+CoreDataClass.swift */; };
  529. DDE179632C910127003CDDB7 /* Forecast+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179432C910127003CDDB7 /* Forecast+CoreDataProperties.swift */; };
  530. DDE179642C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179442C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift */; };
  531. DDE179652C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179452C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift */; };
  532. DDE179662C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179462C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift */; };
  533. DDE179672C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179472C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift */; };
  534. DDE179682C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179482C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift */; };
  535. DDE179692C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179492C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift */; };
  536. DDE1796C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1794C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift */; };
  537. DDE1796D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1794D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift */; };
  538. DDE1796E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1794E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift */; };
  539. DDE1796F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1794F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift */; };
  540. DDE179702C910127003CDDB7 /* OverrideStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179502C910127003CDDB7 /* OverrideStored+CoreDataClass.swift */; };
  541. DDE179712C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179512C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift */; };
  542. DDF847DD2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847DC2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift */; };
  543. DDF847DF2C5C28780049BB3B /* LiveActivitySettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847DE2C5C28780049BB3B /* LiveActivitySettingsProvider.swift */; };
  544. DDF847E12C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E02C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift */; };
  545. DDF847E42C5C288F0049BB3B /* LiveActivitySettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E32C5C288F0049BB3B /* LiveActivitySettingsRootView.swift */; };
  546. DDF847E62C5D66490049BB3B /* AddMealPresetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E52C5D66490049BB3B /* AddMealPresetView.swift */; };
  547. DDF847E82C5DABA30049BB3B /* WatchConfigAppleWatchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E72C5DABA30049BB3B /* WatchConfigAppleWatchView.swift */; };
  548. DDF847EA2C5DABAC0049BB3B /* WatchConfigGarminView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E92C5DABAC0049BB3B /* WatchConfigGarminView.swift */; };
  549. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFD27368630002FF094 /* ServiceAssembly.swift */; };
  550. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFE27368630002FF094 /* SecurityAssembly.swift */; };
  551. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFF27368630002FF094 /* StorageAssembly.swift */; };
  552. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0027368630002FF094 /* UIAssembly.swift */; };
  553. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0127368630002FF094 /* APSAssembly.swift */; };
  554. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0227368630002FF094 /* NetworkAssembly.swift */; };
  555. E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */; };
  556. E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = E06B9119275B5EEA003C04B6 /* Array+Extension.swift */; };
  557. E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */; };
  558. E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */; };
  559. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */; };
  560. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */; };
  561. E3A08AAE59538BC8A8ABE477 /* GlucoseNotificationSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3260468377DA9DB4DEE9AF6D /* GlucoseNotificationSettingsDataFlow.swift */; };
  562. E592A3702CEEC01E009A472C /* ContactTrickEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A36F2CEEC01E009A472C /* ContactTrickEntry.swift */; };
  563. E592A3772CEEC038009A472C /* ContactImageStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A3752CEEC038009A472C /* ContactImageStateModel.swift */; };
  564. E592A3782CEEC038009A472C /* ContactImageDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A3732CEEC038009A472C /* ContactImageDataFlow.swift */; };
  565. E592A3792CEEC038009A472C /* ContactImageRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A3712CEEC038009A472C /* ContactImageRootView.swift */; };
  566. E592A37A2CEEC038009A472C /* ContactImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A3742CEEC038009A472C /* ContactImageProvider.swift */; };
  567. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */; };
  568. F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */; };
  569. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */; };
  570. F816825E28DB441200054060 /* HeartBeatManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F816825D28DB441200054060 /* HeartBeatManager.swift */; };
  571. F816826028DB441800054060 /* BluetoothTransmitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F816825F28DB441800054060 /* BluetoothTransmitter.swift */; };
  572. F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692A9274B7AAE0037068D /* HealthKitManager.swift */; };
  573. F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692CE274B999A0037068D /* HealthKitDataFlow.swift */; };
  574. F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D0274B99B60037068D /* HealthKitProvider.swift */; };
  575. F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */; };
  576. F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D5274B9A450037068D /* HealthKitStateModel.swift */; };
  577. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */; };
  578. FE41E4D629463EE20047FD55 /* NightscoutPreferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */; };
  579. FE66D16B291F74F8005D6F77 /* Bundle+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */; };
  580. FEFFA7A22929FE49007B8193 /* UIDevice+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */; };
  581. /* End PBXBuildFile section */
  582. /* Begin PBXContainerItemProxy section */
  583. 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */ = {
  584. isa = PBXContainerItemProxy;
  585. containerPortal = 388E595025AD948C0019842D /* Project object */;
  586. proxyType = 1;
  587. remoteGlobalIDString = 388E595725AD948C0019842D;
  588. remoteInfo = Trio;
  589. };
  590. 6B1A8D262B14D91700E76752 /* PBXContainerItemProxy */ = {
  591. isa = PBXContainerItemProxy;
  592. containerPortal = 388E595025AD948C0019842D /* Project object */;
  593. proxyType = 1;
  594. remoteGlobalIDString = 6B1A8D162B14D91500E76752;
  595. remoteInfo = LiveActivityExtension;
  596. };
  597. BD8207CC2D2B42E70023339D /* PBXContainerItemProxy */ = {
  598. isa = PBXContainerItemProxy;
  599. containerPortal = 388E595025AD948C0019842D /* Project object */;
  600. proxyType = 1;
  601. remoteGlobalIDString = BD8207C22D2B42E50023339D;
  602. remoteInfo = "Trio Watch WidgetExtension";
  603. };
  604. BDFF798C2D25AA890016C40C /* PBXContainerItemProxy */ = {
  605. isa = PBXContainerItemProxy;
  606. containerPortal = 388E595025AD948C0019842D /* Project object */;
  607. proxyType = 1;
  608. remoteGlobalIDString = BDFF797B2D25AA870016C40C;
  609. remoteInfo = "TrioWatch Watch App";
  610. };
  611. BDFF799D2D25AA890016C40C /* PBXContainerItemProxy */ = {
  612. isa = PBXContainerItemProxy;
  613. containerPortal = 388E595025AD948C0019842D /* Project object */;
  614. proxyType = 1;
  615. remoteGlobalIDString = BDFF797B2D25AA870016C40C;
  616. remoteInfo = "TrioWatch Watch App";
  617. };
  618. /* End PBXContainerItemProxy section */
  619. /* Begin PBXCopyFilesBuildPhase section */
  620. 3821ECD025DC703C00BC42AD /* Embed Frameworks */ = {
  621. isa = PBXCopyFilesBuildPhase;
  622. buildActionMask = 2147483647;
  623. dstPath = "";
  624. dstSubfolderSpec = 10;
  625. files = (
  626. CE51DD1D2A01970900F163F7 /* ConnectIQ 2.xcframework in Embed Frameworks */,
  627. CE95BF5C2BA770C300DC3DE3 /* LoopKit.framework in Embed Frameworks */,
  628. CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */,
  629. CE95BF642BA771BE00DC3DE3 /* LoopTestingKit.framework in Embed Frameworks */,
  630. CE95BF622BA7715900DC3DE3 /* MockKitUI.framework in Embed Frameworks */,
  631. CE95BF602BA7715800DC3DE3 /* MockKit.framework in Embed Frameworks */,
  632. CE95BF5E2BA770C300DC3DE3 /* LoopKitUI.framework in Embed Frameworks */,
  633. );
  634. name = "Embed Frameworks";
  635. runOnlyForDeploymentPostprocessing = 0;
  636. };
  637. 38E8753D27554D5900975559 /* Embed Watch Content */ = {
  638. isa = PBXCopyFilesBuildPhase;
  639. buildActionMask = 2147483647;
  640. dstPath = "$(CONTENTS_FOLDER_PATH)/Watch";
  641. dstSubfolderSpec = 16;
  642. files = (
  643. BDFF799F2D25AA890016C40C /* Trio Watch App.app in Embed Watch Content */,
  644. );
  645. name = "Embed Watch Content";
  646. runOnlyForDeploymentPostprocessing = 0;
  647. };
  648. 6B1A8D122B14D88E00E76752 /* Embed Foundation Extensions */ = {
  649. isa = PBXCopyFilesBuildPhase;
  650. buildActionMask = 2147483647;
  651. dstPath = "";
  652. dstSubfolderSpec = 13;
  653. files = (
  654. 6B1A8D282B14D91700E76752 /* LiveActivityExtension.appex in Embed Foundation Extensions */,
  655. );
  656. name = "Embed Foundation Extensions";
  657. runOnlyForDeploymentPostprocessing = 0;
  658. };
  659. BD8207CF2D2B42E80023339D /* Embed Foundation Extensions */ = {
  660. isa = PBXCopyFilesBuildPhase;
  661. buildActionMask = 2147483647;
  662. dstPath = "";
  663. dstSubfolderSpec = 13;
  664. files = (
  665. BD8207CE2D2B42E70023339D /* Trio Watch Complication Extension.appex in Embed Foundation Extensions */,
  666. );
  667. name = "Embed Foundation Extensions";
  668. runOnlyForDeploymentPostprocessing = 0;
  669. };
  670. /* End PBXCopyFilesBuildPhase section */
  671. /* Begin PBXFileReference section */
  672. 110AEDE02C5193D100615CC9 /* BolusIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusIntent.swift; sourceTree = "<group>"; };
  673. 110AEDE12C5193D100615CC9 /* BolusIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusIntentRequest.swift; sourceTree = "<group>"; };
  674. 110AEDE52C51A0AE00615CC9 /* ShortcutsConfigView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigView.swift; sourceTree = "<group>"; };
  675. 110AEDE72C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigDataFlow.swift; sourceTree = "<group>"; };
  676. 110AEDE82C51A0AE00615CC9 /* ShortcutsConfigProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigProvider.swift; sourceTree = "<group>"; };
  677. 110AEDE92C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigStateModel.swift; sourceTree = "<group>"; };
  678. 118DF7642C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApplyOverridePresetIntent.swift; sourceTree = "<group>"; };
  679. 118DF7652C5ECBC60067FEB7 /* CancelOverrideIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CancelOverrideIntent.swift; sourceTree = "<group>"; };
  680. 118DF7672C5ECBC60067FEB7 /* OverridePresetEntity.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OverridePresetEntity.swift; sourceTree = "<group>"; };
  681. 118DF7682C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OverridePresetsIntentRequest.swift; sourceTree = "<group>"; };
  682. 19012CDB291D2CB900FB8210 /* LoopStats.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStats.swift; sourceTree = "<group>"; };
  683. 190EBCC329FF136900BA767D /* UserInterfaceSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfaceSettingsDataFlow.swift; sourceTree = "<group>"; };
  684. 190EBCC529FF138000BA767D /* UserInterfaceSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfaceSettingsProvider.swift; sourceTree = "<group>"; };
  685. 190EBCC729FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfaceSettingsStateModel.swift; sourceTree = "<group>"; };
  686. 190EBCCA29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfaceSettingsRootView.swift; sourceTree = "<group>"; };
  687. 1918333A26ADA46800F45722 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
  688. 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutSettings.swift; sourceTree = "<group>"; };
  689. 1927C8E92744611700347C69 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  690. 1927C8EA2744611800347C69 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  691. 1927C8EB2744611900347C69 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  692. 1927C8EC2744611A00347C69 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  693. 1927C8ED2744611B00347C69 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  694. 1927C8EE2744611C00347C69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  695. 1927C8EF2744611D00347C69 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  696. 1927C8F02744611E00347C69 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  697. 1927C8F12744611E00347C69 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  698. 1927C8F22744611F00347C69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  699. 1927C8F32744612000347C69 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  700. 1927C8F42744612100347C69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  701. 1927C8F52744612100347C69 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  702. 1927C8F62744612200347C69 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  703. 1927C8F72744612300347C69 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  704. 1927C8F82744612400347C69 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  705. 1927C8F92744612400347C69 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  706. 1927C8FA2744612500347C69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  707. 1927C8FB2744612600347C69 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  708. 1927C8FE274489BA00347C69 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  709. 1935363F28496F7D001E0B16 /* Oref2_variables.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Oref2_variables.swift; sourceTree = "<group>"; };
  710. 193F1E392B44C13B00525770 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  711. 193F1E3A2B44C13B00525770 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  712. 193F1E3B2B44C14800525770 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  713. 193F1E3C2B44C14800525770 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = "<group>"; };
  714. 193F6CDC2A512C8F001240FD /* Loops.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Loops.swift; sourceTree = "<group>"; };
  715. 195D80B32AF6973A00D25097 /* DynamicSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicSettingsRootView.swift; sourceTree = "<group>"; };
  716. 195D80B62AF697B800D25097 /* DynamicSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicSettingsDataFlow.swift; sourceTree = "<group>"; };
  717. 195D80B82AF697F700D25097 /* DynamicSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicSettingsProvider.swift; sourceTree = "<group>"; };
  718. 195D80BA2AF6980B00D25097 /* DynamicSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicSettingsStateModel.swift; sourceTree = "<group>"; };
  719. 1967DFBD29D052C200759F30 /* Icons.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Icons.swift; sourceTree = "<group>"; };
  720. 1967DFBF29D053AC00759F30 /* IconSelection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconSelection.swift; sourceTree = "<group>"; };
  721. 1967DFC129D053D300759F30 /* IconImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconImage.swift; sourceTree = "<group>"; };
  722. 198377D3266BFFF6004DE65E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  723. 198377D5266C0A05004DE65E /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
  724. 198377D6266C0A0A004DE65E /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  725. 198377D7266C0A15004DE65E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  726. 198377D8266C0A1C004DE65E /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  727. 198377D9266C0A21004DE65E /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  728. 198377DA266C0A2B004DE65E /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  729. 198377DB266C0A32004DE65E /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  730. 198377DC266C0A3C004DE65E /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
  731. 198377DD266C0A51004DE65E /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  732. 198377DE266C0A69004DE65E /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/Localizable.strings; sourceTree = "<group>"; };
  733. 198377DF266C0A7F004DE65E /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  734. 198377E0266C0AB5004DE65E /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  735. 198377E1266C0ABF004DE65E /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  736. 198377E2266C0AC8004DE65E /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  737. 198377E3266C0ADC004DE65E /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  738. 198377E4266C13D2004DE65E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
  739. 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; };
  740. 199732B4271B72DD00129A3F /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  741. 199732B5271B9EE900129A3F /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  742. 19A9102F2A24BF6300C8951B /* StatsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatsView.swift; sourceTree = "<group>"; };
  743. 19A910352A24D6D700C8951B /* DateFilter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateFilter.swift; sourceTree = "<group>"; };
  744. 19A910372A24EF3200C8951B /* ChartsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChartsView.swift; sourceTree = "<group>"; };
  745. 19B0EF2028F6D66200069496 /* Statistics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Statistics.swift; sourceTree = "<group>"; };
  746. 19C166682756EFBD00ED12E3 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  747. 19C166692756EFBD00ED12E3 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
  748. 19D466A229AA2B80004D5F33 /* MealSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealSettingsDataFlow.swift; sourceTree = "<group>"; };
  749. 19D466A429AA2BD4004D5F33 /* MealSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealSettingsProvider.swift; sourceTree = "<group>"; };
  750. 19D466A629AA2C22004D5F33 /* MealSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealSettingsStateModel.swift; sourceTree = "<group>"; };
  751. 19D466A929AA3099004D5F33 /* MealSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealSettingsRootView.swift; sourceTree = "<group>"; };
  752. 19D4E4EA29FC6A9F00351451 /* Charts.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Charts.swift; sourceTree = "<group>"; };
  753. 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  754. 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigDataFlow.swift; sourceTree = "<group>"; };
  755. 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigProvider.swift; sourceTree = "<group>"; };
  756. 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigStateModel.swift; sourceTree = "<group>"; };
  757. 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigRootWiew.swift; sourceTree = "<group>"; };
  758. 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatDataFlow.swift; sourceTree = "<group>"; };
  759. 19F95FF429F10FCF00314DDC /* StatProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatProvider.swift; sourceTree = "<group>"; };
  760. 19F95FF629F10FEE00314DDC /* StatStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatStateModel.swift; sourceTree = "<group>"; };
  761. 19F95FF929F1102A00314DDC /* StatRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatRootView.swift; sourceTree = "<group>"; };
  762. 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeProvider.swift; sourceTree = "<group>"; };
  763. 223EC0494F55A91E3EA69EF4 /* TreatmentsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TreatmentsStateModel.swift; sourceTree = "<group>"; };
  764. 22963BD06A9C83959D4914E4 /* GlucoseNotificationSettingsRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationSettingsRootView.swift; sourceTree = "<group>"; };
  765. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigRootView.swift; sourceTree = "<group>"; };
  766. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigDataFlow.swift; sourceTree = "<group>"; };
  767. 3260468377DA9DB4DEE9AF6D /* GlucoseNotificationSettingsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationSettingsDataFlow.swift; sourceTree = "<group>"; };
  768. 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeDataFlow.swift; sourceTree = "<group>"; };
  769. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorStateModel.swift; sourceTree = "<group>"; };
  770. 3811DE0725C9D32E00A708ED /* BaseView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseView.swift; sourceTree = "<group>"; };
  771. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseProvider.swift; sourceTree = "<group>"; };
  772. 3811DE1525C9D40400A708ED /* Screen.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Screen.swift; sourceTree = "<group>"; };
  773. 3811DE1625C9D40400A708ED /* Router.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Router.swift; sourceTree = "<group>"; };
  774. 3811DE1C25C9D48300A708ED /* MainProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainProvider.swift; sourceTree = "<group>"; };
  775. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainDataFlow.swift; sourceTree = "<group>"; };
  776. 3811DE2025C9D48300A708ED /* MainRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainRootView.swift; sourceTree = "<group>"; };
  777. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeStateModel.swift; sourceTree = "<group>"; };
  778. 3811DE2925C9D49500A708ED /* HomeProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeProvider.swift; sourceTree = "<group>"; };
  779. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeDataFlow.swift; sourceTree = "<group>"; };
  780. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeRootView.swift; sourceTree = "<group>"; };
  781. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsStateModel.swift; sourceTree = "<group>"; };
  782. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsRootView.swift; sourceTree = "<group>"; };
  783. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsDataFlow.swift; sourceTree = "<group>"; };
  784. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsProvider.swift; sourceTree = "<group>"; };
  785. 3811DE5425C9D4D500A708ED /* Formatters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Formatters.swift; sourceTree = "<group>"; };
  786. 3811DE5525C9D4D500A708ED /* Publisher.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Publisher.swift; sourceTree = "<group>"; };
  787. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProgressBar.swift; sourceTree = "<group>"; };
  788. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewModifiers.swift; sourceTree = "<group>"; };
  789. 3811DE8E25C9D80400A708ED /* User.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = User.swift; sourceTree = "<group>"; };
  790. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppearanceManager.swift; sourceTree = "<group>"; };
  791. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HTTPResponseStatus.swift; sourceTree = "<group>"; };
  792. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NightscoutManager.swift; sourceTree = "<group>"; };
  793. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDefaults+Cache.swift"; sourceTree = "<group>"; };
  794. 3811DE9B25C9D88300A708ED /* Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Cache.swift; sourceTree = "<group>"; };
  795. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyValueStorage.swift; sourceTree = "<group>"; };
  796. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseKeychain.swift; sourceTree = "<group>"; };
  797. 3811DE9F25C9D88300A708ED /* Keychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Keychain.swift; sourceTree = "<group>"; };
  798. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeychainItemAccessibility.swift; sourceTree = "<group>"; };
  799. 3811DEA625C9D88300A708ED /* UnlockManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnlockManager.swift; sourceTree = "<group>"; };
  800. 3811DEC725C9DA7300A708ED /* Trio.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Trio.entitlements; sourceTree = "<group>"; };
  801. 3811DEE425CA063400A708ED /* Injected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Injected.swift; sourceTree = "<group>"; };
  802. 3811DEE625CA063400A708ED /* SyncAccess.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SyncAccess.swift; sourceTree = "<group>"; };
  803. 3811DEE725CA063400A708ED /* PersistedProperty.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PersistedProperty.swift; sourceTree = "<group>"; };
  804. 3811DF0125CA9FEA00A708ED /* Credentials.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Credentials.swift; sourceTree = "<group>"; };
  805. 3811DF0F25CAAAE200A708ED /* APSManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = APSManager.swift; sourceTree = "<group>"; };
  806. 3818AA45274C229000843DB3 /* LibreTransmitter */ = {isa = PBXFileReference; lastKnownFileType = folder; name = LibreTransmitter; path = Dependencies/LibreTransmitter; sourceTree = "<group>"; };
  807. 3818AA49274C267000843DB3 /* CGMBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  808. 3818AA4C274C26A300843DB3 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  809. 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  810. 3818AA4E274C26A300843DB3 /* MockKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  811. 3818AA4F274C26A300843DB3 /* MockKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  812. 3818AA51274C26A300843DB3 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  813. 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  814. 3818AA53274C26A300843DB3 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  815. 3818AA54274C26A300843DB3 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  816. 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  817. 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  818. 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  819. 3818AA70274C278200843DB3 /* LoopTestingKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopTestingKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  820. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReachabilityManager.swift; sourceTree = "<group>"; };
  821. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchTreatmentsManager.swift; sourceTree = "<group>"; };
  822. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConvenienceExtensions.swift; sourceTree = "<group>"; };
  823. 3821ED4B25DD18BA00BC42AD /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
  824. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinSensitivities.swift; sourceTree = "<group>"; };
  825. 382C134A25F14E3700715CE1 /* BGTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGTargets.swift; sourceTree = "<group>"; };
  826. 383420D525FFE38C002D46C1 /* LoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopView.swift; sourceTree = "<group>"; };
  827. 383420D825FFEB3F002D46C1 /* Popup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Popup.swift; sourceTree = "<group>"; };
  828. 383948D525CD4D8900E91849 /* FileStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorage.swift; sourceTree = "<group>"; };
  829. 383948D925CD64D500E91849 /* Glucose.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Glucose.swift; sourceTree = "<group>"; };
  830. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JavaScriptWorker.swift; sourceTree = "<group>"; };
  831. 384E803725C388640086DB71 /* Script.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Script.swift; sourceTree = "<group>"; };
  832. 38569344270B5DFA0002C50D /* CGMType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMType.swift; sourceTree = "<group>"; };
  833. 38569345270B5DFA0002C50D /* GlucoseSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucoseSource.swift; sourceTree = "<group>"; };
  834. 38569346270B5DFB0002C50D /* AppGroupSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppGroupSource.swift; sourceTree = "<group>"; };
  835. 38569352270B5E350002C50D /* CGMRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMRootView.swift; sourceTree = "<group>"; };
  836. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutStatus.swift; sourceTree = "<group>"; };
  837. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarManager.swift; sourceTree = "<group>"; };
  838. 3870FF4225EC13F40088248F /* BloodGlucose.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BloodGlucose.swift; sourceTree = "<group>"; };
  839. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTarget.swift; sourceTree = "<group>"; };
  840. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Decimal+Extensions.swift"; sourceTree = "<group>"; };
  841. 3883581B25EE79BB00E024B2 /* TextFieldWithToolBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldWithToolBar.swift; sourceTree = "<group>"; };
  842. 3883583325EEB38000E024B2 /* PumpSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettings.swift; sourceTree = "<group>"; };
  843. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasalProfileEntry.swift; sourceTree = "<group>"; };
  844. 38887CCD25F5725200944304 /* IOBEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOBEntry.swift; sourceTree = "<group>"; };
  845. 388E595825AD948C0019842D /* Trio.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Trio.app; sourceTree = BUILT_PRODUCTS_DIR; };
  846. 388E595B25AD948C0019842D /* TrioApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioApp.swift; sourceTree = "<group>"; };
  847. 388E596425AD948E0019842D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  848. 388E596B25AD95110019842D /* OpenAPS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPS.swift; sourceTree = "<group>"; };
  849. 388E596E25AD96040019842D /* javascript */ = {isa = PBXFileReference; lastKnownFileType = folder; path = javascript; sourceTree = "<group>"; };
  850. 388E597125AD9CF10019842D /* json */ = {isa = PBXFileReference; lastKnownFileType = folder; path = json; sourceTree = "<group>"; };
  851. 388E5A5B25B6F0770019842D /* JSON.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSON.swift; sourceTree = "<group>"; };
  852. 388E5A5F25B6F2310019842D /* Autosens.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autosens.swift; sourceTree = "<group>"; };
  853. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutTreatment.swift; sourceTree = "<group>"; };
  854. 389487392614928B004DF424 /* DispatchTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DispatchTimer.swift; sourceTree = "<group>"; };
  855. 3895E4C525B9E00D00214B37 /* Preferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Preferences.swift; sourceTree = "<group>"; };
  856. 389A571F26079BAA00BC102F /* Interpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Interpolation.swift; sourceTree = "<group>"; };
  857. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Snapshot.swift"; sourceTree = "<group>"; };
  858. 389ECE042601144100D86C4F /* ConcurrentMap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConcurrentMap.swift; sourceTree = "<group>"; };
  859. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LRUCache.swift; sourceTree = "<group>"; };
  860. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseStorage.swift; sourceTree = "<group>"; };
  861. 38A0364125ED069400FCBB52 /* TempBasal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempBasal.swift; sourceTree = "<group>"; };
  862. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryEvent.swift; sourceTree = "<group>"; };
  863. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDefaultsExtensions.swift; sourceTree = "<group>"; };
  864. 38A9260425F012D8009E3739 /* CarbRatios.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbRatios.swift; sourceTree = "<group>"; };
  865. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CurrentGlucoseView.swift; sourceTree = "<group>"; };
  866. 38AEE73C25F0200C0013F05B /* TrioSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioSettings.swift; sourceTree = "<group>"; };
  867. 38AEE75125F022080013F05B /* SettingsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsManager.swift; sourceTree = "<group>"; };
  868. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsStorage.swift; sourceTree = "<group>"; };
  869. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IndexedCollection.swift; sourceTree = "<group>"; };
  870. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSetupView.swift; sourceTree = "<group>"; };
  871. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationCenter.swift; sourceTree = "<group>"; };
  872. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftNotificationCenter.swift; sourceTree = "<group>"; };
  873. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WeakObjectSet.swift; sourceTree = "<group>"; };
  874. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Broadcaster.swift; sourceTree = "<group>"; };
  875. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpManagerExtensions.swift; sourceTree = "<group>"; };
  876. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettingsView.swift; sourceTree = "<group>"; };
  877. 38BF021C25E7E3AF00579895 /* Reservoir.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Reservoir.swift; sourceTree = "<group>"; };
  878. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceDataManager.swift; sourceTree = "<group>"; };
  879. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+Extensions.swift"; sourceTree = "<group>"; };
  880. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSObject+AssociatedValues.swift"; sourceTree = "<group>"; };
  881. 38D0B3B525EBE24900CB6E88 /* Battery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Battery.swift; sourceTree = "<group>"; };
  882. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsEntry.swift; sourceTree = "<group>"; };
  883. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpView.swift; sourceTree = "<group>"; };
  884. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchGlucoseManager.swift; sourceTree = "<group>"; };
  885. 38DF1785276A73D400B3528F /* TagCloudView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TagCloudView.swift; sourceTree = "<group>"; };
  886. 38DF178B27733E6800B3528F /* snow.sks */ = {isa = PBXFileReference; lastKnownFileType = file.sks; path = snow.sks; sourceTree = "<group>"; };
  887. 38DF178C27733E6800B3528F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  888. 38DF178F27733EAD00B3528F /* SnowScene.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnowScene.swift; sourceTree = "<group>"; };
  889. 38E4451D274DB04600EC9A94 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  890. 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkReachabilityManager.swift; sourceTree = "<group>"; };
  891. 38E44527274E401C00EC9A94 /* Protected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Protected.swift; sourceTree = "<group>"; };
  892. 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+InternalHelpers.swift"; sourceTree = "<group>"; };
  893. 38E4452B274E411600EC9A94 /* Disk+Data.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Data.swift"; sourceTree = "<group>"; };
  894. 38E4452C274E411600EC9A94 /* Disk.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Disk.swift; sourceTree = "<group>"; };
  895. 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Helpers.swift"; sourceTree = "<group>"; };
  896. 38E4452E274E411600EC9A94 /* Disk+[Data].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[Data].swift"; sourceTree = "<group>"; };
  897. 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+UIImage.swift"; sourceTree = "<group>"; };
  898. 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[UIImage].swift"; sourceTree = "<group>"; };
  899. 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+VolumeInformation.swift"; sourceTree = "<group>"; };
  900. 38E44532274E411700EC9A94 /* Disk+Codable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Codable.swift"; sourceTree = "<group>"; };
  901. 38E44533274E411700EC9A94 /* Disk+Errors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Errors.swift"; sourceTree = "<group>"; };
  902. 38E873FD274F761800975559 /* CoreNFC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreNFC.framework; path = System/Library/Frameworks/CoreNFC.framework; sourceTree = SDKROOT; };
  903. 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libswiftCoreNFC.tbd; path = usr/lib/swift/libswiftCoreNFC.tbd; sourceTree = SDKROOT; };
  904. 38E87407274F9AD000975559 /* UserNotificationsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserNotificationsManager.swift; sourceTree = "<group>"; };
  905. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpStatus.swift; sourceTree = "<group>"; };
  906. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Signpost.swift; sourceTree = "<group>"; };
  907. 38E98A1C25F52C9300C0CED0 /* Logger.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Logger.swift; sourceTree = "<group>"; };
  908. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IssueReporter.swift; sourceTree = "<group>"; };
  909. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CollectionIssueReporter.swift; sourceTree = "<group>"; };
  910. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Error+Extensions.swift"; sourceTree = "<group>"; };
  911. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSLocking+Extensions.swift"; sourceTree = "<group>"; };
  912. 38E98A2F25F52FF700C0CED0 /* Config.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Config.swift; sourceTree = "<group>"; };
  913. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extensions.swift"; sourceTree = "<group>"; };
  914. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleLogReporter.swift; sourceTree = "<group>"; };
  915. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusProgressViewStyle.swift; sourceTree = "<group>"; };
  916. 38F37827261260DC009DB701 /* Color+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Color+Extensions.swift"; sourceTree = "<group>"; };
  917. 38F3783A2613555C009DB701 /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
  918. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetsStorage.swift; sourceTree = "<group>"; };
  919. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MD5.swift; sourceTree = "<group>"; };
  920. 38FCF3ED25E9028E0078B0D1 /* TrioTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TrioTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  921. 38FCF3F125E9028E0078B0D1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  922. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorageTests.swift; sourceTree = "<group>"; };
  923. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryStorage.swift; sourceTree = "<group>"; };
  924. 38FE826925CC82DB001FF17A /* NetworkService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkService.swift; sourceTree = "<group>"; };
  925. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutAPI.swift; sourceTree = "<group>"; };
  926. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseStateModel.swift; sourceTree = "<group>"; };
  927. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainStateModel.swift; sourceTree = "<group>"; };
  928. 38FEF3FD2738083E00574A46 /* CGMProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMProvider.swift; sourceTree = "<group>"; };
  929. 38FEF412273B317A00574A46 /* HKUnit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HKUnit.swift; sourceTree = "<group>"; };
  930. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorProvider.swift; sourceTree = "<group>"; };
  931. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigProvider.swift; sourceTree = "<group>"; };
  932. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigStateModel.swift; sourceTree = "<group>"; };
  933. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorDataFlow.swift; sourceTree = "<group>"; };
  934. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorProvider.swift; sourceTree = "<group>"; };
  935. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorProvider.swift; sourceTree = "<group>"; };
  936. 491D6FB92D56741C00C49F67 /* TempTargetRunStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetRunStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  937. 491D6FBA2D56741C00C49F67 /* TempTargetRunStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetRunStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  938. 491D6FBB2D56741C00C49F67 /* TempTargetStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  939. 491D6FBC2D56741C00C49F67 /* TempTargetStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  940. 49B9B57E2D5768D2009C6B59 /* AdjustmentStored+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentStored+Helper.swift"; sourceTree = "<group>"; };
  941. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorRootView.swift; sourceTree = "<group>"; };
  942. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorStateModel.swift; sourceTree = "<group>"; };
  943. 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DebuggingIdentifiers.swift; sourceTree = "<group>"; };
  944. 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSPredicates.swift; sourceTree = "<group>"; };
  945. 581AC4382BE22ED10038760C /* JSONConverter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSONConverter.swift; sourceTree = "<group>"; };
  946. 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PopupView.swift; sourceTree = "<group>"; };
  947. 5825A1BD2C97335C0046467E /* EditTempTargetForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditTempTargetForm.swift; sourceTree = "<group>"; };
  948. 582DF9742C8CDB92001F516D /* GlucoseChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseChartView.swift; sourceTree = "<group>"; };
  949. 582DF9762C8CDBE7001F516D /* InsulinView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinView.swift; sourceTree = "<group>"; };
  950. 582DF9782C8CE1E5001F516D /* MainChartHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainChartHelper.swift; sourceTree = "<group>"; };
  951. 582DF97A2C8CE209001F516D /* CarbView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbView.swift; sourceTree = "<group>"; };
  952. 582FAE422C05102C00D1C13F /* CoreDataError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataError.swift; sourceTree = "<group>"; };
  953. 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+helper.swift"; sourceTree = "<group>"; };
  954. 583684072BD195A700070A60 /* Determination.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Determination.swift; sourceTree = "<group>"; };
  955. 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+helper.swift"; sourceTree = "<group>"; };
  956. 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEvent+helper.swift"; sourceTree = "<group>"; };
  957. 58645B982CA2D1A4008AFCE7 /* GlucoseSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSetup.swift; sourceTree = "<group>"; };
  958. 58645B9A2CA2D24F008AFCE7 /* CarbSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbSetup.swift; sourceTree = "<group>"; };
  959. 58645B9C2CA2D275008AFCE7 /* DeterminationSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeterminationSetup.swift; sourceTree = "<group>"; };
  960. 58645B9E2CA2D2BE008AFCE7 /* PumpHistorySetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistorySetup.swift; sourceTree = "<group>"; };
  961. 58645BA02CA2D2F8008AFCE7 /* OverrideSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideSetup.swift; sourceTree = "<group>"; };
  962. 58645BA22CA2D325008AFCE7 /* BatterySetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BatterySetup.swift; sourceTree = "<group>"; };
  963. 58645BA42CA2D347008AFCE7 /* ForecastSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForecastSetup.swift; sourceTree = "<group>"; };
  964. 58645BA62CA2D390008AFCE7 /* ChartAxisSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChartAxisSetup.swift; sourceTree = "<group>"; };
  965. 5864E8582C42CFAE00294306 /* DeterminationStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeterminationStorage.swift; sourceTree = "<group>"; };
  966. 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPSBattery.swift; sourceTree = "<group>"; };
  967. 58A3D5392C96D4DE003F90FC /* AddTempTargetForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddTempTargetForm.swift; sourceTree = "<group>"; };
  968. 58A3D5432C96DE11003F90FC /* TempTargetStored+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetStored+Helper.swift"; sourceTree = "<group>"; };
  969. 58D08B212C8DAA8E00AA37D3 /* OverrideView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideView.swift; sourceTree = "<group>"; };
  970. 58D08B2F2C8DEA7500AA37D3 /* ForecastView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForecastView.swift; sourceTree = "<group>"; };
  971. 58D08B312C8DF88900AA37D3 /* DummyCharts.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DummyCharts.swift; sourceTree = "<group>"; };
  972. 58D08B332C8DF9A700AA37D3 /* CobIobChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CobIobChart.swift; sourceTree = "<group>"; };
  973. 58D08B372C8DFB6000AA37D3 /* BasalChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasalChart.swift; sourceTree = "<group>"; };
  974. 58D08B392C8DFECD00AA37D3 /* TempTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargets.swift; sourceTree = "<group>"; };
  975. 58F107732BD1A4D000B1A680 /* Determination+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Determination+helper.swift"; sourceTree = "<group>"; };
  976. 5A2325512BFCBF55003518CA /* NightscoutUploadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutUploadView.swift; sourceTree = "<group>"; };
  977. 5A2325532BFCBF65003518CA /* NightscoutFetchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutFetchView.swift; sourceTree = "<group>"; };
  978. 5A2325572BFCC168003518CA /* NightscoutConnectView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutConnectView.swift; sourceTree = "<group>"; };
  979. 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMStateModel.swift; sourceTree = "<group>"; };
  980. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorStateModel.swift; sourceTree = "<group>"; };
  981. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableProvider.swift; sourceTree = "<group>"; };
  982. 64AA5E04A2761F6EEA6568E1 /* CarbRatioEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarbRatioEditorStateModel.swift; sourceTree = "<group>"; };
  983. 65070A322BFDCB83006F213F /* TidepoolStartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TidepoolStartView.swift; sourceTree = "<group>"; };
  984. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorDataFlow.swift; sourceTree = "<group>"; };
  985. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalProvider.swift; sourceTree = "<group>"; };
  986. 6B1A8D012B14D88B00E76752 /* UniformTypeIdentifiers.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UniformTypeIdentifiers.framework; path = System/Library/Frameworks/UniformTypeIdentifiers.framework; sourceTree = SDKROOT; };
  987. 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = LiveActivityExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  988. 6B1A8D182B14D91600E76752 /* WidgetKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WidgetKit.framework; path = System/Library/Frameworks/WidgetKit.framework; sourceTree = SDKROOT; };
  989. 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftUI.framework; path = System/Library/Frameworks/SwiftUI.framework; sourceTree = SDKROOT; };
  990. 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityBundle.swift; sourceTree = "<group>"; };
  991. 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivity.swift; sourceTree = "<group>"; };
  992. 6B1A8D232B14D91700E76752 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  993. 6B1A8D252B14D91700E76752 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  994. 6B1A8D2D2B156EEF00E76752 /* LiveActivityBridge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityBridge.swift; sourceTree = "<group>"; };
  995. 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActitiyAttributes.swift; sourceTree = "<group>"; };
  996. 715120D12D3C2B84005D9FB6 /* GlucoseNotificationsOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationsOption.swift; sourceTree = "<group>"; };
  997. 71D44AAA2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlertPermissionsChecker.swift; sourceTree = "<group>"; };
  998. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorDataFlow.swift; sourceTree = "<group>"; };
  999. 7E22146D3DF4853786C78132 /* CarbRatioEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarbRatioEditorDataFlow.swift; sourceTree = "<group>"; };
  1000. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigRootView.swift; sourceTree = "<group>"; };
  1001. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableRootView.swift; sourceTree = "<group>"; };
  1002. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorRootView.swift; sourceTree = "<group>"; };
  1003. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableStateModel.swift; sourceTree = "<group>"; };
  1004. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalDataFlow.swift; sourceTree = "<group>"; };
  1005. 9C8D5F457B5AFF763F8CF3DF /* CarbRatioEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarbRatioEditorProvider.swift; sourceTree = "<group>"; };
  1006. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorProvider.swift; sourceTree = "<group>"; };
  1007. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigStateModel.swift; sourceTree = "<group>"; };
  1008. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableDataFlow.swift; sourceTree = "<group>"; };
  1009. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigProvider.swift; sourceTree = "<group>"; };
  1010. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorStateModel.swift; sourceTree = "<group>"; };
  1011. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigDataFlow.swift; sourceTree = "<group>"; };
  1012. B5822B15939E719628E9FF7C /* SnoozeRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeRootView.swift; sourceTree = "<group>"; };
  1013. B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMDataFlow.swift; sourceTree = "<group>"; };
  1014. B9CAAEFB2AE70836000F68BC /* branch.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = branch.txt; sourceTree = SOURCE_ROOT; };
  1015. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorDataFlow.swift; sourceTree = "<group>"; };
  1016. BD04ECCD2D299522008C5FEB /* BolusProgressOverlay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusProgressOverlay.swift; sourceTree = "<group>"; };
  1017. BD0B2EF22C5998E600B3298F /* MealPresetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealPresetView.swift; sourceTree = "<group>"; };
  1018. BD1661302B82ADAB00256551 /* CustomProgressView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomProgressView.swift; sourceTree = "<group>"; };
  1019. BD1CF8B72C1A4A8400CB930A /* ConfigOverride.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = ConfigOverride.xcconfig; sourceTree = "<group>"; };
  1020. BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CheckboxToggleStyle.swift; sourceTree = "<group>"; };
  1021. BD3CC0712B0B89D50013189E /* MainChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainChartView.swift; sourceTree = "<group>"; };
  1022. BD4064D02C4ED26900582F43 /* CoreDataObserver.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataObserver.swift; sourceTree = "<group>"; };
  1023. BD432CA02D2F4E3300D1EB79 /* WatchMessageKeys.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchMessageKeys.swift; sourceTree = "<group>"; };
  1024. BD4E1A792D3681AD00D21626 /* GlucoseTargetSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseTargetSetup.swift; sourceTree = "<group>"; };
  1025. BD4E1A7B2D3686D400D21626 /* StartEndMarkerSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StartEndMarkerSetup.swift; sourceTree = "<group>"; };
  1026. BD4ED4FC2CF9D5E8000EDC9C /* AppState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppState.swift; sourceTree = "<group>"; };
  1027. BD54A9582D27FB6A00F9C1EE /* OverridePresetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverridePresetsView.swift; sourceTree = "<group>"; };
  1028. BD54A95A2D28087700F9C1EE /* OverridePresetWatch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverridePresetWatch.swift; sourceTree = "<group>"; };
  1029. BD54A9702D281A7A00F9C1EE /* TempTargetPresetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetPresetsView.swift; sourceTree = "<group>"; };
  1030. BD54A9722D281A9C00F9C1EE /* TempTargetPresetWatch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetPresetWatch.swift; sourceTree = "<group>"; };
  1031. BD6EB2D52C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityWidgetConfiguration.swift; sourceTree = "<group>"; };
  1032. BD793CAF2CE7C60E00D669AC /* OverrideRunStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideRunStored+helper.swift"; sourceTree = "<group>"; };
  1033. BD793CB12CE8032E00D669AC /* TempTargetRunStored.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetRunStored.swift; sourceTree = "<group>"; };
  1034. BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigDataFlow.swift; sourceTree = "<group>"; };
  1035. BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigProvider.swift; sourceTree = "<group>"; };
  1036. BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorStateModel.swift; sourceTree = "<group>"; };
  1037. BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigRootView.swift; sourceTree = "<group>"; };
  1038. BD7DB88D2D2C4A0A003D3155 /* BolusCalculationManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculationManager.swift; sourceTree = "<group>"; };
  1039. BD8207C32D2B42E50023339D /* Trio Watch Complication Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Trio Watch Complication Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  1040. BDA25EE32D260CCF00035F34 /* AppleWatchManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppleWatchManager.swift; sourceTree = "<group>"; };
  1041. BDA25EE52D260D5800035F34 /* WatchState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchState.swift; sourceTree = "<group>"; };
  1042. BDA25EFC2D261BF200035F34 /* WatchState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchState.swift; sourceTree = "<group>"; };
  1043. BDA25F1B2D26BD0300035F34 /* TrendShape.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrendShape.swift; sourceTree = "<group>"; };
  1044. BDA25F1D2D26D5D800035F34 /* GlucoseChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseChartView.swift; sourceTree = "<group>"; };
  1045. BDA25F1F2D26D5FB00035F34 /* CarbsInputView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsInputView.swift; sourceTree = "<group>"; };
  1046. BDA25F212D26D62200035F34 /* BolusInputView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusInputView.swift; sourceTree = "<group>"; };
  1047. BDA6CC872CAF219800F942F9 /* TempTargetSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetSetup.swift; sourceTree = "<group>"; };
  1048. BDA7593D2D37CFC000E649A4 /* CarbEntryEditorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbEntryEditorView.swift; sourceTree = "<group>"; };
  1049. BDAE3FFF2D372BA8009C12B1 /* WatchState+Requests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "WatchState+Requests.swift"; sourceTree = "<group>"; };
  1050. BDB3C1182C03DD1000CEEAA1 /* UserDefaultsExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaultsExtension.swift; sourceTree = "<group>"; };
  1051. BDB899872C564509006F3298 /* ForecastChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForecastChart.swift; sourceTree = "<group>"; };
  1052. BDB899892C565D0B006F3298 /* CarbsGlucose+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbsGlucose+helper.swift"; sourceTree = "<group>"; };
  1053. BDBAACF92C2D439700370AAE /* OverrideData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideData.swift; sourceTree = "<group>"; };
  1054. BDC2EA442C3043B000E5BBD0 /* OverrideStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideStorage.swift; sourceTree = "<group>"; };
  1055. BDC2EA462C3045AD00E5BBD0 /* Override.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Override.swift; sourceTree = "<group>"; };
  1056. BDC530FE2D0F6BE300088832 /* ContactImageManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageManager.swift; sourceTree = "<group>"; };
  1057. BDC531112D1060FA00088832 /* ContactImageDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageDetailView.swift; sourceTree = "<group>"; };
  1058. BDC531132D10611D00088832 /* AddContactImageSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddContactImageSheet.swift; sourceTree = "<group>"; };
  1059. BDC531152D10629000088832 /* ContactPicture.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactPicture.swift; sourceTree = "<group>"; };
  1060. BDC531172D1062F200088832 /* ContactImageState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageState.swift; sourceTree = "<group>"; };
  1061. BDCAF2372C639F35002DC907 /* SettingItems.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingItems.swift; sourceTree = "<group>"; };
  1062. BDCD47AE2C1F3F1700F8BCD5 /* OverrideStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideStored+helper.swift"; sourceTree = "<group>"; };
  1063. BDDAF9EE2D00553E00B34E7A /* SelectionPopoverView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelectionPopoverView.swift; sourceTree = "<group>"; };
  1064. BDF34EBD2C0A31D000D51995 /* CustomNotification.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomNotification.swift; sourceTree = "<group>"; };
  1065. BDF34F822C10C5B600D51995 /* DataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataManager.swift; sourceTree = "<group>"; };
  1066. BDF34F842C10C62E00D51995 /* GlucoseData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseData.swift; sourceTree = "<group>"; };
  1067. BDF34F8F2C10CF8C00D51995 /* CoreDataStack.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataStack.swift; sourceTree = "<group>"; };
  1068. BDF34F922C10D0E100D51995 /* LiveActivityAttributes+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LiveActivityAttributes+Helper.swift"; sourceTree = "<group>"; };
  1069. BDF34F942C10D27300D51995 /* DeterminationData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeterminationData.swift; sourceTree = "<group>"; };
  1070. BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LockScreenView.swift; sourceTree = "<group>"; };
  1071. BDFD16592AE40438007F0DDA /* TreatmentsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TreatmentsRootView.swift; sourceTree = "<group>"; };
  1072. BDFF797C2D25AA870016C40C /* Trio Watch App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Trio Watch App.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  1073. BDFF798B2D25AA890016C40C /* Trio Watch AppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Trio Watch AppTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
  1074. BDFF7A832D25F97D0016C40C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  1075. BDFF7A842D25F97D0016C40C /* TrioMainWatchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioMainWatchView.swift; sourceTree = "<group>"; };
  1076. BDFF7A852D25F97D0016C40C /* TrioWatchApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioWatchApp.swift; sourceTree = "<group>"; };
  1077. BDFF7A8A2D25F97D0016C40C /* Unit Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Unit Tests.swift"; sourceTree = "<group>"; };
  1078. BDFF7A902D25F97D0016C40C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1079. BDFF7A912D25F97D0016C40C /* TrioWatchApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioWatchApp.swift; sourceTree = "<group>"; };
  1080. BDFF7A922D25F97D0016C40C /* TrioWatchAppExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioWatchAppExtension.swift; sourceTree = "<group>"; };
  1081. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorRootView.swift; sourceTree = "<group>"; };
  1082. C19984D62EFC0035A9E9644D /* TreatmentsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TreatmentsProvider.swift; sourceTree = "<group>"; };
  1083. C2A0A42E2CE0312C003B98E8 /* ConstantValues.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConstantValues.swift; sourceTree = "<group>"; };
  1084. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalRootView.swift; sourceTree = "<group>"; };
  1085. C8D1A7CA8C10C4403D4BBFA7 /* TreatmentsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TreatmentsDataFlow.swift; sourceTree = "<group>"; };
  1086. CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RawFetchedProfile.swift; sourceTree = "<group>"; };
  1087. CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+helper.swift"; sourceTree = "<group>"; };
  1088. CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddCarbPresetIntent.swift; sourceTree = "<group>"; };
  1089. CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbPresetIntentRequest.swift; sourceTree = "<group>"; };
  1090. CE1F6DD82BADF4620064EB8D /* PluginManagerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginManagerTests.swift; sourceTree = "<group>"; };
  1091. CE1F6DDA2BAE08B60064EB8D /* TidepoolManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TidepoolManager.swift; sourceTree = "<group>"; };
  1092. CE1F6DE62BAF1A180064EB8D /* BuildDetails.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = BuildDetails.plist; sourceTree = "<group>"; };
  1093. CE1F6DE82BAF37C90064EB8D /* TidepoolConfigView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TidepoolConfigView.swift; sourceTree = "<group>"; };
  1094. CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BloodGlucoseExtensions.swift; sourceTree = "<group>"; };
  1095. CE398D012977349800DF218F /* CryptoKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CryptoKit.framework; path = System/Library/Frameworks/CryptoKit.framework; sourceTree = SDKROOT; };
  1096. CE398D17297C9EE800DF218F /* G7SensorKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1097. CE398D1A297D69A900DF218F /* ShareClient.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ShareClient.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1098. CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniBLEPumpManagerExtensions.swift; sourceTree = "<group>"; };
  1099. CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniPodManagerExtensions.swift; sourceTree = "<group>"; };
  1100. CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = "ConnectIQ 2.xcframework"; path = "Dependencies/ConnectIQ 2.xcframework"; sourceTree = "<group>"; };
  1101. 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; };
  1102. CE7950232997D81700FA576E /* CGMSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMSettingsView.swift; sourceTree = "<group>"; };
  1103. CE7950252998056D00FA576E /* CGMSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMSetupView.swift; sourceTree = "<group>"; };
  1104. CE79502729980C9600FA576E /* CGMBLEKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1105. CE79502929980C9F00FA576E /* G7SensorKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1106. CE79502D29980E4D00FA576E /* ShareClientUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ShareClientUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1107. CE7CA3432A064973004BE681 /* AppShortcuts.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppShortcuts.swift; sourceTree = "<group>"; };
  1108. CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseIntentsRequest.swift; sourceTree = "<group>"; };
  1109. CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CancelTempPresetIntent.swift; sourceTree = "<group>"; };
  1110. CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApplyTempPresetIntent.swift; sourceTree = "<group>"; };
  1111. CE7CA3492A064973004BE681 /* TempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TempPresetIntent.swift; sourceTree = "<group>"; };
  1112. CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TempPresetsIntentRequest.swift; sourceTree = "<group>"; };
  1113. CE7CA34C2A064973004BE681 /* ListStateIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListStateIntent.swift; sourceTree = "<group>"; };
  1114. CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StateIntentRequest.swift; sourceTree = "<group>"; };
  1115. CE7CA3572A064E2F004BE681 /* ListStateView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ListStateView.swift; sourceTree = "<group>"; };
  1116. CE82E02428E867BA00473A9C /* AlertStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertStorage.swift; sourceTree = "<group>"; };
  1117. CE82E02628E869DF00473A9C /* AlertEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertEntry.swift; sourceTree = "<group>"; };
  1118. CE94597929E9DF7B0047C9C6 /* ConnectIQ.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ConnectIQ.framework; path = "Dependencies/ios-armv7_arm64/ConnectIQ.framework"; sourceTree = "<group>"; };
  1119. CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GarminManager.swift; sourceTree = "<group>"; };
  1120. CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigDataFlow.swift; sourceTree = "<group>"; };
  1121. CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigProvider.swift; sourceTree = "<group>"; };
  1122. CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigStateModel.swift; sourceTree = "<group>"; };
  1123. CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigRootView.swift; sourceTree = "<group>"; };
  1124. CE95BF492BA5CED700DC3DE3 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1125. CE95BF4A2BA5CED700DC3DE3 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1126. CE95BF562BA5F5FE00DC3DE3 /* PluginManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginManager.swift; sourceTree = "<group>"; };
  1127. CE95BF592BA62E4A00DC3DE3 /* PluginSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginSource.swift; sourceTree = "<group>"; };
  1128. CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SavitzkyGolayFilter.swift; sourceTree = "<group>"; };
  1129. CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MKRingProgressView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1130. CEB434DE28B8F5C400B70274 /* OmniBLE.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniBLE.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1131. CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BluetoothStateManager.swift; sourceTree = "<group>"; };
  1132. CEB434E428B8FF5D00B70274 /* UIColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIColor.swift; sourceTree = "<group>"; };
  1133. CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopUIColorPalette+Default.swift"; sourceTree = "<group>"; };
  1134. CEC751D129D88257006E9D24 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1135. CEC751D329D88257006E9D24 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1136. CEC751D529D88262006E9D24 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1137. CEC751D729D88262006E9D24 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1138. CEE9A64F2BBB418300EB5194 /* CalibrationsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsProvider.swift; sourceTree = "<group>"; };
  1139. CEE9A6512BBB418300EB5194 /* CalibrationsRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsRootView.swift; sourceTree = "<group>"; };
  1140. CEE9A6522BBB418300EB5194 /* CalibrationsChart.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsChart.swift; sourceTree = "<group>"; };
  1141. CEE9A6532BBB418300EB5194 /* CalibrationsStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsStateModel.swift; sourceTree = "<group>"; };
  1142. CEE9A6542BBB418300EB5194 /* CalibrationsDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsDataFlow.swift; sourceTree = "<group>"; };
  1143. CEE9A65B2BBB41C800EB5194 /* CalibrationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationService.swift; sourceTree = "<group>"; };
  1144. CEE9A65D2BBC9F6500EB5194 /* CalibrationsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationsTests.swift; sourceTree = "<group>"; };
  1145. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalStateModel.swift; sourceTree = "<group>"; };
  1146. D0BDC6993C1087310EDFC428 /* CarbRatioEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarbRatioEditorRootView.swift; sourceTree = "<group>"; };
  1147. DC2C6489D29ECCCAD78E0721 /* GlucoseNotificationSettingsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationSettingsStateModel.swift; sourceTree = "<group>"; };
  1148. DD07CA132CE80B73002D45A9 /* TimeInRangeChartStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TimeInRangeChartStyle.swift; sourceTree = "<group>"; };
  1149. DD09D47A2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarEventSettingsDataFlow.swift; sourceTree = "<group>"; };
  1150. DD09D47C2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarEventSettingsProvider.swift; sourceTree = "<group>"; };
  1151. DD09D47E2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarEventSettingsStateModel.swift; sourceTree = "<group>"; };
  1152. DD09D4812C5986F6003FEA5D /* CalendarEventSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarEventSettingsRootView.swift; sourceTree = "<group>"; };
  1153. DD09D5C62D29EB26000D82C9 /* Helper+Enums.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Helper+Enums.swift"; sourceTree = "<group>"; };
  1154. DD09D5C82D29F3D0000D82C9 /* AcknowledgementPendingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AcknowledgementPendingView.swift; sourceTree = "<group>"; };
  1155. DD09D6162D2A2E4A000D82C9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  1156. DD09D6412D2B553A000D82C9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  1157. DD09D6422D2B553A000D82C9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1158. DD09D6432D2B553A000D82C9 /* TrioWatchComplication.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioWatchComplication.swift; sourceTree = "<group>"; };
  1159. DD1745122C54169400211FAC /* DevicesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DevicesView.swift; sourceTree = "<group>"; };
  1160. DD1745142C54388A00211FAC /* TherapySettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TherapySettingsView.swift; sourceTree = "<group>"; };
  1161. DD1745162C54389F00211FAC /* FeatureSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FeatureSettingsView.swift; sourceTree = "<group>"; };
  1162. DD1745182C543B5700211FAC /* NotificationsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationsView.swift; sourceTree = "<group>"; };
  1163. DD17451C2C543C5F00211FAC /* ServicesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ServicesView.swift; sourceTree = "<group>"; };
  1164. DD17451F2C55523E00211FAC /* SMBSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMBSettingsDataFlow.swift; sourceTree = "<group>"; };
  1165. DD1745212C55524800211FAC /* SMBSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMBSettingsProvider.swift; sourceTree = "<group>"; };
  1166. DD1745232C55526000211FAC /* SMBSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMBSettingsStateModel.swift; sourceTree = "<group>"; };
  1167. DD1745252C55526F00211FAC /* SMBSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMBSettingsRootView.swift; sourceTree = "<group>"; };
  1168. DD1745282C55642100211FAC /* SettingInputSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingInputSection.swift; sourceTree = "<group>"; };
  1169. DD17452A2C556E8100211FAC /* SettingInputHintView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingInputHintView.swift; sourceTree = "<group>"; };
  1170. DD17452D2C55AE4800211FAC /* TargetBehavoirDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetBehavoirDataFlow.swift; sourceTree = "<group>"; };
  1171. DD17452F2C55AE5300211FAC /* TargetBehaviorProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetBehaviorProvider.swift; sourceTree = "<group>"; };
  1172. DD1745312C55AE6000211FAC /* TargetBehavoirStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetBehavoirStateModel.swift; sourceTree = "<group>"; };
  1173. DD1745342C55AE7E00211FAC /* TargetBehavoirRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetBehavoirRootView.swift; sourceTree = "<group>"; };
  1174. DD1745362C55B74200211FAC /* AlgorithmSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmSettings.swift; sourceTree = "<group>"; };
  1175. DD1745392C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmAdvancedSettingsDataFlow.swift; sourceTree = "<group>"; };
  1176. DD17453B2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmAdvancedSettingsProvider.swift; sourceTree = "<group>"; };
  1177. DD17453D2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmAdvancedSettingsStateModel.swift; sourceTree = "<group>"; };
  1178. DD17453F2C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmAdvancedSettingsRootView.swift; sourceTree = "<group>"; };
  1179. DD1745432C55C60E00211FAC /* AutosensSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutosensSettingsDataFlow.swift; sourceTree = "<group>"; };
  1180. DD1745452C55C61500211FAC /* AutosensSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutosensSettingsProvider.swift; sourceTree = "<group>"; };
  1181. DD1745472C55C61D00211FAC /* AutosensSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutosensSettingsStateModel.swift; sourceTree = "<group>"; };
  1182. DD17454A2C55C62800211FAC /* AutosensSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutosensSettingsRootView.swift; sourceTree = "<group>"; };
  1183. DD17454D2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitsLimitsSettingsDataFlow.swift; sourceTree = "<group>"; };
  1184. DD17454F2C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitsLimitsSettingsProvider.swift; sourceTree = "<group>"; };
  1185. DD1745512C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitsLimitsSettingsStateModel.swift; sourceTree = "<group>"; };
  1186. DD1745542C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitsLimitsSettingsRootView.swift; sourceTree = "<group>"; };
  1187. DD1DB7CB2BECCA1F0048B367 /* BuildDetails.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BuildDetails.swift; sourceTree = "<group>"; };
  1188. DD1E53582D273F20008F32A4 /* LoopStatusHelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStatusHelpView.swift; sourceTree = "<group>"; };
  1189. DD21FCB42C6952AD00AF2C25 /* DecimalPickerSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DecimalPickerSettings.swift; sourceTree = "<group>"; };
  1190. DD246F052D2836AA0027DDE0 /* GlucoseTrendView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseTrendView.swift; sourceTree = "<group>"; };
  1191. DD2CC85B2D25D9CE00445446 /* GlucoseTargetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseTargetsView.swift; sourceTree = "<group>"; };
  1192. DD3078672D42F5CE00DE0490 /* WatchGlucoseObject.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchGlucoseObject.swift; sourceTree = "<group>"; };
  1193. DD3078692D42F94000DE0490 /* GarminDevice.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GarminDevice.swift; sourceTree = "<group>"; };
  1194. DD32CF972CC82460003686D6 /* TrioRemoteControl+Bolus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+Bolus.swift"; sourceTree = "<group>"; };
  1195. DD32CF992CC8246F003686D6 /* TrioRemoteControl+Meal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+Meal.swift"; sourceTree = "<group>"; };
  1196. DD32CF9B2CC82495003686D6 /* TrioRemoteControl+TempTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+TempTarget.swift"; sourceTree = "<group>"; };
  1197. DD32CF9D2CC824C2003686D6 /* TrioRemoteControl+Override.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+Override.swift"; sourceTree = "<group>"; };
  1198. DD32CF9F2CC824D3003686D6 /* TrioRemoteControl+APNS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+APNS.swift"; sourceTree = "<group>"; };
  1199. DD32CFA12CC824E1003686D6 /* TrioRemoteControl+Helpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+Helpers.swift"; sourceTree = "<group>"; };
  1200. DD3A3CE62D29C93F00AE478E /* Helper+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Helper+Extensions.swift"; sourceTree = "<group>"; };
  1201. DD3A3CE82D29C97800AE478E /* Helper+ButtonStyles.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Helper+ButtonStyles.swift"; sourceTree = "<group>"; };
  1202. DD4FFF322D458EE600B6CFF9 /* GarminWatchState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GarminWatchState.swift; sourceTree = "<group>"; };
  1203. DD5DC9F02CF3D96E00AB8703 /* AdjustmentsStateModel+Overrides.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsStateModel+Overrides.swift"; sourceTree = "<group>"; };
  1204. DD5DC9F22CF3D9D600AB8703 /* AdjustmentsStateModel+TempTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsStateModel+TempTargets.swift"; sourceTree = "<group>"; };
  1205. DD5DC9F62CF3DA9300AB8703 /* TargetPicker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetPicker.swift; sourceTree = "<group>"; };
  1206. DD5DC9F82CF3DAA900AB8703 /* RadioButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RadioButton.swift; sourceTree = "<group>"; };
  1207. DD5DC9FA2CF3E1AA00AB8703 /* AdjustmentsStateModel+Helpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsStateModel+Helpers.swift"; sourceTree = "<group>"; };
  1208. DD68889C2C386E17006E3C44 /* NightscoutExercise.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutExercise.swift; sourceTree = "<group>"; };
  1209. DD6B7CB12C7B6F0800B75029 /* Rounding.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Rounding.swift; sourceTree = "<group>"; };
  1210. DD6B7CB32C7B71F700B75029 /* ForecastDisplayType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForecastDisplayType.swift; sourceTree = "<group>"; };
  1211. DD6B7CB52C7B748B00B75029 /* TotalInsulinDisplayType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TotalInsulinDisplayType.swift; sourceTree = "<group>"; };
  1212. DD6B7CB82C7BAC6900B75029 /* NightscoutImportResultView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutImportResultView.swift; sourceTree = "<group>"; };
  1213. DD6B7CBA2C7FBBFA00B75029 /* ReviewInsulinActionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReviewInsulinActionView.swift; sourceTree = "<group>"; };
  1214. DD6D67E32C9C253500660C9B /* ColorSchemeOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ColorSchemeOption.swift; sourceTree = "<group>"; };
  1215. DD6F63CB2D27F606007D94CF /* TreatmentMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TreatmentMenuView.swift; sourceTree = "<group>"; };
  1216. DD8262CA2D289297009F6F62 /* BolusConfirmationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusConfirmationView.swift; sourceTree = "<group>"; };
  1217. DD88C8E12C50420800F2D558 /* DefinitionRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DefinitionRow.swift; sourceTree = "<group>"; };
  1218. DD940BA92CA7585D000830A5 /* GlucoseColorScheme.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseColorScheme.swift; sourceTree = "<group>"; };
  1219. DD940BAB2CA75889000830A5 /* DynamicGlucoseColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicGlucoseColor.swift; sourceTree = "<group>"; };
  1220. DD9ECB672CA99F4500AA7C45 /* TrioRemoteControl.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioRemoteControl.swift; sourceTree = "<group>"; };
  1221. DD9ECB692CA99F6C00AA7C45 /* PushMessage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PushMessage.swift; sourceTree = "<group>"; };
  1222. DD9ECB6D2CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemoteControlConfigStateModel.swift; sourceTree = "<group>"; };
  1223. DD9ECB6E2CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemoteControlConfigProvider.swift; sourceTree = "<group>"; };
  1224. DD9ECB6F2CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemoteControlConfigDataFlow.swift; sourceTree = "<group>"; };
  1225. DD9ECB732CA9A0C300AA7C45 /* RemoteControlConfig.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemoteControlConfig.swift; sourceTree = "<group>"; };
  1226. DDA6E24F2D22187500C2988C /* ChartLegendView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChartLegendView.swift; sourceTree = "<group>"; };
  1227. DDA6E2842D2361F800C2988C /* LoopStatusView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStatusView.swift; sourceTree = "<group>"; };
  1228. DDA6E31F2D258E0500C2988C /* OverrideHelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideHelpView.swift; sourceTree = "<group>"; };
  1229. DDA6E3212D25901100C2988C /* TempTargetHelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetHelpView.swift; sourceTree = "<group>"; };
  1230. DDA6E3562D25988500C2988C /* ContactImageHelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageHelpView.swift; sourceTree = "<group>"; };
  1231. DDAA29822D2D1D7B006546A1 /* AdjustmentsRootView+Overrides.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsRootView+Overrides.swift"; sourceTree = "<group>"; };
  1232. DDAA29842D2D1D98006546A1 /* AdjustmentsRootView+TempTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsRootView+TempTargets.swift"; sourceTree = "<group>"; };
  1233. DDB37CC22D05044D00D99BF4 /* ContactTrickEntryStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ContactTrickEntryStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1234. DDB37CC32D05044D00D99BF4 /* ContactTrickEntryStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ContactTrickEntryStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1235. DDB37CC42D05048F00D99BF4 /* ContactImageStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageStorage.swift; sourceTree = "<group>"; };
  1236. DDB37CC62D05127500D99BF4 /* FontExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FontExtensions.swift; sourceTree = "<group>"; };
  1237. DDCEBF5A2CC1B76400DF4C36 /* LiveActivity+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LiveActivity+Helper.swift"; sourceTree = "<group>"; };
  1238. DDD163112C4C689900CD525A /* AdjustmentsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdjustmentsStateModel.swift; sourceTree = "<group>"; };
  1239. DDD163132C4C68D300CD525A /* AdjustmentsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdjustmentsProvider.swift; sourceTree = "<group>"; };
  1240. DDD163152C4C690300CD525A /* AdjustmentsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdjustmentsDataFlow.swift; sourceTree = "<group>"; };
  1241. DDD163172C4C694000CD525A /* AdjustmentsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdjustmentsRootView.swift; sourceTree = "<group>"; };
  1242. DDD163192C4C695E00CD525A /* EditOverrideForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditOverrideForm.swift; sourceTree = "<group>"; };
  1243. DDD1631B2C4C697400CD525A /* AddOverrideForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddOverrideForm.swift; sourceTree = "<group>"; };
  1244. DDD1631E2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = TrioCoreDataPersistentContainer.xcdatamodel; sourceTree = "<group>"; };
  1245. DDD6D4D22CDE90720029439A /* HbA1cDisplayUnit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HbA1cDisplayUnit.swift; sourceTree = "<group>"; };
  1246. DDE179322C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MealPresetStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1247. DDE179332C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MealPresetStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1248. DDE179342C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopStatRecord+CoreDataClass.swift"; sourceTree = "<group>"; };
  1249. DDE179352C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopStatRecord+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1250. DDE179362C910127003CDDB7 /* BolusStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BolusStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1251. DDE179372C910127003CDDB7 /* BolusStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BolusStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1252. DDE179382C910127003CDDB7 /* ForecastValue+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ForecastValue+CoreDataClass.swift"; sourceTree = "<group>"; };
  1253. DDE179392C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ForecastValue+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1254. DDE1793A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1255. DDE1793B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1256. DDE1793E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEventStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1257. DDE1793F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEventStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1258. DDE179402C910127003CDDB7 /* StatsData+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "StatsData+CoreDataClass.swift"; sourceTree = "<group>"; };
  1259. DDE179412C910127003CDDB7 /* StatsData+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "StatsData+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1260. DDE179422C910127003CDDB7 /* Forecast+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+CoreDataClass.swift"; sourceTree = "<group>"; };
  1261. DDE179432C910127003CDDB7 /* Forecast+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1262. DDE179442C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1263. DDE179452C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1264. DDE179462C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OpenAPS_Battery+CoreDataClass.swift"; sourceTree = "<group>"; };
  1265. DDE179472C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OpenAPS_Battery+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1266. DDE179482C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempBasalStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1267. DDE179492C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempBasalStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1268. DDE1794C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideRunStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1269. DDE1794D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideRunStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1270. DDE1794E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OrefDetermination+CoreDataClass.swift"; sourceTree = "<group>"; };
  1271. DDE1794F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OrefDetermination+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1272. DDE179502C910127003CDDB7 /* OverrideStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1273. DDE179512C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1274. DDF847DC2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsDataFlow.swift; sourceTree = "<group>"; };
  1275. DDF847DE2C5C28780049BB3B /* LiveActivitySettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsProvider.swift; sourceTree = "<group>"; };
  1276. DDF847E02C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsStateModel.swift; sourceTree = "<group>"; };
  1277. DDF847E32C5C288F0049BB3B /* LiveActivitySettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsRootView.swift; sourceTree = "<group>"; };
  1278. DDF847E52C5D66490049BB3B /* AddMealPresetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddMealPresetView.swift; sourceTree = "<group>"; };
  1279. DDF847E72C5DABA30049BB3B /* WatchConfigAppleWatchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigAppleWatchView.swift; sourceTree = "<group>"; };
  1280. DDF847E92C5DABAC0049BB3B /* WatchConfigGarminView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigGarminView.swift; sourceTree = "<group>"; };
  1281. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ServiceAssembly.swift; sourceTree = "<group>"; };
  1282. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SecurityAssembly.swift; sourceTree = "<group>"; };
  1283. E00EEBFF27368630002FF094 /* StorageAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StorageAssembly.swift; sourceTree = "<group>"; };
  1284. E00EEC0027368630002FF094 /* UIAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIAssembly.swift; sourceTree = "<group>"; };
  1285. E00EEC0127368630002FF094 /* APSAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = APSAssembly.swift; sourceTree = "<group>"; };
  1286. E00EEC0227368630002FF094 /* NetworkAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkAssembly.swift; sourceTree = "<group>"; };
  1287. E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSimulatorSource.swift; sourceTree = "<group>"; };
  1288. E06B9119275B5EEA003C04B6 /* Array+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Array+Extension.swift"; sourceTree = "<group>"; };
  1289. E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HealthKit.framework; path = System/Library/Frameworks/HealthKit.framework; sourceTree = SDKROOT; };
  1290. E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitSample.swift; sourceTree = "<group>"; };
  1291. E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeStateModel.swift; sourceTree = "<group>"; };
  1292. E592A36F2CEEC01E009A472C /* ContactTrickEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactTrickEntry.swift; sourceTree = "<group>"; };
  1293. E592A3712CEEC038009A472C /* ContactImageRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageRootView.swift; sourceTree = "<group>"; };
  1294. E592A3732CEEC038009A472C /* ContactImageDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageDataFlow.swift; sourceTree = "<group>"; };
  1295. E592A3742CEEC038009A472C /* ContactImageProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageProvider.swift; sourceTree = "<group>"; };
  1296. E592A3752CEEC038009A472C /* ContactImageStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageStateModel.swift; sourceTree = "<group>"; };
  1297. E625985B47742D498CB1681A /* GlucoseNotificationSettingsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationSettingsProvider.swift; sourceTree = "<group>"; };
  1298. F816825D28DB441200054060 /* HeartBeatManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HeartBeatManager.swift; sourceTree = "<group>"; };
  1299. F816825F28DB441800054060 /* BluetoothTransmitter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BluetoothTransmitter.swift; sourceTree = "<group>"; };
  1300. F90692A9274B7AAE0037068D /* HealthKitManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitManager.swift; sourceTree = "<group>"; };
  1301. F90692CE274B999A0037068D /* HealthKitDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitDataFlow.swift; sourceTree = "<group>"; };
  1302. F90692D0274B99B60037068D /* HealthKitProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitProvider.swift; sourceTree = "<group>"; };
  1303. F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppleHealthKitRootView.swift; sourceTree = "<group>"; };
  1304. F90692D5274B9A450037068D /* HealthKitStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitStateModel.swift; sourceTree = "<group>"; };
  1305. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorRootView.swift; sourceTree = "<group>"; };
  1306. FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutPreferences.swift; sourceTree = "<group>"; };
  1307. FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Bundle+Extensions.swift"; sourceTree = "<group>"; };
  1308. FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIDevice+Extensions.swift"; sourceTree = "<group>"; };
  1309. /* End PBXFileReference section */
  1310. /* Begin PBXFileSystemSynchronizedRootGroup section */
  1311. BDFF7A9E2D25FA970016C40C /* Preview Content */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = "Preview Content"; sourceTree = "<group>"; };
  1312. DDCEBF412CC1B42500DF4C36 /* Views */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = Views; sourceTree = "<group>"; };
  1313. /* End PBXFileSystemSynchronizedRootGroup section */
  1314. /* Begin PBXFrameworksBuildPhase section */
  1315. 388E595525AD948C0019842D /* Frameworks */ = {
  1316. isa = PBXFrameworksBuildPhase;
  1317. buildActionMask = 2147483647;
  1318. files = (
  1319. CE95BF632BA771BE00DC3DE3 /* LoopTestingKit.framework in Frameworks */,
  1320. 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */,
  1321. 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */,
  1322. CE51DD1C2A01970900F163F7 /* ConnectIQ 2.xcframework in Frameworks */,
  1323. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */,
  1324. B958F1B72BA0711600484851 /* MKRingProgressView in Frameworks */,
  1325. CE95BF5B2BA770C300DC3DE3 /* LoopKit.framework in Frameworks */,
  1326. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */,
  1327. 3833B46D26012030003021B3 /* Algorithms in Frameworks */,
  1328. CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */,
  1329. CE95BF5F2BA7715800DC3DE3 /* MockKit.framework in Frameworks */,
  1330. 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */,
  1331. CE95BF612BA7715900DC3DE3 /* MockKitUI.framework in Frameworks */,
  1332. E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */,
  1333. CE95BF5D2BA770C300DC3DE3 /* LoopKitUI.framework in Frameworks */,
  1334. );
  1335. runOnlyForDeploymentPostprocessing = 0;
  1336. };
  1337. 38FCF3EA25E9028E0078B0D1 /* Frameworks */ = {
  1338. isa = PBXFrameworksBuildPhase;
  1339. buildActionMask = 2147483647;
  1340. files = (
  1341. );
  1342. runOnlyForDeploymentPostprocessing = 0;
  1343. };
  1344. 6B1A8D142B14D91500E76752 /* Frameworks */ = {
  1345. isa = PBXFrameworksBuildPhase;
  1346. buildActionMask = 2147483647;
  1347. files = (
  1348. 6B1A8D1B2B14D91600E76752 /* SwiftUI.framework in Frameworks */,
  1349. 6B1A8D192B14D91600E76752 /* WidgetKit.framework in Frameworks */,
  1350. );
  1351. runOnlyForDeploymentPostprocessing = 0;
  1352. };
  1353. BD8207C02D2B42E50023339D /* Frameworks */ = {
  1354. isa = PBXFrameworksBuildPhase;
  1355. buildActionMask = 2147483647;
  1356. files = (
  1357. BD8207C52D2B42E60023339D /* SwiftUI.framework in Frameworks */,
  1358. BD8207C42D2B42E60023339D /* WidgetKit.framework in Frameworks */,
  1359. );
  1360. runOnlyForDeploymentPostprocessing = 0;
  1361. };
  1362. BDFF79792D25AA870016C40C /* Frameworks */ = {
  1363. isa = PBXFrameworksBuildPhase;
  1364. buildActionMask = 2147483647;
  1365. files = (
  1366. );
  1367. runOnlyForDeploymentPostprocessing = 0;
  1368. };
  1369. BDFF79882D25AA890016C40C /* Frameworks */ = {
  1370. isa = PBXFrameworksBuildPhase;
  1371. buildActionMask = 2147483647;
  1372. files = (
  1373. );
  1374. runOnlyForDeploymentPostprocessing = 0;
  1375. };
  1376. /* End PBXFrameworksBuildPhase section */
  1377. /* Begin PBXGroup section */
  1378. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */ = {
  1379. isa = PBXGroup;
  1380. children = (
  1381. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */,
  1382. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */,
  1383. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */,
  1384. 4E8C7B59F8065047ECE20965 /* View */,
  1385. );
  1386. path = ConfigEditor;
  1387. sourceTree = "<group>";
  1388. };
  1389. 0A67A70F9438DB6586398458 /* View */ = {
  1390. isa = PBXGroup;
  1391. children = (
  1392. B5822B15939E719628E9FF7C /* SnoozeRootView.swift */,
  1393. );
  1394. path = View;
  1395. sourceTree = "<group>";
  1396. };
  1397. 0D76BBC81CEDC1A0050F45EF /* View */ = {
  1398. isa = PBXGroup;
  1399. children = (
  1400. 38569352270B5E350002C50D /* CGMRootView.swift */,
  1401. CE7950232997D81700FA576E /* CGMSettingsView.swift */,
  1402. CE7950252998056D00FA576E /* CGMSetupView.swift */,
  1403. );
  1404. path = View;
  1405. sourceTree = "<group>";
  1406. };
  1407. 0EE66DD474AFFD4FD787D5B9 /* View */ = {
  1408. isa = PBXGroup;
  1409. children = (
  1410. BDA7593D2D37CFC000E649A4 /* CarbEntryEditorView.swift */,
  1411. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */,
  1412. );
  1413. path = View;
  1414. sourceTree = "<group>";
  1415. };
  1416. 110AEDE22C5193D100615CC9 /* Bolus */ = {
  1417. isa = PBXGroup;
  1418. children = (
  1419. 110AEDE02C5193D100615CC9 /* BolusIntent.swift */,
  1420. 110AEDE12C5193D100615CC9 /* BolusIntentRequest.swift */,
  1421. );
  1422. path = Bolus;
  1423. sourceTree = "<group>";
  1424. };
  1425. 110AEDE62C51A0AE00615CC9 /* View */ = {
  1426. isa = PBXGroup;
  1427. children = (
  1428. 110AEDE52C51A0AE00615CC9 /* ShortcutsConfigView.swift */,
  1429. );
  1430. path = View;
  1431. sourceTree = "<group>";
  1432. };
  1433. 110AEDEA2C51A0AE00615CC9 /* ShortcutsConfig */ = {
  1434. isa = PBXGroup;
  1435. children = (
  1436. 110AEDE62C51A0AE00615CC9 /* View */,
  1437. 110AEDE72C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift */,
  1438. 110AEDE82C51A0AE00615CC9 /* ShortcutsConfigProvider.swift */,
  1439. 110AEDE92C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift */,
  1440. );
  1441. path = ShortcutsConfig;
  1442. sourceTree = "<group>";
  1443. };
  1444. 118DF7692C5ECBC60067FEB7 /* Override */ = {
  1445. isa = PBXGroup;
  1446. children = (
  1447. 118DF7642C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift */,
  1448. 118DF7652C5ECBC60067FEB7 /* CancelOverrideIntent.swift */,
  1449. 118DF7672C5ECBC60067FEB7 /* OverridePresetEntity.swift */,
  1450. 118DF7682C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift */,
  1451. );
  1452. path = Override;
  1453. sourceTree = "<group>";
  1454. };
  1455. 18B49BC9587A59E3A347C1CD /* View */ = {
  1456. isa = PBXGroup;
  1457. children = (
  1458. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */,
  1459. );
  1460. path = View;
  1461. sourceTree = "<group>";
  1462. };
  1463. 190EBCC229FF134900BA767D /* UserInterfaceSettings */ = {
  1464. isa = PBXGroup;
  1465. children = (
  1466. 190EBCC329FF136900BA767D /* UserInterfaceSettingsDataFlow.swift */,
  1467. 190EBCC529FF138000BA767D /* UserInterfaceSettingsProvider.swift */,
  1468. 190EBCC729FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift */,
  1469. 190EBCC929FF13AF00BA767D /* View */,
  1470. );
  1471. path = UserInterfaceSettings;
  1472. sourceTree = "<group>";
  1473. };
  1474. 190EBCC929FF13AF00BA767D /* View */ = {
  1475. isa = PBXGroup;
  1476. children = (
  1477. 190EBCCA29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift */,
  1478. );
  1479. path = View;
  1480. sourceTree = "<group>";
  1481. };
  1482. 192F0FF5276AC36D0085BE4D /* Recovered References */ = {
  1483. isa = PBXGroup;
  1484. children = (
  1485. 199561C0275E61A50077B976 /* HealthKit.framework */,
  1486. );
  1487. name = "Recovered References";
  1488. sourceTree = "<group>";
  1489. };
  1490. 195D80B22AF696EE00D25097 /* DynamicSettings */ = {
  1491. isa = PBXGroup;
  1492. children = (
  1493. 195D80B62AF697B800D25097 /* DynamicSettingsDataFlow.swift */,
  1494. 195D80B82AF697F700D25097 /* DynamicSettingsProvider.swift */,
  1495. 195D80BA2AF6980B00D25097 /* DynamicSettingsStateModel.swift */,
  1496. 195D80B52AF6974200D25097 /* View */,
  1497. );
  1498. path = DynamicSettings;
  1499. sourceTree = "<group>";
  1500. };
  1501. 195D80B52AF6974200D25097 /* View */ = {
  1502. isa = PBXGroup;
  1503. children = (
  1504. 195D80B32AF6973A00D25097 /* DynamicSettingsRootView.swift */,
  1505. );
  1506. path = View;
  1507. sourceTree = "<group>";
  1508. };
  1509. 198377CF266BFEDE004DE65E /* Localizations */ = {
  1510. isa = PBXGroup;
  1511. children = (
  1512. 19D440A926B6FEBD008DA6C8 /* Main */,
  1513. );
  1514. path = Localizations;
  1515. sourceTree = "<group>";
  1516. };
  1517. 19D440A926B6FEBD008DA6C8 /* Main */ = {
  1518. isa = PBXGroup;
  1519. children = (
  1520. 198377D4266BFFF6004DE65E /* Localizable.strings */,
  1521. );
  1522. path = Main;
  1523. sourceTree = "<group>";
  1524. };
  1525. 19D466A129AA2B0A004D5F33 /* MealSettings */ = {
  1526. isa = PBXGroup;
  1527. children = (
  1528. 19D466A229AA2B80004D5F33 /* MealSettingsDataFlow.swift */,
  1529. 19D466A429AA2BD4004D5F33 /* MealSettingsProvider.swift */,
  1530. 19D466A629AA2C22004D5F33 /* MealSettingsStateModel.swift */,
  1531. 19D466A829AA306E004D5F33 /* View */,
  1532. );
  1533. path = MealSettings;
  1534. sourceTree = "<group>";
  1535. };
  1536. 19D466A829AA306E004D5F33 /* View */ = {
  1537. isa = PBXGroup;
  1538. children = (
  1539. 19D466A929AA3099004D5F33 /* MealSettingsRootView.swift */,
  1540. );
  1541. path = View;
  1542. sourceTree = "<group>";
  1543. };
  1544. 19E1F7E629D0828B005C8D20 /* IconConfig */ = {
  1545. isa = PBXGroup;
  1546. children = (
  1547. 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */,
  1548. 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */,
  1549. 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */,
  1550. 19E1F7ED29D088C0005C8D20 /* View */,
  1551. );
  1552. path = IconConfig;
  1553. sourceTree = "<group>";
  1554. };
  1555. 19E1F7ED29D088C0005C8D20 /* View */ = {
  1556. isa = PBXGroup;
  1557. children = (
  1558. 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */,
  1559. 1967DFC129D053D300759F30 /* IconImage.swift */,
  1560. 1967DFBF29D053AC00759F30 /* IconSelection.swift */,
  1561. );
  1562. path = View;
  1563. sourceTree = "<group>";
  1564. };
  1565. 19F95FF129F10F9C00314DDC /* Stat */ = {
  1566. isa = PBXGroup;
  1567. children = (
  1568. 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */,
  1569. 19F95FF429F10FCF00314DDC /* StatProvider.swift */,
  1570. 19F95FF629F10FEE00314DDC /* StatStateModel.swift */,
  1571. 19F95FF829F10FF600314DDC /* View */,
  1572. );
  1573. path = Stat;
  1574. sourceTree = "<group>";
  1575. };
  1576. 19F95FF829F10FF600314DDC /* View */ = {
  1577. isa = PBXGroup;
  1578. children = (
  1579. 19F95FF929F1102A00314DDC /* StatRootView.swift */,
  1580. 19A9102F2A24BF6300C8951B /* StatsView.swift */,
  1581. 19A910372A24EF3200C8951B /* ChartsView.swift */,
  1582. );
  1583. path = View;
  1584. sourceTree = "<group>";
  1585. };
  1586. 29B478DF61BF8D270F7D8954 /* Snooze */ = {
  1587. isa = PBXGroup;
  1588. children = (
  1589. 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */,
  1590. 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */,
  1591. E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */,
  1592. 0A67A70F9438DB6586398458 /* View */,
  1593. );
  1594. path = Snooze;
  1595. sourceTree = "<group>";
  1596. };
  1597. 34CA4DF169B53D67EF18ED8A /* View */ = {
  1598. isa = PBXGroup;
  1599. children = (
  1600. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */,
  1601. );
  1602. path = View;
  1603. sourceTree = "<group>";
  1604. };
  1605. 3811DE0325C9D31700A708ED /* Modules */ = {
  1606. isa = PBXGroup;
  1607. children = (
  1608. DDD163032C4C67B400CD525A /* Adjustments */,
  1609. DD1745382C55BF8B00211FAC /* AlgorithmAdvancedSettings */,
  1610. DD1745422C55C5C400211FAC /* AutosensSettings */,
  1611. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */,
  1612. 3811DE0425C9D32E00A708ED /* Base */,
  1613. BD7DA9A32AE06DBA00601B20 /* BolusCalculatorConfig */,
  1614. DD09D4792C5986BA003FEA5D /* CalendarEventSettings */,
  1615. CEE9A64D2BBB411C00EB5194 /* Calibrations */,
  1616. E42231DBF0DBE2B4B92D1B15 /* CarbRatioEditor */,
  1617. F75CB57ED6971B46F8756083 /* CGM */,
  1618. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */,
  1619. E592A3762CEEC038009A472C /* ContactImage */,
  1620. 9E56E3626FAD933385101B76 /* DataTable */,
  1621. 195D80B22AF696EE00D25097 /* DynamicSettings */,
  1622. DD17454C2C55CA0200211FAC /* GeneralSettings */,
  1623. F66B236E00924A05D6A9F9DF /* GlucoseNotificationSettings */,
  1624. F90692CD274B99850037068D /* HealthKit */,
  1625. 3811DE2725C9D49500A708ED /* Home */,
  1626. 19E1F7E629D0828B005C8D20 /* IconConfig */,
  1627. D8F047E14D567F2B5DBEFD96 /* ISFEditor */,
  1628. DDF847DB2C5C28550049BB3B /* LiveActivitySettings */,
  1629. 3811DE1A25C9D48300A708ED /* Main */,
  1630. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */,
  1631. 19D466A129AA2B0A004D5F33 /* MealSettings */,
  1632. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */,
  1633. 99C01B871ACAB3F32CE755C7 /* PumpConfig */,
  1634. DD9ECB6B2CA99FA400AA7C45 /* RemoteControlConfig */,
  1635. 3811DE3825C9D4A100A708ED /* Settings */,
  1636. 110AEDEA2C51A0AE00615CC9 /* ShortcutsConfig */,
  1637. DD17451E2C55520000211FAC /* SMBSettings */,
  1638. 29B478DF61BF8D270F7D8954 /* Snooze */,
  1639. 19F95FF129F10F9C00314DDC /* Stat */,
  1640. DD17452C2C55AE3500211FAC /* TargetBehavoir */,
  1641. 6517011F19F244F64E1FF14B /* TargetsEditor */,
  1642. C2C98283C436DB934D7E7994 /* Treatments */,
  1643. 190EBCC229FF134900BA767D /* UserInterfaceSettings */,
  1644. CE94597C29E9E1CD0047C9C6 /* WatchConfig */,
  1645. );
  1646. path = Modules;
  1647. sourceTree = "<group>";
  1648. };
  1649. 3811DE0425C9D32E00A708ED /* Base */ = {
  1650. isa = PBXGroup;
  1651. children = (
  1652. 3811DE0725C9D32E00A708ED /* BaseView.swift */,
  1653. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */,
  1654. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */,
  1655. );
  1656. path = Base;
  1657. sourceTree = "<group>";
  1658. };
  1659. 3811DE1325C9D39E00A708ED /* Sources */ = {
  1660. isa = PBXGroup;
  1661. children = (
  1662. CE7CA3422A064973004BE681 /* Shortcuts */,
  1663. 3811DEDE25C9E2DD00A708ED /* Application */,
  1664. 3811DF0A25CAAAA500A708ED /* APS */,
  1665. E00EEBFC27368630002FF094 /* Assemblies */,
  1666. 38E98A3225F5300800C0CED0 /* Config */,
  1667. 388E5A5A25B6F05F0019842D /* Helpers */,
  1668. 38DF178A27733E0F00B3528F /* AnimatedBackground */,
  1669. 198377CF266BFEDE004DE65E /* Localizations */,
  1670. 38E98A1A25F52C9300C0CED0 /* Logger */,
  1671. 388E5A5925B6F0250019842D /* Models */,
  1672. 3811DE0325C9D31700A708ED /* Modules */,
  1673. 3811DE1425C9D40400A708ED /* Router */,
  1674. 3811DE9125C9D88200A708ED /* Services */,
  1675. 3883582E25EEAFC000E024B2 /* Views */,
  1676. );
  1677. path = Sources;
  1678. sourceTree = "<group>";
  1679. };
  1680. 3811DE1425C9D40400A708ED /* Router */ = {
  1681. isa = PBXGroup;
  1682. children = (
  1683. 3811DE1525C9D40400A708ED /* Screen.swift */,
  1684. 3811DE1625C9D40400A708ED /* Router.swift */,
  1685. );
  1686. path = Router;
  1687. sourceTree = "<group>";
  1688. };
  1689. 3811DE1A25C9D48300A708ED /* Main */ = {
  1690. isa = PBXGroup;
  1691. children = (
  1692. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */,
  1693. 3811DE1C25C9D48300A708ED /* MainProvider.swift */,
  1694. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */,
  1695. 3811DE1F25C9D48300A708ED /* View */,
  1696. );
  1697. path = Main;
  1698. sourceTree = "<group>";
  1699. };
  1700. 3811DE1F25C9D48300A708ED /* View */ = {
  1701. isa = PBXGroup;
  1702. children = (
  1703. 3811DE2025C9D48300A708ED /* MainRootView.swift */,
  1704. );
  1705. path = View;
  1706. sourceTree = "<group>";
  1707. };
  1708. 3811DE2725C9D49500A708ED /* Home */ = {
  1709. isa = PBXGroup;
  1710. children = (
  1711. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */,
  1712. 3811DE2925C9D49500A708ED /* HomeProvider.swift */,
  1713. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */,
  1714. 58645B972CA2D16A008AFCE7 /* HomeStateModel+Setup */,
  1715. 3811DE2C25C9D49500A708ED /* View */,
  1716. );
  1717. path = Home;
  1718. sourceTree = "<group>";
  1719. };
  1720. 3811DE2C25C9D49500A708ED /* View */ = {
  1721. isa = PBXGroup;
  1722. children = (
  1723. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */,
  1724. 3833B51E260264AC003021B3 /* Chart */,
  1725. 3833B51F260264B6003021B3 /* Header */,
  1726. );
  1727. path = View;
  1728. sourceTree = "<group>";
  1729. };
  1730. 3811DE3825C9D4A100A708ED /* Settings */ = {
  1731. isa = PBXGroup;
  1732. children = (
  1733. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */,
  1734. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */,
  1735. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */,
  1736. 3811DE3B25C9D4A100A708ED /* View */,
  1737. BDCAF2372C639F35002DC907 /* SettingItems.swift */,
  1738. );
  1739. path = Settings;
  1740. sourceTree = "<group>";
  1741. };
  1742. 3811DE3B25C9D4A100A708ED /* View */ = {
  1743. isa = PBXGroup;
  1744. children = (
  1745. DD1745112C54168300211FAC /* Subviews */,
  1746. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */,
  1747. CE1F6DE82BAF37C90064EB8D /* TidepoolConfigView.swift */,
  1748. 65070A322BFDCB83006F213F /* TidepoolStartView.swift */,
  1749. );
  1750. path = View;
  1751. sourceTree = "<group>";
  1752. };
  1753. 3811DE9125C9D88200A708ED /* Services */ = {
  1754. isa = PBXGroup;
  1755. children = (
  1756. BD7DB88C2D2C49FF003D3155 /* BolusCalculator */,
  1757. 3811DE9225C9D88200A708ED /* Appearance */,
  1758. CEB434E128B8F9BC00B70274 /* Bluetooth */,
  1759. 3862CC2C2743F9DC00BF832C /* Calendar */,
  1760. E592A37E2CEEC046009A472C /* ContactImage */,
  1761. F90692A8274B7A980037068D /* HealthKit */,
  1762. 6B1A8D2C2B156EC100E76752 /* LiveActivity */,
  1763. 3811DE9425C9D88200A708ED /* Network */,
  1764. 38B4F3C425E5016800E76A18 /* Notifications */,
  1765. DD9ECB662CA99EFE00AA7C45 /* RemoteControl */,
  1766. 38AEE75025F021F10013F05B /* SettingsManager */,
  1767. 3811DE9825C9D88300A708ED /* Storage */,
  1768. 3811DEA525C9D88300A708ED /* UnlockManager */,
  1769. 38E87406274F9AA500975559 /* UserNotifications */,
  1770. 38E8754D275556E100975559 /* WatchManager */,
  1771. );
  1772. path = Services;
  1773. sourceTree = "<group>";
  1774. };
  1775. 3811DE9225C9D88200A708ED /* Appearance */ = {
  1776. isa = PBXGroup;
  1777. children = (
  1778. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */,
  1779. );
  1780. path = Appearance;
  1781. sourceTree = "<group>";
  1782. };
  1783. 3811DE9425C9D88200A708ED /* Network */ = {
  1784. isa = PBXGroup;
  1785. children = (
  1786. 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */,
  1787. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */,
  1788. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */,
  1789. DDC9B9962CFD2332003E7721 /* Nightscout */,
  1790. 38FE826925CC82DB001FF17A /* NetworkService.swift */,
  1791. CE1F6DDA2BAE08B60064EB8D /* TidepoolManager.swift */,
  1792. );
  1793. path = Network;
  1794. sourceTree = "<group>";
  1795. };
  1796. 3811DE9825C9D88300A708ED /* Storage */ = {
  1797. isa = PBXGroup;
  1798. children = (
  1799. 383948D525CD4D8900E91849 /* FileStorage.swift */,
  1800. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */,
  1801. 3811DE9925C9D88300A708ED /* Cache */,
  1802. 38E44529274E40F100EC9A94 /* Disk */,
  1803. 3811DE9D25C9D88300A708ED /* Keychain */,
  1804. );
  1805. path = Storage;
  1806. sourceTree = "<group>";
  1807. };
  1808. 3811DE9925C9D88300A708ED /* Cache */ = {
  1809. isa = PBXGroup;
  1810. children = (
  1811. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */,
  1812. 3811DE9B25C9D88300A708ED /* Cache.swift */,
  1813. );
  1814. path = Cache;
  1815. sourceTree = "<group>";
  1816. };
  1817. 3811DE9D25C9D88300A708ED /* Keychain */ = {
  1818. isa = PBXGroup;
  1819. children = (
  1820. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */,
  1821. 3811DE9F25C9D88300A708ED /* Keychain.swift */,
  1822. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */,
  1823. );
  1824. path = Keychain;
  1825. sourceTree = "<group>";
  1826. };
  1827. 3811DEA525C9D88300A708ED /* UnlockManager */ = {
  1828. isa = PBXGroup;
  1829. children = (
  1830. 3811DEA625C9D88300A708ED /* UnlockManager.swift */,
  1831. );
  1832. path = UnlockManager;
  1833. sourceTree = "<group>";
  1834. };
  1835. 3811DED425C9E1E300A708ED /* Resources */ = {
  1836. isa = PBXGroup;
  1837. children = (
  1838. 388E597125AD9CF10019842D /* json */,
  1839. 388E596E25AD96040019842D /* javascript */,
  1840. 3811DEC725C9DA7300A708ED /* Trio.entitlements */,
  1841. 388E596425AD948E0019842D /* Info.plist */,
  1842. 1927C8E82744606D00347C69 /* InfoPlist.strings */,
  1843. B9CAAEFB2AE70836000F68BC /* branch.txt */,
  1844. 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */,
  1845. );
  1846. path = Resources;
  1847. sourceTree = "<group>";
  1848. };
  1849. 3811DEDE25C9E2DD00A708ED /* Application */ = {
  1850. isa = PBXGroup;
  1851. children = (
  1852. 38E4451D274DB04600EC9A94 /* AppDelegate.swift */,
  1853. 388E595B25AD948C0019842D /* TrioApp.swift */,
  1854. BD4ED4FC2CF9D5E8000EDC9C /* AppState.swift */,
  1855. );
  1856. path = Application;
  1857. sourceTree = "<group>";
  1858. };
  1859. 3811DEE325CA063400A708ED /* PropertyWrappers */ = {
  1860. isa = PBXGroup;
  1861. children = (
  1862. 38E44527274E401C00EC9A94 /* Protected.swift */,
  1863. 3811DEE425CA063400A708ED /* Injected.swift */,
  1864. 3811DEE625CA063400A708ED /* SyncAccess.swift */,
  1865. 3811DEE725CA063400A708ED /* PersistedProperty.swift */,
  1866. );
  1867. path = PropertyWrappers;
  1868. sourceTree = "<group>";
  1869. };
  1870. 3811DF0A25CAAAA500A708ED /* APS */ = {
  1871. isa = PBXGroup;
  1872. children = (
  1873. CE95BF562BA5F5FE00DC3DE3 /* PluginManager.swift */,
  1874. 3811DF0F25CAAAE200A708ED /* APSManager.swift */,
  1875. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */,
  1876. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */,
  1877. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */,
  1878. 3856933F270B57A00002C50D /* CGM */,
  1879. 38A504F625DDA0E200C5B9E8 /* Extensions */,
  1880. 388E5A5825B6F0070019842D /* OpenAPS */,
  1881. 38A0362725ECF05300FCBB52 /* Storage */,
  1882. );
  1883. path = APS;
  1884. sourceTree = "<group>";
  1885. };
  1886. 3818AA44274C229000843DB3 /* Packages */ = {
  1887. isa = PBXGroup;
  1888. children = (
  1889. 3818AA45274C229000843DB3 /* LibreTransmitter */,
  1890. );
  1891. name = Packages;
  1892. sourceTree = "<group>";
  1893. };
  1894. 3818AA48274C267000843DB3 /* Frameworks */ = {
  1895. isa = PBXGroup;
  1896. children = (
  1897. CE95BF492BA5CED700DC3DE3 /* LoopKit.framework */,
  1898. CE95BF4A2BA5CED700DC3DE3 /* LoopKitUI.framework */,
  1899. CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */,
  1900. CE94597929E9DF7B0047C9C6 /* ConnectIQ.framework */,
  1901. CEC751D529D88262006E9D24 /* MinimedKit.framework */,
  1902. CEC751D729D88262006E9D24 /* MinimedKitUI.framework */,
  1903. CEC751D129D88257006E9D24 /* OmniKit.framework */,
  1904. CEC751D329D88257006E9D24 /* OmniKitUI.framework */,
  1905. CE79502D29980E4D00FA576E /* ShareClientUI.framework */,
  1906. CE79502929980C9F00FA576E /* G7SensorKitUI.framework */,
  1907. CE79502729980C9600FA576E /* CGMBLEKitUI.framework */,
  1908. CE398D1A297D69A900DF218F /* ShareClient.framework */,
  1909. CE398D17297C9EE800DF218F /* G7SensorKit.framework */,
  1910. CE398D012977349800DF218F /* CryptoKit.framework */,
  1911. CE6B025628F350FF000C5502 /* HealthKit.framework */,
  1912. CEB434DE28B8F5C400B70274 /* OmniBLE.framework */,
  1913. CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */,
  1914. E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */,
  1915. 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */,
  1916. 38E873FD274F761800975559 /* CoreNFC.framework */,
  1917. 3818AA70274C278200843DB3 /* LoopTestingKit.framework */,
  1918. 3818AA4C274C26A300843DB3 /* LoopKit.framework */,
  1919. 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */,
  1920. 3818AA4E274C26A300843DB3 /* MockKit.framework */,
  1921. 3818AA4F274C26A300843DB3 /* MockKitUI.framework */,
  1922. 3818AA51274C26A300843DB3 /* MinimedKit.framework */,
  1923. 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */,
  1924. 3818AA53274C26A300843DB3 /* OmniKit.framework */,
  1925. 3818AA54274C26A300843DB3 /* OmniKitUI.framework */,
  1926. 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */,
  1927. 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */,
  1928. 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */,
  1929. 3818AA49274C267000843DB3 /* CGMBLEKit.framework */,
  1930. 6B1A8D012B14D88B00E76752 /* UniformTypeIdentifiers.framework */,
  1931. 6B1A8D182B14D91600E76752 /* WidgetKit.framework */,
  1932. 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */,
  1933. );
  1934. name = Frameworks;
  1935. sourceTree = "<group>";
  1936. };
  1937. 3833B51E260264AC003021B3 /* Chart */ = {
  1938. isa = PBXGroup;
  1939. children = (
  1940. DDA6E24F2D22187500C2988C /* ChartLegendView.swift */,
  1941. BD3CC0712B0B89D50013189E /* MainChartView.swift */,
  1942. BDDAF9F12D0055CC00B34E7A /* ChartElements */,
  1943. );
  1944. path = Chart;
  1945. sourceTree = "<group>";
  1946. };
  1947. 3833B51F260264B6003021B3 /* Header */ = {
  1948. isa = PBXGroup;
  1949. children = (
  1950. DD1E53582D273F20008F32A4 /* LoopStatusHelpView.swift */,
  1951. DDA6E2842D2361F800C2988C /* LoopStatusView.swift */,
  1952. 383420D525FFE38C002D46C1 /* LoopView.swift */,
  1953. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */,
  1954. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */,
  1955. );
  1956. path = Header;
  1957. sourceTree = "<group>";
  1958. };
  1959. 3856933F270B57A00002C50D /* CGM */ = {
  1960. isa = PBXGroup;
  1961. children = (
  1962. CEE9A65A2BBB41AD00EB5194 /* Calibrations */,
  1963. F816825F28DB441800054060 /* BluetoothTransmitter.swift */,
  1964. F816825D28DB441200054060 /* HeartBeatManager.swift */,
  1965. 38569346270B5DFB0002C50D /* AppGroupSource.swift */,
  1966. 38569344270B5DFA0002C50D /* CGMType.swift */,
  1967. 38569345270B5DFA0002C50D /* GlucoseSource.swift */,
  1968. E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */,
  1969. CE95BF592BA62E4A00DC3DE3 /* PluginSource.swift */,
  1970. );
  1971. path = CGM;
  1972. sourceTree = "<group>";
  1973. };
  1974. 3862CC2C2743F9DC00BF832C /* Calendar */ = {
  1975. isa = PBXGroup;
  1976. children = (
  1977. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */,
  1978. );
  1979. path = Calendar;
  1980. sourceTree = "<group>";
  1981. };
  1982. 3883582E25EEAFC000E024B2 /* Views */ = {
  1983. isa = PBXGroup;
  1984. children = (
  1985. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */,
  1986. 3883581B25EE79BB00E024B2 /* TextFieldWithToolBar.swift */,
  1987. 383420D825FFEB3F002D46C1 /* Popup.swift */,
  1988. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */,
  1989. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */,
  1990. 38DF1785276A73D400B3528F /* TagCloudView.swift */,
  1991. DD88C8E12C50420800F2D558 /* DefinitionRow.swift */,
  1992. DD1745282C55642100211FAC /* SettingInputSection.swift */,
  1993. DD17452A2C556E8100211FAC /* SettingInputHintView.swift */,
  1994. );
  1995. path = Views;
  1996. sourceTree = "<group>";
  1997. };
  1998. 388E594F25AD948C0019842D = {
  1999. isa = PBXGroup;
  2000. children = (
  2001. CE1F6DE62BAF1A180064EB8D /* BuildDetails.plist */,
  2002. 38F3783A2613555C009DB701 /* Config.xcconfig */,
  2003. BD1CF8B72C1A4A8400CB930A /* ConfigOverride.xcconfig */,
  2004. 3818AA48274C267000843DB3 /* Frameworks */,
  2005. 6B1A8D1C2B14D91600E76752 /* LiveActivity */,
  2006. 587A54C82BCDCE0F009D38E2 /* Model */,
  2007. 3818AA44274C229000843DB3 /* Packages */,
  2008. 388E595925AD948C0019842D /* Products */,
  2009. 192F0FF5276AC36D0085BE4D /* Recovered References */,
  2010. 388E595A25AD948C0019842D /* Trio */,
  2011. 38FCF3EE25E9028E0078B0D1 /* TrioTests */,
  2012. BDFF7AA12D25FAC70016C40C /* Trio Watch App */,
  2013. BDFF7A9C2D25FA730016C40C /* Trio Watch App Extension */,
  2014. BDFF7AA02D25FAA80016C40C /* Trio Watch App Tests */,
  2015. DD09D6492D2B6253000D82C9 /* Trio Watch Complication */,
  2016. );
  2017. sourceTree = "<group>";
  2018. };
  2019. 388E595925AD948C0019842D /* Products */ = {
  2020. isa = PBXGroup;
  2021. children = (
  2022. 388E595825AD948C0019842D /* Trio.app */,
  2023. 38FCF3ED25E9028E0078B0D1 /* TrioTests.xctest */,
  2024. 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */,
  2025. BDFF797C2D25AA870016C40C /* Trio Watch App.app */,
  2026. BDFF798B2D25AA890016C40C /* Trio Watch AppTests.xctest */,
  2027. BD8207C32D2B42E50023339D /* Trio Watch Complication Extension.appex */,
  2028. );
  2029. name = Products;
  2030. sourceTree = "<group>";
  2031. };
  2032. 388E595A25AD948C0019842D /* Trio */ = {
  2033. isa = PBXGroup;
  2034. children = (
  2035. 3811DED425C9E1E300A708ED /* Resources */,
  2036. 3811DE1325C9D39E00A708ED /* Sources */,
  2037. );
  2038. path = Trio;
  2039. sourceTree = "<group>";
  2040. };
  2041. 388E5A5825B6F0070019842D /* OpenAPS */ = {
  2042. isa = PBXGroup;
  2043. children = (
  2044. 388E596B25AD95110019842D /* OpenAPS.swift */,
  2045. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */,
  2046. 384E803725C388640086DB71 /* Script.swift */,
  2047. 3821ED4B25DD18BA00BC42AD /* Constants.swift */,
  2048. );
  2049. path = OpenAPS;
  2050. sourceTree = "<group>";
  2051. };
  2052. 388E5A5925B6F0250019842D /* Models */ = {
  2053. isa = PBXGroup;
  2054. children = (
  2055. DD4FFF322D458EE600B6CFF9 /* GarminWatchState.swift */,
  2056. DD3078692D42F94000DE0490 /* GarminDevice.swift */,
  2057. DD3078672D42F5CE00DE0490 /* WatchGlucoseObject.swift */,
  2058. BD432CA02D2F4E3300D1EB79 /* WatchMessageKeys.swift */,
  2059. BD54A9722D281A9C00F9C1EE /* TempTargetPresetWatch.swift */,
  2060. BD54A95A2D28087700F9C1EE /* OverridePresetWatch.swift */,
  2061. BDA25EFC2D261BF200035F34 /* WatchState.swift */,
  2062. 715120D12D3C2B84005D9FB6 /* GlucoseNotificationsOption.swift */,
  2063. DD07CA132CE80B73002D45A9 /* TimeInRangeChartStyle.swift */,
  2064. DD940BA92CA7585D000830A5 /* GlucoseColorScheme.swift */,
  2065. DD6D67E32C9C253500660C9B /* ColorSchemeOption.swift */,
  2066. 388E5A5F25B6F2310019842D /* Autosens.swift */,
  2067. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */,
  2068. 38D0B3B525EBE24900CB6E88 /* Battery.swift */,
  2069. 382C134A25F14E3700715CE1 /* BGTargets.swift */,
  2070. 3870FF4225EC13F40088248F /* BloodGlucose.swift */,
  2071. 38A9260425F012D8009E3739 /* CarbRatios.swift */,
  2072. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */,
  2073. 3811DF0125CA9FEA00A708ED /* Credentials.swift */,
  2074. E592A36F2CEEC01E009A472C /* ContactTrickEntry.swift */,
  2075. 38AEE73C25F0200C0013F05B /* TrioSettings.swift */,
  2076. 383948D925CD64D500E91849 /* Glucose.swift */,
  2077. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */,
  2078. 38887CCD25F5725200944304 /* IOBEntry.swift */,
  2079. DD68889C2C386E17006E3C44 /* NightscoutExercise.swift */,
  2080. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */,
  2081. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */,
  2082. 3895E4C525B9E00D00214B37 /* Preferences.swift */,
  2083. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */,
  2084. 3883583325EEB38000E024B2 /* PumpSettings.swift */,
  2085. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */,
  2086. 38BF021C25E7E3AF00579895 /* Reservoir.swift */,
  2087. 38A0364125ED069400FCBB52 /* TempBasal.swift */,
  2088. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */,
  2089. 3811DE8E25C9D80400A708ED /* User.swift */,
  2090. E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */,
  2091. 1935363F28496F7D001E0B16 /* Oref2_variables.swift */,
  2092. CE82E02628E869DF00473A9C /* AlertEntry.swift */,
  2093. 19B0EF2028F6D66200069496 /* Statistics.swift */,
  2094. 19012CDB291D2CB900FB8210 /* LoopStats.swift */,
  2095. FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */,
  2096. 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */,
  2097. 1967DFBD29D052C200759F30 /* Icons.swift */,
  2098. 19D4E4EA29FC6A9F00351451 /* Charts.swift */,
  2099. 19A910352A24D6D700C8951B /* DateFilter.swift */,
  2100. 193F6CDC2A512C8F001240FD /* Loops.swift */,
  2101. CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */,
  2102. BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */,
  2103. 583684072BD195A700070A60 /* Determination.swift */,
  2104. BDC2EA462C3045AD00E5BBD0 /* Override.swift */,
  2105. DD21FCB42C6952AD00AF2C25 /* DecimalPickerSettings.swift */,
  2106. DD6B7CB32C7B71F700B75029 /* ForecastDisplayType.swift */,
  2107. DD6B7CB52C7B748B00B75029 /* TotalInsulinDisplayType.swift */,
  2108. DD9ECB692CA99F6C00AA7C45 /* PushMessage.swift */,
  2109. DDD6D4D22CDE90720029439A /* HbA1cDisplayUnit.swift */,
  2110. );
  2111. path = Models;
  2112. sourceTree = "<group>";
  2113. };
  2114. 388E5A5A25B6F05F0019842D /* Helpers */ = {
  2115. isa = PBXGroup;
  2116. children = (
  2117. C2A0A42E2CE0312C003B98E8 /* ConstantValues.swift */,
  2118. DD940BAB2CA75889000830A5 /* DynamicGlucoseColor.swift */,
  2119. 38F37827261260DC009DB701 /* Color+Extensions.swift */,
  2120. 389ECE042601144100D86C4F /* ConcurrentMap.swift */,
  2121. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */,
  2122. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */,
  2123. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */,
  2124. 389487392614928B004DF424 /* DispatchTimer.swift */,
  2125. 3811DE5425C9D4D500A708ED /* Formatters.swift */,
  2126. 38FEF412273B317A00574A46 /* HKUnit.swift */,
  2127. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */,
  2128. 389A571F26079BAA00BC102F /* Interpolation.swift */,
  2129. 388E5A5B25B6F0770019842D /* JSON.swift */,
  2130. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */,
  2131. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */,
  2132. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */,
  2133. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */,
  2134. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */,
  2135. 3811DE5525C9D4D500A708ED /* Publisher.swift */,
  2136. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */,
  2137. 3811DEE325CA063400A708ED /* PropertyWrappers */,
  2138. E06B9119275B5EEA003C04B6 /* Array+Extension.swift */,
  2139. CEB434E428B8FF5D00B70274 /* UIColor.swift */,
  2140. FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */,
  2141. FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */,
  2142. CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */,
  2143. BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */,
  2144. BD1661302B82ADAB00256551 /* CustomProgressView.swift */,
  2145. 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */,
  2146. DD1DB7CB2BECCA1F0048B367 /* BuildDetails.swift */,
  2147. DD6B7CB12C7B6F0800B75029 /* Rounding.swift */,
  2148. 582DF9782C8CE1E5001F516D /* MainChartHelper.swift */,
  2149. );
  2150. path = Helpers;
  2151. sourceTree = "<group>";
  2152. };
  2153. 38A0362725ECF05300FCBB52 /* Storage */ = {
  2154. isa = PBXGroup;
  2155. children = (
  2156. CE82E02428E867BA00473A9C /* AlertStorage.swift */,
  2157. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */,
  2158. DDB37CC42D05048F00D99BF4 /* ContactImageStorage.swift */,
  2159. 5864E8582C42CFAE00294306 /* DeterminationStorage.swift */,
  2160. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */,
  2161. BDC2EA442C3043B000E5BBD0 /* OverrideStorage.swift */,
  2162. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */,
  2163. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */,
  2164. );
  2165. path = Storage;
  2166. sourceTree = "<group>";
  2167. };
  2168. 38A504F625DDA0E200C5B9E8 /* Extensions */ = {
  2169. isa = PBXGroup;
  2170. children = (
  2171. DDB37CC62D05127500D99BF4 /* FontExtensions.swift */,
  2172. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */,
  2173. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */,
  2174. CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */,
  2175. CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */,
  2176. CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */,
  2177. CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */,
  2178. );
  2179. path = Extensions;
  2180. sourceTree = "<group>";
  2181. };
  2182. 38AEE75025F021F10013F05B /* SettingsManager */ = {
  2183. isa = PBXGroup;
  2184. children = (
  2185. 38AEE75125F022080013F05B /* SettingsManager.swift */,
  2186. );
  2187. path = SettingsManager;
  2188. sourceTree = "<group>";
  2189. };
  2190. 38B4F3C425E5016800E76A18 /* Notifications */ = {
  2191. isa = PBXGroup;
  2192. children = (
  2193. 71D44AAA2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift */,
  2194. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */,
  2195. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */,
  2196. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */,
  2197. );
  2198. path = Notifications;
  2199. sourceTree = "<group>";
  2200. };
  2201. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */ = {
  2202. isa = PBXGroup;
  2203. children = (
  2204. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */,
  2205. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */,
  2206. );
  2207. path = SwiftNotificationCenter;
  2208. sourceTree = "<group>";
  2209. };
  2210. 38DF178A27733E0F00B3528F /* AnimatedBackground */ = {
  2211. isa = PBXGroup;
  2212. children = (
  2213. 38DF178B27733E6800B3528F /* snow.sks */,
  2214. 38DF178C27733E6800B3528F /* Assets.xcassets */,
  2215. 38DF178F27733EAD00B3528F /* SnowScene.swift */,
  2216. );
  2217. path = AnimatedBackground;
  2218. sourceTree = "<group>";
  2219. };
  2220. 38E44529274E40F100EC9A94 /* Disk */ = {
  2221. isa = PBXGroup;
  2222. children = (
  2223. 38E4452C274E411600EC9A94 /* Disk.swift */,
  2224. 38E4452E274E411600EC9A94 /* Disk+[Data].swift */,
  2225. 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */,
  2226. 38E44532274E411700EC9A94 /* Disk+Codable.swift */,
  2227. 38E4452B274E411600EC9A94 /* Disk+Data.swift */,
  2228. 38E44533274E411700EC9A94 /* Disk+Errors.swift */,
  2229. 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */,
  2230. 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */,
  2231. 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */,
  2232. 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */,
  2233. );
  2234. path = Disk;
  2235. sourceTree = "<group>";
  2236. };
  2237. 38E87406274F9AA500975559 /* UserNotifications */ = {
  2238. isa = PBXGroup;
  2239. children = (
  2240. 38E87407274F9AD000975559 /* UserNotificationsManager.swift */,
  2241. );
  2242. path = UserNotifications;
  2243. sourceTree = "<group>";
  2244. };
  2245. 38E8754D275556E100975559 /* WatchManager */ = {
  2246. isa = PBXGroup;
  2247. children = (
  2248. BDA25EE32D260CCF00035F34 /* AppleWatchManager.swift */,
  2249. CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */,
  2250. );
  2251. path = WatchManager;
  2252. sourceTree = "<group>";
  2253. };
  2254. 38E98A1A25F52C9300C0CED0 /* Logger */ = {
  2255. isa = PBXGroup;
  2256. children = (
  2257. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */,
  2258. 38E98A1C25F52C9300C0CED0 /* Logger.swift */,
  2259. 38E98A1D25F52C9300C0CED0 /* IssueReporter */,
  2260. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */,
  2261. );
  2262. path = Logger;
  2263. sourceTree = "<group>";
  2264. };
  2265. 38E98A1D25F52C9300C0CED0 /* IssueReporter */ = {
  2266. isa = PBXGroup;
  2267. children = (
  2268. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */,
  2269. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */,
  2270. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */,
  2271. );
  2272. path = IssueReporter;
  2273. sourceTree = "<group>";
  2274. };
  2275. 38E98A3225F5300800C0CED0 /* Config */ = {
  2276. isa = PBXGroup;
  2277. children = (
  2278. 38E98A2F25F52FF700C0CED0 /* Config.swift */,
  2279. );
  2280. path = Config;
  2281. sourceTree = "<group>";
  2282. };
  2283. 38FCF3EE25E9028E0078B0D1 /* TrioTests */ = {
  2284. isa = PBXGroup;
  2285. children = (
  2286. 38FCF3F125E9028E0078B0D1 /* Info.plist */,
  2287. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */,
  2288. CE1F6DD82BADF4620064EB8D /* PluginManagerTests.swift */,
  2289. CEE9A65D2BBC9F6500EB5194 /* CalibrationsTests.swift */,
  2290. );
  2291. path = TrioTests;
  2292. sourceTree = "<group>";
  2293. };
  2294. 4E8C7B59F8065047ECE20965 /* View */ = {
  2295. isa = PBXGroup;
  2296. children = (
  2297. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */,
  2298. );
  2299. path = View;
  2300. sourceTree = "<group>";
  2301. };
  2302. 4F4AE4D901E8BA872B207D7F /* View */ = {
  2303. isa = PBXGroup;
  2304. children = (
  2305. DD6B7CB72C7BAC1B00B75029 /* ProfileImport */,
  2306. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */,
  2307. 5A2325512BFCBF55003518CA /* NightscoutUploadView.swift */,
  2308. 5A2325532BFCBF65003518CA /* NightscoutFetchView.swift */,
  2309. 5A2325572BFCC168003518CA /* NightscoutConnectView.swift */,
  2310. );
  2311. path = View;
  2312. sourceTree = "<group>";
  2313. };
  2314. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */ = {
  2315. isa = PBXGroup;
  2316. children = (
  2317. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */,
  2318. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */,
  2319. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */,
  2320. 84BDC840A57C65A1E6F9F780 /* View */,
  2321. );
  2322. path = ManualTempBasal;
  2323. sourceTree = "<group>";
  2324. };
  2325. 510CCF29FD3216C5BBC49A15 /* View */ = {
  2326. isa = PBXGroup;
  2327. children = (
  2328. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */,
  2329. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */,
  2330. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */,
  2331. );
  2332. path = View;
  2333. sourceTree = "<group>";
  2334. };
  2335. 54946647FDCFE43028F60511 /* View */ = {
  2336. isa = PBXGroup;
  2337. children = (
  2338. D0BDC6993C1087310EDFC428 /* CarbRatioEditorRootView.swift */,
  2339. );
  2340. path = View;
  2341. sourceTree = "<group>";
  2342. };
  2343. 5825D1622BD405AE00F36E9B /* Helper */ = {
  2344. isa = PBXGroup;
  2345. children = (
  2346. 49B9B57E2D5768D2009C6B59 /* AdjustmentStored+Helper.swift */,
  2347. 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */,
  2348. 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */,
  2349. 58F107732BD1A4D000B1A680 /* Determination+helper.swift */,
  2350. 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */,
  2351. 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */,
  2352. CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */,
  2353. 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */,
  2354. 581AC4382BE22ED10038760C /* JSONConverter.swift */,
  2355. BDB3C1182C03DD1000CEEAA1 /* UserDefaultsExtension.swift */,
  2356. 582FAE422C05102C00D1C13F /* CoreDataError.swift */,
  2357. BDF34EBD2C0A31D000D51995 /* CustomNotification.swift */,
  2358. BDCD47AE2C1F3F1700F8BCD5 /* OverrideStored+helper.swift */,
  2359. BD793CAF2CE7C60E00D669AC /* OverrideRunStored+helper.swift */,
  2360. BDB899892C565D0B006F3298 /* CarbsGlucose+helper.swift */,
  2361. 58A3D5432C96DE11003F90FC /* TempTargetStored+Helper.swift */,
  2362. BD793CB12CE8032E00D669AC /* TempTargetRunStored.swift */,
  2363. );
  2364. path = Helper;
  2365. sourceTree = "<group>";
  2366. };
  2367. 58645B972CA2D16A008AFCE7 /* HomeStateModel+Setup */ = {
  2368. isa = PBXGroup;
  2369. children = (
  2370. BD4E1A7B2D3686D400D21626 /* StartEndMarkerSetup.swift */,
  2371. BD4E1A792D3681AD00D21626 /* GlucoseTargetSetup.swift */,
  2372. BDA6CC872CAF219800F942F9 /* TempTargetSetup.swift */,
  2373. 58645B982CA2D1A4008AFCE7 /* GlucoseSetup.swift */,
  2374. 58645B9A2CA2D24F008AFCE7 /* CarbSetup.swift */,
  2375. 58645B9C2CA2D275008AFCE7 /* DeterminationSetup.swift */,
  2376. 58645B9E2CA2D2BE008AFCE7 /* PumpHistorySetup.swift */,
  2377. 58645BA02CA2D2F8008AFCE7 /* OverrideSetup.swift */,
  2378. 58645BA22CA2D325008AFCE7 /* BatterySetup.swift */,
  2379. 58645BA42CA2D347008AFCE7 /* ForecastSetup.swift */,
  2380. 58645BA62CA2D390008AFCE7 /* ChartAxisSetup.swift */,
  2381. );
  2382. path = "HomeStateModel+Setup";
  2383. sourceTree = "<group>";
  2384. };
  2385. 587A54C82BCDCE0F009D38E2 /* Model */ = {
  2386. isa = PBXGroup;
  2387. children = (
  2388. DDE179112C9100FA003CDDB7 /* Classes+Properties */,
  2389. BDF34F8F2C10CF8C00D51995 /* CoreDataStack.swift */,
  2390. 5825D1622BD405AE00F36E9B /* Helper */,
  2391. DDD1631D2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld */,
  2392. BD4064D02C4ED26900582F43 /* CoreDataObserver.swift */,
  2393. );
  2394. path = Model;
  2395. sourceTree = "<group>";
  2396. };
  2397. 6517011F19F244F64E1FF14B /* TargetsEditor */ = {
  2398. isa = PBXGroup;
  2399. children = (
  2400. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */,
  2401. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */,
  2402. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */,
  2403. 34CA4DF169B53D67EF18ED8A /* View */,
  2404. );
  2405. path = TargetsEditor;
  2406. sourceTree = "<group>";
  2407. };
  2408. 6B1A8D1C2B14D91600E76752 /* LiveActivity */ = {
  2409. isa = PBXGroup;
  2410. children = (
  2411. DDCEBF412CC1B42500DF4C36 /* Views */,
  2412. 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */,
  2413. 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */,
  2414. 6B1A8D232B14D91700E76752 /* Assets.xcassets */,
  2415. 6B1A8D252B14D91700E76752 /* Info.plist */,
  2416. DDCEBF5A2CC1B76400DF4C36 /* LiveActivity+Helper.swift */,
  2417. );
  2418. path = LiveActivity;
  2419. sourceTree = "<group>";
  2420. };
  2421. 6B1A8D2C2B156EC100E76752 /* LiveActivity */ = {
  2422. isa = PBXGroup;
  2423. children = (
  2424. 6B1A8D2D2B156EEF00E76752 /* LiveActivityBridge.swift */,
  2425. 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */,
  2426. BDF34F922C10D0E100D51995 /* LiveActivityAttributes+Helper.swift */,
  2427. BDF34F882C10C65E00D51995 /* Data */,
  2428. );
  2429. path = LiveActivity;
  2430. sourceTree = "<group>";
  2431. };
  2432. 84BDC840A57C65A1E6F9F780 /* View */ = {
  2433. isa = PBXGroup;
  2434. children = (
  2435. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */,
  2436. );
  2437. path = View;
  2438. sourceTree = "<group>";
  2439. };
  2440. 99C01B871ACAB3F32CE755C7 /* PumpConfig */ = {
  2441. isa = PBXGroup;
  2442. children = (
  2443. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */,
  2444. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */,
  2445. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */,
  2446. 510CCF29FD3216C5BBC49A15 /* View */,
  2447. );
  2448. path = PumpConfig;
  2449. sourceTree = "<group>";
  2450. };
  2451. 9E56E3626FAD933385101B76 /* DataTable */ = {
  2452. isa = PBXGroup;
  2453. children = (
  2454. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */,
  2455. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */,
  2456. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */,
  2457. 0EE66DD474AFFD4FD787D5B9 /* View */,
  2458. );
  2459. path = DataTable;
  2460. sourceTree = "<group>";
  2461. };
  2462. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */ = {
  2463. isa = PBXGroup;
  2464. children = (
  2465. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */,
  2466. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */,
  2467. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */,
  2468. 18B49BC9587A59E3A347C1CD /* View */,
  2469. );
  2470. path = BasalProfileEditor;
  2471. sourceTree = "<group>";
  2472. };
  2473. B9488883C59C31550E0B4CEC /* View */ = {
  2474. isa = PBXGroup;
  2475. children = (
  2476. BDFD16592AE40438007F0DDA /* TreatmentsRootView.swift */,
  2477. 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */,
  2478. BDB899872C564509006F3298 /* ForecastChart.swift */,
  2479. DD07CA5A2CE950B9002D45A9 /* MealPreset */,
  2480. );
  2481. path = View;
  2482. sourceTree = "<group>";
  2483. };
  2484. BD793CAD2CE7660C00D669AC /* Overrides */ = {
  2485. isa = PBXGroup;
  2486. children = (
  2487. DDAA29822D2D1D7B006546A1 /* AdjustmentsRootView+Overrides.swift */,
  2488. DDA6E31F2D258E0500C2988C /* OverrideHelpView.swift */,
  2489. DDD1631B2C4C697400CD525A /* AddOverrideForm.swift */,
  2490. DDD163192C4C695E00CD525A /* EditOverrideForm.swift */,
  2491. );
  2492. path = Overrides;
  2493. sourceTree = "<group>";
  2494. };
  2495. BD793CAE2CE7661D00D669AC /* TempTargets */ = {
  2496. isa = PBXGroup;
  2497. children = (
  2498. DDA6E3212D25901100C2988C /* TempTargetHelpView.swift */,
  2499. 58A3D5392C96D4DE003F90FC /* AddTempTargetForm.swift */,
  2500. 5825A1BD2C97335C0046467E /* EditTempTargetForm.swift */,
  2501. DDAA29842D2D1D98006546A1 /* AdjustmentsRootView+TempTargets.swift */,
  2502. );
  2503. path = TempTargets;
  2504. sourceTree = "<group>";
  2505. };
  2506. BD7DA9A32AE06DBA00601B20 /* BolusCalculatorConfig */ = {
  2507. isa = PBXGroup;
  2508. children = (
  2509. BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */,
  2510. BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */,
  2511. BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */,
  2512. BD7DA9AA2AE06E9600601B20 /* View */,
  2513. );
  2514. path = BolusCalculatorConfig;
  2515. sourceTree = "<group>";
  2516. };
  2517. BD7DA9AA2AE06E9600601B20 /* View */ = {
  2518. isa = PBXGroup;
  2519. children = (
  2520. BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */,
  2521. );
  2522. path = View;
  2523. sourceTree = "<group>";
  2524. };
  2525. BD7DB88C2D2C49FF003D3155 /* BolusCalculator */ = {
  2526. isa = PBXGroup;
  2527. children = (
  2528. BD7DB88D2D2C4A0A003D3155 /* BolusCalculationManager.swift */,
  2529. );
  2530. path = BolusCalculator;
  2531. sourceTree = "<group>";
  2532. };
  2533. BDA25F1A2D26BCE800035F34 /* Views */ = {
  2534. isa = PBXGroup;
  2535. children = (
  2536. DD09D5C82D29F3D0000D82C9 /* AcknowledgementPendingView.swift */,
  2537. BD04ECCD2D299522008C5FEB /* BolusProgressOverlay.swift */,
  2538. DD8262CA2D289297009F6F62 /* BolusConfirmationView.swift */,
  2539. BDA25F212D26D62200035F34 /* BolusInputView.swift */,
  2540. BDA25F1F2D26D5FB00035F34 /* CarbsInputView.swift */,
  2541. BDA25F1D2D26D5D800035F34 /* GlucoseChartView.swift */,
  2542. DD246F052D2836AA0027DDE0 /* GlucoseTrendView.swift */,
  2543. BD54A9582D27FB6A00F9C1EE /* OverridePresetsView.swift */,
  2544. BD54A9702D281A7A00F9C1EE /* TempTargetPresetsView.swift */,
  2545. DD6F63CB2D27F606007D94CF /* TreatmentMenuView.swift */,
  2546. BDA25F1B2D26BD0300035F34 /* TrendShape.swift */,
  2547. BDFF7A842D25F97D0016C40C /* TrioMainWatchView.swift */,
  2548. );
  2549. path = Views;
  2550. sourceTree = "<group>";
  2551. };
  2552. BDDAF9F12D0055CC00B34E7A /* ChartElements */ = {
  2553. isa = PBXGroup;
  2554. children = (
  2555. DD2CC85B2D25D9CE00445446 /* GlucoseTargetsView.swift */,
  2556. BDDAF9EE2D00553E00B34E7A /* SelectionPopoverView.swift */,
  2557. 582DF9742C8CDB92001F516D /* GlucoseChartView.swift */,
  2558. 582DF9762C8CDBE7001F516D /* InsulinView.swift */,
  2559. 582DF97A2C8CE209001F516D /* CarbView.swift */,
  2560. 58D08B212C8DAA8E00AA37D3 /* OverrideView.swift */,
  2561. 58D08B2F2C8DEA7500AA37D3 /* ForecastView.swift */,
  2562. 58D08B312C8DF88900AA37D3 /* DummyCharts.swift */,
  2563. 58D08B332C8DF9A700AA37D3 /* CobIobChart.swift */,
  2564. 58D08B372C8DFB6000AA37D3 /* BasalChart.swift */,
  2565. 58D08B392C8DFECD00AA37D3 /* TempTargets.swift */,
  2566. );
  2567. path = ChartElements;
  2568. sourceTree = "<group>";
  2569. };
  2570. BDF34F882C10C65E00D51995 /* Data */ = {
  2571. isa = PBXGroup;
  2572. children = (
  2573. BDF34F822C10C5B600D51995 /* DataManager.swift */,
  2574. BDF34F842C10C62E00D51995 /* GlucoseData.swift */,
  2575. BDF34F942C10D27300D51995 /* DeterminationData.swift */,
  2576. BDBAACF92C2D439700370AAE /* OverrideData.swift */,
  2577. );
  2578. path = Data;
  2579. sourceTree = "<group>";
  2580. };
  2581. BDFF7A9C2D25FA730016C40C /* Trio Watch App Extension */ = {
  2582. isa = PBXGroup;
  2583. children = (
  2584. BDA25EE52D260D5800035F34 /* WatchState.swift */,
  2585. BDAE3FFF2D372BA8009C12B1 /* WatchState+Requests.swift */,
  2586. DD3A3CEC2D29CFBA00AE478E /* Helper */,
  2587. BDA25F1A2D26BCE800035F34 /* Views */,
  2588. BDFF7A9E2D25FA970016C40C /* Preview Content */,
  2589. BDFF7A832D25F97D0016C40C /* Assets.xcassets */,
  2590. BDFF7A852D25F97D0016C40C /* TrioWatchApp.swift */,
  2591. );
  2592. path = "Trio Watch App Extension";
  2593. sourceTree = "<group>";
  2594. };
  2595. BDFF7AA02D25FAA80016C40C /* Trio Watch App Tests */ = {
  2596. isa = PBXGroup;
  2597. children = (
  2598. BDFF7A8A2D25F97D0016C40C /* Unit Tests.swift */,
  2599. );
  2600. path = "Trio Watch App Tests";
  2601. sourceTree = "<group>";
  2602. };
  2603. BDFF7AA12D25FAC70016C40C /* Trio Watch App */ = {
  2604. isa = PBXGroup;
  2605. children = (
  2606. DD09D6162D2A2E4A000D82C9 /* Assets.xcassets */,
  2607. BDFF7A902D25F97D0016C40C /* Info.plist */,
  2608. BDFF7A912D25F97D0016C40C /* TrioWatchApp.swift */,
  2609. BDFF7A922D25F97D0016C40C /* TrioWatchAppExtension.swift */,
  2610. );
  2611. path = "Trio Watch App";
  2612. sourceTree = "<group>";
  2613. };
  2614. C2C98283C436DB934D7E7994 /* Treatments */ = {
  2615. isa = PBXGroup;
  2616. children = (
  2617. C8D1A7CA8C10C4403D4BBFA7 /* TreatmentsDataFlow.swift */,
  2618. C19984D62EFC0035A9E9644D /* TreatmentsProvider.swift */,
  2619. 223EC0494F55A91E3EA69EF4 /* TreatmentsStateModel.swift */,
  2620. B9488883C59C31550E0B4CEC /* View */,
  2621. );
  2622. path = Treatments;
  2623. sourceTree = "<group>";
  2624. };
  2625. CE1856F32ADC4835007E39C7 /* Carbs */ = {
  2626. isa = PBXGroup;
  2627. children = (
  2628. CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */,
  2629. CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */,
  2630. );
  2631. path = Carbs;
  2632. sourceTree = "<group>";
  2633. };
  2634. CE7CA3422A064973004BE681 /* Shortcuts */ = {
  2635. isa = PBXGroup;
  2636. children = (
  2637. 118DF7692C5ECBC60067FEB7 /* Override */,
  2638. 110AEDE22C5193D100615CC9 /* Bolus */,
  2639. CE1856F32ADC4835007E39C7 /* Carbs */,
  2640. CE7CA3432A064973004BE681 /* AppShortcuts.swift */,
  2641. CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */,
  2642. CE7CA3452A064973004BE681 /* TempPresets */,
  2643. CE7CA34B2A064973004BE681 /* State */,
  2644. );
  2645. path = Shortcuts;
  2646. sourceTree = "<group>";
  2647. };
  2648. CE7CA3452A064973004BE681 /* TempPresets */ = {
  2649. isa = PBXGroup;
  2650. children = (
  2651. CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */,
  2652. CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */,
  2653. CE7CA3492A064973004BE681 /* TempPresetIntent.swift */,
  2654. CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */,
  2655. );
  2656. path = TempPresets;
  2657. sourceTree = "<group>";
  2658. };
  2659. CE7CA34B2A064973004BE681 /* State */ = {
  2660. isa = PBXGroup;
  2661. children = (
  2662. CE7CA34C2A064973004BE681 /* ListStateIntent.swift */,
  2663. CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */,
  2664. CE7CA3572A064E2F004BE681 /* ListStateView.swift */,
  2665. );
  2666. path = State;
  2667. sourceTree = "<group>";
  2668. };
  2669. CE94597C29E9E1CD0047C9C6 /* WatchConfig */ = {
  2670. isa = PBXGroup;
  2671. children = (
  2672. CE94598529E9E3FE0047C9C6 /* View */,
  2673. CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */,
  2674. CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */,
  2675. CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */,
  2676. );
  2677. path = WatchConfig;
  2678. sourceTree = "<group>";
  2679. };
  2680. CE94598529E9E3FE0047C9C6 /* View */ = {
  2681. isa = PBXGroup;
  2682. children = (
  2683. CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */,
  2684. DDF847E72C5DABA30049BB3B /* WatchConfigAppleWatchView.swift */,
  2685. DDF847E92C5DABAC0049BB3B /* WatchConfigGarminView.swift */,
  2686. );
  2687. path = View;
  2688. sourceTree = "<group>";
  2689. };
  2690. CEB434E128B8F9BC00B70274 /* Bluetooth */ = {
  2691. isa = PBXGroup;
  2692. children = (
  2693. CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */,
  2694. );
  2695. path = Bluetooth;
  2696. sourceTree = "<group>";
  2697. };
  2698. CEE9A64D2BBB411C00EB5194 /* Calibrations */ = {
  2699. isa = PBXGroup;
  2700. children = (
  2701. CEE9A6542BBB418300EB5194 /* CalibrationsDataFlow.swift */,
  2702. CEE9A64F2BBB418300EB5194 /* CalibrationsProvider.swift */,
  2703. CEE9A6532BBB418300EB5194 /* CalibrationsStateModel.swift */,
  2704. CEE9A6502BBB418300EB5194 /* View */,
  2705. );
  2706. path = Calibrations;
  2707. sourceTree = "<group>";
  2708. };
  2709. CEE9A6502BBB418300EB5194 /* View */ = {
  2710. isa = PBXGroup;
  2711. children = (
  2712. CEE9A6512BBB418300EB5194 /* CalibrationsRootView.swift */,
  2713. CEE9A6522BBB418300EB5194 /* CalibrationsChart.swift */,
  2714. );
  2715. path = View;
  2716. sourceTree = "<group>";
  2717. };
  2718. CEE9A65A2BBB41AD00EB5194 /* Calibrations */ = {
  2719. isa = PBXGroup;
  2720. children = (
  2721. CEE9A65B2BBB41C800EB5194 /* CalibrationService.swift */,
  2722. );
  2723. path = Calibrations;
  2724. sourceTree = "<group>";
  2725. };
  2726. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */ = {
  2727. isa = PBXGroup;
  2728. children = (
  2729. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */,
  2730. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */,
  2731. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */,
  2732. 4F4AE4D901E8BA872B207D7F /* View */,
  2733. );
  2734. path = NightscoutConfig;
  2735. sourceTree = "<group>";
  2736. };
  2737. D8F047E14D567F2B5DBEFD96 /* ISFEditor */ = {
  2738. isa = PBXGroup;
  2739. children = (
  2740. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */,
  2741. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */,
  2742. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */,
  2743. EEC747824D6593B5CD87E195 /* View */,
  2744. );
  2745. path = ISFEditor;
  2746. sourceTree = "<group>";
  2747. };
  2748. DD07CA5A2CE950B9002D45A9 /* MealPreset */ = {
  2749. isa = PBXGroup;
  2750. children = (
  2751. BD0B2EF22C5998E600B3298F /* MealPresetView.swift */,
  2752. DDF847E52C5D66490049BB3B /* AddMealPresetView.swift */,
  2753. );
  2754. path = MealPreset;
  2755. sourceTree = "<group>";
  2756. };
  2757. DD09D4792C5986BA003FEA5D /* CalendarEventSettings */ = {
  2758. isa = PBXGroup;
  2759. children = (
  2760. DD09D4802C5986E8003FEA5D /* View */,
  2761. DD09D47A2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift */,
  2762. DD09D47C2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift */,
  2763. DD09D47E2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift */,
  2764. );
  2765. path = CalendarEventSettings;
  2766. sourceTree = "<group>";
  2767. };
  2768. DD09D4802C5986E8003FEA5D /* View */ = {
  2769. isa = PBXGroup;
  2770. children = (
  2771. DD09D4812C5986F6003FEA5D /* CalendarEventSettingsRootView.swift */,
  2772. );
  2773. path = View;
  2774. sourceTree = "<group>";
  2775. };
  2776. DD09D6492D2B6253000D82C9 /* Trio Watch Complication */ = {
  2777. isa = PBXGroup;
  2778. children = (
  2779. DD09D6412D2B553A000D82C9 /* Assets.xcassets */,
  2780. DD09D6422D2B553A000D82C9 /* Info.plist */,
  2781. DD09D6432D2B553A000D82C9 /* TrioWatchComplication.swift */,
  2782. );
  2783. path = "Trio Watch Complication";
  2784. sourceTree = "<group>";
  2785. };
  2786. DD1745112C54168300211FAC /* Subviews */ = {
  2787. isa = PBXGroup;
  2788. children = (
  2789. DD1745122C54169400211FAC /* DevicesView.swift */,
  2790. DD1745142C54388A00211FAC /* TherapySettingsView.swift */,
  2791. DD1745162C54389F00211FAC /* FeatureSettingsView.swift */,
  2792. DD1745182C543B5700211FAC /* NotificationsView.swift */,
  2793. DD17451C2C543C5F00211FAC /* ServicesView.swift */,
  2794. DD1745362C55B74200211FAC /* AlgorithmSettings.swift */,
  2795. );
  2796. path = Subviews;
  2797. sourceTree = "<group>";
  2798. };
  2799. DD17451E2C55520000211FAC /* SMBSettings */ = {
  2800. isa = PBXGroup;
  2801. children = (
  2802. DD1745272C5553C400211FAC /* View */,
  2803. DD17451F2C55523E00211FAC /* SMBSettingsDataFlow.swift */,
  2804. DD1745212C55524800211FAC /* SMBSettingsProvider.swift */,
  2805. DD1745232C55526000211FAC /* SMBSettingsStateModel.swift */,
  2806. );
  2807. path = SMBSettings;
  2808. sourceTree = "<group>";
  2809. };
  2810. DD1745272C5553C400211FAC /* View */ = {
  2811. isa = PBXGroup;
  2812. children = (
  2813. DD1745252C55526F00211FAC /* SMBSettingsRootView.swift */,
  2814. );
  2815. path = View;
  2816. sourceTree = "<group>";
  2817. };
  2818. DD17452C2C55AE3500211FAC /* TargetBehavoir */ = {
  2819. isa = PBXGroup;
  2820. children = (
  2821. DD1745332C55AE6500211FAC /* View */,
  2822. DD17452D2C55AE4800211FAC /* TargetBehavoirDataFlow.swift */,
  2823. DD17452F2C55AE5300211FAC /* TargetBehaviorProvider.swift */,
  2824. DD1745312C55AE6000211FAC /* TargetBehavoirStateModel.swift */,
  2825. );
  2826. path = TargetBehavoir;
  2827. sourceTree = "<group>";
  2828. };
  2829. DD1745332C55AE6500211FAC /* View */ = {
  2830. isa = PBXGroup;
  2831. children = (
  2832. DD1745342C55AE7E00211FAC /* TargetBehavoirRootView.swift */,
  2833. );
  2834. path = View;
  2835. sourceTree = "<group>";
  2836. };
  2837. DD1745382C55BF8B00211FAC /* AlgorithmAdvancedSettings */ = {
  2838. isa = PBXGroup;
  2839. children = (
  2840. DD1745412C55BFC400211FAC /* View */,
  2841. DD1745392C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift */,
  2842. DD17453B2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift */,
  2843. DD17453D2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift */,
  2844. );
  2845. path = AlgorithmAdvancedSettings;
  2846. sourceTree = "<group>";
  2847. };
  2848. DD1745412C55BFC400211FAC /* View */ = {
  2849. isa = PBXGroup;
  2850. children = (
  2851. DD17453F2C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift */,
  2852. );
  2853. path = View;
  2854. sourceTree = "<group>";
  2855. };
  2856. DD1745422C55C5C400211FAC /* AutosensSettings */ = {
  2857. isa = PBXGroup;
  2858. children = (
  2859. DD1745492C55C62000211FAC /* View */,
  2860. DD1745432C55C60E00211FAC /* AutosensSettingsDataFlow.swift */,
  2861. DD1745452C55C61500211FAC /* AutosensSettingsProvider.swift */,
  2862. DD1745472C55C61D00211FAC /* AutosensSettingsStateModel.swift */,
  2863. );
  2864. path = AutosensSettings;
  2865. sourceTree = "<group>";
  2866. };
  2867. DD1745492C55C62000211FAC /* View */ = {
  2868. isa = PBXGroup;
  2869. children = (
  2870. DD17454A2C55C62800211FAC /* AutosensSettingsRootView.swift */,
  2871. );
  2872. path = View;
  2873. sourceTree = "<group>";
  2874. };
  2875. DD17454C2C55CA0200211FAC /* GeneralSettings */ = {
  2876. isa = PBXGroup;
  2877. children = (
  2878. DD1745532C55CA6100211FAC /* View */,
  2879. DD17454D2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift */,
  2880. DD17454F2C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift */,
  2881. DD1745512C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift */,
  2882. );
  2883. path = GeneralSettings;
  2884. sourceTree = "<group>";
  2885. };
  2886. DD1745532C55CA6100211FAC /* View */ = {
  2887. isa = PBXGroup;
  2888. children = (
  2889. DD1745542C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift */,
  2890. );
  2891. path = View;
  2892. sourceTree = "<group>";
  2893. };
  2894. DD3A3CEC2D29CFBA00AE478E /* Helper */ = {
  2895. isa = PBXGroup;
  2896. children = (
  2897. DD09D5C62D29EB26000D82C9 /* Helper+Enums.swift */,
  2898. DD3A3CE82D29C97800AE478E /* Helper+ButtonStyles.swift */,
  2899. DD3A3CE62D29C93F00AE478E /* Helper+Extensions.swift */,
  2900. );
  2901. path = Helper;
  2902. sourceTree = "<group>";
  2903. };
  2904. DD5DC9EF2CF3D95400AB8703 /* AdjustmentsStateModel+Extensions */ = {
  2905. isa = PBXGroup;
  2906. children = (
  2907. DD5DC9FA2CF3E1AA00AB8703 /* AdjustmentsStateModel+Helpers.swift */,
  2908. DD5DC9F22CF3D9D600AB8703 /* AdjustmentsStateModel+TempTargets.swift */,
  2909. DD5DC9F02CF3D96E00AB8703 /* AdjustmentsStateModel+Overrides.swift */,
  2910. );
  2911. path = "AdjustmentsStateModel+Extensions";
  2912. sourceTree = "<group>";
  2913. };
  2914. DD5DC9F52CF3DA8900AB8703 /* ViewElements */ = {
  2915. isa = PBXGroup;
  2916. children = (
  2917. DD5DC9F82CF3DAA900AB8703 /* RadioButton.swift */,
  2918. DD5DC9F62CF3DA9300AB8703 /* TargetPicker.swift */,
  2919. );
  2920. path = ViewElements;
  2921. sourceTree = "<group>";
  2922. };
  2923. DD6B7CB72C7BAC1B00B75029 /* ProfileImport */ = {
  2924. isa = PBXGroup;
  2925. children = (
  2926. DD6B7CB82C7BAC6900B75029 /* NightscoutImportResultView.swift */,
  2927. DD6B7CBA2C7FBBFA00B75029 /* ReviewInsulinActionView.swift */,
  2928. );
  2929. path = ProfileImport;
  2930. sourceTree = "<group>";
  2931. };
  2932. DD9ECB662CA99EFE00AA7C45 /* RemoteControl */ = {
  2933. isa = PBXGroup;
  2934. children = (
  2935. DD32CFA12CC824E1003686D6 /* TrioRemoteControl+Helpers.swift */,
  2936. DD32CF9F2CC824D3003686D6 /* TrioRemoteControl+APNS.swift */,
  2937. DD32CF9D2CC824C2003686D6 /* TrioRemoteControl+Override.swift */,
  2938. DD32CF9B2CC82495003686D6 /* TrioRemoteControl+TempTarget.swift */,
  2939. DD32CF992CC8246F003686D6 /* TrioRemoteControl+Meal.swift */,
  2940. DD32CF972CC82460003686D6 /* TrioRemoteControl+Bolus.swift */,
  2941. DD9ECB672CA99F4500AA7C45 /* TrioRemoteControl.swift */,
  2942. );
  2943. path = RemoteControl;
  2944. sourceTree = "<group>";
  2945. };
  2946. DD9ECB6B2CA99FA400AA7C45 /* RemoteControlConfig */ = {
  2947. isa = PBXGroup;
  2948. children = (
  2949. DD9ECB6F2CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift */,
  2950. DD9ECB6E2CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift */,
  2951. DD9ECB6D2CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift */,
  2952. DD9ECB6C2CA99FAE00AA7C45 /* View */,
  2953. );
  2954. path = RemoteControlConfig;
  2955. sourceTree = "<group>";
  2956. };
  2957. DD9ECB6C2CA99FAE00AA7C45 /* View */ = {
  2958. isa = PBXGroup;
  2959. children = (
  2960. DD9ECB732CA9A0C300AA7C45 /* RemoteControlConfig.swift */,
  2961. );
  2962. path = View;
  2963. sourceTree = "<group>";
  2964. };
  2965. DDC9B9962CFD2332003E7721 /* Nightscout */ = {
  2966. isa = PBXGroup;
  2967. children = (
  2968. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */,
  2969. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */,
  2970. );
  2971. path = Nightscout;
  2972. sourceTree = "<group>";
  2973. };
  2974. DDD163032C4C67B400CD525A /* Adjustments */ = {
  2975. isa = PBXGroup;
  2976. children = (
  2977. DD5DC9EF2CF3D95400AB8703 /* AdjustmentsStateModel+Extensions */,
  2978. DDD1630A2C4C67F000CD525A /* View */,
  2979. DDD163112C4C689900CD525A /* AdjustmentsStateModel.swift */,
  2980. DDD163132C4C68D300CD525A /* AdjustmentsProvider.swift */,
  2981. DDD163152C4C690300CD525A /* AdjustmentsDataFlow.swift */,
  2982. );
  2983. path = Adjustments;
  2984. sourceTree = "<group>";
  2985. };
  2986. DDD1630A2C4C67F000CD525A /* View */ = {
  2987. isa = PBXGroup;
  2988. children = (
  2989. DD5DC9F52CF3DA8900AB8703 /* ViewElements */,
  2990. DDD163172C4C694000CD525A /* AdjustmentsRootView.swift */,
  2991. BD793CAD2CE7660C00D669AC /* Overrides */,
  2992. BD793CAE2CE7661D00D669AC /* TempTargets */,
  2993. );
  2994. path = View;
  2995. sourceTree = "<group>";
  2996. };
  2997. DDE179112C9100FA003CDDB7 /* Classes+Properties */ = {
  2998. isa = PBXGroup;
  2999. children = (
  3000. DDE179362C910127003CDDB7 /* BolusStored+CoreDataClass.swift */,
  3001. DDE179372C910127003CDDB7 /* BolusStored+CoreDataProperties.swift */,
  3002. DDE1793A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift */,
  3003. DDE1793B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift */,
  3004. DDB37CC22D05044D00D99BF4 /* ContactTrickEntryStored+CoreDataClass.swift */,
  3005. DDB37CC32D05044D00D99BF4 /* ContactTrickEntryStored+CoreDataProperties.swift */,
  3006. DDE179422C910127003CDDB7 /* Forecast+CoreDataClass.swift */,
  3007. DDE179432C910127003CDDB7 /* Forecast+CoreDataProperties.swift */,
  3008. DDE179382C910127003CDDB7 /* ForecastValue+CoreDataClass.swift */,
  3009. DDE179392C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift */,
  3010. DDE179442C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift */,
  3011. DDE179452C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift */,
  3012. DDE179342C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift */,
  3013. DDE179352C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift */,
  3014. DDE179322C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift */,
  3015. DDE179332C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift */,
  3016. DDE179462C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift */,
  3017. DDE179472C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift */,
  3018. DDE1794E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift */,
  3019. DDE1794F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift */,
  3020. DDE1794C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift */,
  3021. DDE1794D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift */,
  3022. DDE179502C910127003CDDB7 /* OverrideStored+CoreDataClass.swift */,
  3023. DDE179512C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift */,
  3024. DDE1793E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift */,
  3025. DDE1793F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift */,
  3026. DDE179402C910127003CDDB7 /* StatsData+CoreDataClass.swift */,
  3027. DDE179412C910127003CDDB7 /* StatsData+CoreDataProperties.swift */,
  3028. DDE179482C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift */,
  3029. DDE179492C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift */,
  3030. 491D6FB92D56741C00C49F67 /* TempTargetRunStored+CoreDataClass.swift */,
  3031. 491D6FBA2D56741C00C49F67 /* TempTargetRunStored+CoreDataProperties.swift */,
  3032. 491D6FBB2D56741C00C49F67 /* TempTargetStored+CoreDataClass.swift */,
  3033. 491D6FBC2D56741C00C49F67 /* TempTargetStored+CoreDataProperties.swift */,
  3034. );
  3035. path = "Classes+Properties";
  3036. sourceTree = "<group>";
  3037. };
  3038. DDF847DB2C5C28550049BB3B /* LiveActivitySettings */ = {
  3039. isa = PBXGroup;
  3040. children = (
  3041. DDF847E22C5C28830049BB3B /* View */,
  3042. DDF847DC2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift */,
  3043. DDF847DE2C5C28780049BB3B /* LiveActivitySettingsProvider.swift */,
  3044. DDF847E02C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift */,
  3045. );
  3046. path = LiveActivitySettings;
  3047. sourceTree = "<group>";
  3048. };
  3049. DDF847E22C5C28830049BB3B /* View */ = {
  3050. isa = PBXGroup;
  3051. children = (
  3052. DDF847E32C5C288F0049BB3B /* LiveActivitySettingsRootView.swift */,
  3053. BD6EB2D52C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift */,
  3054. );
  3055. path = View;
  3056. sourceTree = "<group>";
  3057. };
  3058. E00EEBFC27368630002FF094 /* Assemblies */ = {
  3059. isa = PBXGroup;
  3060. children = (
  3061. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */,
  3062. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */,
  3063. E00EEBFF27368630002FF094 /* StorageAssembly.swift */,
  3064. E00EEC0027368630002FF094 /* UIAssembly.swift */,
  3065. E00EEC0127368630002FF094 /* APSAssembly.swift */,
  3066. E00EEC0227368630002FF094 /* NetworkAssembly.swift */,
  3067. );
  3068. path = Assemblies;
  3069. sourceTree = "<group>";
  3070. };
  3071. E42231DBF0DBE2B4B92D1B15 /* CarbRatioEditor */ = {
  3072. isa = PBXGroup;
  3073. children = (
  3074. 7E22146D3DF4853786C78132 /* CarbRatioEditorDataFlow.swift */,
  3075. 9C8D5F457B5AFF763F8CF3DF /* CarbRatioEditorProvider.swift */,
  3076. 64AA5E04A2761F6EEA6568E1 /* CarbRatioEditorStateModel.swift */,
  3077. 54946647FDCFE43028F60511 /* View */,
  3078. );
  3079. path = CarbRatioEditor;
  3080. sourceTree = "<group>";
  3081. };
  3082. E592A3722CEEC038009A472C /* View */ = {
  3083. isa = PBXGroup;
  3084. children = (
  3085. DDA6E3562D25988500C2988C /* ContactImageHelpView.swift */,
  3086. E592A3712CEEC038009A472C /* ContactImageRootView.swift */,
  3087. BDC531112D1060FA00088832 /* ContactImageDetailView.swift */,
  3088. BDC531132D10611D00088832 /* AddContactImageSheet.swift */,
  3089. );
  3090. path = View;
  3091. sourceTree = "<group>";
  3092. };
  3093. E592A3762CEEC038009A472C /* ContactImage */ = {
  3094. isa = PBXGroup;
  3095. children = (
  3096. E592A3722CEEC038009A472C /* View */,
  3097. E592A3732CEEC038009A472C /* ContactImageDataFlow.swift */,
  3098. E592A3742CEEC038009A472C /* ContactImageProvider.swift */,
  3099. E592A3752CEEC038009A472C /* ContactImageStateModel.swift */,
  3100. );
  3101. path = ContactImage;
  3102. sourceTree = "<group>";
  3103. };
  3104. E592A37E2CEEC046009A472C /* ContactImage */ = {
  3105. isa = PBXGroup;
  3106. children = (
  3107. BDC530FE2D0F6BE300088832 /* ContactImageManager.swift */,
  3108. BDC531152D10629000088832 /* ContactPicture.swift */,
  3109. BDC531172D1062F200088832 /* ContactImageState.swift */,
  3110. );
  3111. path = ContactImage;
  3112. sourceTree = "<group>";
  3113. };
  3114. EEC747824D6593B5CD87E195 /* View */ = {
  3115. isa = PBXGroup;
  3116. children = (
  3117. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */,
  3118. );
  3119. path = View;
  3120. sourceTree = "<group>";
  3121. };
  3122. F5DE2E6D7B2133BBD3353DC7 /* View */ = {
  3123. isa = PBXGroup;
  3124. children = (
  3125. 22963BD06A9C83959D4914E4 /* GlucoseNotificationSettingsRootView.swift */,
  3126. );
  3127. path = View;
  3128. sourceTree = "<group>";
  3129. };
  3130. F66B236E00924A05D6A9F9DF /* GlucoseNotificationSettings */ = {
  3131. isa = PBXGroup;
  3132. children = (
  3133. 3260468377DA9DB4DEE9AF6D /* GlucoseNotificationSettingsDataFlow.swift */,
  3134. E625985B47742D498CB1681A /* GlucoseNotificationSettingsProvider.swift */,
  3135. DC2C6489D29ECCCAD78E0721 /* GlucoseNotificationSettingsStateModel.swift */,
  3136. F5DE2E6D7B2133BBD3353DC7 /* View */,
  3137. );
  3138. path = GlucoseNotificationSettings;
  3139. sourceTree = "<group>";
  3140. };
  3141. F75CB57ED6971B46F8756083 /* CGM */ = {
  3142. isa = PBXGroup;
  3143. children = (
  3144. B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */,
  3145. 38FEF3FD2738083E00574A46 /* CGMProvider.swift */,
  3146. 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */,
  3147. 0D76BBC81CEDC1A0050F45EF /* View */,
  3148. );
  3149. path = CGM;
  3150. sourceTree = "<group>";
  3151. };
  3152. F90692A8274B7A980037068D /* HealthKit */ = {
  3153. isa = PBXGroup;
  3154. children = (
  3155. F90692A9274B7AAE0037068D /* HealthKitManager.swift */,
  3156. );
  3157. path = HealthKit;
  3158. sourceTree = "<group>";
  3159. };
  3160. F90692CD274B99850037068D /* HealthKit */ = {
  3161. isa = PBXGroup;
  3162. children = (
  3163. F90692CE274B999A0037068D /* HealthKitDataFlow.swift */,
  3164. F90692D0274B99B60037068D /* HealthKitProvider.swift */,
  3165. F90692D5274B9A450037068D /* HealthKitStateModel.swift */,
  3166. F90692D4274B9A160037068D /* View */,
  3167. );
  3168. path = HealthKit;
  3169. sourceTree = "<group>";
  3170. };
  3171. F90692D4274B9A160037068D /* View */ = {
  3172. isa = PBXGroup;
  3173. children = (
  3174. F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */,
  3175. );
  3176. path = View;
  3177. sourceTree = "<group>";
  3178. };
  3179. /* End PBXGroup section */
  3180. /* Begin PBXNativeTarget section */
  3181. 388E595725AD948C0019842D /* Trio */ = {
  3182. isa = PBXNativeTarget;
  3183. buildConfigurationList = 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "Trio" */;
  3184. buildPhases = (
  3185. 3811DEF525CA169200A708ED /* Swiftformat */,
  3186. DD88C8E02C4D716400F2D558 /* Run Script: get branch name and commit ID */,
  3187. 388E595425AD948C0019842D /* Sources */,
  3188. 388E595525AD948C0019842D /* Frameworks */,
  3189. 388E595625AD948C0019842D /* Resources */,
  3190. 3821ECD025DC703C00BC42AD /* Embed Frameworks */,
  3191. 38E8753D27554D5900975559 /* Embed Watch Content */,
  3192. 6B1A8D122B14D88E00E76752 /* Embed Foundation Extensions */,
  3193. CE95BF582BA5F8F300DC3DE3 /* Install plugins */,
  3194. DD88C8DF2C4D583900F2D558 /* Run Script: Capture Build Details */,
  3195. );
  3196. buildRules = (
  3197. );
  3198. dependencies = (
  3199. 6B1A8D272B14D91700E76752 /* PBXTargetDependency */,
  3200. BDFF799E2D25AA890016C40C /* PBXTargetDependency */,
  3201. );
  3202. name = Trio;
  3203. packageProductDependencies = (
  3204. 3811DE0F25C9D37700A708ED /* Swinject */,
  3205. 38B17B6525DD90E0005CAE3D /* SwiftDate */,
  3206. 3833B46C26012030003021B3 /* Algorithms */,
  3207. 38DF1788276FC8C400B3528F /* SwiftMessages */,
  3208. CEB434FC28B90B7C00B70274 /* SwiftCharts */,
  3209. B958F1B62BA0711600484851 /* MKRingProgressView */,
  3210. );
  3211. productName = Trio;
  3212. productReference = 388E595825AD948C0019842D /* Trio.app */;
  3213. productType = "com.apple.product-type.application";
  3214. };
  3215. 38FCF3EC25E9028E0078B0D1 /* TrioTests */ = {
  3216. isa = PBXNativeTarget;
  3217. buildConfigurationList = 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "TrioTests" */;
  3218. buildPhases = (
  3219. 38FCF3E925E9028E0078B0D1 /* Sources */,
  3220. 38FCF3EA25E9028E0078B0D1 /* Frameworks */,
  3221. 38FCF3EB25E9028E0078B0D1 /* Resources */,
  3222. );
  3223. buildRules = (
  3224. );
  3225. dependencies = (
  3226. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */,
  3227. );
  3228. name = TrioTests;
  3229. productName = TrioTests;
  3230. productReference = 38FCF3ED25E9028E0078B0D1 /* TrioTests.xctest */;
  3231. productType = "com.apple.product-type.bundle.unit-test";
  3232. };
  3233. 6B1A8D162B14D91500E76752 /* LiveActivityExtension */ = {
  3234. isa = PBXNativeTarget;
  3235. buildConfigurationList = 6B1A8D292B14D91800E76752 /* Build configuration list for PBXNativeTarget "LiveActivityExtension" */;
  3236. buildPhases = (
  3237. 6B1A8D132B14D91500E76752 /* Sources */,
  3238. 6B1A8D142B14D91500E76752 /* Frameworks */,
  3239. 6B1A8D152B14D91500E76752 /* Resources */,
  3240. );
  3241. buildRules = (
  3242. );
  3243. dependencies = (
  3244. );
  3245. fileSystemSynchronizedGroups = (
  3246. DDCEBF412CC1B42500DF4C36 /* Views */,
  3247. );
  3248. name = LiveActivityExtension;
  3249. productName = LiveActivityExtension;
  3250. productReference = 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */;
  3251. productType = "com.apple.product-type.app-extension";
  3252. };
  3253. BD8207C22D2B42E50023339D /* Trio Watch Complication Extension */ = {
  3254. isa = PBXNativeTarget;
  3255. buildConfigurationList = BD8207D32D2B42E80023339D /* Build configuration list for PBXNativeTarget "Trio Watch Complication Extension" */;
  3256. buildPhases = (
  3257. BD8207BF2D2B42E50023339D /* Sources */,
  3258. BD8207C02D2B42E50023339D /* Frameworks */,
  3259. BD8207C12D2B42E50023339D /* Resources */,
  3260. );
  3261. buildRules = (
  3262. );
  3263. dependencies = (
  3264. );
  3265. name = "Trio Watch Complication Extension";
  3266. packageProductDependencies = (
  3267. );
  3268. productName = "Trio Watch WidgetExtension";
  3269. productReference = BD8207C32D2B42E50023339D /* Trio Watch Complication Extension.appex */;
  3270. productType = "com.apple.product-type.app-extension";
  3271. };
  3272. BDFF797B2D25AA870016C40C /* Trio Watch App */ = {
  3273. isa = PBXNativeTarget;
  3274. buildConfigurationList = BDFF79A02D25AA890016C40C /* Build configuration list for PBXNativeTarget "Trio Watch App" */;
  3275. buildPhases = (
  3276. BDFF79782D25AA870016C40C /* Sources */,
  3277. BDFF79792D25AA870016C40C /* Frameworks */,
  3278. BDFF797A2D25AA870016C40C /* Resources */,
  3279. BD8207CF2D2B42E80023339D /* Embed Foundation Extensions */,
  3280. );
  3281. buildRules = (
  3282. );
  3283. dependencies = (
  3284. BD8207CD2D2B42E70023339D /* PBXTargetDependency */,
  3285. );
  3286. fileSystemSynchronizedGroups = (
  3287. BDFF7A9E2D25FA970016C40C /* Preview Content */,
  3288. );
  3289. name = "Trio Watch App";
  3290. packageProductDependencies = (
  3291. );
  3292. productName = "TrioWatch Watch App";
  3293. productReference = BDFF797C2D25AA870016C40C /* Trio Watch App.app */;
  3294. productType = "com.apple.product-type.application";
  3295. };
  3296. BDFF798A2D25AA890016C40C /* Trio Watch AppTests */ = {
  3297. isa = PBXNativeTarget;
  3298. buildConfigurationList = BDFF79A32D25AA890016C40C /* Build configuration list for PBXNativeTarget "Trio Watch AppTests" */;
  3299. buildPhases = (
  3300. BDFF79872D25AA890016C40C /* Sources */,
  3301. BDFF79882D25AA890016C40C /* Frameworks */,
  3302. BDFF79892D25AA890016C40C /* Resources */,
  3303. );
  3304. buildRules = (
  3305. );
  3306. dependencies = (
  3307. BDFF798D2D25AA890016C40C /* PBXTargetDependency */,
  3308. );
  3309. name = "Trio Watch AppTests";
  3310. packageProductDependencies = (
  3311. );
  3312. productName = "TrioWatch Watch AppTests";
  3313. productReference = BDFF798B2D25AA890016C40C /* Trio Watch AppTests.xctest */;
  3314. productType = "com.apple.product-type.bundle.unit-test";
  3315. };
  3316. /* End PBXNativeTarget section */
  3317. /* Begin PBXProject section */
  3318. 388E595025AD948C0019842D /* Project object */ = {
  3319. isa = PBXProject;
  3320. attributes = {
  3321. LastSwiftUpdateCheck = 1620;
  3322. LastUpgradeCheck = 1240;
  3323. TargetAttributes = {
  3324. 388E595725AD948C0019842D = {
  3325. CreatedOnToolsVersion = 12.3;
  3326. };
  3327. 38FCF3EC25E9028E0078B0D1 = {
  3328. CreatedOnToolsVersion = 12.4;
  3329. TestTargetID = 388E595725AD948C0019842D;
  3330. };
  3331. BD8207C22D2B42E50023339D = {
  3332. CreatedOnToolsVersion = 16.2;
  3333. };
  3334. BDFF797B2D25AA870016C40C = {
  3335. CreatedOnToolsVersion = 16.2;
  3336. };
  3337. BDFF798A2D25AA890016C40C = {
  3338. CreatedOnToolsVersion = 16.2;
  3339. TestTargetID = BDFF797B2D25AA870016C40C;
  3340. };
  3341. };
  3342. };
  3343. buildConfigurationList = 388E595325AD948C0019842D /* Build configuration list for PBXProject "Trio" */;
  3344. compatibilityVersion = "Xcode 9.3";
  3345. developmentRegion = en;
  3346. hasScannedForEncodings = 0;
  3347. knownRegions = (
  3348. en,
  3349. Base,
  3350. ar,
  3351. ca,
  3352. "zh-Hans",
  3353. da,
  3354. nl,
  3355. fr,
  3356. de,
  3357. he,
  3358. it,
  3359. nb,
  3360. pl,
  3361. ru,
  3362. es,
  3363. sv,
  3364. tr,
  3365. uk,
  3366. fi,
  3367. "pt-PT",
  3368. "pt-BR",
  3369. sk,
  3370. hu,
  3371. vi,
  3372. );
  3373. mainGroup = 388E594F25AD948C0019842D;
  3374. packageReferences = (
  3375. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */,
  3376. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */,
  3377. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */,
  3378. 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */,
  3379. CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */,
  3380. B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */,
  3381. );
  3382. productRefGroup = 388E595925AD948C0019842D /* Products */;
  3383. projectDirPath = "";
  3384. projectRoot = "";
  3385. targets = (
  3386. 388E595725AD948C0019842D /* Trio */,
  3387. 38FCF3EC25E9028E0078B0D1 /* TrioTests */,
  3388. 6B1A8D162B14D91500E76752 /* LiveActivityExtension */,
  3389. BDFF797B2D25AA870016C40C /* Trio Watch App */,
  3390. BDFF798A2D25AA890016C40C /* Trio Watch AppTests */,
  3391. BD8207C22D2B42E50023339D /* Trio Watch Complication Extension */,
  3392. );
  3393. };
  3394. /* End PBXProject section */
  3395. /* Begin PBXResourcesBuildPhase section */
  3396. 388E595625AD948C0019842D /* Resources */ = {
  3397. isa = PBXResourcesBuildPhase;
  3398. buildActionMask = 2147483647;
  3399. files = (
  3400. 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */,
  3401. CE1F6DE72BAF1A180064EB8D /* BuildDetails.plist in Resources */,
  3402. 38DF178D27733E6800B3528F /* snow.sks in Resources */,
  3403. 388E597225AD9CF10019842D /* json in Resources */,
  3404. 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */,
  3405. 19DA48E829CD339B00EEA1E7 /* Assets.xcassets in Resources */,
  3406. 388E596F25AD96040019842D /* javascript in Resources */,
  3407. B9CAAEFC2AE70836000F68BC /* branch.txt in Resources */,
  3408. 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */,
  3409. );
  3410. runOnlyForDeploymentPostprocessing = 0;
  3411. };
  3412. 38FCF3EB25E9028E0078B0D1 /* Resources */ = {
  3413. isa = PBXResourcesBuildPhase;
  3414. buildActionMask = 2147483647;
  3415. files = (
  3416. );
  3417. runOnlyForDeploymentPostprocessing = 0;
  3418. };
  3419. 6B1A8D152B14D91500E76752 /* Resources */ = {
  3420. isa = PBXResourcesBuildPhase;
  3421. buildActionMask = 2147483647;
  3422. files = (
  3423. 6B1A8D242B14D91700E76752 /* Assets.xcassets in Resources */,
  3424. );
  3425. runOnlyForDeploymentPostprocessing = 0;
  3426. };
  3427. BD8207C12D2B42E50023339D /* Resources */ = {
  3428. isa = PBXResourcesBuildPhase;
  3429. buildActionMask = 2147483647;
  3430. files = (
  3431. DD09D6442D2B553A000D82C9 /* Assets.xcassets in Resources */,
  3432. );
  3433. runOnlyForDeploymentPostprocessing = 0;
  3434. };
  3435. BDFF797A2D25AA870016C40C /* Resources */ = {
  3436. isa = PBXResourcesBuildPhase;
  3437. buildActionMask = 2147483647;
  3438. files = (
  3439. BDFF7A872D25F97D0016C40C /* Assets.xcassets in Resources */,
  3440. );
  3441. runOnlyForDeploymentPostprocessing = 0;
  3442. };
  3443. BDFF79892D25AA890016C40C /* Resources */ = {
  3444. isa = PBXResourcesBuildPhase;
  3445. buildActionMask = 2147483647;
  3446. files = (
  3447. );
  3448. runOnlyForDeploymentPostprocessing = 0;
  3449. };
  3450. /* End PBXResourcesBuildPhase section */
  3451. /* Begin PBXShellScriptBuildPhase section */
  3452. 3811DEF525CA169200A708ED /* Swiftformat */ = {
  3453. isa = PBXShellScriptBuildPhase;
  3454. buildActionMask = 12;
  3455. files = (
  3456. );
  3457. inputFileListPaths = (
  3458. );
  3459. inputPaths = (
  3460. );
  3461. name = Swiftformat;
  3462. outputFileListPaths = (
  3463. );
  3464. outputPaths = (
  3465. );
  3466. runOnlyForDeploymentPostprocessing = 0;
  3467. shellPath = /bin/sh;
  3468. shellScript = "source \"${SRCROOT}\"/scripts/swiftformat.sh\n\n";
  3469. };
  3470. CE95BF582BA5F8F300DC3DE3 /* Install plugins */ = {
  3471. isa = PBXShellScriptBuildPhase;
  3472. alwaysOutOfDate = 1;
  3473. buildActionMask = 2147483647;
  3474. files = (
  3475. );
  3476. inputFileListPaths = (
  3477. );
  3478. inputPaths = (
  3479. );
  3480. name = "Install plugins";
  3481. outputFileListPaths = (
  3482. );
  3483. outputPaths = (
  3484. );
  3485. runOnlyForDeploymentPostprocessing = 0;
  3486. shellPath = /bin/sh;
  3487. shellScript = "\"${SRCROOT}/Scripts/copy-plugins.sh\"\n";
  3488. };
  3489. DD88C8DF2C4D583900F2D558 /* Run Script: Capture Build Details */ = {
  3490. isa = PBXShellScriptBuildPhase;
  3491. buildActionMask = 2147483647;
  3492. files = (
  3493. );
  3494. inputFileListPaths = (
  3495. );
  3496. inputPaths = (
  3497. );
  3498. name = "Run Script: Capture Build Details";
  3499. outputFileListPaths = (
  3500. );
  3501. outputPaths = (
  3502. );
  3503. runOnlyForDeploymentPostprocessing = 0;
  3504. shellPath = /bin/sh;
  3505. shellScript = "\"${SRCROOT}/scripts/capture-build-details.sh\"\n";
  3506. };
  3507. DD88C8E02C4D716400F2D558 /* Run Script: get branch name and commit ID */ = {
  3508. isa = PBXShellScriptBuildPhase;
  3509. buildActionMask = 2147483647;
  3510. files = (
  3511. );
  3512. inputFileListPaths = (
  3513. );
  3514. inputPaths = (
  3515. );
  3516. name = "Run Script: get branch name and commit ID";
  3517. outputFileListPaths = (
  3518. );
  3519. outputPaths = (
  3520. );
  3521. runOnlyForDeploymentPostprocessing = 0;
  3522. shellPath = /bin/sh;
  3523. 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";
  3524. };
  3525. /* End PBXShellScriptBuildPhase section */
  3526. /* Begin PBXSourcesBuildPhase section */
  3527. 388E595425AD948C0019842D /* Sources */ = {
  3528. isa = PBXSourcesBuildPhase;
  3529. buildActionMask = 2147483647;
  3530. files = (
  3531. DD5DC9F12CF3D97C00AB8703 /* AdjustmentsStateModel+Overrides.swift in Sources */,
  3532. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */,
  3533. C2A0A42F2CE03131003B98E8 /* ConstantValues.swift in Sources */,
  3534. BD3CC0722B0B89D50013189E /* MainChartView.swift in Sources */,
  3535. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */,
  3536. 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */,
  3537. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */,
  3538. DD9ECB6A2CA99F6C00AA7C45 /* PushMessage.swift in Sources */,
  3539. 3811DE8F25C9D80400A708ED /* User.swift in Sources */,
  3540. 5825A1BE2C97335C0046467E /* EditTempTargetForm.swift in Sources */,
  3541. 19D466A329AA2B80004D5F33 /* MealSettingsDataFlow.swift in Sources */,
  3542. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */,
  3543. 38AEE73D25F0200C0013F05B /* TrioSettings.swift in Sources */,
  3544. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */,
  3545. 58645BA72CA2D390008AFCE7 /* ChartAxisSetup.swift in Sources */,
  3546. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */,
  3547. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */,
  3548. F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */,
  3549. CE7CA3552A064973004BE681 /* ListStateIntent.swift in Sources */,
  3550. BDF530D82B40F8AC002CAF43 /* LockScreenView.swift in Sources */,
  3551. 195D80B72AF697B800D25097 /* DynamicSettingsDataFlow.swift in Sources */,
  3552. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */,
  3553. CEA4F62329BE10F70011ADF7 /* SavitzkyGolayFilter.swift in Sources */,
  3554. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */,
  3555. 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */,
  3556. 58D08B322C8DF88900AA37D3 /* DummyCharts.swift in Sources */,
  3557. 19E1F7EF29D08EBA005C8D20 /* IconConfigRootWiew.swift in Sources */,
  3558. 1967DFC229D053D300759F30 /* IconImage.swift in Sources */,
  3559. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */,
  3560. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */,
  3561. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */,
  3562. DD07CA142CE80B73002D45A9 /* TimeInRangeChartStyle.swift in Sources */,
  3563. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */,
  3564. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */,
  3565. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */,
  3566. CE94598429E9E3E60047C9C6 /* WatchConfigStateModel.swift in Sources */,
  3567. DD6B7CB92C7BAC6900B75029 /* NightscoutImportResultView.swift in Sources */,
  3568. 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */,
  3569. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */,
  3570. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */,
  3571. DD1745402C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift in Sources */,
  3572. 58645BA52CA2D347008AFCE7 /* ForecastSetup.swift in Sources */,
  3573. 110AEDEE2C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift in Sources */,
  3574. DD9ECB722CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift in Sources */,
  3575. DD1745262C55526F00211FAC /* SMBSettingsRootView.swift in Sources */,
  3576. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */,
  3577. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */,
  3578. 118DF76E2C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift in Sources */,
  3579. CEE9A6552BBB418300EB5194 /* CalibrationsProvider.swift in Sources */,
  3580. 19F95FF529F10FCF00314DDC /* StatProvider.swift in Sources */,
  3581. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */,
  3582. 5A2325542BFCBF66003518CA /* NightscoutFetchView.swift in Sources */,
  3583. 19B0EF2128F6D66200069496 /* Statistics.swift in Sources */,
  3584. DDF847E82C5DABA30049BB3B /* WatchConfigAppleWatchView.swift in Sources */,
  3585. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */,
  3586. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */,
  3587. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */,
  3588. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */,
  3589. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */,
  3590. CE94598029E9E3BD0047C9C6 /* WatchConfigDataFlow.swift in Sources */,
  3591. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */,
  3592. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */,
  3593. DD1745552C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift in Sources */,
  3594. 384E803825C388640086DB71 /* Script.swift in Sources */,
  3595. CE94597E29E9E1EE0047C9C6 /* GarminManager.swift in Sources */,
  3596. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */,
  3597. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */,
  3598. DDD1631C2C4C697400CD525A /* AddOverrideForm.swift in Sources */,
  3599. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */,
  3600. DD17453E2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift in Sources */,
  3601. CE95BF572BA5F5FE00DC3DE3 /* PluginManager.swift in Sources */,
  3602. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */,
  3603. 19D466A529AA2BD4004D5F33 /* MealSettingsProvider.swift in Sources */,
  3604. DD5DC9F72CF3DA9300AB8703 /* TargetPicker.swift in Sources */,
  3605. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */,
  3606. CEE9A6572BBB418300EB5194 /* CalibrationsChart.swift in Sources */,
  3607. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */,
  3608. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */,
  3609. 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */,
  3610. DD6B7CB62C7B748B00B75029 /* TotalInsulinDisplayType.swift in Sources */,
  3611. 388E595C25AD948C0019842D /* TrioApp.swift in Sources */,
  3612. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */,
  3613. DD1745352C55AE7E00211FAC /* TargetBehavoirRootView.swift in Sources */,
  3614. 5887527C2BD986E1008B081D /* OpenAPSBattery.swift in Sources */,
  3615. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */,
  3616. CEE9A6582BBB418300EB5194 /* CalibrationsStateModel.swift in Sources */,
  3617. CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */,
  3618. BDC2EA452C3043B000E5BBD0 /* OverrideStorage.swift in Sources */,
  3619. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */,
  3620. CEE9A6562BBB418300EB5194 /* CalibrationsRootView.swift in Sources */,
  3621. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */,
  3622. CE94598229E9E3D30047C9C6 /* WatchConfigProvider.swift in Sources */,
  3623. DD1745322C55AE6000211FAC /* TargetBehavoirStateModel.swift in Sources */,
  3624. 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */,
  3625. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */,
  3626. FE41E4D629463EE20047FD55 /* NightscoutPreferences.swift in Sources */,
  3627. E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */,
  3628. 58645BA32CA2D325008AFCE7 /* BatterySetup.swift in Sources */,
  3629. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */,
  3630. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */,
  3631. 5837A5302BD2E3C700A5DC04 /* CarbEntryStored+helper.swift in Sources */,
  3632. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */,
  3633. DD9ECB702CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift in Sources */,
  3634. 19A910382A24EF3200C8951B /* ChartsView.swift in Sources */,
  3635. DD32CF9A2CC8247B003686D6 /* TrioRemoteControl+Meal.swift in Sources */,
  3636. BDF34F832C10C5B600D51995 /* DataManager.swift in Sources */,
  3637. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */,
  3638. 19D466A729AA2C22004D5F33 /* MealSettingsStateModel.swift in Sources */,
  3639. DD17452B2C556E8100211FAC /* SettingInputHintView.swift in Sources */,
  3640. 38E44528274E401C00EC9A94 /* Protected.swift in Sources */,
  3641. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */,
  3642. 581516A42BCED84A00BF67D7 /* DebuggingIdentifiers.swift in Sources */,
  3643. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */,
  3644. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */,
  3645. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */,
  3646. 3811DE1825C9D40400A708ED /* Router.swift in Sources */,
  3647. CE7950262998056D00FA576E /* CGMSetupView.swift in Sources */,
  3648. 582FAE432C05102C00D1C13F /* CoreDataError.swift in Sources */,
  3649. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */,
  3650. 65070A332BFDCB83006F213F /* TidepoolStartView.swift in Sources */,
  3651. 190EBCC629FF138000BA767D /* UserInterfaceSettingsProvider.swift in Sources */,
  3652. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */,
  3653. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */,
  3654. 3811DEE825CA063400A708ED /* Injected.swift in Sources */,
  3655. DD1745152C54388A00211FAC /* TherapySettingsView.swift in Sources */,
  3656. 585E2CAE2BE7BF46006ECF1A /* PumpEvent+helper.swift in Sources */,
  3657. DDAA29832D2D1D93006546A1 /* AdjustmentsRootView+Overrides.swift in Sources */,
  3658. DDD1631F2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld in Sources */,
  3659. DD1745482C55C61D00211FAC /* AutosensSettingsStateModel.swift in Sources */,
  3660. DD1745462C55C61500211FAC /* AutosensSettingsProvider.swift in Sources */,
  3661. DDA6E2852D2361F800C2988C /* LoopStatusView.swift in Sources */,
  3662. DDA6E3202D258E0500C2988C /* OverrideHelpView.swift in Sources */,
  3663. DDA6E2502D22187500C2988C /* ChartLegendView.swift in Sources */,
  3664. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */,
  3665. DDD6D4D32CDE90720029439A /* HbA1cDisplayUnit.swift in Sources */,
  3666. DDA6E3572D25988500C2988C /* ContactImageHelpView.swift in Sources */,
  3667. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */,
  3668. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */,
  3669. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */,
  3670. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */,
  3671. DD32CFA22CC824E2003686D6 /* TrioRemoteControl+Helpers.swift in Sources */,
  3672. CE1856F52ADC4858007E39C7 /* AddCarbPresetIntent.swift in Sources */,
  3673. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */,
  3674. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */,
  3675. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */,
  3676. CE1F6DE92BAF37C90064EB8D /* TidepoolConfigView.swift in Sources */,
  3677. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */,
  3678. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */,
  3679. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */,
  3680. 58D08B222C8DAA8E00AA37D3 /* OverrideView.swift in Sources */,
  3681. BD0B2EF32C5998E600B3298F /* MealPresetView.swift in Sources */,
  3682. E592A3702CEEC01E009A472C /* ContactTrickEntry.swift in Sources */,
  3683. DD6D67E42C9C253500660C9B /* ColorSchemeOption.swift in Sources */,
  3684. 582DF9752C8CDB92001F516D /* GlucoseChartView.swift in Sources */,
  3685. BD432CA12D2F4E3600D1EB79 /* WatchMessageKeys.swift in Sources */,
  3686. 58A3D53A2C96D4DE003F90FC /* AddTempTargetForm.swift in Sources */,
  3687. DD1745302C55AE5300211FAC /* TargetBehaviorProvider.swift in Sources */,
  3688. 58D08B382C8DFB6000AA37D3 /* BasalChart.swift in Sources */,
  3689. 118DF76D2C5ECBC60067FEB7 /* OverridePresetEntity.swift in Sources */,
  3690. 58645B9F2CA2D2BE008AFCE7 /* PumpHistorySetup.swift in Sources */,
  3691. DD17454E2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift in Sources */,
  3692. DDF847E62C5D66490049BB3B /* AddMealPresetView.swift in Sources */,
  3693. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */,
  3694. BDA6CC882CAF219B00F942F9 /* TempTargetSetup.swift in Sources */,
  3695. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */,
  3696. DD1745192C543B5700211FAC /* NotificationsView.swift in Sources */,
  3697. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */,
  3698. CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */,
  3699. CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */,
  3700. 19F95FF329F10FBC00314DDC /* StatDataFlow.swift in Sources */,
  3701. 582DF97B2C8CE209001F516D /* CarbView.swift in Sources */,
  3702. DD940BAA2CA7585D000830A5 /* GlucoseColorScheme.swift in Sources */,
  3703. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */,
  3704. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */,
  3705. CE95BF5A2BA62E4A00DC3DE3 /* PluginSource.swift in Sources */,
  3706. DD21FCB52C6952AD00AF2C25 /* DecimalPickerSettings.swift in Sources */,
  3707. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */,
  3708. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */,
  3709. CEE9A6592BBB418300EB5194 /* CalibrationsDataFlow.swift in Sources */,
  3710. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */,
  3711. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */,
  3712. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */,
  3713. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */,
  3714. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */,
  3715. BD793CB22CE8033500D669AC /* TempTargetRunStored.swift in Sources */,
  3716. 19A910302A24BF6300C8951B /* StatsView.swift in Sources */,
  3717. BD7DA9A92AE06E9200601B20 /* BolusCalculatorStateModel.swift in Sources */,
  3718. CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */,
  3719. 190EBCCB29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift in Sources */,
  3720. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */,
  3721. CE7950242997D81700FA576E /* CGMSettingsView.swift in Sources */,
  3722. 58237D9E2BCF0A6B00A47A79 /* PopupView.swift in Sources */,
  3723. BD793CB02CE7C61500D669AC /* OverrideRunStored+helper.swift in Sources */,
  3724. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */,
  3725. DD32CF9C2CC82499003686D6 /* TrioRemoteControl+TempTarget.swift in Sources */,
  3726. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */,
  3727. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */,
  3728. DDD163142C4C68D300CD525A /* AdjustmentsProvider.swift in Sources */,
  3729. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */,
  3730. 191F62682AD6B05A004D7911 /* NightscoutSettings.swift in Sources */,
  3731. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */,
  3732. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */,
  3733. 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */,
  3734. CE82E02528E867BA00473A9C /* AlertStorage.swift in Sources */,
  3735. DD1745372C55B74200211FAC /* AlgorithmSettings.swift in Sources */,
  3736. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */,
  3737. DDF847E12C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift in Sources */,
  3738. 583684082BD195A700070A60 /* Determination.swift in Sources */,
  3739. DD17451D2C543C5F00211FAC /* ServicesView.swift in Sources */,
  3740. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */,
  3741. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */,
  3742. 190EBCC829FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift in Sources */,
  3743. DDF847EA2C5DABAC0049BB3B /* WatchConfigGarminView.swift in Sources */,
  3744. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */,
  3745. BD4E1A7A2D3681B700D21626 /* GlucoseTargetSetup.swift in Sources */,
  3746. BDB3C1192C03DD1000CEEAA1 /* UserDefaultsExtension.swift in Sources */,
  3747. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */,
  3748. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */,
  3749. FE66D16B291F74F8005D6F77 /* Bundle+Extensions.swift in Sources */,
  3750. DD940BAC2CA75889000830A5 /* DynamicGlucoseColor.swift in Sources */,
  3751. 3883581C25EE79BB00E024B2 /* TextFieldWithToolBar.swift in Sources */,
  3752. 58D08B302C8DEA7500AA37D3 /* ForecastView.swift in Sources */,
  3753. 6B1A8D2E2B156EEF00E76752 /* LiveActivityBridge.swift in Sources */,
  3754. 581516A92BCEEDF800BF67D7 /* NSPredicates.swift in Sources */,
  3755. DD4FFF332D458EE600B6CFF9 /* GarminWatchState.swift in Sources */,
  3756. DD6B7CB22C7B6F0800B75029 /* Rounding.swift in Sources */,
  3757. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */,
  3758. BDB8998A2C565D0C006F3298 /* CarbsGlucose+helper.swift in Sources */,
  3759. BD7DB88E2D2C4A17003D3155 /* BolusCalculationManager.swift in Sources */,
  3760. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */,
  3761. BDCD47AF2C1F3F1700F8BCD5 /* OverrideStored+helper.swift in Sources */,
  3762. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */,
  3763. CE7CA3582A064E2F004BE681 /* ListStateView.swift in Sources */,
  3764. 193F6CDD2A512C8F001240FD /* Loops.swift in Sources */,
  3765. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */,
  3766. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */,
  3767. BDFD165A2AE40438007F0DDA /* TreatmentsRootView.swift in Sources */,
  3768. BD54A9732D281ABC00F9C1EE /* TempTargetPresetWatch.swift in Sources */,
  3769. DD3078682D42F5CE00DE0490 /* WatchGlucoseObject.swift in Sources */,
  3770. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */,
  3771. DD1745522C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift in Sources */,
  3772. DD2CC85C2D25DA1000445446 /* GlucoseTargetsView.swift in Sources */,
  3773. 190EBCC429FF136900BA767D /* UserInterfaceSettingsDataFlow.swift in Sources */,
  3774. 5A2325582BFCC168003518CA /* NightscoutConnectView.swift in Sources */,
  3775. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */,
  3776. 110AEDE42C5193D200615CC9 /* BolusIntentRequest.swift in Sources */,
  3777. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */,
  3778. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */,
  3779. CE7CA34E2A064973004BE681 /* AppShortcuts.swift in Sources */,
  3780. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */,
  3781. 110AEDEB2C51A0AE00615CC9 /* ShortcutsConfigView.swift in Sources */,
  3782. 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */,
  3783. DD1DB7CC2BECCA1F0048B367 /* BuildDetails.swift in Sources */,
  3784. 1935364028496F7D001E0B16 /* Oref2_variables.swift in Sources */,
  3785. CE2FAD3A297D93F0001A872C /* BloodGlucoseExtensions.swift in Sources */,
  3786. 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */,
  3787. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */,
  3788. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */,
  3789. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */,
  3790. DD32CFA02CC824D6003686D6 /* TrioRemoteControl+APNS.swift in Sources */,
  3791. CE7CA3532A064973004BE681 /* TempPresetIntent.swift in Sources */,
  3792. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */,
  3793. DD6B7CBB2C7FBBFA00B75029 /* ReviewInsulinActionView.swift in Sources */,
  3794. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */,
  3795. BDB899882C564509006F3298 /* ForecastChart.swift in Sources */,
  3796. 110AEDE32C5193D200615CC9 /* BolusIntent.swift in Sources */,
  3797. 58645BA12CA2D2F8008AFCE7 /* OverrideSetup.swift in Sources */,
  3798. DDD1631A2C4C695E00CD525A /* EditOverrideForm.swift in Sources */,
  3799. CE1856F72ADC4869007E39C7 /* CarbPresetIntentRequest.swift in Sources */,
  3800. CE1F6DDB2BAE08B60064EB8D /* TidepoolManager.swift in Sources */,
  3801. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */,
  3802. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */,
  3803. DDA6E3222D25901100C2988C /* TempTargetHelpView.swift in Sources */,
  3804. 58645B9D2CA2D275008AFCE7 /* DeterminationSetup.swift in Sources */,
  3805. 491D6FBD2D56741C00C49F67 /* TempTargetStored+CoreDataProperties.swift in Sources */,
  3806. 491D6FBE2D56741C00C49F67 /* TempTargetRunStored+CoreDataClass.swift in Sources */,
  3807. 491D6FBF2D56741C00C49F67 /* TempTargetRunStored+CoreDataProperties.swift in Sources */,
  3808. 491D6FC02D56741C00C49F67 /* TempTargetStored+CoreDataClass.swift in Sources */,
  3809. DD1745442C55C60E00211FAC /* AutosensSettingsDataFlow.swift in Sources */,
  3810. BDCAF2382C639F35002DC907 /* SettingItems.swift in Sources */,
  3811. 58D08B342C8DF9A700AA37D3 /* CobIobChart.swift in Sources */,
  3812. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */,
  3813. BD7DA9AC2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift in Sources */,
  3814. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */,
  3815. DD17452E2C55AE4800211FAC /* TargetBehavoirDataFlow.swift in Sources */,
  3816. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */,
  3817. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */,
  3818. 19D466AA29AA3099004D5F33 /* MealSettingsRootView.swift in Sources */,
  3819. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */,
  3820. DD1745502C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift in Sources */,
  3821. 581AC4392BE22ED10038760C /* JSONConverter.swift in Sources */,
  3822. BD4064D12C4ED26900582F43 /* CoreDataObserver.swift in Sources */,
  3823. 58645B9B2CA2D24F008AFCE7 /* CarbSetup.swift in Sources */,
  3824. 38E44536274E411700EC9A94 /* Disk.swift in Sources */,
  3825. 19A910362A24D6D700C8951B /* DateFilter.swift in Sources */,
  3826. 582DF9792C8CE1E5001F516D /* MainChartHelper.swift in Sources */,
  3827. E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */,
  3828. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */,
  3829. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */,
  3830. 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */,
  3831. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */,
  3832. CC76E9512BD4812E008BEB61 /* Forecast+helper.swift in Sources */,
  3833. DD1745242C55526000211FAC /* SMBSettingsStateModel.swift in Sources */,
  3834. F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */,
  3835. 19F95FF729F10FEE00314DDC /* StatStateModel.swift in Sources */,
  3836. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */,
  3837. 195D80B42AF6973A00D25097 /* DynamicSettingsRootView.swift in Sources */,
  3838. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */,
  3839. DD09D47F2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift in Sources */,
  3840. CE7CA3512A064973004BE681 /* ApplyTempPresetIntent.swift in Sources */,
  3841. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */,
  3842. DD1745172C54389F00211FAC /* FeatureSettingsView.swift in Sources */,
  3843. DD9ECB712CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift in Sources */,
  3844. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */,
  3845. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */,
  3846. BDA25EFD2D261C0000035F34 /* WatchState.swift in Sources */,
  3847. CC6C406E2ACDD69E009B8058 /* RawFetchedProfile.swift in Sources */,
  3848. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */,
  3849. DD17453C2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift in Sources */,
  3850. F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */,
  3851. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */,
  3852. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */,
  3853. DD1E53592D273F26008F32A4 /* LoopStatusHelpView.swift in Sources */,
  3854. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */,
  3855. 195D80BB2AF6980B00D25097 /* DynamicSettingsStateModel.swift in Sources */,
  3856. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */,
  3857. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */,
  3858. 19012CDC291D2CB900FB8210 /* LoopStats.swift in Sources */,
  3859. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */,
  3860. DD17454B2C55C62800211FAC /* AutosensSettingsRootView.swift in Sources */,
  3861. DDF847DF2C5C28780049BB3B /* LiveActivitySettingsProvider.swift in Sources */,
  3862. DDB37CC52D05048F00D99BF4 /* ContactImageStorage.swift in Sources */,
  3863. BD54A95B2D28087C00F9C1EE /* OverridePresetWatch.swift in Sources */,
  3864. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */,
  3865. BDF34EBE2C0A31D100D51995 /* CustomNotification.swift in Sources */,
  3866. BDC2EA472C3045AD00E5BBD0 /* Override.swift in Sources */,
  3867. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */,
  3868. DDB37CC72D05127500D99BF4 /* FontExtensions.swift in Sources */,
  3869. 582DF9772C8CDBE7001F516D /* InsulinView.swift in Sources */,
  3870. F816826028DB441800054060 /* BluetoothTransmitter.swift in Sources */,
  3871. DD68889D2C386E17006E3C44 /* NightscoutExercise.swift in Sources */,
  3872. 5864E8592C42CFAE00294306 /* DeterminationStorage.swift in Sources */,
  3873. BD7DA9A72AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift in Sources */,
  3874. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */,
  3875. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */,
  3876. BD6EB2D62C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift in Sources */,
  3877. DD32CF982CC82463003686D6 /* TrioRemoteControl+Bolus.swift in Sources */,
  3878. F816825E28DB441200054060 /* HeartBeatManager.swift in Sources */,
  3879. 58F107742BD1A4D000B1A680 /* Determination+helper.swift in Sources */,
  3880. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */,
  3881. A33352ED40476125EBAC6EE0 /* CarbRatioEditorDataFlow.swift in Sources */,
  3882. 17A9D0899046B45E87834820 /* CarbRatioEditorProvider.swift in Sources */,
  3883. 69B9A368029F7EB39F525422 /* CarbRatioEditorStateModel.swift in Sources */,
  3884. 118DF76B2C5ECBC60067FEB7 /* CancelOverrideIntent.swift in Sources */,
  3885. 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */,
  3886. 98641AF4F92123DA668AB931 /* CarbRatioEditorRootView.swift in Sources */,
  3887. BDF34F902C10CF8C00D51995 /* CoreDataStack.swift in Sources */,
  3888. CEE9A65C2BBB41C800EB5194 /* CalibrationService.swift in Sources */,
  3889. 110AEDED2C51A0AE00615CC9 /* ShortcutsConfigProvider.swift in Sources */,
  3890. 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */,
  3891. 58D08B3A2C8DFECD00AA37D3 /* TempTargets.swift in Sources */,
  3892. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */,
  3893. CE7CA3542A064973004BE681 /* TempPresetsIntentRequest.swift in Sources */,
  3894. 58A3D5442C96DE11003F90FC /* TempTargetStored+Helper.swift in Sources */,
  3895. DD6B7CB42C7B71F700B75029 /* ForecastDisplayType.swift in Sources */,
  3896. DD5DC9F32CF3D9DD00AB8703 /* AdjustmentsStateModel+TempTargets.swift in Sources */,
  3897. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */,
  3898. DD17453A2C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift in Sources */,
  3899. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */,
  3900. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */,
  3901. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */,
  3902. 1967DFBE29D052C200759F30 /* Icons.swift in Sources */,
  3903. DDD163182C4C694000CD525A /* AdjustmentsRootView.swift in Sources */,
  3904. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */,
  3905. 110AEDEC2C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift in Sources */,
  3906. CE7CA3562A064973004BE681 /* StateIntentRequest.swift in Sources */,
  3907. 19E1F7EA29D082ED005C8D20 /* IconConfigProvider.swift in Sources */,
  3908. DD09D4822C5986F6003FEA5D /* CalendarEventSettingsRootView.swift in Sources */,
  3909. CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */,
  3910. DD5DC9F92CF3DAA900AB8703 /* RadioButton.swift in Sources */,
  3911. 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */,
  3912. CE7CA34F2A064973004BE681 /* BaseIntentsRequest.swift in Sources */,
  3913. E592A3772CEEC038009A472C /* ContactImageStateModel.swift in Sources */,
  3914. E592A3782CEEC038009A472C /* ContactImageDataFlow.swift in Sources */,
  3915. DDAA29852D2D1D9E006546A1 /* AdjustmentsRootView+TempTargets.swift in Sources */,
  3916. E592A3792CEEC038009A472C /* ContactImageRootView.swift in Sources */,
  3917. BDC531182D1062F200088832 /* ContactImageState.swift in Sources */,
  3918. E592A37A2CEEC038009A472C /* ContactImageProvider.swift in Sources */,
  3919. CE82E02728E869DF00473A9C /* AlertEntry.swift in Sources */,
  3920. DD30786A2D42F94000DE0490 /* GarminDevice.swift in Sources */,
  3921. 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */,
  3922. BD2FF1A02AE29D43005D1C5D /* CheckboxToggleStyle.swift in Sources */,
  3923. DDD163162C4C690300CD525A /* AdjustmentsDataFlow.swift in Sources */,
  3924. BDF34F932C10D0E100D51995 /* LiveActivityAttributes+Helper.swift in Sources */,
  3925. E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */,
  3926. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */,
  3927. 041D1E995A6AE92E9289DC49 /* TreatmentsDataFlow.swift in Sources */,
  3928. DD32CF9E2CC824C5003686D6 /* TrioRemoteControl+Override.swift in Sources */,
  3929. 23888883D4EA091C88480FF2 /* TreatmentsProvider.swift in Sources */,
  3930. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */,
  3931. 715120D22D3C2BB4005D9FB6 /* GlucoseNotificationsOption.swift in Sources */,
  3932. BDBAACFA2C2D439700370AAE /* OverrideData.swift in Sources */,
  3933. DD9ECB682CA99F4500AA7C45 /* TrioRemoteControl.swift in Sources */,
  3934. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */,
  3935. 69A31254F2451C20361D172F /* TreatmentsStateModel.swift in Sources */,
  3936. 1967DFC029D053AC00759F30 /* IconSelection.swift in Sources */,
  3937. 19D4E4EB29FC6A9F00351451 /* Charts.swift in Sources */,
  3938. BDC531162D10629000088832 /* ContactPicture.swift in Sources */,
  3939. FEFFA7A22929FE49007B8193 /* UIDevice+Extensions.swift in Sources */,
  3940. BD4E1A7C2D3686D900D21626 /* StartEndMarkerSetup.swift in Sources */,
  3941. F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */,
  3942. BDF34F852C10C62E00D51995 /* GlucoseData.swift in Sources */,
  3943. 19E1F7EC29D082FE005C8D20 /* IconConfigStateModel.swift in Sources */,
  3944. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */,
  3945. DD1745222C55524800211FAC /* SMBSettingsProvider.swift in Sources */,
  3946. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */,
  3947. 583684062BD178DB00070A60 /* GlucoseStored+helper.swift in Sources */,
  3948. 49B9B57F2D5768D2009C6B59 /* AdjustmentStored+Helper.swift in Sources */,
  3949. F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */,
  3950. BD1661312B82ADAB00256551 /* CustomProgressView.swift in Sources */,
  3951. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */,
  3952. 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */,
  3953. BDA7593E2D37CFC400E649A4 /* CarbEntryEditorView.swift in Sources */,
  3954. 118DF76A2C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift in Sources */,
  3955. 58645B992CA2D1A4008AFCE7 /* GlucoseSetup.swift in Sources */,
  3956. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */,
  3957. 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */,
  3958. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */,
  3959. DDD163122C4C689900CD525A /* AdjustmentsStateModel.swift in Sources */,
  3960. DD1745132C54169400211FAC /* DevicesView.swift in Sources */,
  3961. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */,
  3962. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */,
  3963. 19F95FFA29F1102A00314DDC /* StatRootView.swift in Sources */,
  3964. 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */,
  3965. 6BCF84DD2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  3966. 195D80B92AF697F700D25097 /* DynamicSettingsProvider.swift in Sources */,
  3967. DD09D47D2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift in Sources */,
  3968. DD09D47B2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift in Sources */,
  3969. 6BCF84DD2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  3970. DD1745202C55523E00211FAC /* SMBSettingsDataFlow.swift in Sources */,
  3971. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */,
  3972. DD1745292C55642100211FAC /* SettingInputSection.swift in Sources */,
  3973. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */,
  3974. F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */,
  3975. BDF34F952C10D27300D51995 /* DeterminationData.swift in Sources */,
  3976. BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */,
  3977. BD7DA9A52AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift in Sources */,
  3978. 6EADD581738D64431902AC0A /* (null) in Sources */,
  3979. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */,
  3980. DD5DC9FB2CF3E1B100AB8703 /* AdjustmentsStateModel+Helpers.swift in Sources */,
  3981. DDF847E42C5C288F0049BB3B /* LiveActivitySettingsRootView.swift in Sources */,
  3982. DD88C8E22C50420800F2D558 /* DefinitionRow.swift in Sources */,
  3983. B7C465E9472624D8A2BE2A6A /* (null) in Sources */,
  3984. 71D44AAB2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift in Sources */,
  3985. 320D030F724170A637F06D50 /* (null) in Sources */,
  3986. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */,
  3987. 19E1F7E829D082D0005C8D20 /* IconConfigDataFlow.swift in Sources */,
  3988. 5A2325522BFCBF55003518CA /* NightscoutUploadView.swift in Sources */,
  3989. E3A08AAE59538BC8A8ABE477 /* GlucoseNotificationSettingsDataFlow.swift in Sources */,
  3990. 0F7A65FBD2CD8D6477ED4539 /* GlucoseNotificationSettingsProvider.swift in Sources */,
  3991. 3171D2818C7C72CD1584BB5E /* GlucoseNotificationSettingsStateModel.swift in Sources */,
  3992. DDE179522C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift in Sources */,
  3993. DDE179532C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift in Sources */,
  3994. DDE179542C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift in Sources */,
  3995. BDC530FF2D0F6BE300088832 /* ContactImageManager.swift in Sources */,
  3996. BDC531122D1060FA00088832 /* ContactImageDetailView.swift in Sources */,
  3997. DDE179552C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift in Sources */,
  3998. DDE179562C910127003CDDB7 /* BolusStored+CoreDataClass.swift in Sources */,
  3999. DDE179572C910127003CDDB7 /* BolusStored+CoreDataProperties.swift in Sources */,
  4000. DDE179582C910127003CDDB7 /* ForecastValue+CoreDataClass.swift in Sources */,
  4001. DDE179592C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift in Sources */,
  4002. DDE1795A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift in Sources */,
  4003. DDE1795B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift in Sources */,
  4004. DDE1795E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift in Sources */,
  4005. BDDAF9EF2D00554500B34E7A /* SelectionPopoverView.swift in Sources */,
  4006. DDE1795F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift in Sources */,
  4007. DDE179602C910127003CDDB7 /* StatsData+CoreDataClass.swift in Sources */,
  4008. DDE179612C910127003CDDB7 /* StatsData+CoreDataProperties.swift in Sources */,
  4009. DDE179622C910127003CDDB7 /* Forecast+CoreDataClass.swift in Sources */,
  4010. DDE179632C910127003CDDB7 /* Forecast+CoreDataProperties.swift in Sources */,
  4011. DDE179642C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift in Sources */,
  4012. DDE179652C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift in Sources */,
  4013. BDC531142D10611D00088832 /* AddContactImageSheet.swift in Sources */,
  4014. DDE179662C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift in Sources */,
  4015. DDE179672C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift in Sources */,
  4016. DDE179682C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift in Sources */,
  4017. DDE179692C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift in Sources */,
  4018. DDE1796C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift in Sources */,
  4019. DDE1796D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift in Sources */,
  4020. DDE1796E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift in Sources */,
  4021. DDE1796F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift in Sources */,
  4022. DDE179702C910127003CDDB7 /* OverrideStored+CoreDataClass.swift in Sources */,
  4023. DD9ECB742CA9A0C300AA7C45 /* RemoteControlConfig.swift in Sources */,
  4024. DDE179712C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift in Sources */,
  4025. CD78BB94E43B249D60CC1A1B /* GlucoseNotificationSettingsRootView.swift in Sources */,
  4026. CE7CA3502A064973004BE681 /* CancelTempPresetIntent.swift in Sources */,
  4027. 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */,
  4028. 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */,
  4029. BD4ED4FD2CF9D5E8000EDC9C /* AppState.swift in Sources */,
  4030. DDF847DD2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift in Sources */,
  4031. 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */,
  4032. BDA25EE42D260CD500035F34 /* AppleWatchManager.swift in Sources */,
  4033. 0437CE46C12535A56504EC19 /* SnoozeRootView.swift in Sources */,
  4034. );
  4035. runOnlyForDeploymentPostprocessing = 0;
  4036. };
  4037. 38FCF3E925E9028E0078B0D1 /* Sources */ = {
  4038. isa = PBXSourcesBuildPhase;
  4039. buildActionMask = 2147483647;
  4040. files = (
  4041. CEE9A65E2BBC9F6500EB5194 /* CalibrationsTests.swift in Sources */,
  4042. CE1F6DD92BADF4620064EB8D /* PluginManagerTests.swift in Sources */,
  4043. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */,
  4044. );
  4045. runOnlyForDeploymentPostprocessing = 0;
  4046. };
  4047. 6B1A8D132B14D91500E76752 /* Sources */ = {
  4048. isa = PBXSourcesBuildPhase;
  4049. buildActionMask = 2147483647;
  4050. files = (
  4051. 6BCF84DE2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  4052. 6BCF84DE2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  4053. DDCEBF5B2CC1B76400DF4C36 /* LiveActivity+Helper.swift in Sources */,
  4054. 6B1A8D1E2B14D91600E76752 /* LiveActivityBundle.swift in Sources */,
  4055. 6B1A8D202B14D91600E76752 /* LiveActivity.swift in Sources */,
  4056. );
  4057. runOnlyForDeploymentPostprocessing = 0;
  4058. };
  4059. BD8207BF2D2B42E50023339D /* Sources */ = {
  4060. isa = PBXSourcesBuildPhase;
  4061. buildActionMask = 2147483647;
  4062. files = (
  4063. DD09D6462D2B553A000D82C9 /* TrioWatchComplication.swift in Sources */,
  4064. );
  4065. runOnlyForDeploymentPostprocessing = 0;
  4066. };
  4067. BDFF79782D25AA870016C40C /* Sources */ = {
  4068. isa = PBXSourcesBuildPhase;
  4069. buildActionMask = 2147483647;
  4070. files = (
  4071. BDA25F222D26D62800035F34 /* BolusInputView.swift in Sources */,
  4072. BDFF7A882D25F97D0016C40C /* TrioMainWatchView.swift in Sources */,
  4073. BDA25F202D26D5FE00035F34 /* CarbsInputView.swift in Sources */,
  4074. BDA25F1C2D26BD0700035F34 /* TrendShape.swift in Sources */,
  4075. BDFF7A892D25F97D0016C40C /* TrioWatchApp.swift in Sources */,
  4076. DD09D5C72D29EB2F000D82C9 /* Helper+Enums.swift in Sources */,
  4077. BD54A9742D281AEF00F9C1EE /* TempTargetPresetWatch.swift in Sources */,
  4078. BD54A95C2D2808A300F9C1EE /* OverridePresetWatch.swift in Sources */,
  4079. BD54A9592D27FB7800F9C1EE /* OverridePresetsView.swift in Sources */,
  4080. BDA25F1E2D26D5DD00035F34 /* GlucoseChartView.swift in Sources */,
  4081. DD6F63CC2D27F615007D94CF /* TreatmentMenuView.swift in Sources */,
  4082. DD3A3CE72D29C93F00AE478E /* Helper+Extensions.swift in Sources */,
  4083. DD246F062D2836AA0027DDE0 /* GlucoseTrendView.swift in Sources */,
  4084. BD432CA22D2F4E4000D1EB79 /* WatchMessageKeys.swift in Sources */,
  4085. DD8262CB2D289297009F6F62 /* BolusConfirmationView.swift in Sources */,
  4086. BD54A9712D281A8100F9C1EE /* TempTargetPresetsView.swift in Sources */,
  4087. DD3A3CE92D29C97800AE478E /* Helper+ButtonStyles.swift in Sources */,
  4088. BDAE40002D372BAD009C12B1 /* WatchState+Requests.swift in Sources */,
  4089. BDA25EE62D260D5E00035F34 /* WatchState.swift in Sources */,
  4090. BD04ECCE2D29952A008C5FEB /* BolusProgressOverlay.swift in Sources */,
  4091. DD09D5C92D29F3D0000D82C9 /* AcknowledgementPendingView.swift in Sources */,
  4092. );
  4093. runOnlyForDeploymentPostprocessing = 0;
  4094. };
  4095. BDFF79872D25AA890016C40C /* Sources */ = {
  4096. isa = PBXSourcesBuildPhase;
  4097. buildActionMask = 2147483647;
  4098. files = (
  4099. BDFF7A8B2D25F97D0016C40C /* Unit Tests.swift in Sources */,
  4100. );
  4101. runOnlyForDeploymentPostprocessing = 0;
  4102. };
  4103. /* End PBXSourcesBuildPhase section */
  4104. /* Begin PBXTargetDependency section */
  4105. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */ = {
  4106. isa = PBXTargetDependency;
  4107. target = 388E595725AD948C0019842D /* Trio */;
  4108. targetProxy = 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */;
  4109. };
  4110. 6B1A8D272B14D91700E76752 /* PBXTargetDependency */ = {
  4111. isa = PBXTargetDependency;
  4112. target = 6B1A8D162B14D91500E76752 /* LiveActivityExtension */;
  4113. targetProxy = 6B1A8D262B14D91700E76752 /* PBXContainerItemProxy */;
  4114. };
  4115. BD8207CD2D2B42E70023339D /* PBXTargetDependency */ = {
  4116. isa = PBXTargetDependency;
  4117. target = BD8207C22D2B42E50023339D /* Trio Watch Complication Extension */;
  4118. targetProxy = BD8207CC2D2B42E70023339D /* PBXContainerItemProxy */;
  4119. };
  4120. BDFF798D2D25AA890016C40C /* PBXTargetDependency */ = {
  4121. isa = PBXTargetDependency;
  4122. target = BDFF797B2D25AA870016C40C /* Trio Watch App */;
  4123. targetProxy = BDFF798C2D25AA890016C40C /* PBXContainerItemProxy */;
  4124. };
  4125. BDFF799E2D25AA890016C40C /* PBXTargetDependency */ = {
  4126. isa = PBXTargetDependency;
  4127. target = BDFF797B2D25AA870016C40C /* Trio Watch App */;
  4128. targetProxy = BDFF799D2D25AA890016C40C /* PBXContainerItemProxy */;
  4129. };
  4130. /* End PBXTargetDependency section */
  4131. /* Begin PBXVariantGroup section */
  4132. 1927C8E82744606D00347C69 /* InfoPlist.strings */ = {
  4133. isa = PBXVariantGroup;
  4134. children = (
  4135. 1927C8E92744611700347C69 /* ar */,
  4136. 1927C8EA2744611800347C69 /* ca */,
  4137. 1927C8EB2744611900347C69 /* zh-Hans */,
  4138. 1927C8EC2744611A00347C69 /* da */,
  4139. 1927C8ED2744611B00347C69 /* fi */,
  4140. 1927C8EE2744611C00347C69 /* nl */,
  4141. 1927C8EF2744611D00347C69 /* fr */,
  4142. 1927C8F02744611E00347C69 /* de */,
  4143. 1927C8F12744611E00347C69 /* he */,
  4144. 1927C8F22744611F00347C69 /* it */,
  4145. 1927C8F32744612000347C69 /* nb */,
  4146. 1927C8F42744612100347C69 /* pl */,
  4147. 1927C8F52744612100347C69 /* pt-BR */,
  4148. 1927C8F62744612200347C69 /* pt-PT */,
  4149. 1927C8F72744612300347C69 /* ru */,
  4150. 1927C8F82744612400347C69 /* es */,
  4151. 1927C8F92744612400347C69 /* sv */,
  4152. 1927C8FA2744612500347C69 /* tr */,
  4153. 1927C8FB2744612600347C69 /* uk */,
  4154. 1927C8FE274489BA00347C69 /* Base */,
  4155. 19C166682756EFBD00ED12E3 /* sk */,
  4156. 193F1E392B44C13B00525770 /* hu */,
  4157. 193F1E3B2B44C14800525770 /* vi */,
  4158. );
  4159. name = InfoPlist.strings;
  4160. sourceTree = "<group>";
  4161. };
  4162. 198377D4266BFFF6004DE65E /* Localizable.strings */ = {
  4163. isa = PBXVariantGroup;
  4164. children = (
  4165. 198377D3266BFFF6004DE65E /* en */,
  4166. 198377D5266C0A05004DE65E /* ar */,
  4167. 198377D6266C0A0A004DE65E /* ca */,
  4168. 198377D7266C0A15004DE65E /* zh-Hans */,
  4169. 198377D8266C0A1C004DE65E /* da */,
  4170. 198377D9266C0A21004DE65E /* nl */,
  4171. 198377DA266C0A2B004DE65E /* fr */,
  4172. 198377DB266C0A32004DE65E /* de */,
  4173. 198377DC266C0A3C004DE65E /* he */,
  4174. 198377DD266C0A51004DE65E /* it */,
  4175. 198377DE266C0A69004DE65E /* nb */,
  4176. 198377DF266C0A7F004DE65E /* pl */,
  4177. 198377E0266C0AB5004DE65E /* ru */,
  4178. 198377E1266C0ABF004DE65E /* es */,
  4179. 198377E2266C0AC8004DE65E /* sv */,
  4180. 198377E3266C0ADC004DE65E /* tr */,
  4181. 198377E4266C13D2004DE65E /* uk */,
  4182. 1918333A26ADA46800F45722 /* fi */,
  4183. 199732B4271B72DD00129A3F /* pt-PT */,
  4184. 199732B5271B9EE900129A3F /* pt-BR */,
  4185. 19C166692756EFBD00ED12E3 /* sk */,
  4186. 193F1E3A2B44C13B00525770 /* hu */,
  4187. 193F1E3C2B44C14800525770 /* vi */,
  4188. );
  4189. name = Localizable.strings;
  4190. sourceTree = "<group>";
  4191. };
  4192. /* End PBXVariantGroup section */
  4193. /* Begin XCBuildConfiguration section */
  4194. 388E596525AD948E0019842D /* Debug */ = {
  4195. isa = XCBuildConfiguration;
  4196. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  4197. buildSettings = {
  4198. ALWAYS_SEARCH_USER_PATHS = NO;
  4199. APP_GROUP_ID = "group.$(BUNDLE_IDENTIFIER).trio-app-group";
  4200. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4201. CLANG_ANALYZER_NONNULL = YES;
  4202. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4203. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4204. CLANG_CXX_LIBRARY = "libc++";
  4205. CLANG_ENABLE_MODULES = YES;
  4206. CLANG_ENABLE_OBJC_ARC = YES;
  4207. CLANG_ENABLE_OBJC_WEAK = YES;
  4208. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4209. CLANG_WARN_BOOL_CONVERSION = YES;
  4210. CLANG_WARN_COMMA = YES;
  4211. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4212. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4213. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4214. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4215. CLANG_WARN_EMPTY_BODY = YES;
  4216. CLANG_WARN_ENUM_CONVERSION = YES;
  4217. CLANG_WARN_INFINITE_RECURSION = YES;
  4218. CLANG_WARN_INT_CONVERSION = YES;
  4219. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4220. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4221. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4222. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4223. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4224. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4225. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4226. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4227. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4228. CLANG_WARN_UNREACHABLE_CODE = YES;
  4229. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4230. COPY_PHASE_STRIP = NO;
  4231. CURRENT_PROJECT_VERSION = "$(APP_BUILD_NUMBER)";
  4232. DEBUG_INFORMATION_FORMAT = dwarf;
  4233. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4234. ENABLE_TESTABILITY = YES;
  4235. GCC_C_LANGUAGE_STANDARD = gnu11;
  4236. GCC_DYNAMIC_NO_PIC = NO;
  4237. GCC_NO_COMMON_BLOCKS = YES;
  4238. GCC_OPTIMIZATION_LEVEL = 0;
  4239. GCC_PREPROCESSOR_DEFINITIONS = (
  4240. "DEBUG=1",
  4241. "$(inherited)",
  4242. );
  4243. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4244. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4245. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4246. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4247. GCC_WARN_UNUSED_FUNCTION = YES;
  4248. GCC_WARN_UNUSED_VARIABLE = YES;
  4249. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4250. MARKETING_VERSION = "$(APP_VERSION)";
  4251. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  4252. MTL_FAST_MATH = YES;
  4253. ONLY_ACTIVE_ARCH = YES;
  4254. SDKROOT = iphoneos;
  4255. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  4256. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4257. };
  4258. name = Debug;
  4259. };
  4260. 388E596625AD948E0019842D /* Release */ = {
  4261. isa = XCBuildConfiguration;
  4262. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  4263. buildSettings = {
  4264. ALWAYS_SEARCH_USER_PATHS = NO;
  4265. APP_GROUP_ID = "group.$(BUNDLE_IDENTIFIER).trio-app-group";
  4266. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4267. CLANG_ANALYZER_NONNULL = YES;
  4268. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4269. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4270. CLANG_CXX_LIBRARY = "libc++";
  4271. CLANG_ENABLE_MODULES = YES;
  4272. CLANG_ENABLE_OBJC_ARC = YES;
  4273. CLANG_ENABLE_OBJC_WEAK = YES;
  4274. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4275. CLANG_WARN_BOOL_CONVERSION = YES;
  4276. CLANG_WARN_COMMA = YES;
  4277. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4278. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4279. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4280. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4281. CLANG_WARN_EMPTY_BODY = YES;
  4282. CLANG_WARN_ENUM_CONVERSION = YES;
  4283. CLANG_WARN_INFINITE_RECURSION = YES;
  4284. CLANG_WARN_INT_CONVERSION = YES;
  4285. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4286. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4287. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4288. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4289. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4290. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4291. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4292. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4293. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4294. CLANG_WARN_UNREACHABLE_CODE = YES;
  4295. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4296. COPY_PHASE_STRIP = NO;
  4297. CURRENT_PROJECT_VERSION = "$(APP_BUILD_NUMBER)";
  4298. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4299. ENABLE_NS_ASSERTIONS = NO;
  4300. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4301. GCC_C_LANGUAGE_STANDARD = gnu11;
  4302. GCC_NO_COMMON_BLOCKS = YES;
  4303. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4304. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4305. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4306. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4307. GCC_WARN_UNUSED_FUNCTION = YES;
  4308. GCC_WARN_UNUSED_VARIABLE = YES;
  4309. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4310. MARKETING_VERSION = "$(APP_VERSION)";
  4311. MTL_ENABLE_DEBUG_INFO = NO;
  4312. MTL_FAST_MATH = YES;
  4313. SDKROOT = iphoneos;
  4314. SWIFT_COMPILATION_MODE = wholemodule;
  4315. SWIFT_OPTIMIZATION_LEVEL = "-O";
  4316. VALIDATE_PRODUCT = YES;
  4317. };
  4318. name = Release;
  4319. };
  4320. 388E596825AD948E0019842D /* Debug */ = {
  4321. isa = XCBuildConfiguration;
  4322. buildSettings = {
  4323. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  4324. APP_GROUP_ID = "$(APP_GROUP_ID)";
  4325. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  4326. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4327. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  4328. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  4329. CODE_SIGN_ENTITLEMENTS = Trio/Resources/Trio.entitlements;
  4330. CODE_SIGN_IDENTITY = "Apple Development";
  4331. CODE_SIGN_STYLE = Automatic;
  4332. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  4333. DEVELOPER_TEAM = "$(DEVELOPER_TEAM)";
  4334. DEVELOPMENT_ASSET_PATHS = "";
  4335. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4336. ENABLE_PREVIEWS = YES;
  4337. INFOPLIST_FILE = Trio/Resources/Info.plist;
  4338. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4339. LD_RUNPATH_SEARCH_PATHS = (
  4340. "$(inherited)",
  4341. "@executable_path/Frameworks",
  4342. );
  4343. LIBRARY_SEARCH_PATHS = (
  4344. "$(inherited)",
  4345. "$(SDKROOT)/usr/lib/swift",
  4346. );
  4347. MARKETING_VERSION = "$(APP_VERSION)";
  4348. OTHER_LDFLAGS = (
  4349. "-weak_framework",
  4350. CoreNFC,
  4351. "-ObjC",
  4352. );
  4353. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  4354. PRODUCT_NAME = "$(TARGET_NAME)";
  4355. PROVISIONING_PROFILE_SPECIFIER = "";
  4356. SWIFT_VERSION = 5.0;
  4357. TARGETED_DEVICE_FAMILY = "1,2";
  4358. };
  4359. name = Debug;
  4360. };
  4361. 388E596925AD948E0019842D /* Release */ = {
  4362. isa = XCBuildConfiguration;
  4363. buildSettings = {
  4364. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  4365. APP_GROUP_ID = "$(APP_GROUP_ID)";
  4366. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  4367. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4368. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  4369. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  4370. CODE_SIGN_ENTITLEMENTS = Trio/Resources/Trio.entitlements;
  4371. CODE_SIGN_IDENTITY = "Apple Development";
  4372. CODE_SIGN_STYLE = Automatic;
  4373. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  4374. DEVELOPER_TEAM = "$(DEVELOPER_TEAM)";
  4375. DEVELOPMENT_ASSET_PATHS = "";
  4376. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4377. ENABLE_PREVIEWS = YES;
  4378. INFOPLIST_FILE = Trio/Resources/Info.plist;
  4379. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4380. LD_RUNPATH_SEARCH_PATHS = (
  4381. "$(inherited)",
  4382. "@executable_path/Frameworks",
  4383. );
  4384. LIBRARY_SEARCH_PATHS = (
  4385. "$(inherited)",
  4386. "$(SDKROOT)/usr/lib/swift",
  4387. );
  4388. MARKETING_VERSION = "$(APP_VERSION)";
  4389. OTHER_LDFLAGS = (
  4390. "-weak_framework",
  4391. CoreNFC,
  4392. "-ObjC",
  4393. );
  4394. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  4395. PRODUCT_NAME = "$(TARGET_NAME)";
  4396. PROVISIONING_PROFILE_SPECIFIER = "";
  4397. SWIFT_VERSION = 5.0;
  4398. TARGETED_DEVICE_FAMILY = "1,2";
  4399. };
  4400. name = Release;
  4401. };
  4402. 38FCF3F525E9028E0078B0D1 /* Debug */ = {
  4403. isa = XCBuildConfiguration;
  4404. buildSettings = {
  4405. BUNDLE_LOADER = "$(TEST_HOST)";
  4406. CODE_SIGN_STYLE = Automatic;
  4407. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4408. INFOPLIST_FILE = TrioTests/Info.plist;
  4409. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4410. LD_RUNPATH_SEARCH_PATHS = (
  4411. "$(inherited)",
  4412. "@executable_path/Frameworks",
  4413. "@loader_path/Frameworks",
  4414. );
  4415. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).TrioTests";
  4416. PRODUCT_NAME = "$(TARGET_NAME)";
  4417. SWIFT_VERSION = 5.0;
  4418. TARGETED_DEVICE_FAMILY = "1,2";
  4419. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Trio.app/Trio";
  4420. };
  4421. name = Debug;
  4422. };
  4423. 38FCF3F625E9028E0078B0D1 /* Release */ = {
  4424. isa = XCBuildConfiguration;
  4425. buildSettings = {
  4426. BUNDLE_LOADER = "$(TEST_HOST)";
  4427. CODE_SIGN_STYLE = Automatic;
  4428. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4429. INFOPLIST_FILE = TrioTests/Info.plist;
  4430. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4431. LD_RUNPATH_SEARCH_PATHS = (
  4432. "$(inherited)",
  4433. "@executable_path/Frameworks",
  4434. "@loader_path/Frameworks",
  4435. );
  4436. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).TrioTests";
  4437. PRODUCT_NAME = "$(TARGET_NAME)";
  4438. SWIFT_VERSION = 5.0;
  4439. TARGETED_DEVICE_FAMILY = "1,2";
  4440. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Trio.app/Trio";
  4441. };
  4442. name = Release;
  4443. };
  4444. 6B1A8D2A2B14D91800E76752 /* Debug */ = {
  4445. isa = XCBuildConfiguration;
  4446. buildSettings = {
  4447. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4448. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4449. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4450. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4451. CODE_SIGN_STYLE = Automatic;
  4452. CURRENT_PROJECT_VERSION = 1;
  4453. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4454. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4455. GCC_C_LANGUAGE_STANDARD = gnu17;
  4456. GENERATE_INFOPLIST_FILE = YES;
  4457. INFOPLIST_FILE = LiveActivity/Info.plist;
  4458. INFOPLIST_KEY_CFBundleDisplayName = LiveActivity;
  4459. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  4460. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4461. LD_RUNPATH_SEARCH_PATHS = (
  4462. "$(inherited)",
  4463. "@executable_path/Frameworks",
  4464. "@executable_path/../../Frameworks",
  4465. );
  4466. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4467. MARKETING_VERSION = 1.0;
  4468. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).LiveActivity";
  4469. PRODUCT_NAME = "$(TARGET_NAME)";
  4470. SKIP_INSTALL = YES;
  4471. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  4472. SWIFT_EMIT_LOC_STRINGS = YES;
  4473. SWIFT_VERSION = 5.0;
  4474. TARGETED_DEVICE_FAMILY = "1,2";
  4475. };
  4476. name = Debug;
  4477. };
  4478. 6B1A8D2B2B14D91800E76752 /* Release */ = {
  4479. isa = XCBuildConfiguration;
  4480. buildSettings = {
  4481. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4482. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4483. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4484. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4485. CODE_SIGN_STYLE = Automatic;
  4486. CURRENT_PROJECT_VERSION = 1;
  4487. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4488. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4489. GCC_C_LANGUAGE_STANDARD = gnu17;
  4490. GENERATE_INFOPLIST_FILE = YES;
  4491. INFOPLIST_FILE = LiveActivity/Info.plist;
  4492. INFOPLIST_KEY_CFBundleDisplayName = LiveActivity;
  4493. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  4494. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4495. LD_RUNPATH_SEARCH_PATHS = (
  4496. "$(inherited)",
  4497. "@executable_path/Frameworks",
  4498. "@executable_path/../../Frameworks",
  4499. );
  4500. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4501. MARKETING_VERSION = 1.0;
  4502. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).LiveActivity";
  4503. PRODUCT_NAME = "$(TARGET_NAME)";
  4504. SKIP_INSTALL = YES;
  4505. SWIFT_EMIT_LOC_STRINGS = YES;
  4506. SWIFT_VERSION = 5.0;
  4507. TARGETED_DEVICE_FAMILY = "1,2";
  4508. };
  4509. name = Release;
  4510. };
  4511. BD8207D02D2B42E80023339D /* Debug */ = {
  4512. isa = XCBuildConfiguration;
  4513. buildSettings = {
  4514. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4515. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4516. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4517. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4518. CODE_SIGN_IDENTITY = "Apple Development";
  4519. CODE_SIGN_STYLE = Automatic;
  4520. CURRENT_PROJECT_VERSION = 1;
  4521. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4522. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4523. GCC_C_LANGUAGE_STANDARD = gnu17;
  4524. GENERATE_INFOPLIST_FILE = YES;
  4525. INFOPLIST_FILE = "Trio Watch Complication/Info.plist";
  4526. INFOPLIST_KEY_CFBundleDisplayName = Trio;
  4527. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  4528. LD_RUNPATH_SEARCH_PATHS = (
  4529. "$(inherited)",
  4530. "@executable_path/Frameworks",
  4531. "@executable_path/../../Frameworks",
  4532. "@executable_path/../../../../Frameworks",
  4533. );
  4534. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4535. MARKETING_VERSION = 1.0;
  4536. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.TrioWatchComplication";
  4537. PRODUCT_NAME = "$(TARGET_NAME)";
  4538. SDKROOT = watchos;
  4539. SKIP_INSTALL = YES;
  4540. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  4541. SWIFT_EMIT_LOC_STRINGS = YES;
  4542. SWIFT_VERSION = 5.0;
  4543. TARGETED_DEVICE_FAMILY = 4;
  4544. WATCHOS_DEPLOYMENT_TARGET = 10;
  4545. };
  4546. name = Debug;
  4547. };
  4548. BD8207D12D2B42E80023339D /* Release */ = {
  4549. isa = XCBuildConfiguration;
  4550. buildSettings = {
  4551. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4552. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4553. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4554. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4555. CODE_SIGN_IDENTITY = "Apple Development";
  4556. CODE_SIGN_STYLE = Automatic;
  4557. CURRENT_PROJECT_VERSION = 1;
  4558. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4559. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4560. GCC_C_LANGUAGE_STANDARD = gnu17;
  4561. GENERATE_INFOPLIST_FILE = YES;
  4562. INFOPLIST_FILE = "Trio Watch Complication/Info.plist";
  4563. INFOPLIST_KEY_CFBundleDisplayName = Trio;
  4564. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  4565. LD_RUNPATH_SEARCH_PATHS = (
  4566. "$(inherited)",
  4567. "@executable_path/Frameworks",
  4568. "@executable_path/../../Frameworks",
  4569. "@executable_path/../../../../Frameworks",
  4570. );
  4571. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4572. MARKETING_VERSION = 1.0;
  4573. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.TrioWatchComplication";
  4574. PRODUCT_NAME = "$(TARGET_NAME)";
  4575. SDKROOT = watchos;
  4576. SKIP_INSTALL = YES;
  4577. SWIFT_EMIT_LOC_STRINGS = YES;
  4578. SWIFT_VERSION = 5.0;
  4579. TARGETED_DEVICE_FAMILY = 4;
  4580. WATCHOS_DEPLOYMENT_TARGET = 10;
  4581. };
  4582. name = Release;
  4583. };
  4584. BDFF79A12D25AA890016C40C /* Debug */ = {
  4585. isa = XCBuildConfiguration;
  4586. buildSettings = {
  4587. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4588. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4589. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4590. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4591. CODE_SIGN_IDENTITY = "Apple Development";
  4592. CODE_SIGN_STYLE = Automatic;
  4593. CURRENT_PROJECT_VERSION = 1;
  4594. DEVELOPMENT_ASSET_PATHS = "\"Trio Watch App Extension/Preview Content\"";
  4595. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4596. ENABLE_PREVIEWS = YES;
  4597. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4598. GCC_C_LANGUAGE_STANDARD = gnu17;
  4599. GENERATE_INFOPLIST_FILE = YES;
  4600. INFOPLIST_KEY_CFBundleDisplayName = Trio;
  4601. INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  4602. INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
  4603. LD_RUNPATH_SEARCH_PATHS = (
  4604. "$(inherited)",
  4605. "@executable_path/Frameworks",
  4606. );
  4607. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4608. MARKETING_VERSION = 1.0;
  4609. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
  4610. PRODUCT_NAME = "$(TARGET_NAME)";
  4611. SDKROOT = watchos;
  4612. SKIP_INSTALL = YES;
  4613. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  4614. SWIFT_EMIT_LOC_STRINGS = YES;
  4615. SWIFT_VERSION = 5.0;
  4616. TARGETED_DEVICE_FAMILY = 4;
  4617. WATCHOS_DEPLOYMENT_TARGET = 10;
  4618. };
  4619. name = Debug;
  4620. };
  4621. BDFF79A22D25AA890016C40C /* Release */ = {
  4622. isa = XCBuildConfiguration;
  4623. buildSettings = {
  4624. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4625. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4626. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4627. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4628. CODE_SIGN_IDENTITY = "Apple Development";
  4629. CODE_SIGN_STYLE = Automatic;
  4630. CURRENT_PROJECT_VERSION = 1;
  4631. DEVELOPMENT_ASSET_PATHS = "\"Trio Watch App Extension/Preview Content\"";
  4632. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4633. ENABLE_PREVIEWS = YES;
  4634. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4635. GCC_C_LANGUAGE_STANDARD = gnu17;
  4636. GENERATE_INFOPLIST_FILE = YES;
  4637. INFOPLIST_KEY_CFBundleDisplayName = Trio;
  4638. INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  4639. INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
  4640. LD_RUNPATH_SEARCH_PATHS = (
  4641. "$(inherited)",
  4642. "@executable_path/Frameworks",
  4643. );
  4644. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4645. MARKETING_VERSION = 1.0;
  4646. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
  4647. PRODUCT_NAME = "$(TARGET_NAME)";
  4648. SDKROOT = watchos;
  4649. SKIP_INSTALL = YES;
  4650. SWIFT_EMIT_LOC_STRINGS = YES;
  4651. SWIFT_VERSION = 5.0;
  4652. TARGETED_DEVICE_FAMILY = 4;
  4653. WATCHOS_DEPLOYMENT_TARGET = 10;
  4654. };
  4655. name = Release;
  4656. };
  4657. BDFF79A42D25AA890016C40C /* Debug */ = {
  4658. isa = XCBuildConfiguration;
  4659. buildSettings = {
  4660. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4661. BUNDLE_LOADER = "$(TEST_HOST)";
  4662. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4663. CODE_SIGN_STYLE = Automatic;
  4664. CURRENT_PROJECT_VERSION = 1;
  4665. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4666. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4667. GCC_C_LANGUAGE_STANDARD = gnu17;
  4668. GENERATE_INFOPLIST_FILE = YES;
  4669. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4670. MARKETING_VERSION = 1.0;
  4671. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).TrioWatchAppTests";
  4672. PRODUCT_NAME = "$(TARGET_NAME)";
  4673. SDKROOT = watchos;
  4674. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  4675. SWIFT_EMIT_LOC_STRINGS = NO;
  4676. SWIFT_VERSION = 5.0;
  4677. TARGETED_DEVICE_FAMILY = 4;
  4678. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Trio Watch App.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Trio Watch App";
  4679. WATCHOS_DEPLOYMENT_TARGET = 10;
  4680. };
  4681. name = Debug;
  4682. };
  4683. BDFF79A52D25AA890016C40C /* Release */ = {
  4684. isa = XCBuildConfiguration;
  4685. buildSettings = {
  4686. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4687. BUNDLE_LOADER = "$(TEST_HOST)";
  4688. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4689. CODE_SIGN_STYLE = Automatic;
  4690. CURRENT_PROJECT_VERSION = 1;
  4691. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4692. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4693. GCC_C_LANGUAGE_STANDARD = gnu17;
  4694. GENERATE_INFOPLIST_FILE = YES;
  4695. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4696. MARKETING_VERSION = 1.0;
  4697. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).TrioWatchAppTests";
  4698. PRODUCT_NAME = "$(TARGET_NAME)";
  4699. SDKROOT = watchos;
  4700. SWIFT_EMIT_LOC_STRINGS = NO;
  4701. SWIFT_VERSION = 5.0;
  4702. TARGETED_DEVICE_FAMILY = 4;
  4703. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Trio Watch App.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Trio Watch App";
  4704. WATCHOS_DEPLOYMENT_TARGET = 10;
  4705. };
  4706. name = Release;
  4707. };
  4708. /* End XCBuildConfiguration section */
  4709. /* Begin XCConfigurationList section */
  4710. 388E595325AD948C0019842D /* Build configuration list for PBXProject "Trio" */ = {
  4711. isa = XCConfigurationList;
  4712. buildConfigurations = (
  4713. 388E596525AD948E0019842D /* Debug */,
  4714. 388E596625AD948E0019842D /* Release */,
  4715. );
  4716. defaultConfigurationIsVisible = 0;
  4717. defaultConfigurationName = Debug;
  4718. };
  4719. 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "Trio" */ = {
  4720. isa = XCConfigurationList;
  4721. buildConfigurations = (
  4722. 388E596825AD948E0019842D /* Debug */,
  4723. 388E596925AD948E0019842D /* Release */,
  4724. );
  4725. defaultConfigurationIsVisible = 0;
  4726. defaultConfigurationName = Debug;
  4727. };
  4728. 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "TrioTests" */ = {
  4729. isa = XCConfigurationList;
  4730. buildConfigurations = (
  4731. 38FCF3F525E9028E0078B0D1 /* Debug */,
  4732. 38FCF3F625E9028E0078B0D1 /* Release */,
  4733. );
  4734. defaultConfigurationIsVisible = 0;
  4735. defaultConfigurationName = Debug;
  4736. };
  4737. 6B1A8D292B14D91800E76752 /* Build configuration list for PBXNativeTarget "LiveActivityExtension" */ = {
  4738. isa = XCConfigurationList;
  4739. buildConfigurations = (
  4740. 6B1A8D2A2B14D91800E76752 /* Debug */,
  4741. 6B1A8D2B2B14D91800E76752 /* Release */,
  4742. );
  4743. defaultConfigurationIsVisible = 0;
  4744. defaultConfigurationName = Debug;
  4745. };
  4746. BD8207D32D2B42E80023339D /* Build configuration list for PBXNativeTarget "Trio Watch Complication Extension" */ = {
  4747. isa = XCConfigurationList;
  4748. buildConfigurations = (
  4749. BD8207D02D2B42E80023339D /* Debug */,
  4750. BD8207D12D2B42E80023339D /* Release */,
  4751. );
  4752. defaultConfigurationIsVisible = 0;
  4753. defaultConfigurationName = Debug;
  4754. };
  4755. BDFF79A02D25AA890016C40C /* Build configuration list for PBXNativeTarget "Trio Watch App" */ = {
  4756. isa = XCConfigurationList;
  4757. buildConfigurations = (
  4758. BDFF79A12D25AA890016C40C /* Debug */,
  4759. BDFF79A22D25AA890016C40C /* Release */,
  4760. );
  4761. defaultConfigurationIsVisible = 0;
  4762. defaultConfigurationName = Debug;
  4763. };
  4764. BDFF79A32D25AA890016C40C /* Build configuration list for PBXNativeTarget "Trio Watch AppTests" */ = {
  4765. isa = XCConfigurationList;
  4766. buildConfigurations = (
  4767. BDFF79A42D25AA890016C40C /* Debug */,
  4768. BDFF79A52D25AA890016C40C /* Release */,
  4769. );
  4770. defaultConfigurationIsVisible = 0;
  4771. defaultConfigurationName = Debug;
  4772. };
  4773. /* End XCConfigurationList section */
  4774. /* Begin XCRemoteSwiftPackageReference section */
  4775. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */ = {
  4776. isa = XCRemoteSwiftPackageReference;
  4777. repositoryURL = "https://github.com/Swinject/Swinject";
  4778. requirement = {
  4779. kind = upToNextMajorVersion;
  4780. minimumVersion = 2.7.1;
  4781. };
  4782. };
  4783. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */ = {
  4784. isa = XCRemoteSwiftPackageReference;
  4785. repositoryURL = "https://github.com/apple/swift-algorithms";
  4786. requirement = {
  4787. kind = upToNextMajorVersion;
  4788. minimumVersion = 0.0.3;
  4789. };
  4790. };
  4791. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */ = {
  4792. isa = XCRemoteSwiftPackageReference;
  4793. repositoryURL = "https://github.com/malcommac/SwiftDate";
  4794. requirement = {
  4795. kind = upToNextMajorVersion;
  4796. minimumVersion = 6.3.1;
  4797. };
  4798. };
  4799. 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */ = {
  4800. isa = XCRemoteSwiftPackageReference;
  4801. repositoryURL = "https://github.com/SwiftKickMobile/SwiftMessages";
  4802. requirement = {
  4803. kind = upToNextMajorVersion;
  4804. minimumVersion = 9.0.0;
  4805. };
  4806. };
  4807. B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */ = {
  4808. isa = XCRemoteSwiftPackageReference;
  4809. repositoryURL = "https://github.com/maxkonovalov/MKRingProgressView.git";
  4810. requirement = {
  4811. branch = master;
  4812. kind = branch;
  4813. };
  4814. };
  4815. CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */ = {
  4816. isa = XCRemoteSwiftPackageReference;
  4817. repositoryURL = "https://github.com/ivanschuetz/SwiftCharts.git";
  4818. requirement = {
  4819. branch = master;
  4820. kind = branch;
  4821. };
  4822. };
  4823. /* End XCRemoteSwiftPackageReference section */
  4824. /* Begin XCSwiftPackageProductDependency section */
  4825. 3811DE0F25C9D37700A708ED /* Swinject */ = {
  4826. isa = XCSwiftPackageProductDependency;
  4827. package = 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */;
  4828. productName = Swinject;
  4829. };
  4830. 3833B46C26012030003021B3 /* Algorithms */ = {
  4831. isa = XCSwiftPackageProductDependency;
  4832. package = 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */;
  4833. productName = Algorithms;
  4834. };
  4835. 38B17B6525DD90E0005CAE3D /* SwiftDate */ = {
  4836. isa = XCSwiftPackageProductDependency;
  4837. package = 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */;
  4838. productName = SwiftDate;
  4839. };
  4840. 38DF1788276FC8C400B3528F /* SwiftMessages */ = {
  4841. isa = XCSwiftPackageProductDependency;
  4842. package = 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */;
  4843. productName = SwiftMessages;
  4844. };
  4845. B958F1B62BA0711600484851 /* MKRingProgressView */ = {
  4846. isa = XCSwiftPackageProductDependency;
  4847. package = B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */;
  4848. productName = MKRingProgressView;
  4849. };
  4850. CEB434FC28B90B7C00B70274 /* SwiftCharts */ = {
  4851. isa = XCSwiftPackageProductDependency;
  4852. package = CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */;
  4853. productName = SwiftCharts;
  4854. };
  4855. /* End XCSwiftPackageProductDependency section */
  4856. /* Begin XCVersionGroup section */
  4857. DDD1631D2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld */ = {
  4858. isa = XCVersionGroup;
  4859. children = (
  4860. DDD1631E2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodel */,
  4861. );
  4862. currentVersion = DDD1631E2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodel */;
  4863. path = TrioCoreDataPersistentContainer.xcdatamodeld;
  4864. sourceTree = "<group>";
  4865. versionGroupType = wrapper.xcdatamodel;
  4866. };
  4867. /* End XCVersionGroup section */
  4868. };
  4869. rootObject = 388E595025AD948C0019842D /* Project object */;
  4870. }