| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 54;
- objects = {
- /* Begin PBXBuildFile section */
- 041D1E995A6AE92E9289DC49 /* BolusDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */; };
- 0437CE46C12535A56504EC19 /* SnoozeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5822B15939E719628E9FF7C /* SnoozeRootView.swift */; };
- 0CEA2EA070AB041AF3E3745B /* BolusRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10A0C32B0DAB52726EF9B6D9 /* BolusRootView.swift */; };
- 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */; };
- 0F7A65FBD2CD8D6477ED4539 /* NotificationsConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E625985B47742D498CB1681A /* NotificationsConfigProvider.swift */; };
- 17A9D0899046B45E87834820 /* CREditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */; };
- 19012CDC291D2CB900FB8210 /* LoopStats.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19012CDB291D2CB900FB8210 /* LoopStats.swift */; };
- 190EBCC429FF136900BA767D /* StatConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC329FF136900BA767D /* StatConfigDataFlow.swift */; };
- 190EBCC629FF138000BA767D /* StatConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC529FF138000BA767D /* StatConfigProvider.swift */; };
- 190EBCC829FF13AA00BA767D /* StatConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC729FF13AA00BA767D /* StatConfigStateModel.swift */; };
- 190EBCCB29FF13CB00BA767D /* StatConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCCA29FF13CB00BA767D /* StatConfigRootView.swift */; };
- 191F62682AD6B05A004D7911 /* NightscoutSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */; };
- 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 1927C8E82744606D00347C69 /* InfoPlist.strings */; };
- 1935364028496F7D001E0B16 /* Oref2_variables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1935363F28496F7D001E0B16 /* Oref2_variables.swift */; };
- 193F6CDD2A512C8F001240FD /* Loops.swift in Sources */ = {isa = PBXBuildFile; fileRef = 193F6CDC2A512C8F001240FD /* Loops.swift */; };
- 1967DFBE29D052C200759F30 /* Icons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFBD29D052C200759F30 /* Icons.swift */; };
- 1967DFC029D053AC00759F30 /* IconSelection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFBF29D053AC00759F30 /* IconSelection.swift */; };
- 1967DFC229D053D300759F30 /* IconImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFC129D053D300759F30 /* IconImage.swift */; };
- 19795118275953E50044850D /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 198377D4266BFFF6004DE65E /* Localizable.strings */; };
- 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 198377D4266BFFF6004DE65E /* Localizable.strings */; };
- 199561C1275E61A50077B976 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 199561C0275E61A50077B976 /* HealthKit.framework */; };
- 19A910302A24BF6300C8951B /* StatsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A9102F2A24BF6300C8951B /* StatsView.swift */; };
- 19A910362A24D6D700C8951B /* DateFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A910352A24D6D700C8951B /* DateFilter.swift */; };
- 19A910382A24EF3200C8951B /* ChartsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A910372A24EF3200C8951B /* ChartsView.swift */; };
- 19B0EF2128F6D66200069496 /* Statistics.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19B0EF2028F6D66200069496 /* Statistics.swift */; };
- 19D466A329AA2B80004D5F33 /* FPUConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A229AA2B80004D5F33 /* FPUConfigDataFlow.swift */; };
- 19D466A529AA2BD4004D5F33 /* FPUConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A429AA2BD4004D5F33 /* FPUConfigProvider.swift */; };
- 19D466A729AA2C22004D5F33 /* FPUConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A629AA2C22004D5F33 /* FPUConfigStateModel.swift */; };
- 19D466AA29AA3099004D5F33 /* FPUConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A929AA3099004D5F33 /* FPUConfigRootView.swift */; };
- 19D4E4EB29FC6A9F00351451 /* TIRforChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D4E4EA29FC6A9F00351451 /* TIRforChart.swift */; };
- 19DA48E829CD339B00EEA1E7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */; };
- 19DA48E929CD339C00EEA1E7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */; };
- 19DA48EA29CD339C00EEA1E7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */; };
- 19DC677F29CA675700FD9EC4 /* OverrideProfilesDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19DC677E29CA675700FD9EC4 /* OverrideProfilesDataFlow.swift */; };
- 19DC678129CA676A00FD9EC4 /* OverrideProfilesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19DC678029CA676A00FD9EC4 /* OverrideProfilesProvider.swift */; };
- 19DC678329CA677D00FD9EC4 /* OverrideProfilesStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19DC678229CA677D00FD9EC4 /* OverrideProfilesStateModel.swift */; };
- 19DC678529CA67A400FD9EC4 /* OverrideProfilesRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19DC678429CA67A400FD9EC4 /* OverrideProfilesRootView.swift */; };
- 19E1F7E829D082D0005C8D20 /* IconConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */; };
- 19E1F7EA29D082ED005C8D20 /* IconConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */; };
- 19E1F7EC29D082FE005C8D20 /* IconConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */; };
- 19E1F7EF29D08EBA005C8D20 /* IconConfigRootWiew.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */; };
- 19F95FF329F10FBC00314DDC /* StatDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */; };
- 19F95FF529F10FCF00314DDC /* StatProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF429F10FCF00314DDC /* StatProvider.swift */; };
- 19F95FF729F10FEE00314DDC /* StatStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF629F10FEE00314DDC /* StatStateModel.swift */; };
- 19F95FFA29F1102A00314DDC /* StatRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF929F1102A00314DDC /* StatRootView.swift */; };
- 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */; };
- 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60744C3E9BB3652895C908CC /* DataTableProvider.swift */; };
- 23888883D4EA091C88480FF2 /* BolusProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C19984D62EFC0035A9E9644D /* BolusProvider.swift */; };
- 28089E07169488CF6DCC2A31 /* AddCarbsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86FC1CFD647CF34508AF9A3B /* AddCarbsRootView.swift */; };
- 2BE9A6FA20875F6F4F9CD461 /* PumpSettingsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */; };
- 3083261C4B268E353F36CD0B /* AutotuneConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */; };
- 3171D2818C7C72CD1584BB5E /* NotificationsConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2C6489D29ECCCAD78E0721 /* NotificationsConfigStateModel.swift */; };
- 320D030F724170A637F06D50 /* CalibrationsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 212E8BFE6D66EE65AA26A114 /* CalibrationsProvider.swift */; };
- 33E198D3039045D98C3DC5D4 /* AddCarbsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39E7C997E56DAF8D28D09014 /* AddCarbsStateModel.swift */; };
- 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0725C9D32E00A708ED /* BaseView.swift */; };
- 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0825C9D32F00A708ED /* BaseProvider.swift */; };
- 3811DE1025C9D37700A708ED /* Swinject in Frameworks */ = {isa = PBXBuildFile; productRef = 3811DE0F25C9D37700A708ED /* Swinject */; };
- 3811DE1725C9D40400A708ED /* Screen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1525C9D40400A708ED /* Screen.swift */; };
- 3811DE1825C9D40400A708ED /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1625C9D40400A708ED /* Router.swift */; };
- 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1C25C9D48300A708ED /* MainProvider.swift */; };
- 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */; };
- 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2025C9D48300A708ED /* MainRootView.swift */; };
- 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2825C9D49500A708ED /* HomeStateModel.swift */; };
- 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2925C9D49500A708ED /* HomeProvider.swift */; };
- 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */; };
- 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2E25C9D49500A708ED /* HomeRootView.swift */; };
- 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */; };
- 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */; };
- 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */; };
- 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */; };
- 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5425C9D4D500A708ED /* Formatters.swift */; };
- 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5525C9D4D500A708ED /* Publisher.swift */; };
- 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5725C9D4D500A708ED /* ProgressBar.swift */; };
- 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */; };
- 3811DE8F25C9D80400A708ED /* User.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE8E25C9D80400A708ED /* User.swift */; };
- 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9325C9D88200A708ED /* AppearanceManager.swift */; };
- 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */; };
- 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9725C9D88300A708ED /* NightscoutManager.swift */; };
- 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */; };
- 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9B25C9D88300A708ED /* Cache.swift */; };
- 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */; };
- 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */; };
- 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9F25C9D88300A708ED /* Keychain.swift */; };
- 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */; };
- 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA625C9D88300A708ED /* UnlockManager.swift */; };
- 3811DEE825CA063400A708ED /* Injected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE425CA063400A708ED /* Injected.swift */; };
- 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE625CA063400A708ED /* SyncAccess.swift */; };
- 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE725CA063400A708ED /* PersistedProperty.swift */; };
- 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0125CA9FEA00A708ED /* Credentials.swift */; };
- 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0F25CAAAE200A708ED /* APSManager.swift */; };
- 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E03261B82FA0094D973 /* ReachabilityManager.swift */; };
- 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */; };
- 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */; };
- 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3821ED4B25DD18BA00BC42AD /* Constants.swift */; };
- 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */; };
- 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C134A25F14E3700715CE1 /* BGTargets.swift */; };
- 3833B46D26012030003021B3 /* Algorithms in Frameworks */ = {isa = PBXBuildFile; productRef = 3833B46C26012030003021B3 /* Algorithms */; };
- 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D525FFE38C002D46C1 /* LoopView.swift */; };
- 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D825FFEB3F002D46C1 /* Popup.swift */; };
- 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D525CD4D8900E91849 /* FileStorage.swift */; };
- 383948DA25CD64D500E91849 /* Glucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D925CD64D500E91849 /* Glucose.swift */; };
- 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803325C385E60086DB71 /* JavaScriptWorker.swift */; };
- 384E803825C388640086DB71 /* Script.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803725C388640086DB71 /* Script.swift */; };
- 38569347270B5DFB0002C50D /* CGMType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569344270B5DFA0002C50D /* CGMType.swift */; };
- 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569345270B5DFA0002C50D /* GlucoseSource.swift */; };
- 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569346270B5DFB0002C50D /* AppGroupSource.swift */; };
- 38569353270B5E350002C50D /* CGMRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569352270B5E350002C50D /* CGMRootView.swift */; };
- 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */; };
- 385CEAC125F2EA52002D6D5B /* Announcement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEAC025F2EA52002D6D5B /* Announcement.swift */; };
- 385CEAC425F2F154002D6D5B /* AnnouncementsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */; };
- 3862CC05273D152B00BF832C /* CalibrationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC04273D152B00BF832C /* CalibrationService.swift */; };
- 3862CC1F273FDC9200BF832C /* CalibrationsChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC1E273FDC9200BF832C /* CalibrationsChart.swift */; };
- 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC2D2743F9F700BF832C /* CalendarManager.swift */; };
- 386A124F271707F000DDC61C /* DexcomSourceG6.swift in Sources */ = {isa = PBXBuildFile; fileRef = 386A124E271707F000DDC61C /* DexcomSourceG6.swift */; };
- 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3870FF4225EC13F40088248F /* BloodGlucose.swift */; };
- 3871F38725ED661C0013ECB5 /* Suggestion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F38625ED661C0013ECB5 /* Suggestion.swift */; };
- 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39B25ED892B0013ECB5 /* TempTarget.swift */; };
- 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */; };
- 3883581C25EE79BB00E024B2 /* DecimalTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883581B25EE79BB00E024B2 /* DecimalTextField.swift */; };
- 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883583325EEB38000E024B2 /* PumpSettings.swift */; };
- 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */; };
- 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38887CCD25F5725200944304 /* IOBEntry.swift */; };
- 388E595C25AD948C0019842D /* FreeAPSApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E595B25AD948C0019842D /* FreeAPSApp.swift */; };
- 388E596C25AD95110019842D /* OpenAPS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E596B25AD95110019842D /* OpenAPS.swift */; };
- 388E596F25AD96040019842D /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 388E596E25AD96040019842D /* javascript */; };
- 388E597225AD9CF10019842D /* json in Resources */ = {isa = PBXBuildFile; fileRef = 388E597125AD9CF10019842D /* json */; };
- 388E5A5C25B6F0770019842D /* JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5B25B6F0770019842D /* JSON.swift */; };
- 388E5A6025B6F2310019842D /* Autosens.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5F25B6F2310019842D /* Autosens.swift */; };
- 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */; };
- 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389487392614928B004DF424 /* DispatchTimer.swift */; };
- 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3895E4C525B9E00D00214B37 /* Preferences.swift */; };
- 389A572026079BAA00BC102F /* Interpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389A571F26079BAA00BC102F /* Interpolation.swift */; };
- 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECDFD2601061500D86C4F /* View+Snapshot.swift */; };
- 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECE042601144100D86C4F /* ConcurrentMap.swift */; };
- 38A00B1F25FC00F7006BC0B0 /* Autotune.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */; };
- 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */; };
- 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */; };
- 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0364125ED069400FCBB52 /* TempBasal.swift */; };
- 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */; };
- 38A43598262E0E4900E80935 /* FetchAnnouncementsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */; };
- 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */; };
- 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A9260425F012D8009E3739 /* CarbRatios.swift */; };
- 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */; };
- 38AAF8712600C1B0004AF583 /* MainChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AAF8702600C1B0004AF583 /* MainChartView.swift */; };
- 38AEE73D25F0200C0013F05B /* FreeAPSSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */; };
- 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75125F022080013F05B /* SettingsManager.swift */; };
- 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */; };
- 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 38B17B6525DD90E0005CAE3D /* SwiftDate */; };
- 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */; };
- 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */; };
- 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */; };
- 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */; };
- 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */; };
- 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */; };
- 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */; };
- 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021A25E7D06400579895 /* PumpSettingsView.swift */; };
- 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021C25E7E3AF00579895 /* Reservoir.swift */; };
- 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */; };
- 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */; };
- 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */; };
- 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3B525EBE24900CB6E88 /* Battery.swift */; };
- 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */; };
- 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB27F260CBB7F00F74C1A /* PumpView.swift */; };
- 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */; };
- 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF1785276A73D400B3528F /* TagCloudView.swift */; };
- 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */ = {isa = PBXBuildFile; productRef = 38DF1788276FC8C400B3528F /* SwiftMessages */; };
- 38DF178D27733E6800B3528F /* snow.sks in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178B27733E6800B3528F /* snow.sks */; };
- 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178C27733E6800B3528F /* Assets.xcassets */; };
- 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF178F27733EAD00B3528F /* SnowScene.swift */; };
- 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4451D274DB04600EC9A94 /* AppDelegate.swift */; };
- 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */; };
- 38E44528274E401C00EC9A94 /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44527274E401C00EC9A94 /* Protected.swift */; };
- 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */; };
- 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452B274E411600EC9A94 /* Disk+Data.swift */; };
- 38E44536274E411700EC9A94 /* Disk.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452C274E411600EC9A94 /* Disk.swift */; };
- 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */; };
- 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452E274E411600EC9A94 /* Disk+[Data].swift */; };
- 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */; };
- 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */; };
- 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */; };
- 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44532274E411700EC9A94 /* Disk+Codable.swift */; };
- 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44533274E411700EC9A94 /* Disk+Errors.swift */; };
- 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E873FD274F761800975559 /* CoreNFC.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
- 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */; settings = {ATTRIBUTES = (Weak, ); }; };
- 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E87407274F9AD000975559 /* UserNotificationsManager.swift */; };
- 38E8752527554D5700975559 /* FreeAPSWatch WatchKit Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- 38E8752A27554D5700975559 /* FreeAPSApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752927554D5700975559 /* FreeAPSApp.swift */; };
- 38E8752C27554D5700975559 /* MainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752B27554D5700975559 /* MainView.swift */; };
- 38E8752E27554D5700975559 /* NotificationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752D27554D5700975559 /* NotificationController.swift */; };
- 38E8753027554D5700975559 /* NotificationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752F27554D5700975559 /* NotificationView.swift */; };
- 38E8753227554D5700975559 /* ComplicationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8753127554D5700975559 /* ComplicationController.swift */; };
- 38E8753427554D5800975559 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38E8753327554D5800975559 /* Assets.xcassets */; };
- 38E8753727554D5900975559 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38E8753627554D5800975559 /* Preview Assets.xcassets */; };
- 38E8753C27554D5900975559 /* FreeAPSWatch.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = 38E8751C27554D5500975559 /* FreeAPSWatch.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- 38E8754727554DF100975559 /* Color+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F37827261260DC009DB701 /* Color+Extensions.swift */; };
- 38E8754A275550BB00975559 /* CarbsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E87549275550BB00975559 /* CarbsView.swift */; };
- 38E8754C2755548F00975559 /* WatchStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8754B2755548F00975559 /* WatchStateModel.swift */; };
- 38E8754F275556FA00975559 /* WatchManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8754E275556FA00975559 /* WatchManager.swift */; };
- 38E8755127555D0500975559 /* DataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8755027555D0500975559 /* DataFlow.swift */; };
- 38E8755427561E9800975559 /* DataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8755027555D0500975559 /* DataFlow.swift */; };
- 38E8755827567AE400975559 /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 38E8755727567AE400975559 /* SwiftDate */; };
- 38E8755927567CA600975559 /* Decimal+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */; };
- 38E8755B27568A6800975559 /* ConfirmationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8755A27568A6700975559 /* ConfirmationView.swift */; };
- 38E8757927579D9200975559 /* Publisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5525C9D4D500A708ED /* Publisher.swift */; };
- 38E8757B2757B1C300975559 /* TempTargetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8757A2757B1C300975559 /* TempTargetsView.swift */; };
- 38E8757D2757C45D00975559 /* BolusView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8757C2757C45D00975559 /* BolusView.swift */; };
- 38E8757E2758C86A00975559 /* ConvenienceExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */; };
- 38E8758027595DC600975559 /* BolusConfirmationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8757F27595DC500975559 /* BolusConfirmationView.swift */; };
- 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E989DC25F5021400C0CED0 /* PumpStatus.swift */; };
- 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1B25F52C9300C0CED0 /* Signpost.swift */; };
- 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1C25F52C9300C0CED0 /* Logger.swift */; };
- 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */; };
- 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */; };
- 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */; };
- 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */; };
- 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2F25F52FF700C0CED0 /* Config.swift */; };
- 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A3625F5509500C0CED0 /* String+Extensions.swift */; };
- 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */; };
- 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */; };
- 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F37827261260DC009DB701 /* Color+Extensions.swift */; };
- 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */; };
- 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3D525E8FDF40078B0D1 /* MD5.swift */; };
- 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */; };
- 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */; };
- 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826925CC82DB001FF17A /* NetworkService.swift */; };
- 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */; };
- 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3F92737E42000574A46 /* BaseStateModel.swift */; };
- 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FB2737E53800574A46 /* MainStateModel.swift */; };
- 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FD2738083E00574A46 /* CGMProvider.swift */; };
- 38FEF408273B011A00574A46 /* LibreTransmitterSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF407273B011A00574A46 /* LibreTransmitterSource.swift */; };
- 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF412273B317A00574A46 /* HKUnit.swift */; };
- 44190F0BBA464D74B857D1FB /* PreferencesEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */; };
- 448B6FCB252BD4796E2960C0 /* PumpSettingsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */; };
- 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */; };
- 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */; };
- 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */; };
- 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */; };
- 5BFA1C2208114643B77F8CEB /* AddTempTargetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEE53A13D26F101B332EFFC8 /* AddTempTargetProvider.swift */; };
- 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */; };
- 61962FCAF8A2D222553AC5A3 /* LibreConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66A5B83E7967C38F7CBD883C /* LibreConfigDataFlow.swift */; };
- 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */; };
- 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */; };
- 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */; };
- 69A31254F2451C20361D172F /* BolusStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */; };
- 69B9A368029F7EB39F525422 /* CREditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */; };
- 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */; };
- 6B9625766B697D1C98E455A2 /* PumpSettingsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */; };
- 6EADD581738D64431902AC0A /* LibreConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2EBA7C03C26FCC67E16D798 /* LibreConfigProvider.swift */; };
- 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */; };
- 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */; };
- 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */; };
- 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */; };
- 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */; };
- 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */; };
- 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */; };
- 891DECF7BC20968D7F566161 /* AutotuneConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */; };
- 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */; };
- 8BC2F5A29AD1ED08AC0EE013 /* AddTempTargetRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9AAB83FB6C3B41EFD1846A0 /* AddTempTargetRootView.swift */; };
- 903D18976088B09110BCBE29 /* LibreConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E68CDC1E5C438D1BEAD4CF24 /* LibreConfigStateModel.swift */; };
- 9050F378F0063C064D7FFC86 /* LibreConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC210C0F3CB6D3C86E5DED4E /* LibreConfigRootView.swift */; };
- 919DBD08F13BAFB180DF6F47 /* AddTempTargetStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C3B5FD881CA45DFDEE0EDA9 /* AddTempTargetStateModel.swift */; };
- 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */; };
- 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */; };
- 98641AF4F92123DA668AB931 /* CREditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */; };
- A05235B9112E677ED03B6E8E /* AutotuneConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */; };
- A0B8EC8CC5CD1DD237D1BCD2 /* PumpSettingsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */; };
- A228DF96647338139F152B15 /* PreferencesEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */; };
- A33352ED40476125EBAC6EE0 /* CREditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */; };
- A6F097A14CAAE0CE0D11BE1B /* AddCarbsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 618E62C9757B2F95431B5DC0 /* AddCarbsProvider.swift */; };
- AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */; };
- B7C465E9472624D8A2BE2A6A /* CalibrationsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA241FB1663EC96FDBE64C8A /* CalibrationsDataFlow.swift */; };
- B958F1B72BA0711600484851 /* MKRingProgressView in Frameworks */ = {isa = PBXBuildFile; productRef = B958F1B62BA0711600484851 /* MKRingProgressView */; };
- B9CAAEFC2AE70836000F68BC /* branch.txt in Resources */ = {isa = PBXBuildFile; fileRef = B9CAAEFB2AE70836000F68BC /* branch.txt */; };
- BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */; };
- BA90041DC8991147E5C8C3AA /* CalibrationsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 500371C09F54F89A97D65FDB /* CalibrationsRootView.swift */; };
- BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */; };
- BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */; };
- C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */; };
- CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */; };
- CC6C406E2ACDD69E009B8058 /* RawFetchedProfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */; };
- CD78BB94E43B249D60CC1A1B /* NotificationsConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22963BD06A9C83959D4914E4 /* NotificationsConfigRootView.swift */; };
- CE2FAD3A297D93F0001A872C /* BloodGlucoseExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */; };
- CE398D16297C9D1D00DF218F /* dexcomSourceG7.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE398D15297C9D1D00DF218F /* dexcomSourceG7.swift */; };
- CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */; };
- CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */; };
- CE51DD1C2A01970900F163F7 /* ConnectIQ 2.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */; };
- CE51DD1D2A01970900F163F7 /* ConnectIQ 2.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- CE6B025728F350FF000C5502 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE6B025628F350FF000C5502 /* HealthKit.framework */; };
- CE7950242997D81700FA576E /* CGMSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7950232997D81700FA576E /* CGMSettingsView.swift */; };
- CE7950262998056D00FA576E /* CGMSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7950252998056D00FA576E /* CGMSetupView.swift */; };
- CE7CA34E2A064973004BE681 /* AppShortcuts.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3432A064973004BE681 /* AppShortcuts.swift */; };
- CE7CA34F2A064973004BE681 /* BaseIntentsRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */; };
- CE7CA3502A064973004BE681 /* CancelTempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */; };
- CE7CA3512A064973004BE681 /* ApplyTempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */; };
- CE7CA3522A064973004BE681 /* ListTempPresetsIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3482A064973004BE681 /* ListTempPresetsIntent.swift */; };
- CE7CA3532A064973004BE681 /* tempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3492A064973004BE681 /* tempPresetIntent.swift */; };
- CE7CA3542A064973004BE681 /* TempPresetsIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */; };
- CE7CA3552A064973004BE681 /* ListStateIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34C2A064973004BE681 /* ListStateIntent.swift */; };
- CE7CA3562A064973004BE681 /* StateIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */; };
- CE7CA3582A064E2F004BE681 /* ListStateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3572A064E2F004BE681 /* ListStateView.swift */; };
- CE82E02528E867BA00473A9C /* AlertStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE82E02428E867BA00473A9C /* AlertStorage.swift */; };
- CE82E02728E869DF00473A9C /* AlertEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE82E02628E869DF00473A9C /* AlertEntry.swift */; };
- CE94597E29E9E1EE0047C9C6 /* GarminManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */; };
- CE94598029E9E3BD0047C9C6 /* WatchConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */; };
- CE94598229E9E3D30047C9C6 /* WatchConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */; };
- CE94598429E9E3E60047C9C6 /* WatchConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */; };
- CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */; };
- CEA4F62329BE10F70011ADF7 /* SavitzkyGolayFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */; };
- CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */; };
- CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E428B8FF5D00B70274 /* UIColor.swift */; };
- CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */; };
- CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; };
- CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- CECA4775298DA8310095139F /* DexcomSourceG5.swift in Sources */ = {isa = PBXBuildFile; fileRef = CECA4774298DA8310095139F /* DexcomSourceG5.swift */; };
- D2165E9D78EFF692C1DED1C6 /* AddTempTargetDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B8A42073A2D03A278914448 /* AddTempTargetDataFlow.swift */; };
- D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */; };
- D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */; };
- D76333C9256787610B3B4875 /* AutotuneConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */; };
- DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */; };
- DD399FB31EACB9343C944C4C /* PreferencesEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */; };
- E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFD27368630002FF094 /* ServiceAssembly.swift */; };
- E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFE27368630002FF094 /* SecurityAssembly.swift */; };
- E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFF27368630002FF094 /* StorageAssembly.swift */; };
- E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0027368630002FF094 /* UIAssembly.swift */; };
- E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0127368630002FF094 /* APSAssembly.swift */; };
- E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0227368630002FF094 /* NetworkAssembly.swift */; };
- E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */; };
- E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = E06B9119275B5EEA003C04B6 /* Array+Extension.swift */; };
- E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */; };
- E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */; };
- E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */; };
- E25073BC86C11C3D6A42F5AC /* CalibrationsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47DFCE895C930F784EF11843 /* CalibrationsStateModel.swift */; };
- E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */; };
- E3A08AAE59538BC8A8ABE477 /* NotificationsConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3260468377DA9DB4DEE9AF6D /* NotificationsConfigDataFlow.swift */; };
- E4984C5262A90469788754BB /* PreferencesEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */; };
- E97285ED9B814CD5253C6658 /* AddCarbsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F48C3AC770D4CCD0EA2B0C2 /* AddCarbsDataFlow.swift */; };
- E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */; };
- F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */; };
- F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */; };
- F816825E28DB441200054060 /* HeartBeatManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F816825D28DB441200054060 /* HeartBeatManager.swift */; };
- F816826028DB441800054060 /* BluetoothTransmitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F816825F28DB441800054060 /* BluetoothTransmitter.swift */; };
- F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692A9274B7AAE0037068D /* HealthKitManager.swift */; };
- F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692CE274B999A0037068D /* HealthKitDataFlow.swift */; };
- F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D0274B99B60037068D /* HealthKitProvider.swift */; };
- F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */; };
- F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D5274B9A450037068D /* HealthKitStateModel.swift */; };
- FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */; };
- FE41E4D429463C660047FD55 /* NightscoutStatistics.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE41E4D329463C660047FD55 /* NightscoutStatistics.swift */; };
- FE41E4D629463EE20047FD55 /* NightscoutPreferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */; };
- FE66D16B291F74F8005D6F77 /* Bundle+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */; };
- FEFA5C0F299F810B00765C17 /* Core_Data.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = FEFA5C0D299F810B00765C17 /* Core_Data.xcdatamodeld */; };
- FEFA5C11299F814A00765C17 /* CoreDataStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEFA5C10299F814A00765C17 /* CoreDataStack.swift */; };
- FEFFA7A22929FE49007B8193 /* UIDevice+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */; };
- /* End PBXBuildFile section */
- /* Begin PBXContainerItemProxy section */
- 38E8752627554D5700975559 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 388E595025AD948C0019842D /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 38E8752327554D5700975559;
- remoteInfo = "FreeAPSWatch WatchKit Extension";
- };
- 38E8753A27554D5900975559 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 388E595025AD948C0019842D /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 38E8751B27554D5500975559;
- remoteInfo = FreeAPSWatch;
- };
- 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 388E595025AD948C0019842D /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 388E595725AD948C0019842D;
- remoteInfo = FreeAPS;
- };
- /* End PBXContainerItemProxy section */
- /* Begin PBXCopyFilesBuildPhase section */
- 3821ECD025DC703C00BC42AD /* Embed Frameworks */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 10;
- files = (
- CE51DD1D2A01970900F163F7 /* ConnectIQ 2.xcframework in Embed Frameworks */,
- CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */,
- );
- name = "Embed Frameworks";
- runOnlyForDeploymentPostprocessing = 0;
- };
- 38E8753D27554D5900975559 /* Embed Watch Content */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "$(CONTENTS_FOLDER_PATH)/Watch";
- dstSubfolderSpec = 16;
- files = (
- 38E8753C27554D5900975559 /* FreeAPSWatch.app in Embed Watch Content */,
- );
- name = "Embed Watch Content";
- runOnlyForDeploymentPostprocessing = 0;
- };
- 38E8754027554D5900975559 /* Embed App Extensions */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 13;
- files = (
- 38E8752527554D5700975559 /* FreeAPSWatch WatchKit Extension.appex in Embed App Extensions */,
- );
- name = "Embed App Extensions";
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXCopyFilesBuildPhase section */
- /* Begin PBXFileReference section */
- 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorDataFlow.swift; sourceTree = "<group>"; };
- 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorStateModel.swift; sourceTree = "<group>"; };
- 10A0C32B0DAB52726EF9B6D9 /* BolusRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusRootView.swift; sourceTree = "<group>"; };
- 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorDataFlow.swift; sourceTree = "<group>"; };
- 19012CDB291D2CB900FB8210 /* LoopStats.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStats.swift; sourceTree = "<group>"; };
- 190EBCC329FF136900BA767D /* StatConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatConfigDataFlow.swift; sourceTree = "<group>"; };
- 190EBCC529FF138000BA767D /* StatConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatConfigProvider.swift; sourceTree = "<group>"; };
- 190EBCC729FF13AA00BA767D /* StatConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatConfigStateModel.swift; sourceTree = "<group>"; };
- 190EBCCA29FF13CB00BA767D /* StatConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatConfigRootView.swift; sourceTree = "<group>"; };
- 1918333A26ADA46800F45722 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
- 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutSettings.swift; sourceTree = "<group>"; };
- 1927C8E92744611700347C69 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8EA2744611800347C69 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8EB2744611900347C69 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- 1927C8EC2744611A00347C69 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8ED2744611B00347C69 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8EE2744611C00347C69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8EF2744611D00347C69 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8F02744611E00347C69 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8F12744611E00347C69 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8F22744611F00347C69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8F32744612000347C69 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8F42744612100347C69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8F52744612100347C69 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- 1927C8F62744612200347C69 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- 1927C8F72744612300347C69 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8F82744612400347C69 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8F92744612400347C69 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8FA2744612500347C69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8FB2744612600347C69 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1927C8FE274489BA00347C69 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1935363F28496F7D001E0B16 /* Oref2_variables.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Oref2_variables.swift; sourceTree = "<group>"; };
- 193F1E392B44C13B00525770 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 193F1E3A2B44C13B00525770 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
- 193F1E3B2B44C14800525770 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 193F1E3C2B44C14800525770 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = "<group>"; };
- 193F6CDC2A512C8F001240FD /* Loops.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Loops.swift; sourceTree = "<group>"; };
- 1967DFBD29D052C200759F30 /* Icons.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Icons.swift; sourceTree = "<group>"; };
- 1967DFBF29D053AC00759F30 /* IconSelection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconSelection.swift; sourceTree = "<group>"; };
- 1967DFC129D053D300759F30 /* IconImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconImage.swift; sourceTree = "<group>"; };
- 1980131D29CC9839002FF024 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
- 198377D3266BFFF6004DE65E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377D5266C0A05004DE65E /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377D6266C0A0A004DE65E /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377D7266C0A15004DE65E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
- 198377D8266C0A1C004DE65E /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377D9266C0A21004DE65E /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377DA266C0A2B004DE65E /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377DB266C0A32004DE65E /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377DC266C0A3C004DE65E /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377DD266C0A51004DE65E /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377DE266C0A69004DE65E /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377DF266C0A7F004DE65E /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377E0266C0AB5004DE65E /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377E1266C0ABF004DE65E /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377E2266C0AC8004DE65E /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377E3266C0ADC004DE65E /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
- 198377E4266C13D2004DE65E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
- 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; };
- 199732B4271B72DD00129A3F /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
- 199732B5271B9EE900129A3F /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
- 19A9102F2A24BF6300C8951B /* StatsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatsView.swift; sourceTree = "<group>"; };
- 19A910352A24D6D700C8951B /* DateFilter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateFilter.swift; sourceTree = "<group>"; };
- 19A910372A24EF3200C8951B /* ChartsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChartsView.swift; sourceTree = "<group>"; };
- 19B0EF2028F6D66200069496 /* Statistics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Statistics.swift; sourceTree = "<group>"; };
- 19C166682756EFBD00ED12E3 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 19C166692756EFBD00ED12E3 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
- 19D466A229AA2B80004D5F33 /* FPUConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FPUConfigDataFlow.swift; sourceTree = "<group>"; };
- 19D466A429AA2BD4004D5F33 /* FPUConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FPUConfigProvider.swift; sourceTree = "<group>"; };
- 19D466A629AA2C22004D5F33 /* FPUConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FPUConfigStateModel.swift; sourceTree = "<group>"; };
- 19D466A929AA3099004D5F33 /* FPUConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FPUConfigRootView.swift; sourceTree = "<group>"; };
- 19D4E4EA29FC6A9F00351451 /* TIRforChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TIRforChart.swift; sourceTree = "<group>"; };
- 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
- 19DC677E29CA675700FD9EC4 /* OverrideProfilesDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideProfilesDataFlow.swift; sourceTree = "<group>"; };
- 19DC678029CA676A00FD9EC4 /* OverrideProfilesProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideProfilesProvider.swift; sourceTree = "<group>"; };
- 19DC678229CA677D00FD9EC4 /* OverrideProfilesStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideProfilesStateModel.swift; sourceTree = "<group>"; };
- 19DC678429CA67A400FD9EC4 /* OverrideProfilesRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideProfilesRootView.swift; sourceTree = "<group>"; };
- 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigDataFlow.swift; sourceTree = "<group>"; };
- 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigProvider.swift; sourceTree = "<group>"; };
- 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigStateModel.swift; sourceTree = "<group>"; };
- 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigRootWiew.swift; sourceTree = "<group>"; };
- 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatDataFlow.swift; sourceTree = "<group>"; };
- 19F95FF429F10FCF00314DDC /* StatProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatProvider.swift; sourceTree = "<group>"; };
- 19F95FF629F10FEE00314DDC /* StatStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatStateModel.swift; sourceTree = "<group>"; };
- 19F95FF929F1102A00314DDC /* StatRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatRootView.swift; sourceTree = "<group>"; };
- 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeProvider.swift; sourceTree = "<group>"; };
- 212E8BFE6D66EE65AA26A114 /* CalibrationsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsProvider.swift; sourceTree = "<group>"; };
- 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusStateModel.swift; sourceTree = "<group>"; };
- 22963BD06A9C83959D4914E4 /* NotificationsConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigRootView.swift; sourceTree = "<group>"; };
- 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigRootView.swift; sourceTree = "<group>"; };
- 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigDataFlow.swift; sourceTree = "<group>"; };
- 3260468377DA9DB4DEE9AF6D /* NotificationsConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigDataFlow.swift; sourceTree = "<group>"; };
- 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeDataFlow.swift; sourceTree = "<group>"; };
- 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorStateModel.swift; sourceTree = "<group>"; };
- 3811DE0725C9D32E00A708ED /* BaseView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseView.swift; sourceTree = "<group>"; };
- 3811DE0825C9D32F00A708ED /* BaseProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseProvider.swift; sourceTree = "<group>"; };
- 3811DE1525C9D40400A708ED /* Screen.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Screen.swift; sourceTree = "<group>"; };
- 3811DE1625C9D40400A708ED /* Router.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Router.swift; sourceTree = "<group>"; };
- 3811DE1C25C9D48300A708ED /* MainProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainProvider.swift; sourceTree = "<group>"; };
- 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainDataFlow.swift; sourceTree = "<group>"; };
- 3811DE2025C9D48300A708ED /* MainRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainRootView.swift; sourceTree = "<group>"; };
- 3811DE2825C9D49500A708ED /* HomeStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeStateModel.swift; sourceTree = "<group>"; };
- 3811DE2925C9D49500A708ED /* HomeProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeProvider.swift; sourceTree = "<group>"; };
- 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeDataFlow.swift; sourceTree = "<group>"; };
- 3811DE2E25C9D49500A708ED /* HomeRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeRootView.swift; sourceTree = "<group>"; };
- 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsStateModel.swift; sourceTree = "<group>"; };
- 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsRootView.swift; sourceTree = "<group>"; };
- 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsDataFlow.swift; sourceTree = "<group>"; };
- 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsProvider.swift; sourceTree = "<group>"; };
- 3811DE5425C9D4D500A708ED /* Formatters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Formatters.swift; sourceTree = "<group>"; };
- 3811DE5525C9D4D500A708ED /* Publisher.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Publisher.swift; sourceTree = "<group>"; };
- 3811DE5725C9D4D500A708ED /* ProgressBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProgressBar.swift; sourceTree = "<group>"; };
- 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewModifiers.swift; sourceTree = "<group>"; };
- 3811DE8E25C9D80400A708ED /* User.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = User.swift; sourceTree = "<group>"; };
- 3811DE9325C9D88200A708ED /* AppearanceManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppearanceManager.swift; sourceTree = "<group>"; };
- 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HTTPResponseStatus.swift; sourceTree = "<group>"; };
- 3811DE9725C9D88300A708ED /* NightscoutManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NightscoutManager.swift; sourceTree = "<group>"; };
- 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDefaults+Cache.swift"; sourceTree = "<group>"; };
- 3811DE9B25C9D88300A708ED /* Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Cache.swift; sourceTree = "<group>"; };
- 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyValueStorage.swift; sourceTree = "<group>"; };
- 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseKeychain.swift; sourceTree = "<group>"; };
- 3811DE9F25C9D88300A708ED /* Keychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Keychain.swift; sourceTree = "<group>"; };
- 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeychainItemAccessibility.swift; sourceTree = "<group>"; };
- 3811DEA625C9D88300A708ED /* UnlockManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnlockManager.swift; sourceTree = "<group>"; };
- 3811DEC725C9DA7300A708ED /* FreeAPS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = FreeAPS.entitlements; sourceTree = "<group>"; };
- 3811DEE425CA063400A708ED /* Injected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Injected.swift; sourceTree = "<group>"; };
- 3811DEE625CA063400A708ED /* SyncAccess.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SyncAccess.swift; sourceTree = "<group>"; };
- 3811DEE725CA063400A708ED /* PersistedProperty.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PersistedProperty.swift; sourceTree = "<group>"; };
- 3811DF0125CA9FEA00A708ED /* Credentials.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Credentials.swift; sourceTree = "<group>"; };
- 3811DF0F25CAAAE200A708ED /* APSManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = APSManager.swift; sourceTree = "<group>"; };
- 3818AA42274BBC1100843DB3 /* ConfigOverride.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = ConfigOverride.xcconfig; sourceTree = "<group>"; };
- 3818AA45274C229000843DB3 /* LibreTransmitter */ = {isa = PBXFileReference; lastKnownFileType = folder; name = LibreTransmitter; path = Dependencies/LibreTransmitter; sourceTree = "<group>"; };
- 3818AA49274C267000843DB3 /* CGMBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3818AA4C274C26A300843DB3 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3818AA4E274C26A300843DB3 /* MockKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3818AA4F274C26A300843DB3 /* MockKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3818AA51274C26A300843DB3 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3818AA53274C26A300843DB3 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3818AA54274C26A300843DB3 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3818AA70274C278200843DB3 /* LoopTestingKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopTestingKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 38192E03261B82FA0094D973 /* ReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReachabilityManager.swift; sourceTree = "<group>"; };
- 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchTreatmentsManager.swift; sourceTree = "<group>"; };
- 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConvenienceExtensions.swift; sourceTree = "<group>"; };
- 3821ED4B25DD18BA00BC42AD /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
- 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinSensitivities.swift; sourceTree = "<group>"; };
- 382C134A25F14E3700715CE1 /* BGTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGTargets.swift; sourceTree = "<group>"; };
- 383420D525FFE38C002D46C1 /* LoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopView.swift; sourceTree = "<group>"; };
- 383420D825FFEB3F002D46C1 /* Popup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Popup.swift; sourceTree = "<group>"; };
- 383948D525CD4D8900E91849 /* FileStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorage.swift; sourceTree = "<group>"; };
- 383948D925CD64D500E91849 /* Glucose.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Glucose.swift; sourceTree = "<group>"; };
- 384E803325C385E60086DB71 /* JavaScriptWorker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JavaScriptWorker.swift; sourceTree = "<group>"; };
- 384E803725C388640086DB71 /* Script.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Script.swift; sourceTree = "<group>"; };
- 38569344270B5DFA0002C50D /* CGMType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMType.swift; sourceTree = "<group>"; };
- 38569345270B5DFA0002C50D /* GlucoseSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucoseSource.swift; sourceTree = "<group>"; };
- 38569346270B5DFB0002C50D /* AppGroupSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppGroupSource.swift; sourceTree = "<group>"; };
- 38569352270B5E350002C50D /* CGMRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMRootView.swift; sourceTree = "<group>"; };
- 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutStatus.swift; sourceTree = "<group>"; };
- 385CEAC025F2EA52002D6D5B /* Announcement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Announcement.swift; sourceTree = "<group>"; };
- 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnnouncementsStorage.swift; sourceTree = "<group>"; };
- 3862CC04273D152B00BF832C /* CalibrationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationService.swift; sourceTree = "<group>"; };
- 3862CC1E273FDC9200BF832C /* CalibrationsChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationsChart.swift; sourceTree = "<group>"; };
- 3862CC2D2743F9F700BF832C /* CalendarManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarManager.swift; sourceTree = "<group>"; };
- 386A124E271707F000DDC61C /* DexcomSourceG6.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DexcomSourceG6.swift; sourceTree = "<group>"; };
- 3870FF4225EC13F40088248F /* BloodGlucose.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BloodGlucose.swift; sourceTree = "<group>"; };
- 3871F38625ED661C0013ECB5 /* Suggestion.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Suggestion.swift; sourceTree = "<group>"; };
- 3871F39B25ED892B0013ECB5 /* TempTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTarget.swift; sourceTree = "<group>"; };
- 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Decimal+Extensions.swift"; sourceTree = "<group>"; };
- 3883581B25EE79BB00E024B2 /* DecimalTextField.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DecimalTextField.swift; sourceTree = "<group>"; };
- 3883583325EEB38000E024B2 /* PumpSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettings.swift; sourceTree = "<group>"; };
- 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasalProfileEntry.swift; sourceTree = "<group>"; };
- 38887CCD25F5725200944304 /* IOBEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOBEntry.swift; sourceTree = "<group>"; };
- 388E595825AD948C0019842D /* FreeAPS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FreeAPS.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 388E595B25AD948C0019842D /* FreeAPSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSApp.swift; sourceTree = "<group>"; };
- 388E596425AD948E0019842D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 388E596B25AD95110019842D /* OpenAPS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPS.swift; sourceTree = "<group>"; };
- 388E596E25AD96040019842D /* javascript */ = {isa = PBXFileReference; lastKnownFileType = folder; path = javascript; sourceTree = "<group>"; };
- 388E597125AD9CF10019842D /* json */ = {isa = PBXFileReference; lastKnownFileType = folder; path = json; sourceTree = "<group>"; };
- 388E5A5B25B6F0770019842D /* JSON.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSON.swift; sourceTree = "<group>"; };
- 388E5A5F25B6F2310019842D /* Autosens.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autosens.swift; sourceTree = "<group>"; };
- 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutTreatment.swift; sourceTree = "<group>"; };
- 389487392614928B004DF424 /* DispatchTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DispatchTimer.swift; sourceTree = "<group>"; };
- 3895E4C525B9E00D00214B37 /* Preferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Preferences.swift; sourceTree = "<group>"; };
- 389A571F26079BAA00BC102F /* Interpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Interpolation.swift; sourceTree = "<group>"; };
- 389ECDFD2601061500D86C4F /* View+Snapshot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Snapshot.swift"; sourceTree = "<group>"; };
- 389ECE042601144100D86C4F /* ConcurrentMap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConcurrentMap.swift; sourceTree = "<group>"; };
- 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autotune.swift; sourceTree = "<group>"; };
- 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LRUCache.swift; sourceTree = "<group>"; };
- 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseStorage.swift; sourceTree = "<group>"; };
- 38A0364125ED069400FCBB52 /* TempBasal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempBasal.swift; sourceTree = "<group>"; };
- 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryEvent.swift; sourceTree = "<group>"; };
- 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchAnnouncementsManager.swift; sourceTree = "<group>"; };
- 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDefaultsExtensions.swift; sourceTree = "<group>"; };
- 38A9260425F012D8009E3739 /* CarbRatios.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbRatios.swift; sourceTree = "<group>"; };
- 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CurrentGlucoseView.swift; sourceTree = "<group>"; };
- 38AAF8702600C1B0004AF583 /* MainChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainChartView.swift; sourceTree = "<group>"; };
- 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSSettings.swift; sourceTree = "<group>"; };
- 38AEE75125F022080013F05B /* SettingsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsManager.swift; sourceTree = "<group>"; };
- 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsStorage.swift; sourceTree = "<group>"; };
- 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IndexedCollection.swift; sourceTree = "<group>"; };
- 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSetupView.swift; sourceTree = "<group>"; };
- 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationCenter.swift; sourceTree = "<group>"; };
- 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftNotificationCenter.swift; sourceTree = "<group>"; };
- 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WeakObjectSet.swift; sourceTree = "<group>"; };
- 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Broadcaster.swift; sourceTree = "<group>"; };
- 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpManagerExtensions.swift; sourceTree = "<group>"; };
- 38BF021A25E7D06400579895 /* PumpSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettingsView.swift; sourceTree = "<group>"; };
- 38BF021C25E7E3AF00579895 /* Reservoir.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Reservoir.swift; sourceTree = "<group>"; };
- 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceDataManager.swift; sourceTree = "<group>"; };
- 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+Extensions.swift"; sourceTree = "<group>"; };
- 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSObject+AssociatedValues.swift"; sourceTree = "<group>"; };
- 38D0B3B525EBE24900CB6E88 /* Battery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Battery.swift; sourceTree = "<group>"; };
- 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsEntry.swift; sourceTree = "<group>"; };
- 38DAB27F260CBB7F00F74C1A /* PumpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpView.swift; sourceTree = "<group>"; };
- 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchGlucoseManager.swift; sourceTree = "<group>"; };
- 38DF1785276A73D400B3528F /* TagCloudView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TagCloudView.swift; sourceTree = "<group>"; };
- 38DF178B27733E6800B3528F /* snow.sks */ = {isa = PBXFileReference; lastKnownFileType = file.sks; path = snow.sks; sourceTree = "<group>"; };
- 38DF178C27733E6800B3528F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
- 38DF178F27733EAD00B3528F /* SnowScene.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnowScene.swift; sourceTree = "<group>"; };
- 38E4451D274DB04600EC9A94 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
- 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkReachabilityManager.swift; sourceTree = "<group>"; };
- 38E44527274E401C00EC9A94 /* Protected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Protected.swift; sourceTree = "<group>"; };
- 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+InternalHelpers.swift"; sourceTree = "<group>"; };
- 38E4452B274E411600EC9A94 /* Disk+Data.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Data.swift"; sourceTree = "<group>"; };
- 38E4452C274E411600EC9A94 /* Disk.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Disk.swift; sourceTree = "<group>"; };
- 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Helpers.swift"; sourceTree = "<group>"; };
- 38E4452E274E411600EC9A94 /* Disk+[Data].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[Data].swift"; sourceTree = "<group>"; };
- 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+UIImage.swift"; sourceTree = "<group>"; };
- 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[UIImage].swift"; sourceTree = "<group>"; };
- 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+VolumeInformation.swift"; sourceTree = "<group>"; };
- 38E44532274E411700EC9A94 /* Disk+Codable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Codable.swift"; sourceTree = "<group>"; };
- 38E44533274E411700EC9A94 /* Disk+Errors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Errors.swift"; sourceTree = "<group>"; };
- 38E873FD274F761800975559 /* CoreNFC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreNFC.framework; path = System/Library/Frameworks/CoreNFC.framework; sourceTree = SDKROOT; };
- 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libswiftCoreNFC.tbd; path = usr/lib/swift/libswiftCoreNFC.tbd; sourceTree = SDKROOT; };
- 38E87407274F9AD000975559 /* UserNotificationsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserNotificationsManager.swift; sourceTree = "<group>"; };
- 38E8751C27554D5500975559 /* FreeAPSWatch.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FreeAPSWatch.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 38E8751E27554D5700975559 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
- 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "FreeAPSWatch WatchKit Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
- 38E8752927554D5700975559 /* FreeAPSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSApp.swift; sourceTree = "<group>"; };
- 38E8752B27554D5700975559 /* MainView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainView.swift; sourceTree = "<group>"; };
- 38E8752D27554D5700975559 /* NotificationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationController.swift; sourceTree = "<group>"; };
- 38E8752F27554D5700975559 /* NotificationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationView.swift; sourceTree = "<group>"; };
- 38E8753127554D5700975559 /* ComplicationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComplicationController.swift; sourceTree = "<group>"; };
- 38E8753327554D5800975559 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
- 38E8753627554D5800975559 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
- 38E8753827554D5900975559 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 38E8753927554D5900975559 /* PushNotificationPayload.apns */ = {isa = PBXFileReference; lastKnownFileType = text; path = PushNotificationPayload.apns; sourceTree = "<group>"; };
- 38E87549275550BB00975559 /* CarbsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsView.swift; sourceTree = "<group>"; };
- 38E8754B2755548F00975559 /* WatchStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchStateModel.swift; sourceTree = "<group>"; };
- 38E8754E275556FA00975559 /* WatchManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchManager.swift; sourceTree = "<group>"; };
- 38E8755027555D0500975559 /* DataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataFlow.swift; sourceTree = "<group>"; };
- 38E8755527564B5000975559 /* FreeAPSWatch WatchKit Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "FreeAPSWatch WatchKit Extension.entitlements"; sourceTree = "<group>"; };
- 38E8755627564B6100975559 /* FreeAPSWatch.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = FreeAPSWatch.entitlements; sourceTree = "<group>"; };
- 38E8755A27568A6700975559 /* ConfirmationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConfirmationView.swift; sourceTree = "<group>"; };
- 38E8757A2757B1C300975559 /* TempTargetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetsView.swift; sourceTree = "<group>"; };
- 38E8757C2757C45D00975559 /* BolusView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusView.swift; sourceTree = "<group>"; };
- 38E8757F27595DC500975559 /* BolusConfirmationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusConfirmationView.swift; sourceTree = "<group>"; };
- 38E989DC25F5021400C0CED0 /* PumpStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpStatus.swift; sourceTree = "<group>"; };
- 38E98A1B25F52C9300C0CED0 /* Signpost.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Signpost.swift; sourceTree = "<group>"; };
- 38E98A1C25F52C9300C0CED0 /* Logger.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Logger.swift; sourceTree = "<group>"; };
- 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IssueReporter.swift; sourceTree = "<group>"; };
- 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CollectionIssueReporter.swift; sourceTree = "<group>"; };
- 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Error+Extensions.swift"; sourceTree = "<group>"; };
- 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSLocking+Extensions.swift"; sourceTree = "<group>"; };
- 38E98A2F25F52FF700C0CED0 /* Config.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Config.swift; sourceTree = "<group>"; };
- 38E98A3625F5509500C0CED0 /* String+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extensions.swift"; sourceTree = "<group>"; };
- 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleLogReporter.swift; sourceTree = "<group>"; };
- 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusProgressViewStyle.swift; sourceTree = "<group>"; };
- 38F37827261260DC009DB701 /* Color+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Color+Extensions.swift"; sourceTree = "<group>"; };
- 38F3783A2613555C009DB701 /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
- 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetsStorage.swift; sourceTree = "<group>"; };
- 38FCF3D525E8FDF40078B0D1 /* MD5.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MD5.swift; sourceTree = "<group>"; };
- 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FreeAPSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 38FCF3F125E9028E0078B0D1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorageTests.swift; sourceTree = "<group>"; };
- 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryStorage.swift; sourceTree = "<group>"; };
- 38FE826925CC82DB001FF17A /* NetworkService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkService.swift; sourceTree = "<group>"; };
- 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutAPI.swift; sourceTree = "<group>"; };
- 38FEF3F92737E42000574A46 /* BaseStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseStateModel.swift; sourceTree = "<group>"; };
- 38FEF3FB2737E53800574A46 /* MainStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainStateModel.swift; sourceTree = "<group>"; };
- 38FEF3FD2738083E00574A46 /* CGMProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMProvider.swift; sourceTree = "<group>"; };
- 38FEF407273B011A00574A46 /* LibreTransmitterSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LibreTransmitterSource.swift; sourceTree = "<group>"; };
- 38FEF412273B317A00574A46 /* HKUnit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HKUnit.swift; sourceTree = "<group>"; };
- 39E7C997E56DAF8D28D09014 /* AddCarbsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddCarbsStateModel.swift; sourceTree = "<group>"; };
- 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorProvider.swift; sourceTree = "<group>"; };
- 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigProvider.swift; sourceTree = "<group>"; };
- 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigStateModel.swift; sourceTree = "<group>"; };
- 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorDataFlow.swift; sourceTree = "<group>"; };
- 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorProvider.swift; sourceTree = "<group>"; };
- 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorProvider.swift; sourceTree = "<group>"; };
- 47DFCE895C930F784EF11843 /* CalibrationsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsStateModel.swift; sourceTree = "<group>"; };
- 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorRootView.swift; sourceTree = "<group>"; };
- 500371C09F54F89A97D65FDB /* CalibrationsRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsRootView.swift; sourceTree = "<group>"; };
- 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorStateModel.swift; sourceTree = "<group>"; };
- 5B8A42073A2D03A278914448 /* AddTempTargetDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetDataFlow.swift; sourceTree = "<group>"; };
- 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMStateModel.swift; sourceTree = "<group>"; };
- 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorStateModel.swift; sourceTree = "<group>"; };
- 5F48C3AC770D4CCD0EA2B0C2 /* AddCarbsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddCarbsDataFlow.swift; sourceTree = "<group>"; };
- 60744C3E9BB3652895C908CC /* DataTableProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableProvider.swift; sourceTree = "<group>"; };
- 618E62C9757B2F95431B5DC0 /* AddCarbsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddCarbsProvider.swift; sourceTree = "<group>"; };
- 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorStateModel.swift; sourceTree = "<group>"; };
- 66A5B83E7967C38F7CBD883C /* LibreConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigDataFlow.swift; sourceTree = "<group>"; };
- 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorDataFlow.swift; sourceTree = "<group>"; };
- 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalProvider.swift; sourceTree = "<group>"; };
- 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorProvider.swift; sourceTree = "<group>"; };
- 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorStateModel.swift; sourceTree = "<group>"; };
- 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorDataFlow.swift; sourceTree = "<group>"; };
- 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorDataFlow.swift; sourceTree = "<group>"; };
- 86FC1CFD647CF34508AF9A3B /* AddCarbsRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddCarbsRootView.swift; sourceTree = "<group>"; };
- 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigRootView.swift; sourceTree = "<group>"; };
- 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableRootView.swift; sourceTree = "<group>"; };
- 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorRootView.swift; sourceTree = "<group>"; };
- 8C3B5FD881CA45DFDEE0EDA9 /* AddTempTargetStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetStateModel.swift; sourceTree = "<group>"; };
- 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigRootView.swift; sourceTree = "<group>"; };
- 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigDataFlow.swift; sourceTree = "<group>"; };
- 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorRootView.swift; sourceTree = "<group>"; };
- 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableStateModel.swift; sourceTree = "<group>"; };
- 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalDataFlow.swift; sourceTree = "<group>"; };
- 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorProvider.swift; sourceTree = "<group>"; };
- 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorProvider.swift; sourceTree = "<group>"; };
- A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigStateModel.swift; sourceTree = "<group>"; };
- A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableDataFlow.swift; sourceTree = "<group>"; };
- A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigProvider.swift; sourceTree = "<group>"; };
- AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorStateModel.swift; sourceTree = "<group>"; };
- AEE53A13D26F101B332EFFC8 /* AddTempTargetProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetProvider.swift; sourceTree = "<group>"; };
- AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigDataFlow.swift; sourceTree = "<group>"; };
- B5822B15939E719628E9FF7C /* SnoozeRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeRootView.swift; sourceTree = "<group>"; };
- B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigProvider.swift; sourceTree = "<group>"; };
- B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorRootView.swift; sourceTree = "<group>"; };
- B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMDataFlow.swift; sourceTree = "<group>"; };
- B9CAAEFB2AE70836000F68BC /* branch.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = branch.txt; sourceTree = SOURCE_ROOT; };
- BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorDataFlow.swift; sourceTree = "<group>"; };
- BC210C0F3CB6D3C86E5DED4E /* LibreConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigRootView.swift; sourceTree = "<group>"; };
- BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorRootView.swift; sourceTree = "<group>"; };
- C19984D62EFC0035A9E9644D /* BolusProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusProvider.swift; sourceTree = "<group>"; };
- C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalRootView.swift; sourceTree = "<group>"; };
- C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusDataFlow.swift; sourceTree = "<group>"; };
- CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RawFetchedProfile.swift; sourceTree = "<group>"; };
- CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BloodGlucoseExtensions.swift; sourceTree = "<group>"; };
- CE398D012977349800DF218F /* CryptoKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CryptoKit.framework; path = System/Library/Frameworks/CryptoKit.framework; sourceTree = SDKROOT; };
- CE398D15297C9D1D00DF218F /* dexcomSourceG7.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = dexcomSourceG7.swift; sourceTree = "<group>"; };
- CE398D17297C9EE800DF218F /* G7SensorKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CE398D1A297D69A900DF218F /* ShareClient.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ShareClient.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniBLEPumpManagerExtensions.swift; sourceTree = "<group>"; };
- CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniPodManagerExtensions.swift; sourceTree = "<group>"; };
- CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = "ConnectIQ 2.xcframework"; path = "Dependencies/ConnectIQ 2.xcframework"; sourceTree = "<group>"; };
- 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; };
- CE7950232997D81700FA576E /* CGMSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMSettingsView.swift; sourceTree = "<group>"; };
- CE7950252998056D00FA576E /* CGMSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMSetupView.swift; sourceTree = "<group>"; };
- CE79502729980C9600FA576E /* CGMBLEKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CE79502929980C9F00FA576E /* G7SensorKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CE79502D29980E4D00FA576E /* ShareClientUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ShareClientUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CE7CA3432A064973004BE681 /* AppShortcuts.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppShortcuts.swift; sourceTree = "<group>"; };
- CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseIntentsRequest.swift; sourceTree = "<group>"; };
- CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CancelTempPresetIntent.swift; sourceTree = "<group>"; };
- CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApplyTempPresetIntent.swift; sourceTree = "<group>"; };
- CE7CA3482A064973004BE681 /* ListTempPresetsIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListTempPresetsIntent.swift; sourceTree = "<group>"; };
- CE7CA3492A064973004BE681 /* tempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = tempPresetIntent.swift; sourceTree = "<group>"; };
- CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TempPresetsIntentRequest.swift; sourceTree = "<group>"; };
- CE7CA34C2A064973004BE681 /* ListStateIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListStateIntent.swift; sourceTree = "<group>"; };
- CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StateIntentRequest.swift; sourceTree = "<group>"; };
- CE7CA3572A064E2F004BE681 /* ListStateView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ListStateView.swift; sourceTree = "<group>"; };
- CE82E02428E867BA00473A9C /* AlertStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertStorage.swift; sourceTree = "<group>"; };
- CE82E02628E869DF00473A9C /* AlertEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertEntry.swift; sourceTree = "<group>"; };
- CE94597929E9DF7B0047C9C6 /* ConnectIQ.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ConnectIQ.framework; path = "Dependencies/ios-armv7_arm64/ConnectIQ.framework"; sourceTree = "<group>"; };
- CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GarminManager.swift; sourceTree = "<group>"; };
- CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigDataFlow.swift; sourceTree = "<group>"; };
- CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigProvider.swift; sourceTree = "<group>"; };
- CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigStateModel.swift; sourceTree = "<group>"; };
- CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigRootView.swift; sourceTree = "<group>"; };
- CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SavitzkyGolayFilter.swift; sourceTree = "<group>"; };
- CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MKRingProgressView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CEB434DE28B8F5C400B70274 /* OmniBLE.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniBLE.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BluetoothStateManager.swift; sourceTree = "<group>"; };
- CEB434E428B8FF5D00B70274 /* UIColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIColor.swift; sourceTree = "<group>"; };
- CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopUIColorPalette+Default.swift"; sourceTree = "<group>"; };
- CEC751D129D88257006E9D24 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CEC751D329D88257006E9D24 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CEC751D529D88262006E9D24 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CEC751D729D88262006E9D24 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CECA4774298DA8310095139F /* DexcomSourceG5.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DexcomSourceG5.swift; sourceTree = "<group>"; };
- CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalStateModel.swift; sourceTree = "<group>"; };
- D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorRootView.swift; sourceTree = "<group>"; };
- D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigStateModel.swift; sourceTree = "<group>"; };
- D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorProvider.swift; sourceTree = "<group>"; };
- DA241FB1663EC96FDBE64C8A /* CalibrationsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CalibrationsDataFlow.swift; sourceTree = "<group>"; };
- DC2C6489D29ECCCAD78E0721 /* NotificationsConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigStateModel.swift; sourceTree = "<group>"; };
- E00EEBFD27368630002FF094 /* ServiceAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ServiceAssembly.swift; sourceTree = "<group>"; };
- E00EEBFE27368630002FF094 /* SecurityAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SecurityAssembly.swift; sourceTree = "<group>"; };
- E00EEBFF27368630002FF094 /* StorageAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StorageAssembly.swift; sourceTree = "<group>"; };
- E00EEC0027368630002FF094 /* UIAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIAssembly.swift; sourceTree = "<group>"; };
- E00EEC0127368630002FF094 /* APSAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = APSAssembly.swift; sourceTree = "<group>"; };
- E00EEC0227368630002FF094 /* NetworkAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkAssembly.swift; sourceTree = "<group>"; };
- E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSimulatorSource.swift; sourceTree = "<group>"; };
- E06B9119275B5EEA003C04B6 /* Array+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Array+Extension.swift"; sourceTree = "<group>"; };
- E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HealthKit.framework; path = System/Library/Frameworks/HealthKit.framework; sourceTree = SDKROOT; };
- E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitSample.swift; sourceTree = "<group>"; };
- E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeStateModel.swift; sourceTree = "<group>"; };
- E2EBA7C03C26FCC67E16D798 /* LibreConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigProvider.swift; sourceTree = "<group>"; };
- E625985B47742D498CB1681A /* NotificationsConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigProvider.swift; sourceTree = "<group>"; };
- E68CDC1E5C438D1BEAD4CF24 /* LibreConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LibreConfigStateModel.swift; sourceTree = "<group>"; };
- E9AAB83FB6C3B41EFD1846A0 /* AddTempTargetRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddTempTargetRootView.swift; sourceTree = "<group>"; };
- F816825D28DB441200054060 /* HeartBeatManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HeartBeatManager.swift; sourceTree = "<group>"; };
- F816825F28DB441800054060 /* BluetoothTransmitter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BluetoothTransmitter.swift; sourceTree = "<group>"; };
- F90692A9274B7AAE0037068D /* HealthKitManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitManager.swift; sourceTree = "<group>"; };
- F90692CE274B999A0037068D /* HealthKitDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitDataFlow.swift; sourceTree = "<group>"; };
- F90692D0274B99B60037068D /* HealthKitProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitProvider.swift; sourceTree = "<group>"; };
- F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppleHealthKitRootView.swift; sourceTree = "<group>"; };
- F90692D5274B9A450037068D /* HealthKitStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitStateModel.swift; sourceTree = "<group>"; };
- FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorRootView.swift; sourceTree = "<group>"; };
- FE41E4D329463C660047FD55 /* NightscoutStatistics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutStatistics.swift; sourceTree = "<group>"; };
- FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutPreferences.swift; sourceTree = "<group>"; };
- FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Bundle+Extensions.swift"; sourceTree = "<group>"; };
- FEFA5C0E299F810B00765C17 /* Core_Data.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = Core_Data.xcdatamodel; sourceTree = "<group>"; };
- FEFA5C10299F814A00765C17 /* CoreDataStack.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreDataStack.swift; sourceTree = "<group>"; };
- FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIDevice+Extensions.swift"; sourceTree = "<group>"; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 388E595525AD948C0019842D /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */,
- 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */,
- CE51DD1C2A01970900F163F7 /* ConnectIQ 2.xcframework in Frameworks */,
- 3811DE1025C9D37700A708ED /* Swinject in Frameworks */,
- B958F1B72BA0711600484851 /* MKRingProgressView in Frameworks */,
- 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */,
- 3833B46D26012030003021B3 /* Algorithms in Frameworks */,
- CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */,
- 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */,
- E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 38E8752127554D5700975559 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- CE6B025728F350FF000C5502 /* HealthKit.framework in Frameworks */,
- 38E8755827567AE400975559 /* SwiftDate in Frameworks */,
- 199561C1275E61A50077B976 /* HealthKit.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 38FCF3EA25E9028E0078B0D1 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */ = {
- isa = PBXGroup;
- children = (
- 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */,
- 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */,
- 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */,
- 4E8C7B59F8065047ECE20965 /* View */,
- );
- path = ConfigEditor;
- sourceTree = "<group>";
- };
- 0A67A70F9438DB6586398458 /* View */ = {
- isa = PBXGroup;
- children = (
- B5822B15939E719628E9FF7C /* SnoozeRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 0D76BBC81CEDC1A0050F45EF /* View */ = {
- isa = PBXGroup;
- children = (
- 38569352270B5E350002C50D /* CGMRootView.swift */,
- CE7950232997D81700FA576E /* CGMSettingsView.swift */,
- CE7950252998056D00FA576E /* CGMSetupView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 0EE66DD474AFFD4FD787D5B9 /* View */ = {
- isa = PBXGroup;
- children = (
- 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 18B49BC9587A59E3A347C1CD /* View */ = {
- isa = PBXGroup;
- children = (
- BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 190EBCC229FF134900BA767D /* StatConfig */ = {
- isa = PBXGroup;
- children = (
- 190EBCC329FF136900BA767D /* StatConfigDataFlow.swift */,
- 190EBCC529FF138000BA767D /* StatConfigProvider.swift */,
- 190EBCC729FF13AA00BA767D /* StatConfigStateModel.swift */,
- 190EBCC929FF13AF00BA767D /* View */,
- );
- path = StatConfig;
- sourceTree = "<group>";
- };
- 190EBCC929FF13AF00BA767D /* View */ = {
- isa = PBXGroup;
- children = (
- 190EBCCA29FF13CB00BA767D /* StatConfigRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 192F0FF5276AC36D0085BE4D /* Recovered References */ = {
- isa = PBXGroup;
- children = (
- 199561C0275E61A50077B976 /* HealthKit.framework */,
- );
- name = "Recovered References";
- sourceTree = "<group>";
- };
- 198377CF266BFEDE004DE65E /* Localizations */ = {
- isa = PBXGroup;
- children = (
- 19D440A926B6FEBD008DA6C8 /* Main */,
- );
- path = Localizations;
- sourceTree = "<group>";
- };
- 19D440A926B6FEBD008DA6C8 /* Main */ = {
- isa = PBXGroup;
- children = (
- 198377D4266BFFF6004DE65E /* Localizable.strings */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 19D466A129AA2B0A004D5F33 /* FPUConfig */ = {
- isa = PBXGroup;
- children = (
- 19D466A229AA2B80004D5F33 /* FPUConfigDataFlow.swift */,
- 19D466A429AA2BD4004D5F33 /* FPUConfigProvider.swift */,
- 19D466A629AA2C22004D5F33 /* FPUConfigStateModel.swift */,
- 19D466A829AA306E004D5F33 /* View */,
- );
- path = FPUConfig;
- sourceTree = "<group>";
- };
- 19D466A829AA306E004D5F33 /* View */ = {
- isa = PBXGroup;
- children = (
- 19D466A929AA3099004D5F33 /* FPUConfigRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 19DC677C29CA66F200FD9EC4 /* OverrideProfilesConfig */ = {
- isa = PBXGroup;
- children = (
- 19DC677E29CA675700FD9EC4 /* OverrideProfilesDataFlow.swift */,
- 19DC678029CA676A00FD9EC4 /* OverrideProfilesProvider.swift */,
- 19DC678229CA677D00FD9EC4 /* OverrideProfilesStateModel.swift */,
- 19DC677D29CA672500FD9EC4 /* View */,
- );
- path = OverrideProfilesConfig;
- sourceTree = "<group>";
- };
- 19DC677D29CA672500FD9EC4 /* View */ = {
- isa = PBXGroup;
- children = (
- 19DC678429CA67A400FD9EC4 /* OverrideProfilesRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 19E1F7E629D0828B005C8D20 /* IconConfig */ = {
- isa = PBXGroup;
- children = (
- 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */,
- 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */,
- 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */,
- 19E1F7ED29D088C0005C8D20 /* View */,
- );
- path = IconConfig;
- sourceTree = "<group>";
- };
- 19E1F7ED29D088C0005C8D20 /* View */ = {
- isa = PBXGroup;
- children = (
- 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */,
- 1967DFC129D053D300759F30 /* IconImage.swift */,
- 1967DFBF29D053AC00759F30 /* IconSelection.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 19F95FF129F10F9C00314DDC /* Stat */ = {
- isa = PBXGroup;
- children = (
- 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */,
- 19F95FF429F10FCF00314DDC /* StatProvider.swift */,
- 19F95FF629F10FEE00314DDC /* StatStateModel.swift */,
- 19F95FF829F10FF600314DDC /* View */,
- );
- path = Stat;
- sourceTree = "<group>";
- };
- 19F95FF829F10FF600314DDC /* View */ = {
- isa = PBXGroup;
- children = (
- 19F95FF929F1102A00314DDC /* StatRootView.swift */,
- 19A9102F2A24BF6300C8951B /* StatsView.swift */,
- 19A910372A24EF3200C8951B /* ChartsView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 29B478DF61BF8D270F7D8954 /* Snooze */ = {
- isa = PBXGroup;
- children = (
- 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */,
- 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */,
- E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */,
- 0A67A70F9438DB6586398458 /* View */,
- );
- path = Snooze;
- sourceTree = "<group>";
- };
- 34CA4DF169B53D67EF18ED8A /* View */ = {
- isa = PBXGroup;
- children = (
- 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 3811DE0325C9D31700A708ED /* Modules */ = {
- isa = PBXGroup;
- children = (
- 190EBCC229FF134900BA767D /* StatConfig */,
- CE94597C29E9E1CD0047C9C6 /* WatchConfig */,
- 19F95FF129F10F9C00314DDC /* Stat */,
- 19E1F7E629D0828B005C8D20 /* IconConfig */,
- 19D466A129AA2B0A004D5F33 /* FPUConfig */,
- F90692CD274B99850037068D /* HealthKit */,
- 6DC5D590658EF8B8DF94F9F5 /* AddCarbs */,
- A9A4C88374496B3C89058A89 /* AddTempTarget */,
- 672F63EEAE27400625E14BAD /* AutotuneConfig */,
- A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */,
- 3811DE0425C9D32E00A708ED /* Base */,
- C2C98283C436DB934D7E7994 /* Bolus */,
- E8176B120B55CE89F1591542 /* Calibrations */,
- F75CB57ED6971B46F8756083 /* CGM */,
- 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */,
- E42231DBF0DBE2B4B92D1B15 /* CREditor */,
- 9E56E3626FAD933385101B76 /* DataTable */,
- 3811DE2725C9D49500A708ED /* Home */,
- D8F047E14D567F2B5DBEFD96 /* ISFEditor */,
- C11D545CED3ECEB525EDEE23 /* LibreConfig */,
- 3811DE1A25C9D48300A708ED /* Main */,
- 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */,
- D533BF261CDC1C3F871E7BFD /* NightscoutConfig */,
- F66B236E00924A05D6A9F9DF /* NotificationsConfig */,
- 19DC677C29CA66F200FD9EC4 /* OverrideProfilesConfig */,
- 3E1C41D9301B7058AA7BF5EA /* PreferencesEditor */,
- 99C01B871ACAB3F32CE755C7 /* PumpConfig */,
- E493126EA71765130F64CCE5 /* PumpSettingsEditor */,
- 3811DE3825C9D4A100A708ED /* Settings */,
- 29B478DF61BF8D270F7D8954 /* Snooze */,
- 6517011F19F244F64E1FF14B /* TargetsEditor */,
- );
- path = Modules;
- sourceTree = "<group>";
- };
- 3811DE0425C9D32E00A708ED /* Base */ = {
- isa = PBXGroup;
- children = (
- 3811DE0725C9D32E00A708ED /* BaseView.swift */,
- 3811DE0825C9D32F00A708ED /* BaseProvider.swift */,
- 38FEF3F92737E42000574A46 /* BaseStateModel.swift */,
- );
- path = Base;
- sourceTree = "<group>";
- };
- 3811DE1325C9D39E00A708ED /* Sources */ = {
- isa = PBXGroup;
- children = (
- CE7CA3422A064973004BE681 /* Shortcuts */,
- 3811DEDE25C9E2DD00A708ED /* Application */,
- 3811DF0A25CAAAA500A708ED /* APS */,
- E00EEBFC27368630002FF094 /* Assemblies */,
- 38E98A3225F5300800C0CED0 /* Config */,
- 388E5A5A25B6F05F0019842D /* Helpers */,
- 38DF178A27733E0F00B3528F /* AnimatedBackground */,
- 198377CF266BFEDE004DE65E /* Localizations */,
- 38E98A1A25F52C9300C0CED0 /* Logger */,
- 388E5A5925B6F0250019842D /* Models */,
- 3811DE0325C9D31700A708ED /* Modules */,
- 3811DE1425C9D40400A708ED /* Router */,
- 3811DE9125C9D88200A708ED /* Services */,
- 3883582E25EEAFC000E024B2 /* Views */,
- );
- path = Sources;
- sourceTree = "<group>";
- };
- 3811DE1425C9D40400A708ED /* Router */ = {
- isa = PBXGroup;
- children = (
- 3811DE1525C9D40400A708ED /* Screen.swift */,
- 3811DE1625C9D40400A708ED /* Router.swift */,
- );
- path = Router;
- sourceTree = "<group>";
- };
- 3811DE1A25C9D48300A708ED /* Main */ = {
- isa = PBXGroup;
- children = (
- 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */,
- 3811DE1C25C9D48300A708ED /* MainProvider.swift */,
- 38FEF3FB2737E53800574A46 /* MainStateModel.swift */,
- 3811DE1F25C9D48300A708ED /* View */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 3811DE1F25C9D48300A708ED /* View */ = {
- isa = PBXGroup;
- children = (
- 3811DE2025C9D48300A708ED /* MainRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 3811DE2725C9D49500A708ED /* Home */ = {
- isa = PBXGroup;
- children = (
- 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */,
- 3811DE2925C9D49500A708ED /* HomeProvider.swift */,
- 3811DE2825C9D49500A708ED /* HomeStateModel.swift */,
- 3811DE2C25C9D49500A708ED /* View */,
- );
- path = Home;
- sourceTree = "<group>";
- };
- 3811DE2C25C9D49500A708ED /* View */ = {
- isa = PBXGroup;
- children = (
- 3811DE2E25C9D49500A708ED /* HomeRootView.swift */,
- 3833B51E260264AC003021B3 /* Chart */,
- 3833B51F260264B6003021B3 /* Header */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 3811DE3825C9D4A100A708ED /* Settings */ = {
- isa = PBXGroup;
- children = (
- 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */,
- 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */,
- 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */,
- 3811DE3B25C9D4A100A708ED /* View */,
- );
- path = Settings;
- sourceTree = "<group>";
- };
- 3811DE3B25C9D4A100A708ED /* View */ = {
- isa = PBXGroup;
- children = (
- 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 3811DE9125C9D88200A708ED /* Services */ = {
- isa = PBXGroup;
- children = (
- CEB434E128B8F9BC00B70274 /* Bluetooth */,
- F90692A8274B7A980037068D /* HealthKit */,
- 38E8754D275556E100975559 /* WatchManager */,
- 38E87406274F9AA500975559 /* UserNotifiactions */,
- 3862CC2C2743F9DC00BF832C /* Calendar */,
- 38AEE75025F021F10013F05B /* SettingsManager */,
- 38B4F3C425E5016800E76A18 /* Notifications */,
- 3811DE9225C9D88200A708ED /* Appearance */,
- 3811DE9425C9D88200A708ED /* Network */,
- 3811DE9825C9D88300A708ED /* Storage */,
- 3811DEA525C9D88300A708ED /* UnlockManager */,
- );
- path = Services;
- sourceTree = "<group>";
- };
- 3811DE9225C9D88200A708ED /* Appearance */ = {
- isa = PBXGroup;
- children = (
- 3811DE9325C9D88200A708ED /* AppearanceManager.swift */,
- );
- path = Appearance;
- sourceTree = "<group>";
- };
- 3811DE9425C9D88200A708ED /* Network */ = {
- isa = PBXGroup;
- children = (
- 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */,
- 38192E03261B82FA0094D973 /* ReachabilityManager.swift */,
- 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */,
- 3811DE9725C9D88300A708ED /* NightscoutManager.swift */,
- 38FE826925CC82DB001FF17A /* NetworkService.swift */,
- 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */,
- );
- path = Network;
- sourceTree = "<group>";
- };
- 3811DE9825C9D88300A708ED /* Storage */ = {
- isa = PBXGroup;
- children = (
- 383948D525CD4D8900E91849 /* FileStorage.swift */,
- 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */,
- 3811DE9925C9D88300A708ED /* Cache */,
- 38E44529274E40F100EC9A94 /* Disk */,
- 3811DE9D25C9D88300A708ED /* Keychain */,
- );
- path = Storage;
- sourceTree = "<group>";
- };
- 3811DE9925C9D88300A708ED /* Cache */ = {
- isa = PBXGroup;
- children = (
- 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */,
- 3811DE9B25C9D88300A708ED /* Cache.swift */,
- );
- path = Cache;
- sourceTree = "<group>";
- };
- 3811DE9D25C9D88300A708ED /* Keychain */ = {
- isa = PBXGroup;
- children = (
- 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */,
- 3811DE9F25C9D88300A708ED /* Keychain.swift */,
- 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */,
- );
- path = Keychain;
- sourceTree = "<group>";
- };
- 3811DEA525C9D88300A708ED /* UnlockManager */ = {
- isa = PBXGroup;
- children = (
- 3811DEA625C9D88300A708ED /* UnlockManager.swift */,
- );
- path = UnlockManager;
- sourceTree = "<group>";
- };
- 3811DED425C9E1E300A708ED /* Resources */ = {
- isa = PBXGroup;
- children = (
- 388E597125AD9CF10019842D /* json */,
- 388E596E25AD96040019842D /* javascript */,
- 3811DEC725C9DA7300A708ED /* FreeAPS.entitlements */,
- 388E596425AD948E0019842D /* Info.plist */,
- 1927C8E82744606D00347C69 /* InfoPlist.strings */,
- B9CAAEFB2AE70836000F68BC /* branch.txt */,
- 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */,
- );
- path = Resources;
- sourceTree = "<group>";
- };
- 3811DEDE25C9E2DD00A708ED /* Application */ = {
- isa = PBXGroup;
- children = (
- 38E4451D274DB04600EC9A94 /* AppDelegate.swift */,
- 388E595B25AD948C0019842D /* FreeAPSApp.swift */,
- );
- path = Application;
- sourceTree = "<group>";
- };
- 3811DEE325CA063400A708ED /* PropertyWrappers */ = {
- isa = PBXGroup;
- children = (
- 38E44527274E401C00EC9A94 /* Protected.swift */,
- 3811DEE425CA063400A708ED /* Injected.swift */,
- 3811DEE625CA063400A708ED /* SyncAccess.swift */,
- 3811DEE725CA063400A708ED /* PersistedProperty.swift */,
- );
- path = PropertyWrappers;
- sourceTree = "<group>";
- };
- 3811DF0A25CAAAA500A708ED /* APS */ = {
- isa = PBXGroup;
- children = (
- 3811DF0F25CAAAE200A708ED /* APSManager.swift */,
- 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */,
- 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */,
- 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */,
- 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */,
- 3856933F270B57A00002C50D /* CGM */,
- 38A504F625DDA0E200C5B9E8 /* Extensions */,
- 388E5A5825B6F0070019842D /* OpenAPS */,
- 38A0362725ECF05300FCBB52 /* Storage */,
- );
- path = APS;
- sourceTree = "<group>";
- };
- 3818AA44274C229000843DB3 /* Packages */ = {
- isa = PBXGroup;
- children = (
- 3818AA45274C229000843DB3 /* LibreTransmitter */,
- );
- name = Packages;
- sourceTree = "<group>";
- };
- 3818AA48274C267000843DB3 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */,
- CE94597929E9DF7B0047C9C6 /* ConnectIQ.framework */,
- CEC751D529D88262006E9D24 /* MinimedKit.framework */,
- CEC751D729D88262006E9D24 /* MinimedKitUI.framework */,
- CEC751D129D88257006E9D24 /* OmniKit.framework */,
- CEC751D329D88257006E9D24 /* OmniKitUI.framework */,
- CE79502D29980E4D00FA576E /* ShareClientUI.framework */,
- CE79502929980C9F00FA576E /* G7SensorKitUI.framework */,
- CE79502729980C9600FA576E /* CGMBLEKitUI.framework */,
- CE398D1A297D69A900DF218F /* ShareClient.framework */,
- CE398D17297C9EE800DF218F /* G7SensorKit.framework */,
- CE398D012977349800DF218F /* CryptoKit.framework */,
- CE6B025628F350FF000C5502 /* HealthKit.framework */,
- CEB434DE28B8F5C400B70274 /* OmniBLE.framework */,
- CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */,
- E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */,
- 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */,
- 38E873FD274F761800975559 /* CoreNFC.framework */,
- 3818AA70274C278200843DB3 /* LoopTestingKit.framework */,
- 3818AA4C274C26A300843DB3 /* LoopKit.framework */,
- 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */,
- 3818AA4E274C26A300843DB3 /* MockKit.framework */,
- 3818AA4F274C26A300843DB3 /* MockKitUI.framework */,
- 3818AA51274C26A300843DB3 /* MinimedKit.framework */,
- 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */,
- 3818AA53274C26A300843DB3 /* OmniKit.framework */,
- 3818AA54274C26A300843DB3 /* OmniKitUI.framework */,
- 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */,
- 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */,
- 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */,
- 3818AA49274C267000843DB3 /* CGMBLEKit.framework */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- 3833B51E260264AC003021B3 /* Chart */ = {
- isa = PBXGroup;
- children = (
- 38AAF8702600C1B0004AF583 /* MainChartView.swift */,
- );
- path = Chart;
- sourceTree = "<group>";
- };
- 3833B51F260264B6003021B3 /* Header */ = {
- isa = PBXGroup;
- children = (
- 383420D525FFE38C002D46C1 /* LoopView.swift */,
- 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */,
- 38DAB27F260CBB7F00F74C1A /* PumpView.swift */,
- );
- path = Header;
- sourceTree = "<group>";
- };
- 3856933F270B57A00002C50D /* CGM */ = {
- isa = PBXGroup;
- children = (
- CE398D15297C9D1D00DF218F /* dexcomSourceG7.swift */,
- F816825F28DB441800054060 /* BluetoothTransmitter.swift */,
- F816825D28DB441200054060 /* HeartBeatManager.swift */,
- 38569346270B5DFB0002C50D /* AppGroupSource.swift */,
- 38569344270B5DFA0002C50D /* CGMType.swift */,
- 386A124E271707F000DDC61C /* DexcomSourceG6.swift */,
- 38569345270B5DFA0002C50D /* GlucoseSource.swift */,
- E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */,
- 38FEF407273B011A00574A46 /* LibreTransmitterSource.swift */,
- 3862CC03273D150600BF832C /* Calibrations */,
- CECA4774298DA8310095139F /* DexcomSourceG5.swift */,
- );
- path = CGM;
- sourceTree = "<group>";
- };
- 3862CC03273D150600BF832C /* Calibrations */ = {
- isa = PBXGroup;
- children = (
- 3862CC04273D152B00BF832C /* CalibrationService.swift */,
- );
- path = Calibrations;
- sourceTree = "<group>";
- };
- 3862CC2C2743F9DC00BF832C /* Calendar */ = {
- isa = PBXGroup;
- children = (
- 3862CC2D2743F9F700BF832C /* CalendarManager.swift */,
- );
- path = Calendar;
- sourceTree = "<group>";
- };
- 3883582E25EEAFC000E024B2 /* Views */ = {
- isa = PBXGroup;
- children = (
- 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */,
- 3883581B25EE79BB00E024B2 /* DecimalTextField.swift */,
- 383420D825FFEB3F002D46C1 /* Popup.swift */,
- 389ECDFD2601061500D86C4F /* View+Snapshot.swift */,
- 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */,
- 38DF1785276A73D400B3528F /* TagCloudView.swift */,
- );
- path = Views;
- sourceTree = "<group>";
- };
- 388E594F25AD948C0019842D = {
- isa = PBXGroup;
- children = (
- FEFA5C0D299F810B00765C17 /* Core_Data.xcdatamodeld */,
- 38F3783A2613555C009DB701 /* Config.xcconfig */,
- 3818AA42274BBC1100843DB3 /* ConfigOverride.xcconfig */,
- 388E595A25AD948C0019842D /* FreeAPS */,
- 38FCF3EE25E9028E0078B0D1 /* FreeAPSTests */,
- 3818AA44274C229000843DB3 /* Packages */,
- 38E8751D27554D5500975559 /* FreeAPSWatch */,
- 38E8752827554D5700975559 /* FreeAPSWatch WatchKit Extension */,
- 388E595925AD948C0019842D /* Products */,
- 3818AA48274C267000843DB3 /* Frameworks */,
- 192F0FF5276AC36D0085BE4D /* Recovered References */,
- );
- sourceTree = "<group>";
- };
- 388E595925AD948C0019842D /* Products */ = {
- isa = PBXGroup;
- children = (
- 388E595825AD948C0019842D /* FreeAPS.app */,
- 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */,
- 38E8751C27554D5500975559 /* FreeAPSWatch.app */,
- 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 388E595A25AD948C0019842D /* FreeAPS */ = {
- isa = PBXGroup;
- children = (
- 3811DED425C9E1E300A708ED /* Resources */,
- 3811DE1325C9D39E00A708ED /* Sources */,
- );
- path = FreeAPS;
- sourceTree = "<group>";
- };
- 388E5A5825B6F0070019842D /* OpenAPS */ = {
- isa = PBXGroup;
- children = (
- 388E596B25AD95110019842D /* OpenAPS.swift */,
- 384E803325C385E60086DB71 /* JavaScriptWorker.swift */,
- 384E803725C388640086DB71 /* Script.swift */,
- 3821ED4B25DD18BA00BC42AD /* Constants.swift */,
- );
- path = OpenAPS;
- sourceTree = "<group>";
- };
- 388E5A5925B6F0250019842D /* Models */ = {
- isa = PBXGroup;
- children = (
- 385CEAC025F2EA52002D6D5B /* Announcement.swift */,
- 388E5A5F25B6F2310019842D /* Autosens.swift */,
- 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */,
- 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */,
- 38D0B3B525EBE24900CB6E88 /* Battery.swift */,
- 382C134A25F14E3700715CE1 /* BGTargets.swift */,
- 3870FF4225EC13F40088248F /* BloodGlucose.swift */,
- 38A9260425F012D8009E3739 /* CarbRatios.swift */,
- 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */,
- 3811DF0125CA9FEA00A708ED /* Credentials.swift */,
- 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */,
- 383948D925CD64D500E91849 /* Glucose.swift */,
- 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */,
- 38887CCD25F5725200944304 /* IOBEntry.swift */,
- 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */,
- 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */,
- 3895E4C525B9E00D00214B37 /* Preferences.swift */,
- 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */,
- 3883583325EEB38000E024B2 /* PumpSettings.swift */,
- 38E989DC25F5021400C0CED0 /* PumpStatus.swift */,
- 38BF021C25E7E3AF00579895 /* Reservoir.swift */,
- 3871F38625ED661C0013ECB5 /* Suggestion.swift */,
- 38A0364125ED069400FCBB52 /* TempBasal.swift */,
- 3871F39B25ED892B0013ECB5 /* TempTarget.swift */,
- 3811DE8E25C9D80400A708ED /* User.swift */,
- E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */,
- 1935363F28496F7D001E0B16 /* Oref2_variables.swift */,
- CE82E02628E869DF00473A9C /* AlertEntry.swift */,
- 19B0EF2028F6D66200069496 /* Statistics.swift */,
- 19012CDB291D2CB900FB8210 /* LoopStats.swift */,
- FE41E4D329463C660047FD55 /* NightscoutStatistics.swift */,
- FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */,
- 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */,
- 1967DFBD29D052C200759F30 /* Icons.swift */,
- 19D4E4EA29FC6A9F00351451 /* TIRforChart.swift */,
- 19A910352A24D6D700C8951B /* DateFilter.swift */,
- 193F6CDC2A512C8F001240FD /* Loops.swift */,
- CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */,
- );
- path = Models;
- sourceTree = "<group>";
- };
- 388E5A5A25B6F05F0019842D /* Helpers */ = {
- isa = PBXGroup;
- children = (
- FEFA5C10299F814A00765C17 /* CoreDataStack.swift */,
- 38F37827261260DC009DB701 /* Color+Extensions.swift */,
- 389ECE042601144100D86C4F /* ConcurrentMap.swift */,
- 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */,
- 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */,
- 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */,
- 389487392614928B004DF424 /* DispatchTimer.swift */,
- 3811DE5425C9D4D500A708ED /* Formatters.swift */,
- 38FEF412273B317A00574A46 /* HKUnit.swift */,
- 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */,
- 389A571F26079BAA00BC102F /* Interpolation.swift */,
- 388E5A5B25B6F0770019842D /* JSON.swift */,
- 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */,
- 38FCF3D525E8FDF40078B0D1 /* MD5.swift */,
- 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */,
- 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */,
- 3811DE5725C9D4D500A708ED /* ProgressBar.swift */,
- 3811DE5525C9D4D500A708ED /* Publisher.swift */,
- 38E98A3625F5509500C0CED0 /* String+Extensions.swift */,
- 3811DEE325CA063400A708ED /* PropertyWrappers */,
- E06B9119275B5EEA003C04B6 /* Array+Extension.swift */,
- CEB434E428B8FF5D00B70274 /* UIColor.swift */,
- FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */,
- FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */,
- CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */,
- );
- path = Helpers;
- sourceTree = "<group>";
- };
- 38A0362725ECF05300FCBB52 /* Storage */ = {
- isa = PBXGroup;
- children = (
- 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */,
- 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */,
- 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */,
- 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */,
- 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */,
- CE82E02428E867BA00473A9C /* AlertStorage.swift */,
- );
- path = Storage;
- sourceTree = "<group>";
- };
- 38A504F625DDA0E200C5B9E8 /* Extensions */ = {
- isa = PBXGroup;
- children = (
- 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */,
- 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */,
- CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */,
- CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */,
- CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */,
- CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */,
- );
- path = Extensions;
- sourceTree = "<group>";
- };
- 38AEE75025F021F10013F05B /* SettingsManager */ = {
- isa = PBXGroup;
- children = (
- 38AEE75125F022080013F05B /* SettingsManager.swift */,
- );
- path = SettingsManager;
- sourceTree = "<group>";
- };
- 38B4F3C425E5016800E76A18 /* Notifications */ = {
- isa = PBXGroup;
- children = (
- 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */,
- 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */,
- 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */,
- );
- path = Notifications;
- sourceTree = "<group>";
- };
- 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */ = {
- isa = PBXGroup;
- children = (
- 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */,
- 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */,
- );
- path = SwiftNotificationCenter;
- sourceTree = "<group>";
- };
- 38DF178A27733E0F00B3528F /* AnimatedBackground */ = {
- isa = PBXGroup;
- children = (
- 38DF178B27733E6800B3528F /* snow.sks */,
- 38DF178C27733E6800B3528F /* Assets.xcassets */,
- 38DF178F27733EAD00B3528F /* SnowScene.swift */,
- );
- path = AnimatedBackground;
- sourceTree = "<group>";
- };
- 38E44529274E40F100EC9A94 /* Disk */ = {
- isa = PBXGroup;
- children = (
- 38E4452C274E411600EC9A94 /* Disk.swift */,
- 38E4452E274E411600EC9A94 /* Disk+[Data].swift */,
- 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */,
- 38E44532274E411700EC9A94 /* Disk+Codable.swift */,
- 38E4452B274E411600EC9A94 /* Disk+Data.swift */,
- 38E44533274E411700EC9A94 /* Disk+Errors.swift */,
- 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */,
- 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */,
- 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */,
- 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */,
- );
- path = Disk;
- sourceTree = "<group>";
- };
- 38E87406274F9AA500975559 /* UserNotifiactions */ = {
- isa = PBXGroup;
- children = (
- 38E87407274F9AD000975559 /* UserNotificationsManager.swift */,
- );
- path = UserNotifiactions;
- sourceTree = "<group>";
- };
- 38E8751D27554D5500975559 /* FreeAPSWatch */ = {
- isa = PBXGroup;
- children = (
- 1980131D29CC9839002FF024 /* Info.plist */,
- 38E8755627564B6100975559 /* FreeAPSWatch.entitlements */,
- 38E8751E27554D5700975559 /* Assets.xcassets */,
- );
- path = FreeAPSWatch;
- sourceTree = "<group>";
- };
- 38E8752827554D5700975559 /* FreeAPSWatch WatchKit Extension */ = {
- isa = PBXGroup;
- children = (
- 38E8755527564B5000975559 /* FreeAPSWatch WatchKit Extension.entitlements */,
- 38E8755027555D0500975559 /* DataFlow.swift */,
- 38E8754B2755548F00975559 /* WatchStateModel.swift */,
- 38E875482755505800975559 /* Views */,
- 38E8752927554D5700975559 /* FreeAPSApp.swift */,
- 38E8752D27554D5700975559 /* NotificationController.swift */,
- 38E8752F27554D5700975559 /* NotificationView.swift */,
- 38E8753127554D5700975559 /* ComplicationController.swift */,
- 38E8753327554D5800975559 /* Assets.xcassets */,
- 38E8753827554D5900975559 /* Info.plist */,
- 38E8753927554D5900975559 /* PushNotificationPayload.apns */,
- 38E8753527554D5800975559 /* Preview Content */,
- );
- path = "FreeAPSWatch WatchKit Extension";
- sourceTree = "<group>";
- };
- 38E8753527554D5800975559 /* Preview Content */ = {
- isa = PBXGroup;
- children = (
- 38E8753627554D5800975559 /* Preview Assets.xcassets */,
- );
- path = "Preview Content";
- sourceTree = "<group>";
- };
- 38E875482755505800975559 /* Views */ = {
- isa = PBXGroup;
- children = (
- 38E8752B27554D5700975559 /* MainView.swift */,
- 38E87549275550BB00975559 /* CarbsView.swift */,
- 38E8755A27568A6700975559 /* ConfirmationView.swift */,
- 38E8757A2757B1C300975559 /* TempTargetsView.swift */,
- 38E8757C2757C45D00975559 /* BolusView.swift */,
- 38E8757F27595DC500975559 /* BolusConfirmationView.swift */,
- );
- path = Views;
- sourceTree = "<group>";
- };
- 38E8754D275556E100975559 /* WatchManager */ = {
- isa = PBXGroup;
- children = (
- 38E8754E275556FA00975559 /* WatchManager.swift */,
- CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */,
- );
- path = WatchManager;
- sourceTree = "<group>";
- };
- 38E98A1A25F52C9300C0CED0 /* Logger */ = {
- isa = PBXGroup;
- children = (
- 38E98A1B25F52C9300C0CED0 /* Signpost.swift */,
- 38E98A1C25F52C9300C0CED0 /* Logger.swift */,
- 38E98A1D25F52C9300C0CED0 /* IssueReporter */,
- 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */,
- );
- path = Logger;
- sourceTree = "<group>";
- };
- 38E98A1D25F52C9300C0CED0 /* IssueReporter */ = {
- isa = PBXGroup;
- children = (
- 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */,
- 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */,
- 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */,
- );
- path = IssueReporter;
- sourceTree = "<group>";
- };
- 38E98A3225F5300800C0CED0 /* Config */ = {
- isa = PBXGroup;
- children = (
- 38E98A2F25F52FF700C0CED0 /* Config.swift */,
- );
- path = Config;
- sourceTree = "<group>";
- };
- 38FCF3EE25E9028E0078B0D1 /* FreeAPSTests */ = {
- isa = PBXGroup;
- children = (
- 38FCF3F125E9028E0078B0D1 /* Info.plist */,
- 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */,
- );
- path = FreeAPSTests;
- sourceTree = "<group>";
- };
- 3E1C41D9301B7058AA7BF5EA /* PreferencesEditor */ = {
- isa = PBXGroup;
- children = (
- 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */,
- 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */,
- 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */,
- 833DA2F9E47E64E305F92F9D /* View */,
- );
- path = PreferencesEditor;
- sourceTree = "<group>";
- };
- 3F8670D63672AF88E2E9B09E /* View */ = {
- isa = PBXGroup;
- children = (
- E9AAB83FB6C3B41EFD1846A0 /* AddTempTargetRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 43952E72FE7AF85715FE020E /* View */ = {
- isa = PBXGroup;
- children = (
- 500371C09F54F89A97D65FDB /* CalibrationsRootView.swift */,
- 3862CC1E273FDC9200BF832C /* CalibrationsChart.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 4E8C7B59F8065047ECE20965 /* View */ = {
- isa = PBXGroup;
- children = (
- 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 4F4AE4D901E8BA872B207D7F /* View */ = {
- isa = PBXGroup;
- children = (
- 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */ = {
- isa = PBXGroup;
- children = (
- 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */,
- 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */,
- CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */,
- 84BDC840A57C65A1E6F9F780 /* View */,
- );
- path = ManualTempBasal;
- sourceTree = "<group>";
- };
- 50E85421406582CF9D321A20 /* View */ = {
- isa = PBXGroup;
- children = (
- 86FC1CFD647CF34508AF9A3B /* AddCarbsRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 510CCF29FD3216C5BBC49A15 /* View */ = {
- isa = PBXGroup;
- children = (
- 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */,
- 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */,
- 38BF021A25E7D06400579895 /* PumpSettingsView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 54946647FDCFE43028F60511 /* View */ = {
- isa = PBXGroup;
- children = (
- D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 55DE731ACE8289FAF3819077 /* View */ = {
- isa = PBXGroup;
- children = (
- 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 64271A287C92581EADCB47FA /* View */ = {
- isa = PBXGroup;
- children = (
- B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 6517011F19F244F64E1FF14B /* TargetsEditor */ = {
- isa = PBXGroup;
- children = (
- BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */,
- 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */,
- 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */,
- 34CA4DF169B53D67EF18ED8A /* View */,
- );
- path = TargetsEditor;
- sourceTree = "<group>";
- };
- 672F63EEAE27400625E14BAD /* AutotuneConfig */ = {
- isa = PBXGroup;
- children = (
- 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */,
- B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */,
- D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */,
- 55DE731ACE8289FAF3819077 /* View */,
- );
- path = AutotuneConfig;
- sourceTree = "<group>";
- };
- 6DC5D590658EF8B8DF94F9F5 /* AddCarbs */ = {
- isa = PBXGroup;
- children = (
- 5F48C3AC770D4CCD0EA2B0C2 /* AddCarbsDataFlow.swift */,
- 618E62C9757B2F95431B5DC0 /* AddCarbsProvider.swift */,
- 39E7C997E56DAF8D28D09014 /* AddCarbsStateModel.swift */,
- 50E85421406582CF9D321A20 /* View */,
- );
- path = AddCarbs;
- sourceTree = "<group>";
- };
- 833DA2F9E47E64E305F92F9D /* View */ = {
- isa = PBXGroup;
- children = (
- 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 84BDC840A57C65A1E6F9F780 /* View */ = {
- isa = PBXGroup;
- children = (
- C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 99C01B871ACAB3F32CE755C7 /* PumpConfig */ = {
- isa = PBXGroup;
- children = (
- AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */,
- A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */,
- 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */,
- 510CCF29FD3216C5BBC49A15 /* View */,
- );
- path = PumpConfig;
- sourceTree = "<group>";
- };
- 9E56E3626FAD933385101B76 /* DataTable */ = {
- isa = PBXGroup;
- children = (
- A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */,
- 60744C3E9BB3652895C908CC /* DataTableProvider.swift */,
- 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */,
- 0EE66DD474AFFD4FD787D5B9 /* View */,
- );
- path = DataTable;
- sourceTree = "<group>";
- };
- A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */ = {
- isa = PBXGroup;
- children = (
- 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */,
- 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */,
- AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */,
- 18B49BC9587A59E3A347C1CD /* View */,
- );
- path = BasalProfileEditor;
- sourceTree = "<group>";
- };
- A56097CB1DCBCE98F2F42177 /* View */ = {
- isa = PBXGroup;
- children = (
- BC210C0F3CB6D3C86E5DED4E /* LibreConfigRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- A9A4C88374496B3C89058A89 /* AddTempTarget */ = {
- isa = PBXGroup;
- children = (
- 5B8A42073A2D03A278914448 /* AddTempTargetDataFlow.swift */,
- AEE53A13D26F101B332EFFC8 /* AddTempTargetProvider.swift */,
- 8C3B5FD881CA45DFDEE0EDA9 /* AddTempTargetStateModel.swift */,
- 3F8670D63672AF88E2E9B09E /* View */,
- );
- path = AddTempTarget;
- sourceTree = "<group>";
- };
- B9488883C59C31550E0B4CEC /* View */ = {
- isa = PBXGroup;
- children = (
- 10A0C32B0DAB52726EF9B6D9 /* BolusRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- C11D545CED3ECEB525EDEE23 /* LibreConfig */ = {
- isa = PBXGroup;
- children = (
- 66A5B83E7967C38F7CBD883C /* LibreConfigDataFlow.swift */,
- E2EBA7C03C26FCC67E16D798 /* LibreConfigProvider.swift */,
- E68CDC1E5C438D1BEAD4CF24 /* LibreConfigStateModel.swift */,
- A56097CB1DCBCE98F2F42177 /* View */,
- );
- path = LibreConfig;
- sourceTree = "<group>";
- };
- C2C98283C436DB934D7E7994 /* Bolus */ = {
- isa = PBXGroup;
- children = (
- C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */,
- C19984D62EFC0035A9E9644D /* BolusProvider.swift */,
- 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */,
- B9488883C59C31550E0B4CEC /* View */,
- );
- path = Bolus;
- sourceTree = "<group>";
- };
- CE7CA3422A064973004BE681 /* Shortcuts */ = {
- isa = PBXGroup;
- children = (
- CE7CA3432A064973004BE681 /* AppShortcuts.swift */,
- CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */,
- CE7CA3452A064973004BE681 /* TempPresets */,
- CE7CA34B2A064973004BE681 /* State */,
- );
- path = Shortcuts;
- sourceTree = "<group>";
- };
- CE7CA3452A064973004BE681 /* TempPresets */ = {
- isa = PBXGroup;
- children = (
- CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */,
- CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */,
- CE7CA3482A064973004BE681 /* ListTempPresetsIntent.swift */,
- CE7CA3492A064973004BE681 /* tempPresetIntent.swift */,
- CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */,
- );
- path = TempPresets;
- sourceTree = "<group>";
- };
- CE7CA34B2A064973004BE681 /* State */ = {
- isa = PBXGroup;
- children = (
- CE7CA34C2A064973004BE681 /* ListStateIntent.swift */,
- CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */,
- CE7CA3572A064E2F004BE681 /* ListStateView.swift */,
- );
- path = State;
- sourceTree = "<group>";
- };
- CE94597C29E9E1CD0047C9C6 /* WatchConfig */ = {
- isa = PBXGroup;
- children = (
- CE94598529E9E3FE0047C9C6 /* View */,
- CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */,
- CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */,
- CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */,
- );
- path = WatchConfig;
- sourceTree = "<group>";
- };
- CE94598529E9E3FE0047C9C6 /* View */ = {
- isa = PBXGroup;
- children = (
- CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- CEB434E128B8F9BC00B70274 /* Bluetooth */ = {
- isa = PBXGroup;
- children = (
- CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */,
- );
- path = Bluetooth;
- sourceTree = "<group>";
- };
- D533BF261CDC1C3F871E7BFD /* NightscoutConfig */ = {
- isa = PBXGroup;
- children = (
- 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */,
- 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */,
- A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */,
- 4F4AE4D901E8BA872B207D7F /* View */,
- );
- path = NightscoutConfig;
- sourceTree = "<group>";
- };
- D8F047E14D567F2B5DBEFD96 /* ISFEditor */ = {
- isa = PBXGroup;
- children = (
- 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */,
- 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */,
- 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */,
- EEC747824D6593B5CD87E195 /* View */,
- );
- path = ISFEditor;
- sourceTree = "<group>";
- };
- E00EEBFC27368630002FF094 /* Assemblies */ = {
- isa = PBXGroup;
- children = (
- E00EEBFD27368630002FF094 /* ServiceAssembly.swift */,
- E00EEBFE27368630002FF094 /* SecurityAssembly.swift */,
- E00EEBFF27368630002FF094 /* StorageAssembly.swift */,
- E00EEC0027368630002FF094 /* UIAssembly.swift */,
- E00EEC0127368630002FF094 /* APSAssembly.swift */,
- E00EEC0227368630002FF094 /* NetworkAssembly.swift */,
- );
- path = Assemblies;
- sourceTree = "<group>";
- };
- E42231DBF0DBE2B4B92D1B15 /* CREditor */ = {
- isa = PBXGroup;
- children = (
- 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */,
- 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */,
- 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */,
- 54946647FDCFE43028F60511 /* View */,
- );
- path = CREditor;
- sourceTree = "<group>";
- };
- E493126EA71765130F64CCE5 /* PumpSettingsEditor */ = {
- isa = PBXGroup;
- children = (
- 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */,
- D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */,
- 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */,
- 64271A287C92581EADCB47FA /* View */,
- );
- path = PumpSettingsEditor;
- sourceTree = "<group>";
- };
- E8176B120B55CE89F1591542 /* Calibrations */ = {
- isa = PBXGroup;
- children = (
- DA241FB1663EC96FDBE64C8A /* CalibrationsDataFlow.swift */,
- 212E8BFE6D66EE65AA26A114 /* CalibrationsProvider.swift */,
- 47DFCE895C930F784EF11843 /* CalibrationsStateModel.swift */,
- 43952E72FE7AF85715FE020E /* View */,
- );
- path = Calibrations;
- sourceTree = "<group>";
- };
- EEC747824D6593B5CD87E195 /* View */ = {
- isa = PBXGroup;
- children = (
- FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- F5DE2E6D7B2133BBD3353DC7 /* View */ = {
- isa = PBXGroup;
- children = (
- 22963BD06A9C83959D4914E4 /* NotificationsConfigRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- F66B236E00924A05D6A9F9DF /* NotificationsConfig */ = {
- isa = PBXGroup;
- children = (
- 3260468377DA9DB4DEE9AF6D /* NotificationsConfigDataFlow.swift */,
- E625985B47742D498CB1681A /* NotificationsConfigProvider.swift */,
- DC2C6489D29ECCCAD78E0721 /* NotificationsConfigStateModel.swift */,
- F5DE2E6D7B2133BBD3353DC7 /* View */,
- );
- path = NotificationsConfig;
- sourceTree = "<group>";
- };
- F75CB57ED6971B46F8756083 /* CGM */ = {
- isa = PBXGroup;
- children = (
- B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */,
- 38FEF3FD2738083E00574A46 /* CGMProvider.swift */,
- 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */,
- 0D76BBC81CEDC1A0050F45EF /* View */,
- );
- path = CGM;
- sourceTree = "<group>";
- };
- F90692A8274B7A980037068D /* HealthKit */ = {
- isa = PBXGroup;
- children = (
- F90692A9274B7AAE0037068D /* HealthKitManager.swift */,
- );
- path = HealthKit;
- sourceTree = "<group>";
- };
- F90692CD274B99850037068D /* HealthKit */ = {
- isa = PBXGroup;
- children = (
- F90692CE274B999A0037068D /* HealthKitDataFlow.swift */,
- F90692D0274B99B60037068D /* HealthKitProvider.swift */,
- F90692D5274B9A450037068D /* HealthKitStateModel.swift */,
- F90692D4274B9A160037068D /* View */,
- );
- path = HealthKit;
- sourceTree = "<group>";
- };
- F90692D4274B9A160037068D /* View */ = {
- isa = PBXGroup;
- children = (
- F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */,
- );
- path = View;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXNativeTarget section */
- 388E595725AD948C0019842D /* FreeAPS */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "FreeAPS" */;
- buildPhases = (
- B9CAAEFA2AE6FDE6000F68BC /* Run Script: get branch name and commit ID */,
- 3811DEF525CA169200A708ED /* Swiftformat */,
- 388E595425AD948C0019842D /* Sources */,
- 388E595525AD948C0019842D /* Frameworks */,
- 388E595625AD948C0019842D /* Resources */,
- 3821ECD025DC703C00BC42AD /* Embed Frameworks */,
- 38E8753D27554D5900975559 /* Embed Watch Content */,
- );
- buildRules = (
- );
- dependencies = (
- 38E8753B27554D5900975559 /* PBXTargetDependency */,
- );
- name = FreeAPS;
- packageProductDependencies = (
- 3811DE0F25C9D37700A708ED /* Swinject */,
- 38B17B6525DD90E0005CAE3D /* SwiftDate */,
- 3833B46C26012030003021B3 /* Algorithms */,
- 38DF1788276FC8C400B3528F /* SwiftMessages */,
- CEB434FC28B90B7C00B70274 /* SwiftCharts */,
- B958F1B62BA0711600484851 /* MKRingProgressView */,
- );
- productName = FreeAPS;
- productReference = 388E595825AD948C0019842D /* FreeAPS.app */;
- productType = "com.apple.product-type.application";
- };
- 38E8751B27554D5500975559 /* FreeAPSWatch */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 38E8754427554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch" */;
- buildPhases = (
- 38E8751A27554D5500975559 /* Resources */,
- 38E8754027554D5900975559 /* Embed App Extensions */,
- );
- buildRules = (
- );
- dependencies = (
- 38E8752727554D5700975559 /* PBXTargetDependency */,
- );
- name = FreeAPSWatch;
- productName = FreeAPSWatch;
- productReference = 38E8751C27554D5500975559 /* FreeAPSWatch.app */;
- productType = "com.apple.product-type.application.watchapp2";
- };
- 38E8752327554D5700975559 /* FreeAPSWatch WatchKit Extension */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 38E8754327554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch WatchKit Extension" */;
- buildPhases = (
- 38E8752027554D5700975559 /* Sources */,
- 38E8752127554D5700975559 /* Frameworks */,
- 38E8752227554D5700975559 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "FreeAPSWatch WatchKit Extension";
- packageProductDependencies = (
- 38E8755727567AE400975559 /* SwiftDate */,
- );
- productName = "FreeAPSWatch WatchKit Extension";
- productReference = 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */;
- productType = "com.apple.product-type.watchkit2-extension";
- };
- 38FCF3EC25E9028E0078B0D1 /* FreeAPSTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "FreeAPSTests" */;
- buildPhases = (
- 38FCF3E925E9028E0078B0D1 /* Sources */,
- 38FCF3EA25E9028E0078B0D1 /* Frameworks */,
- 38FCF3EB25E9028E0078B0D1 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */,
- );
- name = FreeAPSTests;
- productName = FreeAPSTests;
- productReference = 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- 388E595025AD948C0019842D /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastSwiftUpdateCheck = 1310;
- LastUpgradeCheck = 1240;
- TargetAttributes = {
- 388E595725AD948C0019842D = {
- CreatedOnToolsVersion = 12.3;
- };
- 38E8751B27554D5500975559 = {
- CreatedOnToolsVersion = 13.1;
- };
- 38E8752327554D5700975559 = {
- CreatedOnToolsVersion = 13.1;
- };
- 38FCF3EC25E9028E0078B0D1 = {
- CreatedOnToolsVersion = 12.4;
- TestTargetID = 388E595725AD948C0019842D;
- };
- };
- };
- buildConfigurationList = 388E595325AD948C0019842D /* Build configuration list for PBXProject "FreeAPS" */;
- compatibilityVersion = "Xcode 9.3";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- ar,
- ca,
- "zh-Hans",
- da,
- nl,
- fr,
- de,
- he,
- it,
- nb,
- pl,
- ru,
- es,
- sv,
- tr,
- uk,
- fi,
- "pt-PT",
- "pt-BR",
- sk,
- hu,
- vi,
- );
- mainGroup = 388E594F25AD948C0019842D;
- packageReferences = (
- 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */,
- 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */,
- 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */,
- 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */,
- CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */,
- B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */,
- );
- productRefGroup = 388E595925AD948C0019842D /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 388E595725AD948C0019842D /* FreeAPS */,
- 38FCF3EC25E9028E0078B0D1 /* FreeAPSTests */,
- 38E8751B27554D5500975559 /* FreeAPSWatch */,
- 38E8752327554D5700975559 /* FreeAPSWatch WatchKit Extension */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXResourcesBuildPhase section */
- 388E595625AD948C0019842D /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */,
- 38DF178D27733E6800B3528F /* snow.sks in Resources */,
- 388E597225AD9CF10019842D /* json in Resources */,
- 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */,
- 19DA48E829CD339B00EEA1E7 /* Assets.xcassets in Resources */,
- 388E596F25AD96040019842D /* javascript in Resources */,
- B9CAAEFC2AE70836000F68BC /* branch.txt in Resources */,
- 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 38E8751A27554D5500975559 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 19DA48E929CD339C00EEA1E7 /* Assets.xcassets in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 38E8752227554D5700975559 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 38E8753727554D5900975559 /* Preview Assets.xcassets in Resources */,
- 19795118275953E50044850D /* Localizable.strings in Resources */,
- 19DA48EA29CD339C00EEA1E7 /* Assets.xcassets in Resources */,
- 38E8753427554D5800975559 /* Assets.xcassets in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 38FCF3EB25E9028E0078B0D1 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXShellScriptBuildPhase section */
- 3811DEF525CA169200A708ED /* Swiftformat */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- name = Swiftformat;
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "source \"${SRCROOT}\"/scripts/swiftformat.sh\n\n";
- };
- B9CAAEFA2AE6FDE6000F68BC /* Run Script: get branch name and commit ID */ = {
- isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
- buildActionMask = 12;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- name = "Run Script: get branch name and commit ID";
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- };
- /* End PBXShellScriptBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 388E595425AD948C0019842D /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */,
- 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */,
- 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */,
- 388E5A6025B6F2310019842D /* Autosens.swift in Sources */,
- 3811DE8F25C9D80400A708ED /* User.swift in Sources */,
- 19D466A329AA2B80004D5F33 /* FPUConfigDataFlow.swift in Sources */,
- 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */,
- 385CEAC425F2F154002D6D5B /* AnnouncementsStorage.swift in Sources */,
- 38AEE73D25F0200C0013F05B /* FreeAPSSettings.swift in Sources */,
- 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */,
- 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */,
- 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */,
- F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */,
- CE7CA3552A064973004BE681 /* ListStateIntent.swift in Sources */,
- 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */,
- CEA4F62329BE10F70011ADF7 /* SavitzkyGolayFilter.swift in Sources */,
- 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */,
- 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */,
- 19E1F7EF29D08EBA005C8D20 /* IconConfigRootWiew.swift in Sources */,
- 1967DFC229D053D300759F30 /* IconImage.swift in Sources */,
- 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */,
- 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */,
- 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */,
- 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */,
- 38FEF408273B011A00574A46 /* LibreTransmitterSource.swift in Sources */,
- 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */,
- 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */,
- 386A124F271707F000DDC61C /* DexcomSourceG6.swift in Sources */,
- CE94598429E9E3E60047C9C6 /* WatchConfigStateModel.swift in Sources */,
- 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */,
- 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */,
- 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */,
- 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */,
- 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */,
- 19F95FF529F10FCF00314DDC /* StatProvider.swift in Sources */,
- 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */,
- 19B0EF2128F6D66200069496 /* Statistics.swift in Sources */,
- 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */,
- 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */,
- 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */,
- 3811DE1725C9D40400A708ED /* Screen.swift in Sources */,
- 383948DA25CD64D500E91849 /* Glucose.swift in Sources */,
- CE94598029E9E3BD0047C9C6 /* WatchConfigDataFlow.swift in Sources */,
- 388E596C25AD95110019842D /* OpenAPS.swift in Sources */,
- E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */,
- 384E803825C388640086DB71 /* Script.swift in Sources */,
- CE94597E29E9E1EE0047C9C6 /* GarminManager.swift in Sources */,
- 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */,
- 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */,
- 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */,
- 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */,
- 19D466A529AA2BD4004D5F33 /* FPUConfigProvider.swift in Sources */,
- 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */,
- 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */,
- 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */,
- 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */,
- 388E595C25AD948C0019842D /* FreeAPSApp.swift in Sources */,
- 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */,
- 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */,
- CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */,
- 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */,
- 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */,
- CE94598229E9E3D30047C9C6 /* WatchConfigProvider.swift in Sources */,
- 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */,
- 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */,
- FE41E4D629463EE20047FD55 /* NightscoutPreferences.swift in Sources */,
- E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */,
- 388E5A5C25B6F0770019842D /* JSON.swift in Sources */,
- 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */,
- 19DC678529CA67A400FD9EC4 /* OverrideProfilesRootView.swift in Sources */,
- 389A572026079BAA00BC102F /* Interpolation.swift in Sources */,
- 19A910382A24EF3200C8951B /* ChartsView.swift in Sources */,
- 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */,
- 19D466A729AA2C22004D5F33 /* FPUConfigStateModel.swift in Sources */,
- 38E44528274E401C00EC9A94 /* Protected.swift in Sources */,
- 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */,
- E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */,
- 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */,
- E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */,
- 3811DE1825C9D40400A708ED /* Router.swift in Sources */,
- CE7950262998056D00FA576E /* CGMSetupView.swift in Sources */,
- 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */,
- 190EBCC629FF138000BA767D /* StatConfigProvider.swift in Sources */,
- 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */,
- E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */,
- 3811DEE825CA063400A708ED /* Injected.swift in Sources */,
- 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */,
- 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */,
- 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */,
- 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */,
- 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */,
- 38569347270B5DFB0002C50D /* CGMType.swift in Sources */,
- 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */,
- 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */,
- 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */,
- E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */,
- 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */,
- 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */,
- 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */,
- 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */,
- CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */,
- CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */,
- CECA4775298DA8310095139F /* DexcomSourceG5.swift in Sources */,
- 19F95FF329F10FBC00314DDC /* StatDataFlow.swift in Sources */,
- 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */,
- 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */,
- 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */,
- 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */,
- 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */,
- 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */,
- 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */,
- 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */,
- 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */,
- 19A910302A24BF6300C8951B /* StatsView.swift in Sources */,
- CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */,
- 190EBCCB29FF13CB00BA767D /* StatConfigRootView.swift in Sources */,
- 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */,
- CE7950242997D81700FA576E /* CGMSettingsView.swift in Sources */,
- 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */,
- 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */,
- 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */,
- 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */,
- 191F62682AD6B05A004D7911 /* NightscoutSettings.swift in Sources */,
- FEFA5C11299F814A00765C17 /* CoreDataStack.swift in Sources */,
- 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */,
- 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */,
- 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */,
- CE82E02528E867BA00473A9C /* AlertStorage.swift in Sources */,
- 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */,
- 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */,
- 3862CC05273D152B00BF832C /* CalibrationService.swift in Sources */,
- 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */,
- 190EBCC829FF13AA00BA767D /* StatConfigStateModel.swift in Sources */,
- 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */,
- 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */,
- 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */,
- FE66D16B291F74F8005D6F77 /* Bundle+Extensions.swift in Sources */,
- 3883581C25EE79BB00E024B2 /* DecimalTextField.swift in Sources */,
- 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */,
- 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */,
- 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */,
- CE7CA3582A064E2F004BE681 /* ListStateView.swift in Sources */,
- 193F6CDD2A512C8F001240FD /* Loops.swift in Sources */,
- 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */,
- 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */,
- 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */,
- 190EBCC429FF136900BA767D /* StatConfigDataFlow.swift in Sources */,
- 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */,
- 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */,
- 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */,
- 3871F38725ED661C0013ECB5 /* Suggestion.swift in Sources */,
- CE7CA34E2A064973004BE681 /* AppShortcuts.swift in Sources */,
- 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */,
- 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */,
- 38AAF8712600C1B0004AF583 /* MainChartView.swift in Sources */,
- 19DC677F29CA675700FD9EC4 /* OverrideProfilesDataFlow.swift in Sources */,
- 1935364028496F7D001E0B16 /* Oref2_variables.swift in Sources */,
- CE2FAD3A297D93F0001A872C /* BloodGlucoseExtensions.swift in Sources */,
- 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */,
- 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */,
- E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */,
- 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */,
- CE7CA3532A064973004BE681 /* tempPresetIntent.swift in Sources */,
- D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */,
- 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */,
- BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */,
- 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */,
- 38A43598262E0E4900E80935 /* FetchAnnouncementsManager.swift in Sources */,
- 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */,
- AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */,
- 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */,
- 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */,
- 19D466AA29AA3099004D5F33 /* FPUConfigRootView.swift in Sources */,
- E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */,
- CE7CA3522A064973004BE681 /* ListTempPresetsIntent.swift in Sources */,
- 448B6FCB252BD4796E2960C0 /* PumpSettingsEditorDataFlow.swift in Sources */,
- 38E44536274E411700EC9A94 /* Disk.swift in Sources */,
- 2BE9A6FA20875F6F4F9CD461 /* PumpSettingsEditorProvider.swift in Sources */,
- 6B9625766B697D1C98E455A2 /* PumpSettingsEditorStateModel.swift in Sources */,
- 19A910362A24D6D700C8951B /* DateFilter.swift in Sources */,
- A0B8EC8CC5CD1DD237D1BCD2 /* PumpSettingsEditorRootView.swift in Sources */,
- E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */,
- 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */,
- 19DC678329CA677D00FD9EC4 /* OverrideProfilesStateModel.swift in Sources */,
- 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */,
- 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */,
- 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */,
- F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */,
- 19F95FF729F10FEE00314DDC /* StatStateModel.swift in Sources */,
- 385CEAC125F2EA52002D6D5B /* Announcement.swift in Sources */,
- 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */,
- 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */,
- CE7CA3512A064973004BE681 /* ApplyTempPresetIntent.swift in Sources */,
- FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */,
- 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */,
- CE398D16297C9D1D00DF218F /* dexcomSourceG7.swift in Sources */,
- 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */,
- CC6C406E2ACDD69E009B8058 /* RawFetchedProfile.swift in Sources */,
- 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */,
- F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */,
- 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */,
- 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */,
- CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */,
- E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */,
- 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */,
- 19012CDC291D2CB900FB8210 /* LoopStats.swift in Sources */,
- 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */,
- DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */,
- 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */,
- F816826028DB441800054060 /* BluetoothTransmitter.swift in Sources */,
- 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */,
- FEFA5C0F299F810B00765C17 /* Core_Data.xcdatamodeld in Sources */,
- 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */,
- F816825E28DB441200054060 /* HeartBeatManager.swift in Sources */,
- 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */,
- A33352ED40476125EBAC6EE0 /* CREditorDataFlow.swift in Sources */,
- 17A9D0899046B45E87834820 /* CREditorProvider.swift in Sources */,
- 69B9A368029F7EB39F525422 /* CREditorStateModel.swift in Sources */,
- 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */,
- 98641AF4F92123DA668AB931 /* CREditorRootView.swift in Sources */,
- 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */,
- 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */,
- CE7CA3542A064973004BE681 /* TempPresetsIntentRequest.swift in Sources */,
- F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */,
- 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */,
- E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */,
- 19DC678129CA676A00FD9EC4 /* OverrideProfilesProvider.swift in Sources */,
- 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */,
- 1967DFBE29D052C200759F30 /* Icons.swift in Sources */,
- 38E8754F275556FA00975559 /* WatchManager.swift in Sources */,
- A228DF96647338139F152B15 /* PreferencesEditorDataFlow.swift in Sources */,
- 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */,
- CE7CA3562A064973004BE681 /* StateIntentRequest.swift in Sources */,
- E4984C5262A90469788754BB /* PreferencesEditorProvider.swift in Sources */,
- DD399FB31EACB9343C944C4C /* PreferencesEditorStateModel.swift in Sources */,
- 19E1F7EA29D082ED005C8D20 /* IconConfigProvider.swift in Sources */,
- 44190F0BBA464D74B857D1FB /* PreferencesEditorRootView.swift in Sources */,
- E97285ED9B814CD5253C6658 /* AddCarbsDataFlow.swift in Sources */,
- CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */,
- 38E8755427561E9800975559 /* DataFlow.swift in Sources */,
- 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */,
- CE7CA34F2A064973004BE681 /* BaseIntentsRequest.swift in Sources */,
- A6F097A14CAAE0CE0D11BE1B /* AddCarbsProvider.swift in Sources */,
- 33E198D3039045D98C3DC5D4 /* AddCarbsStateModel.swift in Sources */,
- 28089E07169488CF6DCC2A31 /* AddCarbsRootView.swift in Sources */,
- D2165E9D78EFF692C1DED1C6 /* AddTempTargetDataFlow.swift in Sources */,
- CE82E02728E869DF00473A9C /* AlertEntry.swift in Sources */,
- 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */,
- 5BFA1C2208114643B77F8CEB /* AddTempTargetProvider.swift in Sources */,
- E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */,
- 919DBD08F13BAFB180DF6F47 /* AddTempTargetStateModel.swift in Sources */,
- 8BC2F5A29AD1ED08AC0EE013 /* AddTempTargetRootView.swift in Sources */,
- 38A00B1F25FC00F7006BC0B0 /* Autotune.swift in Sources */,
- 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */,
- 041D1E995A6AE92E9289DC49 /* BolusDataFlow.swift in Sources */,
- 23888883D4EA091C88480FF2 /* BolusProvider.swift in Sources */,
- 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */,
- 38569353270B5E350002C50D /* CGMRootView.swift in Sources */,
- 69A31254F2451C20361D172F /* BolusStateModel.swift in Sources */,
- 0CEA2EA070AB041AF3E3745B /* BolusRootView.swift in Sources */,
- 1967DFC029D053AC00759F30 /* IconSelection.swift in Sources */,
- 19D4E4EB29FC6A9F00351451 /* TIRforChart.swift in Sources */,
- FEFFA7A22929FE49007B8193 /* UIDevice+Extensions.swift in Sources */,
- F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */,
- 3862CC1F273FDC9200BF832C /* CalibrationsChart.swift in Sources */,
- 19E1F7EC29D082FE005C8D20 /* IconConfigStateModel.swift in Sources */,
- 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */,
- BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */,
- F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */,
- C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */,
- FE41E4D429463C660047FD55 /* NightscoutStatistics.swift in Sources */,
- 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */,
- 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */,
- 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */,
- 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */,
- 3083261C4B268E353F36CD0B /* AutotuneConfigDataFlow.swift in Sources */,
- 891DECF7BC20968D7F566161 /* AutotuneConfigProvider.swift in Sources */,
- D76333C9256787610B3B4875 /* AutotuneConfigStateModel.swift in Sources */,
- A05235B9112E677ED03B6E8E /* AutotuneConfigRootView.swift in Sources */,
- 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */,
- 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */,
- 19F95FFA29F1102A00314DDC /* StatRootView.swift in Sources */,
- 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */,
- D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */,
- 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */,
- F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */,
- BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */,
- 61962FCAF8A2D222553AC5A3 /* LibreConfigDataFlow.swift in Sources */,
- 6EADD581738D64431902AC0A /* LibreConfigProvider.swift in Sources */,
- CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */,
- 903D18976088B09110BCBE29 /* LibreConfigStateModel.swift in Sources */,
- 9050F378F0063C064D7FFC86 /* LibreConfigRootView.swift in Sources */,
- B7C465E9472624D8A2BE2A6A /* CalibrationsDataFlow.swift in Sources */,
- 320D030F724170A637F06D50 /* CalibrationsProvider.swift in Sources */,
- 19E1F7E829D082D0005C8D20 /* IconConfigDataFlow.swift in Sources */,
- E25073BC86C11C3D6A42F5AC /* CalibrationsStateModel.swift in Sources */,
- BA90041DC8991147E5C8C3AA /* CalibrationsRootView.swift in Sources */,
- E3A08AAE59538BC8A8ABE477 /* NotificationsConfigDataFlow.swift in Sources */,
- 0F7A65FBD2CD8D6477ED4539 /* NotificationsConfigProvider.swift in Sources */,
- 3171D2818C7C72CD1584BB5E /* NotificationsConfigStateModel.swift in Sources */,
- CD78BB94E43B249D60CC1A1B /* NotificationsConfigRootView.swift in Sources */,
- CE7CA3502A064973004BE681 /* CancelTempPresetIntent.swift in Sources */,
- 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */,
- 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */,
- 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */,
- 0437CE46C12535A56504EC19 /* SnoozeRootView.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 38E8752027554D5700975559 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 38E8757927579D9200975559 /* Publisher.swift in Sources */,
- 38E8755B27568A6800975559 /* ConfirmationView.swift in Sources */,
- 38E8757D2757C45D00975559 /* BolusView.swift in Sources */,
- 38E8752E27554D5700975559 /* NotificationController.swift in Sources */,
- 38E8754C2755548F00975559 /* WatchStateModel.swift in Sources */,
- 38E8754A275550BB00975559 /* CarbsView.swift in Sources */,
- 38E8752C27554D5700975559 /* MainView.swift in Sources */,
- 38E8755127555D0500975559 /* DataFlow.swift in Sources */,
- 38E8753227554D5700975559 /* ComplicationController.swift in Sources */,
- 38E8752A27554D5700975559 /* FreeAPSApp.swift in Sources */,
- 38E8757B2757B1C300975559 /* TempTargetsView.swift in Sources */,
- 38E8753027554D5700975559 /* NotificationView.swift in Sources */,
- 38E8757E2758C86A00975559 /* ConvenienceExtensions.swift in Sources */,
- 38E8754727554DF100975559 /* Color+Extensions.swift in Sources */,
- 38E8755927567CA600975559 /* Decimal+Extensions.swift in Sources */,
- 38E8758027595DC600975559 /* BolusConfirmationView.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 38FCF3E925E9028E0078B0D1 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXTargetDependency section */
- 38E8752727554D5700975559 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 38E8752327554D5700975559 /* FreeAPSWatch WatchKit Extension */;
- targetProxy = 38E8752627554D5700975559 /* PBXContainerItemProxy */;
- };
- 38E8753B27554D5900975559 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 38E8751B27554D5500975559 /* FreeAPSWatch */;
- targetProxy = 38E8753A27554D5900975559 /* PBXContainerItemProxy */;
- };
- 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 388E595725AD948C0019842D /* FreeAPS */;
- targetProxy = 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */;
- };
- /* End PBXTargetDependency section */
- /* Begin PBXVariantGroup section */
- 1927C8E82744606D00347C69 /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 1927C8E92744611700347C69 /* ar */,
- 1927C8EA2744611800347C69 /* ca */,
- 1927C8EB2744611900347C69 /* zh-Hans */,
- 1927C8EC2744611A00347C69 /* da */,
- 1927C8ED2744611B00347C69 /* fi */,
- 1927C8EE2744611C00347C69 /* nl */,
- 1927C8EF2744611D00347C69 /* fr */,
- 1927C8F02744611E00347C69 /* de */,
- 1927C8F12744611E00347C69 /* he */,
- 1927C8F22744611F00347C69 /* it */,
- 1927C8F32744612000347C69 /* nb */,
- 1927C8F42744612100347C69 /* pl */,
- 1927C8F52744612100347C69 /* pt-BR */,
- 1927C8F62744612200347C69 /* pt-PT */,
- 1927C8F72744612300347C69 /* ru */,
- 1927C8F82744612400347C69 /* es */,
- 1927C8F92744612400347C69 /* sv */,
- 1927C8FA2744612500347C69 /* tr */,
- 1927C8FB2744612600347C69 /* uk */,
- 1927C8FE274489BA00347C69 /* Base */,
- 19C166682756EFBD00ED12E3 /* sk */,
- 193F1E392B44C13B00525770 /* hu */,
- 193F1E3B2B44C14800525770 /* vi */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
- 198377D4266BFFF6004DE65E /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 198377D3266BFFF6004DE65E /* en */,
- 198377D5266C0A05004DE65E /* ar */,
- 198377D6266C0A0A004DE65E /* ca */,
- 198377D7266C0A15004DE65E /* zh-Hans */,
- 198377D8266C0A1C004DE65E /* da */,
- 198377D9266C0A21004DE65E /* nl */,
- 198377DA266C0A2B004DE65E /* fr */,
- 198377DB266C0A32004DE65E /* de */,
- 198377DC266C0A3C004DE65E /* he */,
- 198377DD266C0A51004DE65E /* it */,
- 198377DE266C0A69004DE65E /* nb */,
- 198377DF266C0A7F004DE65E /* pl */,
- 198377E0266C0AB5004DE65E /* ru */,
- 198377E1266C0ABF004DE65E /* es */,
- 198377E2266C0AC8004DE65E /* sv */,
- 198377E3266C0ADC004DE65E /* tr */,
- 198377E4266C13D2004DE65E /* uk */,
- 1918333A26ADA46800F45722 /* fi */,
- 199732B4271B72DD00129A3F /* pt-PT */,
- 199732B5271B9EE900129A3F /* pt-BR */,
- 19C166692756EFBD00ED12E3 /* sk */,
- 193F1E3A2B44C13B00525770 /* hu */,
- 193F1E3C2B44C14800525770 /* vi */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
- /* End PBXVariantGroup section */
- /* Begin XCBuildConfiguration section */
- 388E596525AD948E0019842D /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- CURRENT_PROJECT_VERSION = "$(APP_BUILD_NUMBER)";
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 16.0;
- MARKETING_VERSION = "$(APP_VERSION)";
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- };
- name = Debug;
- };
- 388E596625AD948E0019842D /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- CURRENT_PROJECT_VERSION = "$(APP_BUILD_NUMBER)";
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 16.0;
- MARKETING_VERSION = "$(APP_VERSION)";
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- SDKROOT = iphoneos;
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 388E596825AD948E0019842D /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
- APP_GROUP_ID = "$(APP_GROUP_ID)";
- ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
- ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
- BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
- CODE_SIGN_ENTITLEMENTS = FreeAPS/Resources/FreeAPS.entitlements;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
- DEVELOPMENT_ASSET_PATHS = "";
- DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
- ENABLE_PREVIEWS = YES;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/Dependencies/ios-armv7_arm64",
- );
- INFOPLIST_FILE = FreeAPS/Resources/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 16.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "$(SDKROOT)/usr/lib/swift",
- );
- MARKETING_VERSION = "$(APP_VERSION)";
- OTHER_LDFLAGS = (
- "-weak_framework",
- CoreNFC,
- "-ObjC",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 388E596925AD948E0019842D /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
- APP_GROUP_ID = "$(APP_GROUP_ID)";
- ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
- ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
- BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
- CODE_SIGN_ENTITLEMENTS = FreeAPS/Resources/FreeAPS.entitlements;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
- DEVELOPMENT_ASSET_PATHS = "";
- DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
- ENABLE_PREVIEWS = YES;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/Dependencies/ios-armv7_arm64",
- );
- INFOPLIST_FILE = FreeAPS/Resources/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 16.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "$(SDKROOT)/usr/lib/swift",
- );
- MARKETING_VERSION = "$(APP_VERSION)";
- OTHER_LDFLAGS = (
- "-weak_framework",
- CoreNFC,
- "-ObjC",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- 38E8753E27554D5900975559 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
- ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
- ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
- ASSETCATALOG_COMPILER_INCLUDE_STICKER_CONTENT = YES;
- ASSETCATALOG_COMPILER_STANDALONE_ICON_BEHAVIOR = all;
- ASSETCATALOG_COMPILER_TARGET_STICKERS_ICON_ROLE = "host-app";
- BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
- CODE_SIGN_ENTITLEMENTS = FreeAPSWatch/FreeAPSWatch.entitlements;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
- DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
- GENERATE_INFOPLIST_FILE = YES;
- IBSC_MODULE = FreeAPSWatch_WatchKit_Extension;
- INFOPLIST_FILE = FreeAPSWatch/Info.plist;
- INFOPLIST_KEY_CFBundleDisplayName = iAPS;
- INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
- INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
- MARKETING_VERSION = "$(APP_VERSION)";
- PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = watchos;
- SKIP_INSTALL = YES;
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = 4;
- WATCHOS_DEPLOYMENT_TARGET = 8.0;
- };
- name = Debug;
- };
- 38E8753F27554D5900975559 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
- ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
- ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
- ASSETCATALOG_COMPILER_INCLUDE_STICKER_CONTENT = YES;
- ASSETCATALOG_COMPILER_STANDALONE_ICON_BEHAVIOR = all;
- ASSETCATALOG_COMPILER_TARGET_STICKERS_ICON_ROLE = "host-app";
- BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
- CODE_SIGN_ENTITLEMENTS = FreeAPSWatch/FreeAPSWatch.entitlements;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
- DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
- GENERATE_INFOPLIST_FILE = YES;
- IBSC_MODULE = FreeAPSWatch_WatchKit_Extension;
- INFOPLIST_FILE = FreeAPSWatch/Info.plist;
- INFOPLIST_KEY_CFBundleDisplayName = iAPS;
- INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
- INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
- MARKETING_VERSION = "$(APP_VERSION)";
- PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = watchos;
- SKIP_INSTALL = YES;
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = 4;
- WATCHOS_DEPLOYMENT_TARGET = 8.0;
- };
- name = Release;
- };
- 38E8754127554D5900975559 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
- ASSETCATALOG_COMPILER_COMPLICATION_NAME = Complication;
- BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
- CODE_SIGN_ENTITLEMENTS = "FreeAPSWatch WatchKit Extension/FreeAPSWatch WatchKit Extension.entitlements";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
- DEVELOPMENT_ASSET_PATHS = "\"FreeAPSWatch WatchKit Extension/Preview Content\"";
- DEVELOPMENT_TEAM = "${DEVELOPER_TEAM}";
- ENABLE_PREVIEWS = YES;
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_FILE = "FreeAPSWatch WatchKit Extension/Info.plist";
- INFOPLIST_KEY_CFBundleDisplayName = "iAPS WatchKit Extension";
- INFOPLIST_KEY_CLKComplicationPrincipalClass = FreeAPSWatch_WatchKit_Extension.ComplicationController;
- INFOPLIST_KEY_NSHealthClinicalHealthRecordsShareUsageDescription = "Bla bla Record Health";
- INFOPLIST_KEY_NSHealthShareUsageDescription = "Bla bla Share Health";
- INFOPLIST_KEY_NSHealthUpdateUsageDescription = "Bla bla Update Health";
- INFOPLIST_KEY_NSHumanReadableCopyright = "";
- INFOPLIST_KEY_WKRunsIndependentlyOfCompanionApp = NO;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@executable_path/../../Frameworks",
- );
- MARKETING_VERSION = "$(APP_VERSION)";
- PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.watchkitextension";
- PRODUCT_NAME = "${TARGET_NAME}";
- SDKROOT = watchos;
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG RUN_STATISTICS";
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = 4;
- WATCHOS_DEPLOYMENT_TARGET = 8.0;
- };
- name = Debug;
- };
- 38E8754227554D5900975559 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
- ASSETCATALOG_COMPILER_COMPLICATION_NAME = Complication;
- BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
- CODE_SIGN_ENTITLEMENTS = "FreeAPSWatch WatchKit Extension/FreeAPSWatch WatchKit Extension.entitlements";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
- DEVELOPMENT_ASSET_PATHS = "\"FreeAPSWatch WatchKit Extension/Preview Content\"";
- DEVELOPMENT_TEAM = "${DEVELOPER_TEAM}";
- ENABLE_PREVIEWS = YES;
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_FILE = "FreeAPSWatch WatchKit Extension/Info.plist";
- INFOPLIST_KEY_CFBundleDisplayName = "iAPS WatchKit Extension";
- INFOPLIST_KEY_CLKComplicationPrincipalClass = FreeAPSWatch_WatchKit_Extension.ComplicationController;
- INFOPLIST_KEY_NSHealthClinicalHealthRecordsShareUsageDescription = "Bla bla Record Health";
- INFOPLIST_KEY_NSHealthShareUsageDescription = "Bla bla Share Health";
- INFOPLIST_KEY_NSHealthUpdateUsageDescription = "Bla bla Update Health";
- INFOPLIST_KEY_NSHumanReadableCopyright = "";
- INFOPLIST_KEY_WKRunsIndependentlyOfCompanionApp = NO;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@executable_path/../../Frameworks",
- );
- MARKETING_VERSION = "$(APP_VERSION)";
- PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.watchkitextension";
- PRODUCT_NAME = "${TARGET_NAME}";
- SDKROOT = watchos;
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = RUN_STATISTICS;
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = 4;
- WATCHOS_DEPLOYMENT_TARGET = 8.0;
- };
- name = Release;
- };
- 38FCF3F525E9028E0078B0D1 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
- INFOPLIST_FILE = FreeAPSTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 14.4;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = ru.artpancreas.FreeAPSTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FreeAPS.app/FreeAPS";
- };
- name = Debug;
- };
- 38FCF3F625E9028E0078B0D1 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
- INFOPLIST_FILE = FreeAPSTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 14.4;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = ru.artpancreas.FreeAPSTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FreeAPS.app/FreeAPS";
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 388E595325AD948C0019842D /* Build configuration list for PBXProject "FreeAPS" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 388E596525AD948E0019842D /* Debug */,
- 388E596625AD948E0019842D /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "FreeAPS" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 388E596825AD948E0019842D /* Debug */,
- 388E596925AD948E0019842D /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 38E8754327554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch WatchKit Extension" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 38E8754127554D5900975559 /* Debug */,
- 38E8754227554D5900975559 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 38E8754427554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 38E8753E27554D5900975559 /* Debug */,
- 38E8753F27554D5900975559 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "FreeAPSTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 38FCF3F525E9028E0078B0D1 /* Debug */,
- 38FCF3F625E9028E0078B0D1 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- /* End XCConfigurationList section */
- /* Begin XCRemoteSwiftPackageReference section */
- 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/Swinject/Swinject";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 2.7.1;
- };
- };
- 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/apple/swift-algorithms";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 0.0.3;
- };
- };
- 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/malcommac/SwiftDate";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 6.3.1;
- };
- };
- 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/SwiftKickMobile/SwiftMessages";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 9.0.0;
- };
- };
- B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/maxkonovalov/MKRingProgressView.git";
- requirement = {
- branch = master;
- kind = branch;
- };
- };
- CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/ivanschuetz/SwiftCharts.git";
- requirement = {
- branch = master;
- kind = branch;
- };
- };
- /* End XCRemoteSwiftPackageReference section */
- /* Begin XCSwiftPackageProductDependency section */
- 3811DE0F25C9D37700A708ED /* Swinject */ = {
- isa = XCSwiftPackageProductDependency;
- package = 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */;
- productName = Swinject;
- };
- 3833B46C26012030003021B3 /* Algorithms */ = {
- isa = XCSwiftPackageProductDependency;
- package = 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */;
- productName = Algorithms;
- };
- 38B17B6525DD90E0005CAE3D /* SwiftDate */ = {
- isa = XCSwiftPackageProductDependency;
- package = 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */;
- productName = SwiftDate;
- };
- 38DF1788276FC8C400B3528F /* SwiftMessages */ = {
- isa = XCSwiftPackageProductDependency;
- package = 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */;
- productName = SwiftMessages;
- };
- 38E8755727567AE400975559 /* SwiftDate */ = {
- isa = XCSwiftPackageProductDependency;
- package = 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */;
- productName = SwiftDate;
- };
- B958F1B62BA0711600484851 /* MKRingProgressView */ = {
- isa = XCSwiftPackageProductDependency;
- package = B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */;
- productName = MKRingProgressView;
- };
- CEB434FC28B90B7C00B70274 /* SwiftCharts */ = {
- isa = XCSwiftPackageProductDependency;
- package = CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */;
- productName = SwiftCharts;
- };
- /* End XCSwiftPackageProductDependency section */
- /* Begin XCVersionGroup section */
- FEFA5C0D299F810B00765C17 /* Core_Data.xcdatamodeld */ = {
- isa = XCVersionGroup;
- children = (
- FEFA5C0E299F810B00765C17 /* Core_Data.xcdatamodel */,
- );
- currentVersion = FEFA5C0E299F810B00765C17 /* Core_Data.xcdatamodel */;
- path = Core_Data.xcdatamodeld;
- sourceTree = "<group>";
- versionGroupType = wrapper.xcdatamodel;
- };
- /* End XCVersionGroup section */
- };
- rootObject = 388E595025AD948C0019842D /* Project object */;
- }
|