| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 56;
- objects = {
- /* Begin PBXBuildFile section */
- C1229C2229C7ECA70066A89C /* TimeInterval.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1229C2129C7ECA70066A89C /* TimeInterval.swift */; };
- C1229C2429C7ECEB0066A89C /* Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1229C2329C7ECEB0066A89C /* Data.swift */; };
- C13CC33529C7B6A9007F25DE /* LoopKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34B6729C7AD62009A50A5 /* LoopKit.framework */; };
- C13CC33829C7B6BC007F25DE /* MinimedKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1E3491129C7A866009A50A5 /* MinimedKit.framework */; };
- C13CC34529C7B73A007F25DE /* MinimedKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1E3491129C7A866009A50A5 /* MinimedKit.framework */; };
- C13CC38829C7B757007F25DE /* ResumePumpEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC34C29C7B755007F25DE /* ResumePumpEventTests.swift */; };
- C13CC38929C7B757007F25DE /* BolusNormalPumpEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC34D29C7B755007F25DE /* BolusNormalPumpEventTests.swift */; };
- C13CC38A29C7B757007F25DE /* ReadCurrentGlucosePageMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC34F29C7B755007F25DE /* ReadCurrentGlucosePageMessageBodyTests.swift */; };
- C13CC38B29C7B757007F25DE /* ChangeTimeCarelinMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35029C7B755007F25DE /* ChangeTimeCarelinMessageBodyTests.swift */; };
- C13CC38C29C7B757007F25DE /* MeterMessageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35129C7B755007F25DE /* MeterMessageTests.swift */; };
- C13CC38D29C7B757007F25DE /* ChangeTempBasalCarelinkMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35229C7B755007F25DE /* ChangeTempBasalCarelinkMessageBodyTests.swift */; };
- C13CC38E29C7B757007F25DE /* ReadOtherDevicesIDsMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35329C7B755007F25DE /* ReadOtherDevicesIDsMessageBodyTests.swift */; };
- C13CC38F29C7B757007F25DE /* BolusCarelinkMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35429C7B755007F25DE /* BolusCarelinkMessageBodyTests.swift */; };
- C13CC39029C7B757007F25DE /* FindDeviceMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35529C7B755007F25DE /* FindDeviceMessageBodyTests.swift */; };
- C13CC39129C7B757007F25DE /* ReadRemoteControlIDsMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35629C7B755007F25DE /* ReadRemoteControlIDsMessageBodyTests.swift */; };
- C13CC39229C7B757007F25DE /* ReadTempBasalCarelinkMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35729C7B755007F25DE /* ReadTempBasalCarelinkMessageBodyTests.swift */; };
- C13CC39329C7B757007F25DE /* DeviceLinkMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35829C7B755007F25DE /* DeviceLinkMessageBodyTests.swift */; };
- C13CC39429C7B757007F25DE /* ChangeMaxBasalRateMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35929C7B755007F25DE /* ChangeMaxBasalRateMessageBodyTests.swift */; };
- C13CC39529C7B757007F25DE /* ChangeRemoteControlIDMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35A29C7B755007F25DE /* ChangeRemoteControlIDMessageBodyTests.swift */; };
- C13CC39629C7B757007F25DE /* GetBatteryCarelinkMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35B29C7B755007F25DE /* GetBatteryCarelinkMessageBodyTests.swift */; };
- C13CC39729C7B757007F25DE /* ReadRemainingInsulinMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35C29C7B755007F25DE /* ReadRemainingInsulinMessageBodyTests.swift */; };
- C13CC39829C7B757007F25DE /* ChangeMaxBolusMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35D29C7B755007F25DE /* ChangeMaxBolusMessageBodyTests.swift */; };
- C13CC39929C7B757007F25DE /* GetPumpModelCarelinkMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35E29C7B755007F25DE /* GetPumpModelCarelinkMessageBodyTests.swift */; };
- C13CC39A29C7B757007F25DE /* GetGlucosePageMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC35F29C7B755007F25DE /* GetGlucosePageMessageBodyTests.swift */; };
- C13CC39B29C7B757007F25DE /* MinimedPacketTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36029C7B755007F25DE /* MinimedPacketTests.swift */; };
- C13CC39C29C7B757007F25DE /* MinimedPumpManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36129C7B755007F25DE /* MinimedPumpManagerTests.swift */; };
- C13CC39D29C7B757007F25DE /* NSDateComponents.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36229C7B755007F25DE /* NSDateComponents.swift */; };
- C13CC39E29C7B757007F25DE /* PumpOpsSynchronousTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36329C7B755007F25DE /* PumpOpsSynchronousTests.swift */; };
- C13CC39F29C7B757007F25DE /* NSDataTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36429C7B755007F25DE /* NSDataTests.swift */; };
- C13CC3A029C7B757007F25DE /* TimestampedHistoryEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36529C7B755007F25DE /* TimestampedHistoryEventTests.swift */; };
- C13CC3A129C7B757007F25DE /* CRC8Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36629C7B755007F25DE /* CRC8Tests.swift */; };
- C13CC3A229C7B757007F25DE /* SensorDataHighGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36829C7B756007F25DE /* SensorDataHighGlucoseEventTests.swift */; };
- C13CC3A329C7B757007F25DE /* SensorTimestampGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36929C7B756007F25DE /* SensorTimestampGlucoseEventTests.swift */; };
- C13CC3A429C7B757007F25DE /* BatteryChangeGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36A29C7B756007F25DE /* BatteryChangeGlucoseEventTests.swift */; };
- C13CC3A529C7B757007F25DE /* SensorErrorGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36B29C7B756007F25DE /* SensorErrorGlucoseEventTests.swift */; };
- C13CC3A629C7B757007F25DE /* SensorCalFactorGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36C29C7B756007F25DE /* SensorCalFactorGlucoseEventTests.swift */; };
- C13CC3A729C7B757007F25DE /* SensorCalGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36D29C7B756007F25DE /* SensorCalGlucoseEventTests.swift */; };
- C13CC3A829C7B757007F25DE /* CalBGForGHGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36E29C7B756007F25DE /* CalBGForGHGlucoseEventTests.swift */; };
- C13CC3A929C7B757007F25DE /* SensorStatusGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC36F29C7B756007F25DE /* SensorStatusGlucoseEventTests.swift */; };
- C13CC3AA29C7B757007F25DE /* SensorDataLowGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37029C7B756007F25DE /* SensorDataLowGlucoseEventTests.swift */; };
- C13CC3AB29C7B757007F25DE /* GlucoseSensorDataGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37129C7B756007F25DE /* GlucoseSensorDataGlucoseEventTests.swift */; };
- C13CC3AC29C7B757007F25DE /* SensorSyncGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37229C7B756007F25DE /* SensorSyncGlucoseEventTests.swift */; };
- C13CC3AD29C7B757007F25DE /* DateTimeChangeGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37329C7B756007F25DE /* DateTimeChangeGlucoseEventTests.swift */; };
- C13CC3AE29C7B757007F25DE /* SensorPacketGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37429C7B756007F25DE /* SensorPacketGlucoseEventTests.swift */; };
- C13CC3AF29C7B757007F25DE /* TenSomethingGlucoseEventTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37529C7B756007F25DE /* TenSomethingGlucoseEventTests.swift */; };
- C13CC3B029C7B757007F25DE /* BasalScheduleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37629C7B756007F25DE /* BasalScheduleTests.swift */; };
- C13CC3B129C7B757007F25DE /* MockRileyLinkProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37829C7B756007F25DE /* MockRileyLinkProvider.swift */; };
- C13CC3B229C7B757007F25DE /* MockPumpManagerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37929C7B756007F25DE /* MockPumpManagerDelegate.swift */; };
- C13CC3B329C7B757007F25DE /* MockPumpOps.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37A29C7B756007F25DE /* MockPumpOps.swift */; };
- C13CC3B429C7B757007F25DE /* MockPumpMessageSender.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37B29C7B756007F25DE /* MockPumpMessageSender.swift */; };
- C13CC3B529C7B757007F25DE /* MockRileyLinkDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37C29C7B756007F25DE /* MockRileyLinkDevice.swift */; };
- C13CC3B629C7B757007F25DE /* GlucosePageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37D29C7B756007F25DE /* GlucosePageTests.swift */; };
- C13CC3B729C7B757007F25DE /* NSStringExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37E29C7B756007F25DE /* NSStringExtensions.swift */; };
- C13CC3B829C7B757007F25DE /* ReadSettingsCarelinkMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC37F29C7B756007F25DE /* ReadSettingsCarelinkMessageBodyTests.swift */; };
- C13CC3B929C7B757007F25DE /* PumpModelTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC38029C7B756007F25DE /* PumpModelTests.swift */; };
- C13CC3BB29C7B757007F25DE /* HistoryPageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC38229C7B756007F25DE /* HistoryPageTests.swift */; };
- C13CC3BC29C7B757007F25DE /* CRC16Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC38329C7B757007F25DE /* CRC16Tests.swift */; };
- C13CC3BD29C7B757007F25DE /* MySentryPumpStatusMessageBodyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC38429C7B757007F25DE /* MySentryPumpStatusMessageBodyTests.swift */; };
- C13CC3BE29C7B757007F25DE /* NSDateComponentsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC38529C7B757007F25DE /* NSDateComponentsTests.swift */; };
- C13CC3BF29C7B757007F25DE /* PumpOpsSynchronousBuildFromFramesTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC38629C7B757007F25DE /* PumpOpsSynchronousBuildFromFramesTests.swift */; };
- C13CC3C029C7B757007F25DE /* ReconciliationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC38729C7B757007F25DE /* ReconciliationTests.swift */; };
- C13CC3C329C7B8BC007F25DE /* MinimedPumpManager.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C13CC3C129C7B8BC007F25DE /* MinimedPumpManager.storyboard */; };
- C13CC3DD29C7BA48007F25DE /* OSLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13CC3DC29C7BA48007F25DE /* OSLog.swift */; };
- C1E3491529C7A866009A50A5 /* MinimedKit.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E3491429C7A866009A50A5 /* MinimedKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
- C1E34A1E29C7A98F009A50A5 /* CalBGForGHGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3492529C7A98B009A50A5 /* CalBGForGHGlucoseEvent.swift */; };
- C1E34A1F29C7A98F009A50A5 /* RelativeTimestampedGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3492629C7A98B009A50A5 /* RelativeTimestampedGlucoseEvent.swift */; };
- C1E34A2029C7A98F009A50A5 /* SensorCalGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3492729C7A98B009A50A5 /* SensorCalGlucoseEvent.swift */; };
- C1E34A2129C7A98F009A50A5 /* SensorErrorGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3492829C7A98B009A50A5 /* SensorErrorGlucoseEvent.swift */; };
- C1E34A2229C7A98F009A50A5 /* TenSomethingGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3492929C7A98B009A50A5 /* TenSomethingGlucoseEvent.swift */; };
- C1E34A2329C7A98F009A50A5 /* SensorStatusGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3492A29C7A98B009A50A5 /* SensorStatusGlucoseEvent.swift */; };
- C1E34A2429C7A98F009A50A5 /* SensorValueGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3492B29C7A98B009A50A5 /* SensorValueGlucoseEvent.swift */; };
- C1E34A2529C7A98F009A50A5 /* SensorSyncGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3492C29C7A98B009A50A5 /* SensorSyncGlucoseEvent.swift */; };
- C1E34A2629C7A98F009A50A5 /* SensorTimestampGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3492D29C7A98B009A50A5 /* SensorTimestampGlucoseEvent.swift */; };
- C1E34A2729C7A98F009A50A5 /* SensorDataLowGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3492E29C7A98B009A50A5 /* SensorDataLowGlucoseEvent.swift */; };
- C1E34A2829C7A98F009A50A5 /* SensorPacketGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3492F29C7A98B009A50A5 /* SensorPacketGlucoseEvent.swift */; };
- C1E34A2929C7A98F009A50A5 /* DateTimeChangeGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3493029C7A98B009A50A5 /* DateTimeChangeGlucoseEvent.swift */; };
- C1E34A2A29C7A98F009A50A5 /* UnknownGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3493129C7A98B009A50A5 /* UnknownGlucoseEvent.swift */; };
- C1E34A2B29C7A98F009A50A5 /* DataEndGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3493229C7A98B009A50A5 /* DataEndGlucoseEvent.swift */; };
- C1E34A2C29C7A98F009A50A5 /* NineteenSomethingGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3493329C7A98B009A50A5 /* NineteenSomethingGlucoseEvent.swift */; };
- C1E34A2D29C7A98F009A50A5 /* GlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3493429C7A98B009A50A5 /* GlucoseEvent.swift */; };
- C1E34A2E29C7A98F009A50A5 /* GlucoseSensorDataGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3493529C7A98B009A50A5 /* GlucoseSensorDataGlucoseEvent.swift */; };
- C1E34A2F29C7A98F009A50A5 /* SensorDataHighGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3493629C7A98B009A50A5 /* SensorDataHighGlucoseEvent.swift */; };
- C1E34A3029C7A98F009A50A5 /* BatteryChangeGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3493729C7A98B009A50A5 /* BatteryChangeGlucoseEvent.swift */; };
- C1E34A3129C7A98F009A50A5 /* SensorCalFactorGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3493829C7A98B009A50A5 /* SensorCalFactorGlucoseEvent.swift */; };
- C1E34A3229C7A98F009A50A5 /* SensorWeakSignalGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3493929C7A98B009A50A5 /* SensorWeakSignalGlucoseEvent.swift */; };
- C1E34A3329C7A98F009A50A5 /* SensorValueGlucoseEvent+CGMManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3493B29C7A98B009A50A5 /* SensorValueGlucoseEvent+CGMManager.swift */; };
- C1E34A3429C7A98F009A50A5 /* MySentryPumpStatusMessageBody+CGMManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3493C29C7A98B009A50A5 /* MySentryPumpStatusMessageBody+CGMManager.swift */; };
- C1E34A3829C7A98F009A50A5 /* MinimedPumpManagerState.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3494529C7A98C009A50A5 /* MinimedPumpManagerState.swift */; };
- C1E34A3929C7A98F009A50A5 /* MinimedPumpManagerRecents.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3494629C7A98C009A50A5 /* MinimedPumpManagerRecents.swift */; };
- C1E34A3A29C7A98F009A50A5 /* EnliteSensorDisplayable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3494729C7A98C009A50A5 /* EnliteSensorDisplayable.swift */; };
- C1E34A3B29C7A98F009A50A5 /* PumpOpsSession+LoopKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3494829C7A98C009A50A5 /* PumpOpsSession+LoopKit.swift */; };
- C1E34A3C29C7A98F009A50A5 /* BasalProfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3494929C7A98C009A50A5 /* BasalProfile.swift */; };
- C1E34A3D29C7A98F009A50A5 /* HistoryPage+PumpOpsSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3494A29C7A98C009A50A5 /* HistoryPage+PumpOpsSession.swift */; };
- C1E34A3E29C7A98F009A50A5 /* ReservoirReading.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3494B29C7A98C009A50A5 /* ReservoirReading.swift */; };
- C1E34A3F29C7A98F009A50A5 /* PumpMessageSender.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3494C29C7A98C009A50A5 /* PumpMessageSender.swift */; };
- C1E34A4029C7A98F009A50A5 /* MinimedPumpManagerError.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3494D29C7A98C009A50A5 /* MinimedPumpManagerError.swift */; };
- C1E34A4129C7A98F009A50A5 /* DoseStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3494E29C7A98C009A50A5 /* DoseStore.swift */; };
- C1E34A4229C7A98F009A50A5 /* PumpSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3494F29C7A98C009A50A5 /* PumpSettings.swift */; };
- C1E34A4329C7A98F009A50A5 /* PumpOps.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3495029C7A98C009A50A5 /* PumpOps.swift */; };
- C1E34A4429C7A98F009A50A5 /* PumpMessage+PumpOpsSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3495129C7A98C009A50A5 /* PumpMessage+PumpOpsSession.swift */; };
- C1E34A4529C7A98F009A50A5 /* InsulinDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3495229C7A98C009A50A5 /* InsulinDataSource.swift */; };
- C1E34A4629C7A98F009A50A5 /* MinimedDoseProgressEstimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3495329C7A98C009A50A5 /* MinimedDoseProgressEstimator.swift */; };
- C1E34A4729C7A98F009A50A5 /* MinimedPumpMessageSender.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3495429C7A98C009A50A5 /* MinimedPumpMessageSender.swift */; };
- C1E34A4829C7A98F009A50A5 /* MinimedPumpManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3495529C7A98C009A50A5 /* MinimedPumpManager.swift */; };
- C1E34A4929C7A98F009A50A5 /* UnfinalizedDose.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3495629C7A98C009A50A5 /* UnfinalizedDose.swift */; };
- C1E34A4A29C7A98F009A50A5 /* RileyLinkDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3495729C7A98C009A50A5 /* RileyLinkDevice.swift */; };
- C1E34A4B29C7A98F009A50A5 /* PumpOpsError.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3495829C7A98C009A50A5 /* PumpOpsError.swift */; };
- C1E34A4C29C7A98F009A50A5 /* PumpState.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3495929C7A98C009A50A5 /* PumpState.swift */; };
- C1E34A5029C7A98F009A50A5 /* ChangeWatchdogEnablePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3496429C7A98C009A50A5 /* ChangeWatchdogEnablePumpEvent.swift */; };
- C1E34A5129C7A98F009A50A5 /* PumpAlarmPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3496529C7A98C009A50A5 /* PumpAlarmPumpEvent.swift */; };
- C1E34A5229C7A98F009A50A5 /* ChangeCaptureEventEnablePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3496629C7A98C009A50A5 /* ChangeCaptureEventEnablePumpEvent.swift */; };
- C1E34A5329C7A98F009A50A5 /* TempBasalDurationPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3496729C7A98C009A50A5 /* TempBasalDurationPumpEvent.swift */; };
- C1E34A5429C7A98F009A50A5 /* ChangeBolusScrollStepSizePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3496829C7A98C009A50A5 /* ChangeBolusScrollStepSizePumpEvent.swift */; };
- C1E34A5529C7A98F009A50A5 /* ChangeSensorSetup2PumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3496929C7A98C009A50A5 /* ChangeSensorSetup2PumpEvent.swift */; };
- C1E34A5629C7A98F009A50A5 /* JournalEntryInsulinMarkerPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3496A29C7A98C009A50A5 /* JournalEntryInsulinMarkerPumpEvent.swift */; };
- C1E34A5729C7A98F009A50A5 /* ChangeMaxBolusPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3496B29C7A98C009A50A5 /* ChangeMaxBolusPumpEvent.swift */; };
- C1E34A5829C7A98F009A50A5 /* ChangeVariableBolusPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3496C29C7A98C009A50A5 /* ChangeVariableBolusPumpEvent.swift */; };
- C1E34A5929C7A98F009A50A5 /* ChangeBolusReminderEnablePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3496D29C7A98C009A50A5 /* ChangeBolusReminderEnablePumpEvent.swift */; };
- C1E34A5A29C7A98F009A50A5 /* ChangeCarbUnitsPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3496E29C7A98C009A50A5 /* ChangeCarbUnitsPumpEvent.swift */; };
- C1E34A5B29C7A98F009A50A5 /* BolusWizardEstimatePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3496F29C7A98C009A50A5 /* BolusWizardEstimatePumpEvent.swift */; };
- C1E34A5C29C7A98F009A50A5 /* ClearAlarmPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497029C7A98C009A50A5 /* ClearAlarmPumpEvent.swift */; };
- C1E34A5D29C7A98F009A50A5 /* ChangeAlarmNotifyModePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497129C7A98C009A50A5 /* ChangeAlarmNotifyModePumpEvent.swift */; };
- C1E34A5E29C7A98F009A50A5 /* ChangeAlarmClockEnablePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497229C7A98C009A50A5 /* ChangeAlarmClockEnablePumpEvent.swift */; };
- C1E34A5F29C7A98F009A50A5 /* JournalEntryPumpLowReservoirPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497329C7A98C009A50A5 /* JournalEntryPumpLowReservoirPumpEvent.swift */; };
- C1E34A6029C7A98F009A50A5 /* ChangeTimeFormatPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497429C7A98C009A50A5 /* ChangeTimeFormatPumpEvent.swift */; };
- C1E34A6129C7A98F009A50A5 /* SelectBasalProfilePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497529C7A98C009A50A5 /* SelectBasalProfilePumpEvent.swift */; };
- C1E34A6229C7A98F009A50A5 /* DailyTotal522PumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497629C7A98C009A50A5 /* DailyTotal522PumpEvent.swift */; };
- C1E34A6329C7A98F009A50A5 /* BGReceivedPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497729C7A98C009A50A5 /* BGReceivedPumpEvent.swift */; };
- C1E34A6429C7A98F009A50A5 /* TimestampedPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497829C7A98C009A50A5 /* TimestampedPumpEvent.swift */; };
- C1E34A6529C7A98F009A50A5 /* SuspendPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497929C7A98C009A50A5 /* SuspendPumpEvent.swift */; };
- C1E34A6629C7A98F009A50A5 /* EnableBolusWizardPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497A29C7A98C009A50A5 /* EnableBolusWizardPumpEvent.swift */; };
- C1E34A6729C7A98F009A50A5 /* UnabsorbedInsulinPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497B29C7A98C009A50A5 /* UnabsorbedInsulinPumpEvent.swift */; };
- C1E34A6829C7A98F009A50A5 /* DeleteOtherDeviceIDPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497C29C7A98C009A50A5 /* DeleteOtherDeviceIDPumpEvent.swift */; };
- C1E34A6929C7A98F009A50A5 /* AlarmClockReminderPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497D29C7A98C009A50A5 /* AlarmClockReminderPumpEvent.swift */; };
- C1E34A6A29C7A98F009A50A5 /* ChangeBGReminderEnablePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497E29C7A98C009A50A5 /* ChangeBGReminderEnablePumpEvent.swift */; };
- C1E34A6B29C7A98F009A50A5 /* JournalEntryPumpLowBatteryPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3497F29C7A98C009A50A5 /* JournalEntryPumpLowBatteryPumpEvent.swift */; };
- C1E34A6C29C7A98F009A50A5 /* NewTimePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498029C7A98C009A50A5 /* NewTimePumpEvent.swift */; };
- C1E34A6D29C7A98F009A50A5 /* ChangeMaxBasalPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498129C7A98C009A50A5 /* ChangeMaxBasalPumpEvent.swift */; };
- C1E34A6E29C7A98F009A50A5 /* ChangeTempBasalTypePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498229C7A98C009A50A5 /* ChangeTempBasalTypePumpEvent.swift */; };
- C1E34A6F29C7A98F009A50A5 /* ChangeSensorAlarmSilenceConfigPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498329C7A98C009A50A5 /* ChangeSensorAlarmSilenceConfigPumpEvent.swift */; };
- C1E34A7029C7A98F009A50A5 /* ChangeOtherDeviceIDPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498429C7A98C009A50A5 /* ChangeOtherDeviceIDPumpEvent.swift */; };
- C1E34A7129C7A98F009A50A5 /* PrimePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498529C7A98C009A50A5 /* PrimePumpEvent.swift */; };
- C1E34A7229C7A98F009A50A5 /* DailyTotal523PumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498629C7A98C009A50A5 /* DailyTotal523PumpEvent.swift */; };
- C1E34A7329C7A98F009A50A5 /* BatteryPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498729C7A98C009A50A5 /* BatteryPumpEvent.swift */; };
- C1E34A7429C7A98F009A50A5 /* EnableDisableRemotePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498829C7A98C009A50A5 /* EnableDisableRemotePumpEvent.swift */; };
- C1E34A7529C7A98F009A50A5 /* TempBasalPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498929C7A98C009A50A5 /* TempBasalPumpEvent.swift */; };
- C1E34A7629C7A98F009A50A5 /* ChangeSensorRateOfChangeAlertSetupPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498A29C7A98C009A50A5 /* ChangeSensorRateOfChangeAlertSetupPumpEvent.swift */; };
- C1E34A7729C7A98F009A50A5 /* RestoreMystery55PumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498B29C7A98C009A50A5 /* RestoreMystery55PumpEvent.swift */; };
- C1E34A7829C7A98F009A50A5 /* BolusWizardSetupPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498C29C7A98C009A50A5 /* BolusWizardSetupPumpEvent.swift */; };
- C1E34A7929C7A98F009A50A5 /* ChangeTimePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498D29C7A98C009A50A5 /* ChangeTimePumpEvent.swift */; };
- C1E34A7A29C7A98F009A50A5 /* ChangeBolusReminderTimePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498E29C7A98C009A50A5 /* ChangeBolusReminderTimePumpEvent.swift */; };
- C1E34A7B29C7A98F009A50A5 /* ChangeBolusWizardSetupPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3498F29C7A98C009A50A5 /* ChangeBolusWizardSetupPumpEvent.swift */; };
- C1E34A7C29C7A98F009A50A5 /* PlaceholderPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499029C7A98C009A50A5 /* PlaceholderPumpEvent.swift */; };
- C1E34A7D29C7A98F009A50A5 /* PumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499129C7A98C009A50A5 /* PumpEvent.swift */; };
- C1E34A7E29C7A98F009A50A5 /* ChangeBasalProfilePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499229C7A98C009A50A5 /* ChangeBasalProfilePumpEvent.swift */; };
- C1E34A7F29C7A98F009A50A5 /* ResumePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499329C7A98C009A50A5 /* ResumePumpEvent.swift */; };
- C1E34A8029C7A98F009A50A5 /* ChangeBGReminderOffsetPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499429C7A98C009A50A5 /* ChangeBGReminderOffsetPumpEvent.swift */; };
- C1E34A8129C7A98F009A50A5 /* ChangeWatchdogMarriageProfilePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499529C7A98C009A50A5 /* ChangeWatchdogMarriageProfilePumpEvent.swift */; };
- C1E34A8229C7A98F009A50A5 /* BasalProfileStartPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499629C7A98C009A50A5 /* BasalProfileStartPumpEvent.swift */; };
- C1E34A8329C7A98F009A50A5 /* ResultDailyTotalPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499729C7A98C009A50A5 /* ResultDailyTotalPumpEvent.swift */; };
- C1E34A8429C7A98F009A50A5 /* UnknownPumpEvent57.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499829C7A98C009A50A5 /* UnknownPumpEvent57.swift */; };
- C1E34A8529C7A98F009A50A5 /* RestoreMystery54PumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499929C7A98C009A50A5 /* RestoreMystery54PumpEvent.swift */; };
- C1E34A8629C7A98F009A50A5 /* CalBGForPHPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499A29C7A98C009A50A5 /* CalBGForPHPumpEvent.swift */; };
- C1E34A8729C7A98F009A50A5 /* ChangeParadigmLinkIDPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499B29C7A98C009A50A5 /* ChangeParadigmLinkIDPumpEvent.swift */; };
- C1E34A8829C7A98F009A50A5 /* ChangeChildBlockEnablePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499C29C7A98C009A50A5 /* ChangeChildBlockEnablePumpEvent.swift */; };
- C1E34A8929C7A98F009A50A5 /* ChangeBasalProfilePatternPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499D29C7A98C009A50A5 /* ChangeBasalProfilePatternPumpEvent.swift */; };
- C1E34A8A29C7A98F009A50A5 /* RewindPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499E29C7A98C009A50A5 /* RewindPumpEvent.swift */; };
- C1E34A8B29C7A98F009A50A5 /* BolusReminderPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E3499F29C7A98C009A50A5 /* BolusReminderPumpEvent.swift */; };
- C1E34A8C29C7A98F009A50A5 /* ChangeMeterIDPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349A029C7A98C009A50A5 /* ChangeMeterIDPumpEvent.swift */; };
- C1E34A8D29C7A98F009A50A5 /* ChangeAudioBolusPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349A129C7A98C009A50A5 /* ChangeAudioBolusPumpEvent.swift */; };
- C1E34A8E29C7A98F009A50A5 /* DeleteBolusReminderTimePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349A229C7A98C009A50A5 /* DeleteBolusReminderTimePumpEvent.swift */; };
- C1E34A8F29C7A98F009A50A5 /* ChangeReservoirWarningTimePumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349A329C7A98C009A50A5 /* ChangeReservoirWarningTimePumpEvent.swift */; };
- C1E34A9029C7A98F009A50A5 /* JournalEntryExerciseMarkerPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349A429C7A98C009A50A5 /* JournalEntryExerciseMarkerPumpEvent.swift */; };
- C1E34A9129C7A98F009A50A5 /* BolusNormalPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349A529C7A98C009A50A5 /* BolusNormalPumpEvent.swift */; };
- C1E34A9229C7A98F009A50A5 /* AlarmSensorPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349A629C7A98C009A50A5 /* AlarmSensorPumpEvent.swift */; };
- C1E34A9329C7A98F009A50A5 /* DailyTotal515PumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349A729C7A98C009A50A5 /* DailyTotal515PumpEvent.swift */; };
- C1E34A9429C7A98F009A50A5 /* JournalEntryMealMarkerPumpEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349A829C7A98C009A50A5 /* JournalEntryMealMarkerPumpEvent.swift */; };
- C1E34A9629C7A98F009A50A5 /* MessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349AD29C7A98C009A50A5 /* MessageBody.swift */; };
- C1E34A9729C7A98F009A50A5 /* ReadCurrentPageNumberMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349AE29C7A98C009A50A5 /* ReadCurrentPageNumberMessageBody.swift */; };
- C1E34A9829C7A98F009A50A5 /* PowerOnCarelinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349AF29C7A98C009A50A5 /* PowerOnCarelinkMessageBody.swift */; };
- C1E34A9929C7A98F009A50A5 /* GetBatteryCarelinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349B029C7A98C009A50A5 /* GetBatteryCarelinkMessageBody.swift */; };
- C1E34A9A29C7A98F009A50A5 /* SetRemoteControlEnabledMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349B129C7A98C009A50A5 /* SetRemoteControlEnabledMessageBody.swift */; };
- C1E34A9B29C7A98F009A50A5 /* GetHistoryPageCarelinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349B229C7A98C009A50A5 /* GetHistoryPageCarelinkMessageBody.swift */; };
- C1E34A9C29C7A98F009A50A5 /* PumpAckMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349B329C7A98C009A50A5 /* PumpAckMessageBody.swift */; };
- C1E34A9D29C7A98F009A50A5 /* MySentryAckMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349B429C7A98C009A50A5 /* MySentryAckMessageBody.swift */; };
- C1E34A9E29C7A98F009A50A5 /* MySentryAlertMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349B529C7A98C009A50A5 /* MySentryAlertMessageBody.swift */; };
- C1E34A9F29C7A98F009A50A5 /* PumpErrorMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349B629C7A98C009A50A5 /* PumpErrorMessageBody.swift */; };
- C1E34AA029C7A98F009A50A5 /* UnknownMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349B729C7A98C009A50A5 /* UnknownMessageBody.swift */; };
- C1E34AA129C7A98F009A50A5 /* DeviceLinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349B829C7A98C009A50A5 /* DeviceLinkMessageBody.swift */; };
- C1E34AA229C7A98F009A50A5 /* ReadTempBasalCarelinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349B929C7A98C009A50A5 /* ReadTempBasalCarelinkMessageBody.swift */; };
- C1E34AA329C7A98F009A50A5 /* ReadCurrentGlucosePageMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349BA29C7A98C009A50A5 /* ReadCurrentGlucosePageMessageBody.swift */; };
- C1E34AA429C7A98F009A50A5 /* GlucosePage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349BC29C7A98C009A50A5 /* GlucosePage.swift */; };
- C1E34AA529C7A98F009A50A5 /* HistoryPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349BD29C7A98C009A50A5 /* HistoryPage.swift */; };
- C1E34AA629C7A98F009A50A5 /* GlucoseEventType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349BE29C7A98C009A50A5 /* GlucoseEventType.swift */; };
- C1E34AA729C7A98F009A50A5 /* TimestampedGlucoseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349BF29C7A98C009A50A5 /* TimestampedGlucoseEvent.swift */; };
- C1E34AA829C7A98F009A50A5 /* PartialDecode.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349C029C7A98C009A50A5 /* PartialDecode.swift */; };
- C1E34AA929C7A98F009A50A5 /* MySentryAlertType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349C129C7A98C009A50A5 /* MySentryAlertType.swift */; };
- C1E34AAA29C7A98F009A50A5 /* CRC16.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349C229C7A98C009A50A5 /* CRC16.swift */; };
- C1E34AAB29C7A98F009A50A5 /* BasalSchedule.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349C329C7A98C009A50A5 /* BasalSchedule.swift */; };
- C1E34AAC29C7A98F009A50A5 /* PumpEventType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349C429C7A98C009A50A5 /* PumpEventType.swift */; };
- C1E34AAD29C7A98F009A50A5 /* TimestampedHistoryEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349C529C7A98C009A50A5 /* TimestampedHistoryEvent.swift */; };
- C1E34AAE29C7A98F009A50A5 /* GetGlucosePageMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349C629C7A98C009A50A5 /* GetGlucosePageMessageBody.swift */; };
- C1E34AAF29C7A98F009A50A5 /* MySentryPumpStatusMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349C729C7A98C009A50A5 /* MySentryPumpStatusMessageBody.swift */; };
- C1E34AB029C7A98F009A50A5 /* GetPumpModelCarelinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349C829C7A98C009A50A5 /* GetPumpModelCarelinkMessageBody.swift */; };
- C1E34AB129C7A98F009A50A5 /* MySentryAlertClearedMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349C929C7A98C009A50A5 /* MySentryAlertClearedMessageBody.swift */; };
- C1E34AB229C7A98F009A50A5 /* ChangeTempBasalCarelinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349CA29C7A98C009A50A5 /* ChangeTempBasalCarelinkMessageBody.swift */; };
- C1E34AB329C7A98F009A50A5 /* ReadOtherDevicesIDsMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349CB29C7A98C009A50A5 /* ReadOtherDevicesIDsMessageBody.swift */; };
- C1E34AB429C7A98F009A50A5 /* ReadTimeCarelinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349CC29C7A98C009A50A5 /* ReadTimeCarelinkMessageBody.swift */; };
- C1E34AB529C7A98F009A50A5 /* ReadSettingsCarelinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349CD29C7A98C009A50A5 /* ReadSettingsCarelinkMessageBody.swift */; };
- C1E34AB629C7A98F009A50A5 /* GetPumpFirmwareVersionMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349CE29C7A98C009A50A5 /* GetPumpFirmwareVersionMessageBody.swift */; };
- C1E34AB729C7A98F009A50A5 /* MessageType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349CF29C7A98C009A50A5 /* MessageType.swift */; };
- C1E34AB829C7A98F009A50A5 /* ReadRemoteControlIDsMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349D029C7A98C009A50A5 /* ReadRemoteControlIDsMessageBody.swift */; };
- C1E34AB929C7A98F009A50A5 /* PumpMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349D129C7A98C009A50A5 /* PumpMessage.swift */; };
- C1E34ABA29C7A98F009A50A5 /* SuspendResumeMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349D229C7A98C009A50A5 /* SuspendResumeMessageBody.swift */; };
- C1E34ABB29C7A98F009A50A5 /* ReadOtherDevicesStatusMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349D329C7A98C009A50A5 /* ReadOtherDevicesStatusMessageBody.swift */; };
- C1E34ABC29C7A98F009A50A5 /* ChangeMaxBolusMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349D429C7A98C009A50A5 /* ChangeMaxBolusMessageBody.swift */; };
- C1E34ABD29C7A98F009A50A5 /* ChangeMaxBasalRateMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349D529C7A98C009A50A5 /* ChangeMaxBasalRateMessageBody.swift */; };
- C1E34ABE29C7A98F009A50A5 /* FindDeviceMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349D629C7A98C009A50A5 /* FindDeviceMessageBody.swift */; };
- C1E34ABF29C7A98F009A50A5 /* ReadRemainingInsulinMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349D729C7A98C009A50A5 /* ReadRemainingInsulinMessageBody.swift */; };
- C1E34AC029C7A98F009A50A5 /* PacketType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349D829C7A98C009A50A5 /* PacketType.swift */; };
- C1E34AC129C7A98F009A50A5 /* MeterMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349D929C7A98C009A50A5 /* MeterMessage.swift */; };
- C1E34AC229C7A98F009A50A5 /* BolusCarelinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349DA29C7A98C009A50A5 /* BolusCarelinkMessageBody.swift */; };
- C1E34AC329C7A98F009A50A5 /* DataFrameMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349DB29C7A98C009A50A5 /* DataFrameMessageBody.swift */; };
- C1E34AC429C7A98F009A50A5 /* ChangeRemoteControlIDMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349DC29C7A98C009A50A5 /* ChangeRemoteControlIDMessageBody.swift */; };
- C1E34AC529C7A98F009A50A5 /* ReadPumpStatusMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349DD29C7A98C009A50A5 /* ReadPumpStatusMessageBody.swift */; };
- C1E34AC629C7A98F009A50A5 /* ChangeTimeCarelinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349DE29C7A98C009A50A5 /* ChangeTimeCarelinkMessageBody.swift */; };
- C1E34AC729C7A98F009A50A5 /* SelectBasalProfileMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349DF29C7A98C009A50A5 /* SelectBasalProfileMessageBody.swift */; };
- C1E34AC829C7A98F009A50A5 /* ButtonPressCarelinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349E029C7A98D009A50A5 /* ButtonPressCarelinkMessageBody.swift */; };
- C1E34AC929C7A98F009A50A5 /* CarelinkMessageBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349E129C7A98D009A50A5 /* CarelinkMessageBody.swift */; };
- C1E34ACC29C7A98F009A50A5 /* BatteryChemistryType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349E929C7A98D009A50A5 /* BatteryChemistryType.swift */; };
- C1E34ACD29C7A98F009A50A5 /* PumpColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349EA29C7A98D009A50A5 /* PumpColor.swift */; };
- C1E34ACE29C7A98F009A50A5 /* PumpModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349EB29C7A98D009A50A5 /* PumpModel.swift */; };
- C1E34ACF29C7A98F009A50A5 /* PumpRegion.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349EC29C7A98D009A50A5 /* PumpRegion.swift */; };
- C1E34AD029C7A98F009A50A5 /* MinimedPacket.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349EE29C7A98D009A50A5 /* MinimedPacket.swift */; };
- C1E34AD129C7A98F009A50A5 /* CRC8.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349EF29C7A98D009A50A5 /* CRC8.swift */; };
- C1E34AD229C7A98F009A50A5 /* FourByteSixByteEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E349F029C7A98D009A50A5 /* FourByteSixByteEncoding.swift */; };
- C1E34ADC29C7A98F009A50A5 /* ISO8601DateFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34A0D29C7A98E009A50A5 /* ISO8601DateFormatter.swift */; };
- C1E34ADD29C7A98F009A50A5 /* Int.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34A0E29C7A98E009A50A5 /* Int.swift */; };
- C1E34ADE29C7A98F009A50A5 /* NSDateComponents.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34A0F29C7A98E009A50A5 /* NSDateComponents.swift */; };
- C1E34AFB29C7A9BD009A50A5 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = C1E34AE429C7A9BC009A50A5 /* Localizable.strings */; };
- C1E34B0429C7ABCB009A50A5 /* MinimedKitUI.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E34B0329C7ABCB009A50A5 /* MinimedKitUI.h */; settings = {ATTRIBUTES = (Public, ); }; };
- C1E34B2329C7ABF3009A50A5 /* MinimedKitUI.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C1E34B0829C7ABF2009A50A5 /* MinimedKitUI.xcassets */; };
- C1E34B2429C7ABF3009A50A5 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B0A29C7ABF2009A50A5 /* Image.swift */; };
- C1E34B2529C7ABF3009A50A5 /* MinimedPumpIDSetupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B0C29C7ABF2009A50A5 /* MinimedPumpIDSetupViewController.swift */; };
- C1E34B2629C7ABF3009A50A5 /* MinimedPumpManagerSetupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B0D29C7ABF2009A50A5 /* MinimedPumpManagerSetupViewController.swift */; };
- C1E34B2729C7ABF3009A50A5 /* MinimedPumpClockSetupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B0E29C7ABF2009A50A5 /* MinimedPumpClockSetupViewController.swift */; };
- C1E34B2829C7ABF3009A50A5 /* MinimedPumpSetupCompleteViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B0F29C7ABF2009A50A5 /* MinimedPumpSetupCompleteViewController.swift */; };
- C1E34B2929C7ABF3009A50A5 /* MinimedPumpSentrySetupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1029C7ABF2009A50A5 /* MinimedPumpSentrySetupViewController.swift */; };
- C1E34B2A29C7ABF3009A50A5 /* MinimedPumpManager+UI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1129C7ABF2009A50A5 /* MinimedPumpManager+UI.swift */; };
- C1E34B2B29C7ABF3009A50A5 /* PumpModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1229C7ABF2009A50A5 /* PumpModel.swift */; };
- C1E34B2C29C7ABF3009A50A5 /* RadioSelectionTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1329C7ABF2009A50A5 /* RadioSelectionTableViewController.swift */; };
- C1E34B2E29C7ABF3009A50A5 /* MinimedPumpUICoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1529C7ABF2009A50A5 /* MinimedPumpUICoordinator.swift */; };
- C1E34B2F29C7ABF3009A50A5 /* CommandResponseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1629C7ABF2009A50A5 /* CommandResponseViewController.swift */; };
- C1E34B3029C7ABF3009A50A5 /* MinimedHUDProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1729C7ABF2009A50A5 /* MinimedHUDProvider.swift */; };
- C1E34B3129C7ABF3009A50A5 /* UseMySentrySelectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1929C7ABF3009A50A5 /* UseMySentrySelectionView.swift */; };
- C1E34B3229C7ABF3009A50A5 /* DataSourceSelectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1A29C7ABF3009A50A5 /* DataSourceSelectionView.swift */; };
- C1E34B3329C7ABF3009A50A5 /* BatteryTypeSelectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1B29C7ABF3009A50A5 /* BatteryTypeSelectionView.swift */; };
- C1E34B3429C7ABF3009A50A5 /* ReservoirHUDView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C1E34B1C29C7ABF3009A50A5 /* ReservoirHUDView.xib */; };
- C1E34B3529C7ABF3009A50A5 /* MinimedPumpSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1D29C7ABF3009A50A5 /* MinimedPumpSettingsView.swift */; };
- C1E34B3629C7ABF3009A50A5 /* ReservoirHUDView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1E29C7ABF3009A50A5 /* ReservoirHUDView.swift */; };
- C1E34B3729C7ABF3009A50A5 /* MinimedPumpSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B1F29C7ABF3009A50A5 /* MinimedPumpSettingsViewModel.swift */; };
- C1E34B3829C7ABF3009A50A5 /* InsulinTypeConfirmation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B2029C7ABF3009A50A5 /* InsulinTypeConfirmation.swift */; };
- C1E34B3929C7ABF3009A50A5 /* MinimedReservoirView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B2129C7ABF3009A50A5 /* MinimedReservoirView.swift */; };
- C1E34B3A29C7ABF3009A50A5 /* TimeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B2229C7ABF3009A50A5 /* TimeView.swift */; };
- C1E34B3E29C7AC0A009A50A5 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = C1E34B4029C7AC0A009A50A5 /* Localizable.strings */; };
- C1E34B6429C7AD31009A50A5 /* MinimedKitPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B6229C7AD31009A50A5 /* MinimedKitPlugin.swift */; };
- C1E34B6829C7AD62009A50A5 /* LoopKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34B6729C7AD62009A50A5 /* LoopKit.framework */; };
- C1E34B6B29C7AD9C009A50A5 /* MinimedKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1E3491129C7A866009A50A5 /* MinimedKit.framework */; };
- C1E34B6C29C7AD9C009A50A5 /* MinimedKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = C1E3491129C7A866009A50A5 /* MinimedKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- C1E34B6F29C7AD9C009A50A5 /* MinimedKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34B0129C7ABCB009A50A5 /* MinimedKitUI.framework */; };
- C1E34B7029C7AD9C009A50A5 /* MinimedKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34B0129C7ABCB009A50A5 /* MinimedKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- C1E34B7529C7AF61009A50A5 /* LocalisedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B7429C7AF61009A50A5 /* LocalisedString.swift */; };
- C1E34B7729C7AFCF009A50A5 /* Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B7629C7AFCF009A50A5 /* Data.swift */; };
- C1E34B7929C7AFF7009A50A5 /* TimeInterval.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B7829C7AFF7009A50A5 /* TimeInterval.swift */; };
- C1E34B7B29C7B044009A50A5 /* OSLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B7A29C7B044009A50A5 /* OSLog.swift */; };
- C1E34B7D29C7B075009A50A5 /* RileyLinkKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34B7C29C7B075009A50A5 /* RileyLinkKit.framework */; };
- C1E34B8129C7B155009A50A5 /* PumpOpsSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B8029C7B155009A50A5 /* PumpOpsSession.swift */; };
- C1E34B8329C7B1AB009A50A5 /* TimeZone.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B8229C7B1AB009A50A5 /* TimeZone.swift */; };
- C1E34B8529C7B1D4009A50A5 /* HKUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B8429C7B1D4009A50A5 /* HKUnit.swift */; };
- C1E34B8829C7B292009A50A5 /* Comparable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B8729C7B292009A50A5 /* Comparable.swift */; };
- C1E34B8A29C7B2FC009A50A5 /* LocalisedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B8929C7B2FC009A50A5 /* LocalisedString.swift */; };
- C1E34B8C29C7B334009A50A5 /* IdentifiableClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B8B29C7B334009A50A5 /* IdentifiableClass.swift */; };
- C1E34B8E29C7B34F009A50A5 /* NibLoadable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B8D29C7B34F009A50A5 /* NibLoadable.swift */; };
- C1E34B9029C7B38A009A50A5 /* NumberFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B8F29C7B38A009A50A5 /* NumberFormatter.swift */; };
- C1E34B9229C7B46C009A50A5 /* TimeZone.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E34B9129C7B46C009A50A5 /* TimeZone.swift */; };
- C1E34B9829C7B5A3009A50A5 /* LoopKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34B9729C7B5A3009A50A5 /* LoopKitUI.framework */; };
- C1E34B9A29C7B5E9009A50A5 /* RileyLinkKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34B9329C7B59B009A50A5 /* RileyLinkKitUI.framework */; };
- C1E34B9D29C7B623009A50A5 /* RileyLinkKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34B9329C7B59B009A50A5 /* RileyLinkKitUI.framework */; };
- C1E34B9E29C7B623009A50A5 /* RileyLinkKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34B9329C7B59B009A50A5 /* RileyLinkKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- C1E34B9F29C7B649009A50A5 /* RileyLinkKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34B7C29C7B075009A50A5 /* RileyLinkKit.framework */; };
- C1E34BA029C7B649009A50A5 /* RileyLinkKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34B7C29C7B075009A50A5 /* RileyLinkKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- C1E34BA229C7B652009A50A5 /* RileyLinkBLEKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34BA129C7B652009A50A5 /* RileyLinkBLEKit.framework */; };
- C1E34BA329C7B652009A50A5 /* RileyLinkBLEKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = C1E34BA129C7B652009A50A5 /* RileyLinkBLEKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- /* End PBXBuildFile section */
- /* Begin PBXContainerItemProxy section */
- C13CC33A29C7B6BC007F25DE /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = C1E3490829C7A866009A50A5 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = C1E3491029C7A866009A50A5;
- remoteInfo = MinimedKit;
- };
- C13CC34629C7B73A007F25DE /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = C1E3490829C7A866009A50A5 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = C1E3491029C7A866009A50A5;
- remoteInfo = MinimedKit;
- };
- C1E34B6D29C7AD9C009A50A5 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = C1E3490829C7A866009A50A5 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = C1E3491029C7A866009A50A5;
- remoteInfo = MinimedKit;
- };
- C1E34B7129C7AD9C009A50A5 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = C1E3490829C7A866009A50A5 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = C1E34B0029C7ABCB009A50A5;
- remoteInfo = MinimedKitUI;
- };
- CEC751C729D88240006E9D24 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = CEC751BF29D88240006E9D24 /* OmniKit.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = C124016C29C7D87A00B32844;
- remoteInfo = OmniKit;
- };
- CEC751C929D88240006E9D24 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = CEC751BF29D88240006E9D24 /* OmniKit.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = C124020B29C7D92700B32844;
- remoteInfo = OmniKitUI;
- };
- CEC751CB29D88240006E9D24 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = CEC751BF29D88240006E9D24 /* OmniKit.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = C124021729C7D93D00B32844;
- remoteInfo = OmniKitPlugin;
- };
- CEC751CD29D88240006E9D24 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = CEC751BF29D88240006E9D24 /* OmniKit.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = C12ED9CA29C7DBA900435701;
- remoteInfo = OmniKitTests;
- };
- CEC751CF29D88240006E9D24 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = CEC751BF29D88240006E9D24 /* OmniKit.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = C1229C6B29C7F0840066A89C;
- remoteInfo = OmniKitPacketParser;
- };
- /* End PBXContainerItemProxy section */
- /* Begin PBXCopyFilesBuildPhase section */
- C1E34B7329C7AD9C009A50A5 /* Embed Frameworks */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 10;
- files = (
- C1E34BA329C7B652009A50A5 /* RileyLinkBLEKit.framework in Embed Frameworks */,
- C1E34B9E29C7B623009A50A5 /* RileyLinkKitUI.framework in Embed Frameworks */,
- C1E34BA029C7B649009A50A5 /* RileyLinkKit.framework in Embed Frameworks */,
- C1E34B6C29C7AD9C009A50A5 /* MinimedKit.framework in Embed Frameworks */,
- C1E34B7029C7AD9C009A50A5 /* MinimedKitUI.framework in Embed Frameworks */,
- );
- name = "Embed Frameworks";
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXCopyFilesBuildPhase section */
- /* Begin PBXFileReference section */
- 193F1E522B44C22A00525770 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- 193F1E532B44C22A00525770 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
- 193F1E542B44C22A00525770 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1229C2129C7ECA70066A89C /* TimeInterval.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TimeInterval.swift; sourceTree = "<group>"; };
- C1229C2329C7ECEB0066A89C /* Data.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Data.swift; sourceTree = "<group>"; };
- C13CC34129C7B73A007F25DE /* MinimedKitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MinimedKitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- C13CC34C29C7B755007F25DE /* ResumePumpEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResumePumpEventTests.swift; sourceTree = "<group>"; };
- C13CC34D29C7B755007F25DE /* BolusNormalPumpEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusNormalPumpEventTests.swift; sourceTree = "<group>"; };
- C13CC34F29C7B755007F25DE /* ReadCurrentGlucosePageMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadCurrentGlucosePageMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35029C7B755007F25DE /* ChangeTimeCarelinMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeTimeCarelinMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35129C7B755007F25DE /* MeterMessageTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MeterMessageTests.swift; sourceTree = "<group>"; };
- C13CC35229C7B755007F25DE /* ChangeTempBasalCarelinkMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeTempBasalCarelinkMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35329C7B755007F25DE /* ReadOtherDevicesIDsMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadOtherDevicesIDsMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35429C7B755007F25DE /* BolusCarelinkMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusCarelinkMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35529C7B755007F25DE /* FindDeviceMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FindDeviceMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35629C7B755007F25DE /* ReadRemoteControlIDsMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadRemoteControlIDsMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35729C7B755007F25DE /* ReadTempBasalCarelinkMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadTempBasalCarelinkMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35829C7B755007F25DE /* DeviceLinkMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DeviceLinkMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35929C7B755007F25DE /* ChangeMaxBasalRateMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeMaxBasalRateMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35A29C7B755007F25DE /* ChangeRemoteControlIDMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeRemoteControlIDMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35B29C7B755007F25DE /* GetBatteryCarelinkMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GetBatteryCarelinkMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35C29C7B755007F25DE /* ReadRemainingInsulinMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadRemainingInsulinMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35D29C7B755007F25DE /* ChangeMaxBolusMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeMaxBolusMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35E29C7B755007F25DE /* GetPumpModelCarelinkMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GetPumpModelCarelinkMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC35F29C7B755007F25DE /* GetGlucosePageMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GetGlucosePageMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC36029C7B755007F25DE /* MinimedPacketTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPacketTests.swift; sourceTree = "<group>"; };
- C13CC36129C7B755007F25DE /* MinimedPumpManagerTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpManagerTests.swift; sourceTree = "<group>"; };
- C13CC36229C7B755007F25DE /* NSDateComponents.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NSDateComponents.swift; sourceTree = "<group>"; };
- C13CC36329C7B755007F25DE /* PumpOpsSynchronousTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpOpsSynchronousTests.swift; sourceTree = "<group>"; };
- C13CC36429C7B755007F25DE /* NSDataTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NSDataTests.swift; sourceTree = "<group>"; };
- C13CC36529C7B755007F25DE /* TimestampedHistoryEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TimestampedHistoryEventTests.swift; sourceTree = "<group>"; };
- C13CC36629C7B755007F25DE /* CRC8Tests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CRC8Tests.swift; sourceTree = "<group>"; };
- C13CC36829C7B756007F25DE /* SensorDataHighGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorDataHighGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC36929C7B756007F25DE /* SensorTimestampGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorTimestampGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC36A29C7B756007F25DE /* BatteryChangeGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BatteryChangeGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC36B29C7B756007F25DE /* SensorErrorGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorErrorGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC36C29C7B756007F25DE /* SensorCalFactorGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorCalFactorGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC36D29C7B756007F25DE /* SensorCalGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorCalGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC36E29C7B756007F25DE /* CalBGForGHGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalBGForGHGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC36F29C7B756007F25DE /* SensorStatusGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorStatusGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC37029C7B756007F25DE /* SensorDataLowGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorDataLowGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC37129C7B756007F25DE /* GlucoseSensorDataGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucoseSensorDataGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC37229C7B756007F25DE /* SensorSyncGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorSyncGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC37329C7B756007F25DE /* DateTimeChangeGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DateTimeChangeGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC37429C7B756007F25DE /* SensorPacketGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorPacketGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC37529C7B756007F25DE /* TenSomethingGlucoseEventTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TenSomethingGlucoseEventTests.swift; sourceTree = "<group>"; };
- C13CC37629C7B756007F25DE /* BasalScheduleTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BasalScheduleTests.swift; sourceTree = "<group>"; };
- C13CC37829C7B756007F25DE /* MockRileyLinkProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MockRileyLinkProvider.swift; sourceTree = "<group>"; };
- C13CC37929C7B756007F25DE /* MockPumpManagerDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MockPumpManagerDelegate.swift; sourceTree = "<group>"; };
- C13CC37A29C7B756007F25DE /* MockPumpOps.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MockPumpOps.swift; sourceTree = "<group>"; };
- C13CC37B29C7B756007F25DE /* MockPumpMessageSender.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MockPumpMessageSender.swift; sourceTree = "<group>"; };
- C13CC37C29C7B756007F25DE /* MockRileyLinkDevice.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MockRileyLinkDevice.swift; sourceTree = "<group>"; };
- C13CC37D29C7B756007F25DE /* GlucosePageTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucosePageTests.swift; sourceTree = "<group>"; };
- C13CC37E29C7B756007F25DE /* NSStringExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NSStringExtensions.swift; sourceTree = "<group>"; };
- C13CC37F29C7B756007F25DE /* ReadSettingsCarelinkMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadSettingsCarelinkMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC38029C7B756007F25DE /* PumpModelTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpModelTests.swift; sourceTree = "<group>"; };
- C13CC38129C7B756007F25DE /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- C13CC38229C7B756007F25DE /* HistoryPageTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HistoryPageTests.swift; sourceTree = "<group>"; };
- C13CC38329C7B757007F25DE /* CRC16Tests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CRC16Tests.swift; sourceTree = "<group>"; };
- C13CC38429C7B757007F25DE /* MySentryPumpStatusMessageBodyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MySentryPumpStatusMessageBodyTests.swift; sourceTree = "<group>"; };
- C13CC38529C7B757007F25DE /* NSDateComponentsTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NSDateComponentsTests.swift; sourceTree = "<group>"; };
- C13CC38629C7B757007F25DE /* PumpOpsSynchronousBuildFromFramesTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpOpsSynchronousBuildFromFramesTests.swift; sourceTree = "<group>"; };
- C13CC38729C7B757007F25DE /* ReconciliationTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReconciliationTests.swift; sourceTree = "<group>"; };
- C13CC3C229C7B8BC007F25DE /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/MinimedPumpManager.storyboard; sourceTree = "<group>"; };
- C13CC3C529C7B8D0007F25DE /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3C629C7B8D4007F25DE /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3C729C7B8D8007F25DE /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/MinimedPumpManager.strings"; sourceTree = "<group>"; };
- C13CC3C829C7B8DA007F25DE /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3C929C7B8DB007F25DE /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3CA29C7B8DC007F25DE /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3CB29C7B8DD007F25DE /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3CC29C7B8DE007F25DE /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3CD29C7B8DF007F25DE /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3CE29C7B8E0007F25DE /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3CF29C7B8E0007F25DE /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3D029C7B8E1007F25DE /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3D129C7B8E2007F25DE /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3D229C7B8E3007F25DE /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3D329C7B8E4007F25DE /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/MinimedPumpManager.strings"; sourceTree = "<group>"; };
- C13CC3D429C7B8E5007F25DE /* ro */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ro; path = ro.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3D529C7B8E5007F25DE /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3D629C7B8E6007F25DE /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3D729C7B8E7007F25DE /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3D829C7B8E9007F25DE /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3D929C7B8E9007F25DE /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3DA29C7B8EB007F25DE /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/MinimedPumpManager.strings; sourceTree = "<group>"; };
- C13CC3DC29C7BA48007F25DE /* OSLog.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OSLog.swift; sourceTree = "<group>"; };
- C1BF2DB929C8007300EB8987 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E3491129C7A866009A50A5 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- C1E3491429C7A866009A50A5 /* MinimedKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MinimedKit.h; sourceTree = "<group>"; };
- C1E3492529C7A98B009A50A5 /* CalBGForGHGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalBGForGHGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3492629C7A98B009A50A5 /* RelativeTimestampedGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RelativeTimestampedGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3492729C7A98B009A50A5 /* SensorCalGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorCalGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3492829C7A98B009A50A5 /* SensorErrorGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorErrorGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3492929C7A98B009A50A5 /* TenSomethingGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TenSomethingGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3492A29C7A98B009A50A5 /* SensorStatusGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorStatusGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3492B29C7A98B009A50A5 /* SensorValueGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorValueGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3492C29C7A98B009A50A5 /* SensorSyncGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorSyncGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3492D29C7A98B009A50A5 /* SensorTimestampGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorTimestampGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3492E29C7A98B009A50A5 /* SensorDataLowGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorDataLowGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3492F29C7A98B009A50A5 /* SensorPacketGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorPacketGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3493029C7A98B009A50A5 /* DateTimeChangeGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DateTimeChangeGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3493129C7A98B009A50A5 /* UnknownGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnknownGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3493229C7A98B009A50A5 /* DataEndGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DataEndGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3493329C7A98B009A50A5 /* NineteenSomethingGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NineteenSomethingGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3493429C7A98B009A50A5 /* GlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3493529C7A98B009A50A5 /* GlucoseSensorDataGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucoseSensorDataGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3493629C7A98B009A50A5 /* SensorDataHighGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorDataHighGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3493729C7A98B009A50A5 /* BatteryChangeGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BatteryChangeGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3493829C7A98B009A50A5 /* SensorCalFactorGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorCalFactorGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3493929C7A98B009A50A5 /* SensorWeakSignalGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SensorWeakSignalGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E3493B29C7A98B009A50A5 /* SensorValueGlucoseEvent+CGMManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "SensorValueGlucoseEvent+CGMManager.swift"; sourceTree = "<group>"; };
- C1E3493C29C7A98B009A50A5 /* MySentryPumpStatusMessageBody+CGMManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "MySentryPumpStatusMessageBody+CGMManager.swift"; sourceTree = "<group>"; };
- C1E3494029C7A98C009A50A5 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- C1E3494529C7A98C009A50A5 /* MinimedPumpManagerState.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpManagerState.swift; sourceTree = "<group>"; };
- C1E3494629C7A98C009A50A5 /* MinimedPumpManagerRecents.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpManagerRecents.swift; sourceTree = "<group>"; };
- C1E3494729C7A98C009A50A5 /* EnliteSensorDisplayable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EnliteSensorDisplayable.swift; sourceTree = "<group>"; };
- C1E3494829C7A98C009A50A5 /* PumpOpsSession+LoopKit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PumpOpsSession+LoopKit.swift"; sourceTree = "<group>"; };
- C1E3494929C7A98C009A50A5 /* BasalProfile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BasalProfile.swift; sourceTree = "<group>"; };
- C1E3494A29C7A98C009A50A5 /* HistoryPage+PumpOpsSession.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "HistoryPage+PumpOpsSession.swift"; sourceTree = "<group>"; };
- C1E3494B29C7A98C009A50A5 /* ReservoirReading.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReservoirReading.swift; sourceTree = "<group>"; };
- C1E3494C29C7A98C009A50A5 /* PumpMessageSender.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpMessageSender.swift; sourceTree = "<group>"; };
- C1E3494D29C7A98C009A50A5 /* MinimedPumpManagerError.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpManagerError.swift; sourceTree = "<group>"; };
- C1E3494E29C7A98C009A50A5 /* DoseStore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DoseStore.swift; sourceTree = "<group>"; };
- C1E3494F29C7A98C009A50A5 /* PumpSettings.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpSettings.swift; sourceTree = "<group>"; };
- C1E3495029C7A98C009A50A5 /* PumpOps.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpOps.swift; sourceTree = "<group>"; };
- C1E3495129C7A98C009A50A5 /* PumpMessage+PumpOpsSession.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PumpMessage+PumpOpsSession.swift"; sourceTree = "<group>"; };
- C1E3495229C7A98C009A50A5 /* InsulinDataSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InsulinDataSource.swift; sourceTree = "<group>"; };
- C1E3495329C7A98C009A50A5 /* MinimedDoseProgressEstimator.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedDoseProgressEstimator.swift; sourceTree = "<group>"; };
- C1E3495429C7A98C009A50A5 /* MinimedPumpMessageSender.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpMessageSender.swift; sourceTree = "<group>"; };
- C1E3495529C7A98C009A50A5 /* MinimedPumpManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpManager.swift; sourceTree = "<group>"; };
- C1E3495629C7A98C009A50A5 /* UnfinalizedDose.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnfinalizedDose.swift; sourceTree = "<group>"; };
- C1E3495729C7A98C009A50A5 /* RileyLinkDevice.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RileyLinkDevice.swift; sourceTree = "<group>"; };
- C1E3495829C7A98C009A50A5 /* PumpOpsError.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpOpsError.swift; sourceTree = "<group>"; };
- C1E3495929C7A98C009A50A5 /* PumpState.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpState.swift; sourceTree = "<group>"; };
- C1E3496429C7A98C009A50A5 /* ChangeWatchdogEnablePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeWatchdogEnablePumpEvent.swift; sourceTree = "<group>"; };
- C1E3496529C7A98C009A50A5 /* PumpAlarmPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpAlarmPumpEvent.swift; sourceTree = "<group>"; };
- C1E3496629C7A98C009A50A5 /* ChangeCaptureEventEnablePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeCaptureEventEnablePumpEvent.swift; sourceTree = "<group>"; };
- C1E3496729C7A98C009A50A5 /* TempBasalDurationPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TempBasalDurationPumpEvent.swift; sourceTree = "<group>"; };
- C1E3496829C7A98C009A50A5 /* ChangeBolusScrollStepSizePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeBolusScrollStepSizePumpEvent.swift; sourceTree = "<group>"; };
- C1E3496929C7A98C009A50A5 /* ChangeSensorSetup2PumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeSensorSetup2PumpEvent.swift; sourceTree = "<group>"; };
- C1E3496A29C7A98C009A50A5 /* JournalEntryInsulinMarkerPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JournalEntryInsulinMarkerPumpEvent.swift; sourceTree = "<group>"; };
- C1E3496B29C7A98C009A50A5 /* ChangeMaxBolusPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeMaxBolusPumpEvent.swift; sourceTree = "<group>"; };
- C1E3496C29C7A98C009A50A5 /* ChangeVariableBolusPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeVariableBolusPumpEvent.swift; sourceTree = "<group>"; };
- C1E3496D29C7A98C009A50A5 /* ChangeBolusReminderEnablePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeBolusReminderEnablePumpEvent.swift; sourceTree = "<group>"; };
- C1E3496E29C7A98C009A50A5 /* ChangeCarbUnitsPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeCarbUnitsPumpEvent.swift; sourceTree = "<group>"; };
- C1E3496F29C7A98C009A50A5 /* BolusWizardEstimatePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusWizardEstimatePumpEvent.swift; sourceTree = "<group>"; };
- C1E3497029C7A98C009A50A5 /* ClearAlarmPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ClearAlarmPumpEvent.swift; sourceTree = "<group>"; };
- C1E3497129C7A98C009A50A5 /* ChangeAlarmNotifyModePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeAlarmNotifyModePumpEvent.swift; sourceTree = "<group>"; };
- C1E3497229C7A98C009A50A5 /* ChangeAlarmClockEnablePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeAlarmClockEnablePumpEvent.swift; sourceTree = "<group>"; };
- C1E3497329C7A98C009A50A5 /* JournalEntryPumpLowReservoirPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JournalEntryPumpLowReservoirPumpEvent.swift; sourceTree = "<group>"; };
- C1E3497429C7A98C009A50A5 /* ChangeTimeFormatPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeTimeFormatPumpEvent.swift; sourceTree = "<group>"; };
- C1E3497529C7A98C009A50A5 /* SelectBasalProfilePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SelectBasalProfilePumpEvent.swift; sourceTree = "<group>"; };
- C1E3497629C7A98C009A50A5 /* DailyTotal522PumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DailyTotal522PumpEvent.swift; sourceTree = "<group>"; };
- C1E3497729C7A98C009A50A5 /* BGReceivedPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BGReceivedPumpEvent.swift; sourceTree = "<group>"; };
- C1E3497829C7A98C009A50A5 /* TimestampedPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TimestampedPumpEvent.swift; sourceTree = "<group>"; };
- C1E3497929C7A98C009A50A5 /* SuspendPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SuspendPumpEvent.swift; sourceTree = "<group>"; };
- C1E3497A29C7A98C009A50A5 /* EnableBolusWizardPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EnableBolusWizardPumpEvent.swift; sourceTree = "<group>"; };
- C1E3497B29C7A98C009A50A5 /* UnabsorbedInsulinPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnabsorbedInsulinPumpEvent.swift; sourceTree = "<group>"; };
- C1E3497C29C7A98C009A50A5 /* DeleteOtherDeviceIDPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DeleteOtherDeviceIDPumpEvent.swift; sourceTree = "<group>"; };
- C1E3497D29C7A98C009A50A5 /* AlarmClockReminderPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlarmClockReminderPumpEvent.swift; sourceTree = "<group>"; };
- C1E3497E29C7A98C009A50A5 /* ChangeBGReminderEnablePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeBGReminderEnablePumpEvent.swift; sourceTree = "<group>"; };
- C1E3497F29C7A98C009A50A5 /* JournalEntryPumpLowBatteryPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JournalEntryPumpLowBatteryPumpEvent.swift; sourceTree = "<group>"; };
- C1E3498029C7A98C009A50A5 /* NewTimePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NewTimePumpEvent.swift; sourceTree = "<group>"; };
- C1E3498129C7A98C009A50A5 /* ChangeMaxBasalPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeMaxBasalPumpEvent.swift; sourceTree = "<group>"; };
- C1E3498229C7A98C009A50A5 /* ChangeTempBasalTypePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeTempBasalTypePumpEvent.swift; sourceTree = "<group>"; };
- C1E3498329C7A98C009A50A5 /* ChangeSensorAlarmSilenceConfigPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeSensorAlarmSilenceConfigPumpEvent.swift; sourceTree = "<group>"; };
- C1E3498429C7A98C009A50A5 /* ChangeOtherDeviceIDPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeOtherDeviceIDPumpEvent.swift; sourceTree = "<group>"; };
- C1E3498529C7A98C009A50A5 /* PrimePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PrimePumpEvent.swift; sourceTree = "<group>"; };
- C1E3498629C7A98C009A50A5 /* DailyTotal523PumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DailyTotal523PumpEvent.swift; sourceTree = "<group>"; };
- C1E3498729C7A98C009A50A5 /* BatteryPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BatteryPumpEvent.swift; sourceTree = "<group>"; };
- C1E3498829C7A98C009A50A5 /* EnableDisableRemotePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EnableDisableRemotePumpEvent.swift; sourceTree = "<group>"; };
- C1E3498929C7A98C009A50A5 /* TempBasalPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TempBasalPumpEvent.swift; sourceTree = "<group>"; };
- C1E3498A29C7A98C009A50A5 /* ChangeSensorRateOfChangeAlertSetupPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeSensorRateOfChangeAlertSetupPumpEvent.swift; sourceTree = "<group>"; };
- C1E3498B29C7A98C009A50A5 /* RestoreMystery55PumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RestoreMystery55PumpEvent.swift; sourceTree = "<group>"; };
- C1E3498C29C7A98C009A50A5 /* BolusWizardSetupPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusWizardSetupPumpEvent.swift; sourceTree = "<group>"; };
- C1E3498D29C7A98C009A50A5 /* ChangeTimePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeTimePumpEvent.swift; sourceTree = "<group>"; };
- C1E3498E29C7A98C009A50A5 /* ChangeBolusReminderTimePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeBolusReminderTimePumpEvent.swift; sourceTree = "<group>"; };
- C1E3498F29C7A98C009A50A5 /* ChangeBolusWizardSetupPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeBolusWizardSetupPumpEvent.swift; sourceTree = "<group>"; };
- C1E3499029C7A98C009A50A5 /* PlaceholderPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PlaceholderPumpEvent.swift; sourceTree = "<group>"; };
- C1E3499129C7A98C009A50A5 /* PumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpEvent.swift; sourceTree = "<group>"; };
- C1E3499229C7A98C009A50A5 /* ChangeBasalProfilePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeBasalProfilePumpEvent.swift; sourceTree = "<group>"; };
- C1E3499329C7A98C009A50A5 /* ResumePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResumePumpEvent.swift; sourceTree = "<group>"; };
- C1E3499429C7A98C009A50A5 /* ChangeBGReminderOffsetPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeBGReminderOffsetPumpEvent.swift; sourceTree = "<group>"; };
- C1E3499529C7A98C009A50A5 /* ChangeWatchdogMarriageProfilePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeWatchdogMarriageProfilePumpEvent.swift; sourceTree = "<group>"; };
- C1E3499629C7A98C009A50A5 /* BasalProfileStartPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BasalProfileStartPumpEvent.swift; sourceTree = "<group>"; };
- C1E3499729C7A98C009A50A5 /* ResultDailyTotalPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResultDailyTotalPumpEvent.swift; sourceTree = "<group>"; };
- C1E3499829C7A98C009A50A5 /* UnknownPumpEvent57.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnknownPumpEvent57.swift; sourceTree = "<group>"; };
- C1E3499929C7A98C009A50A5 /* RestoreMystery54PumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RestoreMystery54PumpEvent.swift; sourceTree = "<group>"; };
- C1E3499A29C7A98C009A50A5 /* CalBGForPHPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalBGForPHPumpEvent.swift; sourceTree = "<group>"; };
- C1E3499B29C7A98C009A50A5 /* ChangeParadigmLinkIDPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeParadigmLinkIDPumpEvent.swift; sourceTree = "<group>"; };
- C1E3499C29C7A98C009A50A5 /* ChangeChildBlockEnablePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeChildBlockEnablePumpEvent.swift; sourceTree = "<group>"; };
- C1E3499D29C7A98C009A50A5 /* ChangeBasalProfilePatternPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeBasalProfilePatternPumpEvent.swift; sourceTree = "<group>"; };
- C1E3499E29C7A98C009A50A5 /* RewindPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RewindPumpEvent.swift; sourceTree = "<group>"; };
- C1E3499F29C7A98C009A50A5 /* BolusReminderPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusReminderPumpEvent.swift; sourceTree = "<group>"; };
- C1E349A029C7A98C009A50A5 /* ChangeMeterIDPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeMeterIDPumpEvent.swift; sourceTree = "<group>"; };
- C1E349A129C7A98C009A50A5 /* ChangeAudioBolusPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeAudioBolusPumpEvent.swift; sourceTree = "<group>"; };
- C1E349A229C7A98C009A50A5 /* DeleteBolusReminderTimePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DeleteBolusReminderTimePumpEvent.swift; sourceTree = "<group>"; };
- C1E349A329C7A98C009A50A5 /* ChangeReservoirWarningTimePumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeReservoirWarningTimePumpEvent.swift; sourceTree = "<group>"; };
- C1E349A429C7A98C009A50A5 /* JournalEntryExerciseMarkerPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JournalEntryExerciseMarkerPumpEvent.swift; sourceTree = "<group>"; };
- C1E349A529C7A98C009A50A5 /* BolusNormalPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusNormalPumpEvent.swift; sourceTree = "<group>"; };
- C1E349A629C7A98C009A50A5 /* AlarmSensorPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlarmSensorPumpEvent.swift; sourceTree = "<group>"; };
- C1E349A729C7A98C009A50A5 /* DailyTotal515PumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DailyTotal515PumpEvent.swift; sourceTree = "<group>"; };
- C1E349A829C7A98C009A50A5 /* JournalEntryMealMarkerPumpEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JournalEntryMealMarkerPumpEvent.swift; sourceTree = "<group>"; };
- C1E349AD29C7A98C009A50A5 /* MessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MessageBody.swift; sourceTree = "<group>"; };
- C1E349AE29C7A98C009A50A5 /* ReadCurrentPageNumberMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadCurrentPageNumberMessageBody.swift; sourceTree = "<group>"; };
- C1E349AF29C7A98C009A50A5 /* PowerOnCarelinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PowerOnCarelinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349B029C7A98C009A50A5 /* GetBatteryCarelinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GetBatteryCarelinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349B129C7A98C009A50A5 /* SetRemoteControlEnabledMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SetRemoteControlEnabledMessageBody.swift; sourceTree = "<group>"; };
- C1E349B229C7A98C009A50A5 /* GetHistoryPageCarelinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GetHistoryPageCarelinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349B329C7A98C009A50A5 /* PumpAckMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpAckMessageBody.swift; sourceTree = "<group>"; };
- C1E349B429C7A98C009A50A5 /* MySentryAckMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MySentryAckMessageBody.swift; sourceTree = "<group>"; };
- C1E349B529C7A98C009A50A5 /* MySentryAlertMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MySentryAlertMessageBody.swift; sourceTree = "<group>"; };
- C1E349B629C7A98C009A50A5 /* PumpErrorMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpErrorMessageBody.swift; sourceTree = "<group>"; };
- C1E349B729C7A98C009A50A5 /* UnknownMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnknownMessageBody.swift; sourceTree = "<group>"; };
- C1E349B829C7A98C009A50A5 /* DeviceLinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DeviceLinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349B929C7A98C009A50A5 /* ReadTempBasalCarelinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadTempBasalCarelinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349BA29C7A98C009A50A5 /* ReadCurrentGlucosePageMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadCurrentGlucosePageMessageBody.swift; sourceTree = "<group>"; };
- C1E349BC29C7A98C009A50A5 /* GlucosePage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucosePage.swift; sourceTree = "<group>"; };
- C1E349BD29C7A98C009A50A5 /* HistoryPage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HistoryPage.swift; sourceTree = "<group>"; };
- C1E349BE29C7A98C009A50A5 /* GlucoseEventType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucoseEventType.swift; sourceTree = "<group>"; };
- C1E349BF29C7A98C009A50A5 /* TimestampedGlucoseEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TimestampedGlucoseEvent.swift; sourceTree = "<group>"; };
- C1E349C029C7A98C009A50A5 /* PartialDecode.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PartialDecode.swift; sourceTree = "<group>"; };
- C1E349C129C7A98C009A50A5 /* MySentryAlertType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MySentryAlertType.swift; sourceTree = "<group>"; };
- C1E349C229C7A98C009A50A5 /* CRC16.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CRC16.swift; sourceTree = "<group>"; };
- C1E349C329C7A98C009A50A5 /* BasalSchedule.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BasalSchedule.swift; sourceTree = "<group>"; };
- C1E349C429C7A98C009A50A5 /* PumpEventType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpEventType.swift; sourceTree = "<group>"; };
- C1E349C529C7A98C009A50A5 /* TimestampedHistoryEvent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TimestampedHistoryEvent.swift; sourceTree = "<group>"; };
- C1E349C629C7A98C009A50A5 /* GetGlucosePageMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GetGlucosePageMessageBody.swift; sourceTree = "<group>"; };
- C1E349C729C7A98C009A50A5 /* MySentryPumpStatusMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MySentryPumpStatusMessageBody.swift; sourceTree = "<group>"; };
- C1E349C829C7A98C009A50A5 /* GetPumpModelCarelinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GetPumpModelCarelinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349C929C7A98C009A50A5 /* MySentryAlertClearedMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MySentryAlertClearedMessageBody.swift; sourceTree = "<group>"; };
- C1E349CA29C7A98C009A50A5 /* ChangeTempBasalCarelinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeTempBasalCarelinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349CB29C7A98C009A50A5 /* ReadOtherDevicesIDsMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadOtherDevicesIDsMessageBody.swift; sourceTree = "<group>"; };
- C1E349CC29C7A98C009A50A5 /* ReadTimeCarelinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadTimeCarelinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349CD29C7A98C009A50A5 /* ReadSettingsCarelinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadSettingsCarelinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349CE29C7A98C009A50A5 /* GetPumpFirmwareVersionMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GetPumpFirmwareVersionMessageBody.swift; sourceTree = "<group>"; };
- C1E349CF29C7A98C009A50A5 /* MessageType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MessageType.swift; sourceTree = "<group>"; };
- C1E349D029C7A98C009A50A5 /* ReadRemoteControlIDsMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadRemoteControlIDsMessageBody.swift; sourceTree = "<group>"; };
- C1E349D129C7A98C009A50A5 /* PumpMessage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpMessage.swift; sourceTree = "<group>"; };
- C1E349D229C7A98C009A50A5 /* SuspendResumeMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SuspendResumeMessageBody.swift; sourceTree = "<group>"; };
- C1E349D329C7A98C009A50A5 /* ReadOtherDevicesStatusMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadOtherDevicesStatusMessageBody.swift; sourceTree = "<group>"; };
- C1E349D429C7A98C009A50A5 /* ChangeMaxBolusMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeMaxBolusMessageBody.swift; sourceTree = "<group>"; };
- C1E349D529C7A98C009A50A5 /* ChangeMaxBasalRateMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeMaxBasalRateMessageBody.swift; sourceTree = "<group>"; };
- C1E349D629C7A98C009A50A5 /* FindDeviceMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FindDeviceMessageBody.swift; sourceTree = "<group>"; };
- C1E349D729C7A98C009A50A5 /* ReadRemainingInsulinMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadRemainingInsulinMessageBody.swift; sourceTree = "<group>"; };
- C1E349D829C7A98C009A50A5 /* PacketType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PacketType.swift; sourceTree = "<group>"; };
- C1E349D929C7A98C009A50A5 /* MeterMessage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MeterMessage.swift; sourceTree = "<group>"; };
- C1E349DA29C7A98C009A50A5 /* BolusCarelinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusCarelinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349DB29C7A98C009A50A5 /* DataFrameMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DataFrameMessageBody.swift; sourceTree = "<group>"; };
- C1E349DC29C7A98C009A50A5 /* ChangeRemoteControlIDMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeRemoteControlIDMessageBody.swift; sourceTree = "<group>"; };
- C1E349DD29C7A98C009A50A5 /* ReadPumpStatusMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReadPumpStatusMessageBody.swift; sourceTree = "<group>"; };
- C1E349DE29C7A98C009A50A5 /* ChangeTimeCarelinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeTimeCarelinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349DF29C7A98C009A50A5 /* SelectBasalProfileMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SelectBasalProfileMessageBody.swift; sourceTree = "<group>"; };
- C1E349E029C7A98D009A50A5 /* ButtonPressCarelinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ButtonPressCarelinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349E129C7A98D009A50A5 /* CarelinkMessageBody.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CarelinkMessageBody.swift; sourceTree = "<group>"; };
- C1E349E929C7A98D009A50A5 /* BatteryChemistryType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BatteryChemistryType.swift; sourceTree = "<group>"; };
- C1E349EA29C7A98D009A50A5 /* PumpColor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpColor.swift; sourceTree = "<group>"; };
- C1E349EB29C7A98D009A50A5 /* PumpModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpModel.swift; sourceTree = "<group>"; };
- C1E349EC29C7A98D009A50A5 /* PumpRegion.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpRegion.swift; sourceTree = "<group>"; };
- C1E349EE29C7A98D009A50A5 /* MinimedPacket.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPacket.swift; sourceTree = "<group>"; };
- C1E349EF29C7A98D009A50A5 /* CRC8.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CRC8.swift; sourceTree = "<group>"; };
- C1E349F029C7A98D009A50A5 /* FourByteSixByteEncoding.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FourByteSixByteEncoding.swift; sourceTree = "<group>"; };
- C1E34A0D29C7A98E009A50A5 /* ISO8601DateFormatter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ISO8601DateFormatter.swift; sourceTree = "<group>"; };
- C1E34A0E29C7A98E009A50A5 /* Int.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Int.swift; sourceTree = "<group>"; };
- C1E34A0F29C7A98E009A50A5 /* NSDateComponents.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NSDateComponents.swift; sourceTree = "<group>"; };
- C1E34AE529C7A9BC009A50A5 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AE629C7A9BC009A50A5 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AE729C7A9BC009A50A5 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AE829C7A9BC009A50A5 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
- C1E34AE929C7A9BC009A50A5 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AEA29C7A9BC009A50A5 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AEB29C7A9BC009A50A5 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AEC29C7A9BC009A50A5 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AED29C7A9BC009A50A5 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AEE29C7A9BC009A50A5 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AEF29C7A9BC009A50A5 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AF029C7A9BC009A50A5 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AF129C7A9BC009A50A5 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AF229C7A9BC009A50A5 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AF329C7A9BC009A50A5 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AF429C7A9BC009A50A5 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
- C1E34AF529C7A9BC009A50A5 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AF629C7A9BC009A50A5 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AF729C7A9BC009A50A5 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AF829C7A9BC009A50A5 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AF929C7A9BC009A50A5 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34AFA29C7A9BC009A50A5 /* ro */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ro; path = ro.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B0129C7ABCB009A50A5 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- C1E34B0329C7ABCB009A50A5 /* MinimedKitUI.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MinimedKitUI.h; sourceTree = "<group>"; };
- C1E34B0829C7ABF2009A50A5 /* MinimedKitUI.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = MinimedKitUI.xcassets; sourceTree = "<group>"; };
- C1E34B0A29C7ABF2009A50A5 /* Image.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Image.swift; sourceTree = "<group>"; };
- C1E34B0C29C7ABF2009A50A5 /* MinimedPumpIDSetupViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpIDSetupViewController.swift; sourceTree = "<group>"; };
- C1E34B0D29C7ABF2009A50A5 /* MinimedPumpManagerSetupViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpManagerSetupViewController.swift; sourceTree = "<group>"; };
- C1E34B0E29C7ABF2009A50A5 /* MinimedPumpClockSetupViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpClockSetupViewController.swift; sourceTree = "<group>"; };
- C1E34B0F29C7ABF2009A50A5 /* MinimedPumpSetupCompleteViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpSetupCompleteViewController.swift; sourceTree = "<group>"; };
- C1E34B1029C7ABF2009A50A5 /* MinimedPumpSentrySetupViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpSentrySetupViewController.swift; sourceTree = "<group>"; };
- C1E34B1129C7ABF2009A50A5 /* MinimedPumpManager+UI.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "MinimedPumpManager+UI.swift"; sourceTree = "<group>"; };
- C1E34B1229C7ABF2009A50A5 /* PumpModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpModel.swift; sourceTree = "<group>"; };
- C1E34B1329C7ABF2009A50A5 /* RadioSelectionTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RadioSelectionTableViewController.swift; sourceTree = "<group>"; };
- C1E34B1429C7ABF2009A50A5 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- C1E34B1529C7ABF2009A50A5 /* MinimedPumpUICoordinator.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpUICoordinator.swift; sourceTree = "<group>"; };
- C1E34B1629C7ABF2009A50A5 /* CommandResponseViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CommandResponseViewController.swift; sourceTree = "<group>"; };
- C1E34B1729C7ABF2009A50A5 /* MinimedHUDProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedHUDProvider.swift; sourceTree = "<group>"; };
- C1E34B1929C7ABF3009A50A5 /* UseMySentrySelectionView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UseMySentrySelectionView.swift; sourceTree = "<group>"; };
- C1E34B1A29C7ABF3009A50A5 /* DataSourceSelectionView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DataSourceSelectionView.swift; sourceTree = "<group>"; };
- C1E34B1B29C7ABF3009A50A5 /* BatteryTypeSelectionView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BatteryTypeSelectionView.swift; sourceTree = "<group>"; };
- C1E34B1C29C7ABF3009A50A5 /* ReservoirHUDView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReservoirHUDView.xib; sourceTree = "<group>"; };
- C1E34B1D29C7ABF3009A50A5 /* MinimedPumpSettingsView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpSettingsView.swift; sourceTree = "<group>"; };
- C1E34B1E29C7ABF3009A50A5 /* ReservoirHUDView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReservoirHUDView.swift; sourceTree = "<group>"; };
- C1E34B1F29C7ABF3009A50A5 /* MinimedPumpSettingsViewModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedPumpSettingsViewModel.swift; sourceTree = "<group>"; };
- C1E34B2029C7ABF3009A50A5 /* InsulinTypeConfirmation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InsulinTypeConfirmation.swift; sourceTree = "<group>"; };
- C1E34B2129C7ABF3009A50A5 /* MinimedReservoirView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedReservoirView.swift; sourceTree = "<group>"; };
- C1E34B2229C7ABF3009A50A5 /* TimeView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TimeView.swift; sourceTree = "<group>"; };
- C1E34B4129C7AC4C009A50A5 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B4229C7AC4F009A50A5 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
- C1E34B4329C7AC51009A50A5 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B4429C7AC54009A50A5 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B4529C7AC56009A50A5 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B4629C7AC58009A50A5 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B4729C7AC5B009A50A5 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B4829C7AC5D009A50A5 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B4929C7AC5F009A50A5 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B4A29C7AC61009A50A5 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B4B29C7AC64009A50A5 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B4C29C7AC66009A50A5 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B4D29C7AC68009A50A5 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B4E29C7AC69009A50A5 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
- C1E34B4F29C7AC6A009A50A5 /* ro */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ro; path = ro.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B5029C7AC6B009A50A5 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B5129C7AC6C009A50A5 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B5229C7AC6D009A50A5 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B5329C7AC6E009A50A5 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B5429C7AC6F009A50A5 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B5529C7AC70009A50A5 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = "<group>"; };
- C1E34B5B29C7AD01009A50A5 /* MinimedKitPlugin.loopplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MinimedKitPlugin.loopplugin; sourceTree = BUILT_PRODUCTS_DIR; };
- C1E34B6229C7AD31009A50A5 /* MinimedKitPlugin.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MinimedKitPlugin.swift; sourceTree = "<group>"; };
- C1E34B6329C7AD31009A50A5 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- C1E34B6729C7AD62009A50A5 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- C1E34B7429C7AF61009A50A5 /* LocalisedString.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocalisedString.swift; sourceTree = "<group>"; };
- C1E34B7629C7AFCF009A50A5 /* Data.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Data.swift; sourceTree = "<group>"; };
- C1E34B7829C7AFF7009A50A5 /* TimeInterval.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TimeInterval.swift; sourceTree = "<group>"; };
- C1E34B7A29C7B044009A50A5 /* OSLog.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OSLog.swift; sourceTree = "<group>"; };
- C1E34B7C29C7B075009A50A5 /* RileyLinkKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- C1E34B8029C7B155009A50A5 /* PumpOpsSession.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PumpOpsSession.swift; sourceTree = "<group>"; };
- C1E34B8229C7B1AB009A50A5 /* TimeZone.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TimeZone.swift; sourceTree = "<group>"; };
- C1E34B8429C7B1D4009A50A5 /* HKUnit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HKUnit.swift; sourceTree = "<group>"; };
- C1E34B8729C7B292009A50A5 /* Comparable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Comparable.swift; sourceTree = "<group>"; };
- C1E34B8929C7B2FC009A50A5 /* LocalisedString.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocalisedString.swift; sourceTree = "<group>"; };
- C1E34B8B29C7B334009A50A5 /* IdentifiableClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IdentifiableClass.swift; sourceTree = "<group>"; };
- C1E34B8D29C7B34F009A50A5 /* NibLoadable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NibLoadable.swift; sourceTree = "<group>"; };
- C1E34B8F29C7B38A009A50A5 /* NumberFormatter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NumberFormatter.swift; sourceTree = "<group>"; };
- C1E34B9129C7B46C009A50A5 /* TimeZone.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TimeZone.swift; sourceTree = "<group>"; };
- C1E34B9329C7B59B009A50A5 /* RileyLinkKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- C1E34B9729C7B5A3009A50A5 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- C1E34BA129C7B652009A50A5 /* RileyLinkBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CEC751BF29D88240006E9D24 /* OmniKit.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = OmniKit.xcodeproj; path = ../OmniKit/OmniKit.xcodeproj; sourceTree = "<group>"; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- C13CC33E29C7B73A007F25DE /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C13CC34529C7B73A007F25DE /* MinimedKit.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C1E3490E29C7A866009A50A5 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C1E34B6829C7AD62009A50A5 /* LoopKit.framework in Frameworks */,
- C1E34B7D29C7B075009A50A5 /* RileyLinkKit.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C1E34AFE29C7ABCB009A50A5 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C1E34B9829C7B5A3009A50A5 /* LoopKitUI.framework in Frameworks */,
- C13CC33529C7B6A9007F25DE /* LoopKit.framework in Frameworks */,
- C1E34B9A29C7B5E9009A50A5 /* RileyLinkKitUI.framework in Frameworks */,
- C13CC33829C7B6BC007F25DE /* MinimedKit.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C1E34B5829C7AD01009A50A5 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C1E34BA229C7B652009A50A5 /* RileyLinkBLEKit.framework in Frameworks */,
- C1E34B9D29C7B623009A50A5 /* RileyLinkKitUI.framework in Frameworks */,
- C1E34B9F29C7B649009A50A5 /* RileyLinkKit.framework in Frameworks */,
- C1E34B6B29C7AD9C009A50A5 /* MinimedKit.framework in Frameworks */,
- C1E34B6F29C7AD9C009A50A5 /* MinimedKitUI.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- C1229C2029C7EC9B0066A89C /* Extensions */ = {
- isa = PBXGroup;
- children = (
- C1229C2129C7ECA70066A89C /* TimeInterval.swift */,
- C1229C2329C7ECEB0066A89C /* Data.swift */,
- );
- path = Extensions;
- sourceTree = "<group>";
- };
- C13CC34229C7B73A007F25DE /* MinimedKitTests */ = {
- isa = PBXGroup;
- children = (
- C1229C2029C7EC9B0066A89C /* Extensions */,
- C13CC37629C7B756007F25DE /* BasalScheduleTests.swift */,
- C13CC36629C7B755007F25DE /* CRC8Tests.swift */,
- C13CC38329C7B757007F25DE /* CRC16Tests.swift */,
- C13CC36729C7B756007F25DE /* GlucoseEvents */,
- C13CC37D29C7B756007F25DE /* GlucosePageTests.swift */,
- C13CC38229C7B756007F25DE /* HistoryPageTests.swift */,
- C13CC38129C7B756007F25DE /* Info.plist */,
- C13CC34E29C7B755007F25DE /* Messages */,
- C13CC36029C7B755007F25DE /* MinimedPacketTests.swift */,
- C13CC36129C7B755007F25DE /* MinimedPumpManagerTests.swift */,
- C13CC37729C7B756007F25DE /* Mocks */,
- C13CC38429C7B757007F25DE /* MySentryPumpStatusMessageBodyTests.swift */,
- C13CC36429C7B755007F25DE /* NSDataTests.swift */,
- C13CC36229C7B755007F25DE /* NSDateComponents.swift */,
- C13CC38529C7B757007F25DE /* NSDateComponentsTests.swift */,
- C13CC37E29C7B756007F25DE /* NSStringExtensions.swift */,
- C13CC34B29C7B755007F25DE /* PumpEvents */,
- C13CC38029C7B756007F25DE /* PumpModelTests.swift */,
- C13CC38629C7B757007F25DE /* PumpOpsSynchronousBuildFromFramesTests.swift */,
- C13CC36329C7B755007F25DE /* PumpOpsSynchronousTests.swift */,
- C13CC37F29C7B756007F25DE /* ReadSettingsCarelinkMessageBodyTests.swift */,
- C13CC38729C7B757007F25DE /* ReconciliationTests.swift */,
- C13CC36529C7B755007F25DE /* TimestampedHistoryEventTests.swift */,
- );
- path = MinimedKitTests;
- sourceTree = "<group>";
- };
- C13CC34B29C7B755007F25DE /* PumpEvents */ = {
- isa = PBXGroup;
- children = (
- C13CC34C29C7B755007F25DE /* ResumePumpEventTests.swift */,
- C13CC34D29C7B755007F25DE /* BolusNormalPumpEventTests.swift */,
- );
- path = PumpEvents;
- sourceTree = "<group>";
- };
- C13CC34E29C7B755007F25DE /* Messages */ = {
- isa = PBXGroup;
- children = (
- C13CC34F29C7B755007F25DE /* ReadCurrentGlucosePageMessageBodyTests.swift */,
- C13CC35029C7B755007F25DE /* ChangeTimeCarelinMessageBodyTests.swift */,
- C13CC35129C7B755007F25DE /* MeterMessageTests.swift */,
- C13CC35229C7B755007F25DE /* ChangeTempBasalCarelinkMessageBodyTests.swift */,
- C13CC35329C7B755007F25DE /* ReadOtherDevicesIDsMessageBodyTests.swift */,
- C13CC35429C7B755007F25DE /* BolusCarelinkMessageBodyTests.swift */,
- C13CC35529C7B755007F25DE /* FindDeviceMessageBodyTests.swift */,
- C13CC35629C7B755007F25DE /* ReadRemoteControlIDsMessageBodyTests.swift */,
- C13CC35729C7B755007F25DE /* ReadTempBasalCarelinkMessageBodyTests.swift */,
- C13CC35829C7B755007F25DE /* DeviceLinkMessageBodyTests.swift */,
- C13CC35929C7B755007F25DE /* ChangeMaxBasalRateMessageBodyTests.swift */,
- C13CC35A29C7B755007F25DE /* ChangeRemoteControlIDMessageBodyTests.swift */,
- C13CC35B29C7B755007F25DE /* GetBatteryCarelinkMessageBodyTests.swift */,
- C13CC35C29C7B755007F25DE /* ReadRemainingInsulinMessageBodyTests.swift */,
- C13CC35D29C7B755007F25DE /* ChangeMaxBolusMessageBodyTests.swift */,
- C13CC35E29C7B755007F25DE /* GetPumpModelCarelinkMessageBodyTests.swift */,
- C13CC35F29C7B755007F25DE /* GetGlucosePageMessageBodyTests.swift */,
- );
- path = Messages;
- sourceTree = "<group>";
- };
- C13CC36729C7B756007F25DE /* GlucoseEvents */ = {
- isa = PBXGroup;
- children = (
- C13CC36829C7B756007F25DE /* SensorDataHighGlucoseEventTests.swift */,
- C13CC36929C7B756007F25DE /* SensorTimestampGlucoseEventTests.swift */,
- C13CC36A29C7B756007F25DE /* BatteryChangeGlucoseEventTests.swift */,
- C13CC36B29C7B756007F25DE /* SensorErrorGlucoseEventTests.swift */,
- C13CC36C29C7B756007F25DE /* SensorCalFactorGlucoseEventTests.swift */,
- C13CC36D29C7B756007F25DE /* SensorCalGlucoseEventTests.swift */,
- C13CC36E29C7B756007F25DE /* CalBGForGHGlucoseEventTests.swift */,
- C13CC36F29C7B756007F25DE /* SensorStatusGlucoseEventTests.swift */,
- C13CC37029C7B756007F25DE /* SensorDataLowGlucoseEventTests.swift */,
- C13CC37129C7B756007F25DE /* GlucoseSensorDataGlucoseEventTests.swift */,
- C13CC37229C7B756007F25DE /* SensorSyncGlucoseEventTests.swift */,
- C13CC37329C7B756007F25DE /* DateTimeChangeGlucoseEventTests.swift */,
- C13CC37429C7B756007F25DE /* SensorPacketGlucoseEventTests.swift */,
- C13CC37529C7B756007F25DE /* TenSomethingGlucoseEventTests.swift */,
- );
- path = GlucoseEvents;
- sourceTree = "<group>";
- };
- C13CC37729C7B756007F25DE /* Mocks */ = {
- isa = PBXGroup;
- children = (
- C13CC37829C7B756007F25DE /* MockRileyLinkProvider.swift */,
- C13CC37929C7B756007F25DE /* MockPumpManagerDelegate.swift */,
- C13CC37A29C7B756007F25DE /* MockPumpOps.swift */,
- C13CC37B29C7B756007F25DE /* MockPumpMessageSender.swift */,
- C13CC37C29C7B756007F25DE /* MockRileyLinkDevice.swift */,
- );
- path = Mocks;
- sourceTree = "<group>";
- };
- C13CC3DB29C7BA37007F25DE /* Extensions */ = {
- isa = PBXGroup;
- children = (
- C13CC3DC29C7BA48007F25DE /* OSLog.swift */,
- );
- path = Extensions;
- sourceTree = "<group>";
- };
- C1E3490729C7A866009A50A5 = {
- isa = PBXGroup;
- children = (
- CEC751BF29D88240006E9D24 /* OmniKit.xcodeproj */,
- C1E3491329C7A866009A50A5 /* MinimedKit */,
- C1E34B0229C7ABCB009A50A5 /* MinimedKitUI */,
- C1E34B5C29C7AD01009A50A5 /* MinimedKitPlugin */,
- C13CC34229C7B73A007F25DE /* MinimedKitTests */,
- C1E3491229C7A866009A50A5 /* Products */,
- C1E34B6629C7AD62009A50A5 /* Frameworks */,
- );
- sourceTree = "<group>";
- };
- C1E3491229C7A866009A50A5 /* Products */ = {
- isa = PBXGroup;
- children = (
- C1E3491129C7A866009A50A5 /* MinimedKit.framework */,
- C1E34B0129C7ABCB009A50A5 /* MinimedKitUI.framework */,
- C1E34B5B29C7AD01009A50A5 /* MinimedKitPlugin.loopplugin */,
- C13CC34129C7B73A007F25DE /* MinimedKitTests.xctest */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- C1E3491329C7A866009A50A5 /* MinimedKit */ = {
- isa = PBXGroup;
- children = (
- C1E34AE329C7A9BC009A50A5 /* Resources */,
- C1E3493A29C7A98B009A50A5 /* CGMManager */,
- C1E34A0C29C7A98E009A50A5 /* Extensions */,
- C1E3492429C7A98B009A50A5 /* GlucoseEvents */,
- C1E3494029C7A98C009A50A5 /* Info.plist */,
- C1E349AC29C7A98C009A50A5 /* Messages */,
- C1E349E829C7A98D009A50A5 /* Models */,
- C1E3496329C7A98C009A50A5 /* PumpEvents */,
- C1E3494429C7A98C009A50A5 /* PumpManager */,
- C1E349ED29C7A98D009A50A5 /* Radio */,
- C1E3491429C7A866009A50A5 /* MinimedKit.h */,
- C1E34B7429C7AF61009A50A5 /* LocalisedString.swift */,
- );
- path = MinimedKit;
- sourceTree = "<group>";
- };
- C1E3492429C7A98B009A50A5 /* GlucoseEvents */ = {
- isa = PBXGroup;
- children = (
- C1E3492529C7A98B009A50A5 /* CalBGForGHGlucoseEvent.swift */,
- C1E3492629C7A98B009A50A5 /* RelativeTimestampedGlucoseEvent.swift */,
- C1E3492729C7A98B009A50A5 /* SensorCalGlucoseEvent.swift */,
- C1E3492829C7A98B009A50A5 /* SensorErrorGlucoseEvent.swift */,
- C1E3492929C7A98B009A50A5 /* TenSomethingGlucoseEvent.swift */,
- C1E3492A29C7A98B009A50A5 /* SensorStatusGlucoseEvent.swift */,
- C1E3492B29C7A98B009A50A5 /* SensorValueGlucoseEvent.swift */,
- C1E3492C29C7A98B009A50A5 /* SensorSyncGlucoseEvent.swift */,
- C1E3492D29C7A98B009A50A5 /* SensorTimestampGlucoseEvent.swift */,
- C1E3492E29C7A98B009A50A5 /* SensorDataLowGlucoseEvent.swift */,
- C1E3492F29C7A98B009A50A5 /* SensorPacketGlucoseEvent.swift */,
- C1E3493029C7A98B009A50A5 /* DateTimeChangeGlucoseEvent.swift */,
- C1E3493129C7A98B009A50A5 /* UnknownGlucoseEvent.swift */,
- C1E3493229C7A98B009A50A5 /* DataEndGlucoseEvent.swift */,
- C1E3493329C7A98B009A50A5 /* NineteenSomethingGlucoseEvent.swift */,
- C1E3493429C7A98B009A50A5 /* GlucoseEvent.swift */,
- C1E3493529C7A98B009A50A5 /* GlucoseSensorDataGlucoseEvent.swift */,
- C1E3493629C7A98B009A50A5 /* SensorDataHighGlucoseEvent.swift */,
- C1E3493729C7A98B009A50A5 /* BatteryChangeGlucoseEvent.swift */,
- C1E3493829C7A98B009A50A5 /* SensorCalFactorGlucoseEvent.swift */,
- C1E3493929C7A98B009A50A5 /* SensorWeakSignalGlucoseEvent.swift */,
- );
- path = GlucoseEvents;
- sourceTree = "<group>";
- };
- C1E3493A29C7A98B009A50A5 /* CGMManager */ = {
- isa = PBXGroup;
- children = (
- C1E3493B29C7A98B009A50A5 /* SensorValueGlucoseEvent+CGMManager.swift */,
- C1E3493C29C7A98B009A50A5 /* MySentryPumpStatusMessageBody+CGMManager.swift */,
- );
- path = CGMManager;
- sourceTree = "<group>";
- };
- C1E3494429C7A98C009A50A5 /* PumpManager */ = {
- isa = PBXGroup;
- children = (
- C1E3494529C7A98C009A50A5 /* MinimedPumpManagerState.swift */,
- C1E3494629C7A98C009A50A5 /* MinimedPumpManagerRecents.swift */,
- C1E3494729C7A98C009A50A5 /* EnliteSensorDisplayable.swift */,
- C1E3494829C7A98C009A50A5 /* PumpOpsSession+LoopKit.swift */,
- C1E3494929C7A98C009A50A5 /* BasalProfile.swift */,
- C1E3494A29C7A98C009A50A5 /* HistoryPage+PumpOpsSession.swift */,
- C1E3494B29C7A98C009A50A5 /* ReservoirReading.swift */,
- C1E3494C29C7A98C009A50A5 /* PumpMessageSender.swift */,
- C1E3494D29C7A98C009A50A5 /* MinimedPumpManagerError.swift */,
- C1E3494E29C7A98C009A50A5 /* DoseStore.swift */,
- C1E3494F29C7A98C009A50A5 /* PumpSettings.swift */,
- C1E3495029C7A98C009A50A5 /* PumpOps.swift */,
- C1E34B8029C7B155009A50A5 /* PumpOpsSession.swift */,
- C1E3495129C7A98C009A50A5 /* PumpMessage+PumpOpsSession.swift */,
- C1E3495229C7A98C009A50A5 /* InsulinDataSource.swift */,
- C1E3495329C7A98C009A50A5 /* MinimedDoseProgressEstimator.swift */,
- C1E3495429C7A98C009A50A5 /* MinimedPumpMessageSender.swift */,
- C1E3495529C7A98C009A50A5 /* MinimedPumpManager.swift */,
- C1E3495629C7A98C009A50A5 /* UnfinalizedDose.swift */,
- C1E3495729C7A98C009A50A5 /* RileyLinkDevice.swift */,
- C1E3495829C7A98C009A50A5 /* PumpOpsError.swift */,
- C1E3495929C7A98C009A50A5 /* PumpState.swift */,
- );
- path = PumpManager;
- sourceTree = "<group>";
- };
- C1E3496329C7A98C009A50A5 /* PumpEvents */ = {
- isa = PBXGroup;
- children = (
- C1E3496429C7A98C009A50A5 /* ChangeWatchdogEnablePumpEvent.swift */,
- C1E3496529C7A98C009A50A5 /* PumpAlarmPumpEvent.swift */,
- C1E3496629C7A98C009A50A5 /* ChangeCaptureEventEnablePumpEvent.swift */,
- C1E3496729C7A98C009A50A5 /* TempBasalDurationPumpEvent.swift */,
- C1E3496829C7A98C009A50A5 /* ChangeBolusScrollStepSizePumpEvent.swift */,
- C1E3496929C7A98C009A50A5 /* ChangeSensorSetup2PumpEvent.swift */,
- C1E3496A29C7A98C009A50A5 /* JournalEntryInsulinMarkerPumpEvent.swift */,
- C1E3496B29C7A98C009A50A5 /* ChangeMaxBolusPumpEvent.swift */,
- C1E3496C29C7A98C009A50A5 /* ChangeVariableBolusPumpEvent.swift */,
- C1E3496D29C7A98C009A50A5 /* ChangeBolusReminderEnablePumpEvent.swift */,
- C1E3496E29C7A98C009A50A5 /* ChangeCarbUnitsPumpEvent.swift */,
- C1E3496F29C7A98C009A50A5 /* BolusWizardEstimatePumpEvent.swift */,
- C1E3497029C7A98C009A50A5 /* ClearAlarmPumpEvent.swift */,
- C1E3497129C7A98C009A50A5 /* ChangeAlarmNotifyModePumpEvent.swift */,
- C1E3497229C7A98C009A50A5 /* ChangeAlarmClockEnablePumpEvent.swift */,
- C1E3497329C7A98C009A50A5 /* JournalEntryPumpLowReservoirPumpEvent.swift */,
- C1E3497429C7A98C009A50A5 /* ChangeTimeFormatPumpEvent.swift */,
- C1E3497529C7A98C009A50A5 /* SelectBasalProfilePumpEvent.swift */,
- C1E3497629C7A98C009A50A5 /* DailyTotal522PumpEvent.swift */,
- C1E3497729C7A98C009A50A5 /* BGReceivedPumpEvent.swift */,
- C1E3497829C7A98C009A50A5 /* TimestampedPumpEvent.swift */,
- C1E3497929C7A98C009A50A5 /* SuspendPumpEvent.swift */,
- C1E3497A29C7A98C009A50A5 /* EnableBolusWizardPumpEvent.swift */,
- C1E3497B29C7A98C009A50A5 /* UnabsorbedInsulinPumpEvent.swift */,
- C1E3497C29C7A98C009A50A5 /* DeleteOtherDeviceIDPumpEvent.swift */,
- C1E3497D29C7A98C009A50A5 /* AlarmClockReminderPumpEvent.swift */,
- C1E3497E29C7A98C009A50A5 /* ChangeBGReminderEnablePumpEvent.swift */,
- C1E3497F29C7A98C009A50A5 /* JournalEntryPumpLowBatteryPumpEvent.swift */,
- C1E3498029C7A98C009A50A5 /* NewTimePumpEvent.swift */,
- C1E3498129C7A98C009A50A5 /* ChangeMaxBasalPumpEvent.swift */,
- C1E3498229C7A98C009A50A5 /* ChangeTempBasalTypePumpEvent.swift */,
- C1E3498329C7A98C009A50A5 /* ChangeSensorAlarmSilenceConfigPumpEvent.swift */,
- C1E3498429C7A98C009A50A5 /* ChangeOtherDeviceIDPumpEvent.swift */,
- C1E3498529C7A98C009A50A5 /* PrimePumpEvent.swift */,
- C1E3498629C7A98C009A50A5 /* DailyTotal523PumpEvent.swift */,
- C1E3498729C7A98C009A50A5 /* BatteryPumpEvent.swift */,
- C1E3498829C7A98C009A50A5 /* EnableDisableRemotePumpEvent.swift */,
- C1E3498929C7A98C009A50A5 /* TempBasalPumpEvent.swift */,
- C1E3498A29C7A98C009A50A5 /* ChangeSensorRateOfChangeAlertSetupPumpEvent.swift */,
- C1E3498B29C7A98C009A50A5 /* RestoreMystery55PumpEvent.swift */,
- C1E3498C29C7A98C009A50A5 /* BolusWizardSetupPumpEvent.swift */,
- C1E3498D29C7A98C009A50A5 /* ChangeTimePumpEvent.swift */,
- C1E3498E29C7A98C009A50A5 /* ChangeBolusReminderTimePumpEvent.swift */,
- C1E3498F29C7A98C009A50A5 /* ChangeBolusWizardSetupPumpEvent.swift */,
- C1E3499029C7A98C009A50A5 /* PlaceholderPumpEvent.swift */,
- C1E3499129C7A98C009A50A5 /* PumpEvent.swift */,
- C1E3499229C7A98C009A50A5 /* ChangeBasalProfilePumpEvent.swift */,
- C1E3499329C7A98C009A50A5 /* ResumePumpEvent.swift */,
- C1E3499429C7A98C009A50A5 /* ChangeBGReminderOffsetPumpEvent.swift */,
- C1E3499529C7A98C009A50A5 /* ChangeWatchdogMarriageProfilePumpEvent.swift */,
- C1E3499629C7A98C009A50A5 /* BasalProfileStartPumpEvent.swift */,
- C1E3499729C7A98C009A50A5 /* ResultDailyTotalPumpEvent.swift */,
- C1E3499829C7A98C009A50A5 /* UnknownPumpEvent57.swift */,
- C1E3499929C7A98C009A50A5 /* RestoreMystery54PumpEvent.swift */,
- C1E3499A29C7A98C009A50A5 /* CalBGForPHPumpEvent.swift */,
- C1E3499B29C7A98C009A50A5 /* ChangeParadigmLinkIDPumpEvent.swift */,
- C1E3499C29C7A98C009A50A5 /* ChangeChildBlockEnablePumpEvent.swift */,
- C1E3499D29C7A98C009A50A5 /* ChangeBasalProfilePatternPumpEvent.swift */,
- C1E3499E29C7A98C009A50A5 /* RewindPumpEvent.swift */,
- C1E3499F29C7A98C009A50A5 /* BolusReminderPumpEvent.swift */,
- C1E349A029C7A98C009A50A5 /* ChangeMeterIDPumpEvent.swift */,
- C1E349A129C7A98C009A50A5 /* ChangeAudioBolusPumpEvent.swift */,
- C1E349A229C7A98C009A50A5 /* DeleteBolusReminderTimePumpEvent.swift */,
- C1E349A329C7A98C009A50A5 /* ChangeReservoirWarningTimePumpEvent.swift */,
- C1E349A429C7A98C009A50A5 /* JournalEntryExerciseMarkerPumpEvent.swift */,
- C1E349A529C7A98C009A50A5 /* BolusNormalPumpEvent.swift */,
- C1E349A629C7A98C009A50A5 /* AlarmSensorPumpEvent.swift */,
- C1E349A729C7A98C009A50A5 /* DailyTotal515PumpEvent.swift */,
- C1E349A829C7A98C009A50A5 /* JournalEntryMealMarkerPumpEvent.swift */,
- );
- path = PumpEvents;
- sourceTree = "<group>";
- };
- C1E349AC29C7A98C009A50A5 /* Messages */ = {
- isa = PBXGroup;
- children = (
- C1E349AD29C7A98C009A50A5 /* MessageBody.swift */,
- C1E349AE29C7A98C009A50A5 /* ReadCurrentPageNumberMessageBody.swift */,
- C1E349AF29C7A98C009A50A5 /* PowerOnCarelinkMessageBody.swift */,
- C1E349B029C7A98C009A50A5 /* GetBatteryCarelinkMessageBody.swift */,
- C1E349B129C7A98C009A50A5 /* SetRemoteControlEnabledMessageBody.swift */,
- C1E349B229C7A98C009A50A5 /* GetHistoryPageCarelinkMessageBody.swift */,
- C1E349B329C7A98C009A50A5 /* PumpAckMessageBody.swift */,
- C1E349B429C7A98C009A50A5 /* MySentryAckMessageBody.swift */,
- C1E349B529C7A98C009A50A5 /* MySentryAlertMessageBody.swift */,
- C1E349B629C7A98C009A50A5 /* PumpErrorMessageBody.swift */,
- C1E349B729C7A98C009A50A5 /* UnknownMessageBody.swift */,
- C1E349B829C7A98C009A50A5 /* DeviceLinkMessageBody.swift */,
- C1E349B929C7A98C009A50A5 /* ReadTempBasalCarelinkMessageBody.swift */,
- C1E349BA29C7A98C009A50A5 /* ReadCurrentGlucosePageMessageBody.swift */,
- C1E349BB29C7A98C009A50A5 /* Models */,
- C1E349C629C7A98C009A50A5 /* GetGlucosePageMessageBody.swift */,
- C1E349C729C7A98C009A50A5 /* MySentryPumpStatusMessageBody.swift */,
- C1E349C829C7A98C009A50A5 /* GetPumpModelCarelinkMessageBody.swift */,
- C1E349C929C7A98C009A50A5 /* MySentryAlertClearedMessageBody.swift */,
- C1E349CA29C7A98C009A50A5 /* ChangeTempBasalCarelinkMessageBody.swift */,
- C1E349CB29C7A98C009A50A5 /* ReadOtherDevicesIDsMessageBody.swift */,
- C1E349CC29C7A98C009A50A5 /* ReadTimeCarelinkMessageBody.swift */,
- C1E349CD29C7A98C009A50A5 /* ReadSettingsCarelinkMessageBody.swift */,
- C1E349CE29C7A98C009A50A5 /* GetPumpFirmwareVersionMessageBody.swift */,
- C1E349CF29C7A98C009A50A5 /* MessageType.swift */,
- C1E349D029C7A98C009A50A5 /* ReadRemoteControlIDsMessageBody.swift */,
- C1E349D129C7A98C009A50A5 /* PumpMessage.swift */,
- C1E349D229C7A98C009A50A5 /* SuspendResumeMessageBody.swift */,
- C1E349D329C7A98C009A50A5 /* ReadOtherDevicesStatusMessageBody.swift */,
- C1E349D429C7A98C009A50A5 /* ChangeMaxBolusMessageBody.swift */,
- C1E349D529C7A98C009A50A5 /* ChangeMaxBasalRateMessageBody.swift */,
- C1E349D629C7A98C009A50A5 /* FindDeviceMessageBody.swift */,
- C1E349D729C7A98C009A50A5 /* ReadRemainingInsulinMessageBody.swift */,
- C1E349D829C7A98C009A50A5 /* PacketType.swift */,
- C1E349D929C7A98C009A50A5 /* MeterMessage.swift */,
- C1E349DA29C7A98C009A50A5 /* BolusCarelinkMessageBody.swift */,
- C1E349DB29C7A98C009A50A5 /* DataFrameMessageBody.swift */,
- C1E349DC29C7A98C009A50A5 /* ChangeRemoteControlIDMessageBody.swift */,
- C1E349DD29C7A98C009A50A5 /* ReadPumpStatusMessageBody.swift */,
- C1E349DE29C7A98C009A50A5 /* ChangeTimeCarelinkMessageBody.swift */,
- C1E349DF29C7A98C009A50A5 /* SelectBasalProfileMessageBody.swift */,
- C1E349E029C7A98D009A50A5 /* ButtonPressCarelinkMessageBody.swift */,
- C1E349E129C7A98D009A50A5 /* CarelinkMessageBody.swift */,
- );
- path = Messages;
- sourceTree = "<group>";
- };
- C1E349BB29C7A98C009A50A5 /* Models */ = {
- isa = PBXGroup;
- children = (
- C1E349BC29C7A98C009A50A5 /* GlucosePage.swift */,
- C1E349BD29C7A98C009A50A5 /* HistoryPage.swift */,
- C1E349BE29C7A98C009A50A5 /* GlucoseEventType.swift */,
- C1E349BF29C7A98C009A50A5 /* TimestampedGlucoseEvent.swift */,
- C1E349C029C7A98C009A50A5 /* PartialDecode.swift */,
- C1E349C129C7A98C009A50A5 /* MySentryAlertType.swift */,
- C1E349C229C7A98C009A50A5 /* CRC16.swift */,
- C1E349C329C7A98C009A50A5 /* BasalSchedule.swift */,
- C1E349C429C7A98C009A50A5 /* PumpEventType.swift */,
- C1E349C529C7A98C009A50A5 /* TimestampedHistoryEvent.swift */,
- );
- path = Models;
- sourceTree = "<group>";
- };
- C1E349E829C7A98D009A50A5 /* Models */ = {
- isa = PBXGroup;
- children = (
- C1E349E929C7A98D009A50A5 /* BatteryChemistryType.swift */,
- C1E349EA29C7A98D009A50A5 /* PumpColor.swift */,
- C1E349EB29C7A98D009A50A5 /* PumpModel.swift */,
- C1E349EC29C7A98D009A50A5 /* PumpRegion.swift */,
- );
- path = Models;
- sourceTree = "<group>";
- };
- C1E349ED29C7A98D009A50A5 /* Radio */ = {
- isa = PBXGroup;
- children = (
- C1E349EE29C7A98D009A50A5 /* MinimedPacket.swift */,
- C1E349EF29C7A98D009A50A5 /* CRC8.swift */,
- C1E349F029C7A98D009A50A5 /* FourByteSixByteEncoding.swift */,
- );
- path = Radio;
- sourceTree = "<group>";
- };
- C1E34A0C29C7A98E009A50A5 /* Extensions */ = {
- isa = PBXGroup;
- children = (
- C1E34A0D29C7A98E009A50A5 /* ISO8601DateFormatter.swift */,
- C1E34A0E29C7A98E009A50A5 /* Int.swift */,
- C1E34A0F29C7A98E009A50A5 /* NSDateComponents.swift */,
- C1E34B7629C7AFCF009A50A5 /* Data.swift */,
- C1E34B7829C7AFF7009A50A5 /* TimeInterval.swift */,
- C1E34B7A29C7B044009A50A5 /* OSLog.swift */,
- C1E34B8229C7B1AB009A50A5 /* TimeZone.swift */,
- C1E34B8429C7B1D4009A50A5 /* HKUnit.swift */,
- );
- path = Extensions;
- sourceTree = "<group>";
- };
- C1E34AE329C7A9BC009A50A5 /* Resources */ = {
- isa = PBXGroup;
- children = (
- C1E34AE429C7A9BC009A50A5 /* Localizable.strings */,
- );
- path = Resources;
- sourceTree = "<group>";
- };
- C1E34B0229C7ABCB009A50A5 /* MinimedKitUI */ = {
- isa = PBXGroup;
- children = (
- C1E34B8929C7B2FC009A50A5 /* LocalisedString.swift */,
- C1E34B3B29C7ABF7009A50A5 /* Resources */,
- C1E34B1629C7ABF2009A50A5 /* CommandResponseViewController.swift */,
- C1E34B0929C7ABF2009A50A5 /* Extensions */,
- C1E34B1429C7ABF2009A50A5 /* Info.plist */,
- C1E34B1729C7ABF2009A50A5 /* MinimedHUDProvider.swift */,
- C1E34B1129C7ABF2009A50A5 /* MinimedPumpManager+UI.swift */,
- C1E34B1529C7ABF2009A50A5 /* MinimedPumpUICoordinator.swift */,
- C1E34B1229C7ABF2009A50A5 /* PumpModel.swift */,
- C1E34B1329C7ABF2009A50A5 /* RadioSelectionTableViewController.swift */,
- C1E34B0B29C7ABF2009A50A5 /* Setup */,
- C1E34B1829C7ABF3009A50A5 /* Views */,
- C1E34B0329C7ABCB009A50A5 /* MinimedKitUI.h */,
- );
- path = MinimedKitUI;
- sourceTree = "<group>";
- };
- C1E34B0929C7ABF2009A50A5 /* Extensions */ = {
- isa = PBXGroup;
- children = (
- C1E34B0A29C7ABF2009A50A5 /* Image.swift */,
- C1E34B8729C7B292009A50A5 /* Comparable.swift */,
- C1E34B8B29C7B334009A50A5 /* IdentifiableClass.swift */,
- C1E34B8D29C7B34F009A50A5 /* NibLoadable.swift */,
- C1E34B8F29C7B38A009A50A5 /* NumberFormatter.swift */,
- C1E34B9129C7B46C009A50A5 /* TimeZone.swift */,
- );
- path = Extensions;
- sourceTree = "<group>";
- };
- C1E34B0B29C7ABF2009A50A5 /* Setup */ = {
- isa = PBXGroup;
- children = (
- C1E34B0C29C7ABF2009A50A5 /* MinimedPumpIDSetupViewController.swift */,
- C1E34B0D29C7ABF2009A50A5 /* MinimedPumpManagerSetupViewController.swift */,
- C1E34B0E29C7ABF2009A50A5 /* MinimedPumpClockSetupViewController.swift */,
- C1E34B0F29C7ABF2009A50A5 /* MinimedPumpSetupCompleteViewController.swift */,
- C1E34B1029C7ABF2009A50A5 /* MinimedPumpSentrySetupViewController.swift */,
- );
- path = Setup;
- sourceTree = "<group>";
- };
- C1E34B1829C7ABF3009A50A5 /* Views */ = {
- isa = PBXGroup;
- children = (
- C1E34B1929C7ABF3009A50A5 /* UseMySentrySelectionView.swift */,
- C1E34B1A29C7ABF3009A50A5 /* DataSourceSelectionView.swift */,
- C1E34B1B29C7ABF3009A50A5 /* BatteryTypeSelectionView.swift */,
- C1E34B1C29C7ABF3009A50A5 /* ReservoirHUDView.xib */,
- C1E34B1D29C7ABF3009A50A5 /* MinimedPumpSettingsView.swift */,
- C1E34B1E29C7ABF3009A50A5 /* ReservoirHUDView.swift */,
- C1E34B1F29C7ABF3009A50A5 /* MinimedPumpSettingsViewModel.swift */,
- C1E34B2029C7ABF3009A50A5 /* InsulinTypeConfirmation.swift */,
- C1E34B2129C7ABF3009A50A5 /* MinimedReservoirView.swift */,
- C1E34B2229C7ABF3009A50A5 /* TimeView.swift */,
- );
- path = Views;
- sourceTree = "<group>";
- };
- C1E34B3B29C7ABF7009A50A5 /* Resources */ = {
- isa = PBXGroup;
- children = (
- C13CC3C129C7B8BC007F25DE /* MinimedPumpManager.storyboard */,
- C1E34B0829C7ABF2009A50A5 /* MinimedKitUI.xcassets */,
- C1E34B4029C7AC0A009A50A5 /* Localizable.strings */,
- );
- path = Resources;
- sourceTree = "<group>";
- };
- C1E34B5C29C7AD01009A50A5 /* MinimedKitPlugin */ = {
- isa = PBXGroup;
- children = (
- C13CC3DB29C7BA37007F25DE /* Extensions */,
- C1E34B6329C7AD31009A50A5 /* Info.plist */,
- C1E34B6229C7AD31009A50A5 /* MinimedKitPlugin.swift */,
- );
- path = MinimedKitPlugin;
- sourceTree = "<group>";
- };
- C1E34B6629C7AD62009A50A5 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- C1E34BA129C7B652009A50A5 /* RileyLinkBLEKit.framework */,
- C1E34B9729C7B5A3009A50A5 /* LoopKitUI.framework */,
- C1E34B9329C7B59B009A50A5 /* RileyLinkKitUI.framework */,
- C1E34B7C29C7B075009A50A5 /* RileyLinkKit.framework */,
- C1E34B6729C7AD62009A50A5 /* LoopKit.framework */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- CEC751C029D88240006E9D24 /* Products */ = {
- isa = PBXGroup;
- children = (
- CEC751C829D88240006E9D24 /* OmniKit.framework */,
- CEC751CA29D88240006E9D24 /* OmniKitUI.framework */,
- CEC751CC29D88240006E9D24 /* OmniKitPlugin.loopplugin */,
- CEC751CE29D88240006E9D24 /* OmniKitTests.xctest */,
- CEC751D029D88240006E9D24 /* OmniKitPacketParser */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXHeadersBuildPhase section */
- C1E3490C29C7A866009A50A5 /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C1E3491529C7A866009A50A5 /* MinimedKit.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C1E34AFC29C7ABCB009A50A5 /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C1E34B0429C7ABCB009A50A5 /* MinimedKitUI.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C1E34B5629C7AD01009A50A5 /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXHeadersBuildPhase section */
- /* Begin PBXNativeTarget section */
- C13CC34029C7B73A007F25DE /* MinimedKitTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = C13CC34829C7B73A007F25DE /* Build configuration list for PBXNativeTarget "MinimedKitTests" */;
- buildPhases = (
- C13CC33D29C7B73A007F25DE /* Sources */,
- C13CC33E29C7B73A007F25DE /* Frameworks */,
- C13CC33F29C7B73A007F25DE /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- C13CC34729C7B73A007F25DE /* PBXTargetDependency */,
- );
- name = MinimedKitTests;
- productName = MinimedKitTests;
- productReference = C13CC34129C7B73A007F25DE /* MinimedKitTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- C1E3491029C7A866009A50A5 /* MinimedKit */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = C1E3491829C7A866009A50A5 /* Build configuration list for PBXNativeTarget "MinimedKit" */;
- buildPhases = (
- C1E3490C29C7A866009A50A5 /* Headers */,
- C1E3490D29C7A866009A50A5 /* Sources */,
- C1E3490E29C7A866009A50A5 /* Frameworks */,
- C1E3490F29C7A866009A50A5 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = MinimedKit;
- productName = MinimedKit;
- productReference = C1E3491129C7A866009A50A5 /* MinimedKit.framework */;
- productType = "com.apple.product-type.framework";
- };
- C1E34B0029C7ABCB009A50A5 /* MinimedKitUI */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = C1E34B0529C7ABCB009A50A5 /* Build configuration list for PBXNativeTarget "MinimedKitUI" */;
- buildPhases = (
- C1E34AFC29C7ABCB009A50A5 /* Headers */,
- C1E34AFD29C7ABCB009A50A5 /* Sources */,
- C1E34AFE29C7ABCB009A50A5 /* Frameworks */,
- C1E34AFF29C7ABCB009A50A5 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- C13CC33B29C7B6BC007F25DE /* PBXTargetDependency */,
- );
- name = MinimedKitUI;
- productName = MinimedKitUI;
- productReference = C1E34B0129C7ABCB009A50A5 /* MinimedKitUI.framework */;
- productType = "com.apple.product-type.framework";
- };
- C1E34B5A29C7AD01009A50A5 /* MinimedKitPlugin */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = C1E34B5F29C7AD01009A50A5 /* Build configuration list for PBXNativeTarget "MinimedKitPlugin" */;
- buildPhases = (
- C1E34B5629C7AD01009A50A5 /* Headers */,
- C1E34B5729C7AD01009A50A5 /* Sources */,
- C1E34B5829C7AD01009A50A5 /* Frameworks */,
- C1E34B5929C7AD01009A50A5 /* Resources */,
- C1E34B7329C7AD9C009A50A5 /* Embed Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- C1E34B6E29C7AD9C009A50A5 /* PBXTargetDependency */,
- C1E34B7229C7AD9C009A50A5 /* PBXTargetDependency */,
- );
- name = MinimedKitPlugin;
- productName = MinimedKitPlugin;
- productReference = C1E34B5B29C7AD01009A50A5 /* MinimedKitPlugin.loopplugin */;
- productType = "com.apple.product-type.framework";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- C1E3490829C7A866009A50A5 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- BuildIndependentTargetsInParallel = 1;
- LastSwiftUpdateCheck = 1420;
- LastUpgradeCheck = 1420;
- ORGANIZATIONNAME = "LoopKit Authors";
- TargetAttributes = {
- C13CC34029C7B73A007F25DE = {
- CreatedOnToolsVersion = 14.2;
- };
- C1E3491029C7A866009A50A5 = {
- CreatedOnToolsVersion = 14.2;
- };
- C1E34B0029C7ABCB009A50A5 = {
- CreatedOnToolsVersion = 14.2;
- LastSwiftMigration = 1420;
- };
- C1E34B5A29C7AD01009A50A5 = {
- CreatedOnToolsVersion = 14.2;
- LastSwiftMigration = 1420;
- };
- };
- };
- buildConfigurationList = C1E3490B29C7A866009A50A5 /* Build configuration list for PBXProject "MinimedKit" */;
- compatibilityVersion = "Xcode 14.0";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- da,
- it,
- sv,
- tr,
- ru,
- es,
- nl,
- he,
- cs,
- fi,
- de,
- ar,
- nb,
- "pt-BR",
- sk,
- vi,
- ro,
- ja,
- "zh-Hans",
- fr,
- pl,
- hu,
- );
- mainGroup = C1E3490729C7A866009A50A5;
- productRefGroup = C1E3491229C7A866009A50A5 /* Products */;
- projectDirPath = "";
- projectReferences = (
- {
- ProductGroup = CEC751C029D88240006E9D24 /* Products */;
- ProjectRef = CEC751BF29D88240006E9D24 /* OmniKit.xcodeproj */;
- },
- );
- projectRoot = "";
- targets = (
- C1E3491029C7A866009A50A5 /* MinimedKit */,
- C1E34B0029C7ABCB009A50A5 /* MinimedKitUI */,
- C1E34B5A29C7AD01009A50A5 /* MinimedKitPlugin */,
- C13CC34029C7B73A007F25DE /* MinimedKitTests */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXReferenceProxy section */
- CEC751C829D88240006E9D24 /* OmniKit.framework */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.framework;
- path = OmniKit.framework;
- remoteRef = CEC751C729D88240006E9D24 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- CEC751CA29D88240006E9D24 /* OmniKitUI.framework */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.framework;
- path = OmniKitUI.framework;
- remoteRef = CEC751C929D88240006E9D24 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- CEC751CC29D88240006E9D24 /* OmniKitPlugin.loopplugin */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.framework;
- path = OmniKitPlugin.loopplugin;
- remoteRef = CEC751CB29D88240006E9D24 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- CEC751CE29D88240006E9D24 /* OmniKitTests.xctest */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- path = OmniKitTests.xctest;
- remoteRef = CEC751CD29D88240006E9D24 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- CEC751D029D88240006E9D24 /* OmniKitPacketParser */ = {
- isa = PBXReferenceProxy;
- fileType = "compiled.mach-o.executable";
- path = OmniKitPacketParser;
- remoteRef = CEC751CF29D88240006E9D24 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- /* End PBXReferenceProxy section */
- /* Begin PBXResourcesBuildPhase section */
- C13CC33F29C7B73A007F25DE /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C1E3490F29C7A866009A50A5 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C1E34AFB29C7A9BD009A50A5 /* Localizable.strings in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C1E34AFF29C7ABCB009A50A5 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C13CC3C329C7B8BC007F25DE /* MinimedPumpManager.storyboard in Resources */,
- C1E34B3E29C7AC0A009A50A5 /* Localizable.strings in Resources */,
- C1E34B3429C7ABF3009A50A5 /* ReservoirHUDView.xib in Resources */,
- C1E34B2329C7ABF3009A50A5 /* MinimedKitUI.xcassets in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C1E34B5929C7AD01009A50A5 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- C13CC33D29C7B73A007F25DE /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C13CC3B729C7B757007F25DE /* NSStringExtensions.swift in Sources */,
- C1229C2229C7ECA70066A89C /* TimeInterval.swift in Sources */,
- C13CC38F29C7B757007F25DE /* BolusCarelinkMessageBodyTests.swift in Sources */,
- C13CC39529C7B757007F25DE /* ChangeRemoteControlIDMessageBodyTests.swift in Sources */,
- C13CC39E29C7B757007F25DE /* PumpOpsSynchronousTests.swift in Sources */,
- C13CC3BC29C7B757007F25DE /* CRC16Tests.swift in Sources */,
- C13CC3B929C7B757007F25DE /* PumpModelTests.swift in Sources */,
- C13CC3A329C7B757007F25DE /* SensorTimestampGlucoseEventTests.swift in Sources */,
- C13CC3AD29C7B757007F25DE /* DateTimeChangeGlucoseEventTests.swift in Sources */,
- C13CC3B429C7B757007F25DE /* MockPumpMessageSender.swift in Sources */,
- C13CC39D29C7B757007F25DE /* NSDateComponents.swift in Sources */,
- C13CC3BF29C7B757007F25DE /* PumpOpsSynchronousBuildFromFramesTests.swift in Sources */,
- C13CC3A029C7B757007F25DE /* TimestampedHistoryEventTests.swift in Sources */,
- C13CC3AB29C7B757007F25DE /* GlucoseSensorDataGlucoseEventTests.swift in Sources */,
- C13CC39229C7B757007F25DE /* ReadTempBasalCarelinkMessageBodyTests.swift in Sources */,
- C13CC3A229C7B757007F25DE /* SensorDataHighGlucoseEventTests.swift in Sources */,
- C13CC38829C7B757007F25DE /* ResumePumpEventTests.swift in Sources */,
- C13CC3BD29C7B757007F25DE /* MySentryPumpStatusMessageBodyTests.swift in Sources */,
- C13CC39C29C7B757007F25DE /* MinimedPumpManagerTests.swift in Sources */,
- C13CC3A429C7B757007F25DE /* BatteryChangeGlucoseEventTests.swift in Sources */,
- C13CC3C029C7B757007F25DE /* ReconciliationTests.swift in Sources */,
- C13CC3AA29C7B757007F25DE /* SensorDataLowGlucoseEventTests.swift in Sources */,
- C13CC38929C7B757007F25DE /* BolusNormalPumpEventTests.swift in Sources */,
- C13CC39B29C7B757007F25DE /* MinimedPacketTests.swift in Sources */,
- C13CC39829C7B757007F25DE /* ChangeMaxBolusMessageBodyTests.swift in Sources */,
- C13CC3B229C7B757007F25DE /* MockPumpManagerDelegate.swift in Sources */,
- C13CC39F29C7B757007F25DE /* NSDataTests.swift in Sources */,
- C13CC3B529C7B757007F25DE /* MockRileyLinkDevice.swift in Sources */,
- C13CC3A529C7B757007F25DE /* SensorErrorGlucoseEventTests.swift in Sources */,
- C13CC3A629C7B757007F25DE /* SensorCalFactorGlucoseEventTests.swift in Sources */,
- C13CC39129C7B757007F25DE /* ReadRemoteControlIDsMessageBodyTests.swift in Sources */,
- C13CC3B029C7B757007F25DE /* BasalScheduleTests.swift in Sources */,
- C13CC3AF29C7B757007F25DE /* TenSomethingGlucoseEventTests.swift in Sources */,
- C13CC39929C7B757007F25DE /* GetPumpModelCarelinkMessageBodyTests.swift in Sources */,
- C13CC3AC29C7B757007F25DE /* SensorSyncGlucoseEventTests.swift in Sources */,
- C13CC3A729C7B757007F25DE /* SensorCalGlucoseEventTests.swift in Sources */,
- C13CC38E29C7B757007F25DE /* ReadOtherDevicesIDsMessageBodyTests.swift in Sources */,
- C13CC38D29C7B757007F25DE /* ChangeTempBasalCarelinkMessageBodyTests.swift in Sources */,
- C13CC3B829C7B757007F25DE /* ReadSettingsCarelinkMessageBodyTests.swift in Sources */,
- C13CC39429C7B757007F25DE /* ChangeMaxBasalRateMessageBodyTests.swift in Sources */,
- C13CC3B129C7B757007F25DE /* MockRileyLinkProvider.swift in Sources */,
- C13CC39A29C7B757007F25DE /* GetGlucosePageMessageBodyTests.swift in Sources */,
- C13CC3B629C7B757007F25DE /* GlucosePageTests.swift in Sources */,
- C13CC3A929C7B757007F25DE /* SensorStatusGlucoseEventTests.swift in Sources */,
- C13CC39329C7B757007F25DE /* DeviceLinkMessageBodyTests.swift in Sources */,
- C13CC38C29C7B757007F25DE /* MeterMessageTests.swift in Sources */,
- C13CC38B29C7B757007F25DE /* ChangeTimeCarelinMessageBodyTests.swift in Sources */,
- C1229C2429C7ECEB0066A89C /* Data.swift in Sources */,
- C13CC3B329C7B757007F25DE /* MockPumpOps.swift in Sources */,
- C13CC3A829C7B757007F25DE /* CalBGForGHGlucoseEventTests.swift in Sources */,
- C13CC39729C7B757007F25DE /* ReadRemainingInsulinMessageBodyTests.swift in Sources */,
- C13CC3BE29C7B757007F25DE /* NSDateComponentsTests.swift in Sources */,
- C13CC39629C7B757007F25DE /* GetBatteryCarelinkMessageBodyTests.swift in Sources */,
- C13CC3A129C7B757007F25DE /* CRC8Tests.swift in Sources */,
- C13CC39029C7B757007F25DE /* FindDeviceMessageBodyTests.swift in Sources */,
- C13CC38A29C7B757007F25DE /* ReadCurrentGlucosePageMessageBodyTests.swift in Sources */,
- C13CC3AE29C7B757007F25DE /* SensorPacketGlucoseEventTests.swift in Sources */,
- C13CC3BB29C7B757007F25DE /* HistoryPageTests.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C1E3490D29C7A866009A50A5 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C1E34AD129C7A98F009A50A5 /* CRC8.swift in Sources */,
- C1E34A6129C7A98F009A50A5 /* SelectBasalProfilePumpEvent.swift in Sources */,
- C1E34A6229C7A98F009A50A5 /* DailyTotal522PumpEvent.swift in Sources */,
- C1E34ADD29C7A98F009A50A5 /* Int.swift in Sources */,
- C1E34A2F29C7A98F009A50A5 /* SensorDataHighGlucoseEvent.swift in Sources */,
- C1E34A4C29C7A98F009A50A5 /* PumpState.swift in Sources */,
- C1E34A7529C7A98F009A50A5 /* TempBasalPumpEvent.swift in Sources */,
- C1E34AA629C7A98F009A50A5 /* GlucoseEventType.swift in Sources */,
- C1E34A4A29C7A98F009A50A5 /* RileyLinkDevice.swift in Sources */,
- C1E34A8B29C7A98F009A50A5 /* BolusReminderPumpEvent.swift in Sources */,
- C1E34ADE29C7A98F009A50A5 /* NSDateComponents.swift in Sources */,
- C1E34A5629C7A98F009A50A5 /* JournalEntryInsulinMarkerPumpEvent.swift in Sources */,
- C1E34A5D29C7A98F009A50A5 /* ChangeAlarmNotifyModePumpEvent.swift in Sources */,
- C1E34A6529C7A98F009A50A5 /* SuspendPumpEvent.swift in Sources */,
- C1E34A7B29C7A98F009A50A5 /* ChangeBolusWizardSetupPumpEvent.swift in Sources */,
- C1E34A5529C7A98F009A50A5 /* ChangeSensorSetup2PumpEvent.swift in Sources */,
- C1E34A6329C7A98F009A50A5 /* BGReceivedPumpEvent.swift in Sources */,
- C1E34A3829C7A98F009A50A5 /* MinimedPumpManagerState.swift in Sources */,
- C1E34A7C29C7A98F009A50A5 /* PlaceholderPumpEvent.swift in Sources */,
- C1E34AC229C7A98F009A50A5 /* BolusCarelinkMessageBody.swift in Sources */,
- C1E34A9229C7A98F009A50A5 /* AlarmSensorPumpEvent.swift in Sources */,
- C1E34A4029C7A98F009A50A5 /* MinimedPumpManagerError.swift in Sources */,
- C1E34A6A29C7A98F009A50A5 /* ChangeBGReminderEnablePumpEvent.swift in Sources */,
- C1E34ACD29C7A98F009A50A5 /* PumpColor.swift in Sources */,
- C1E34A6729C7A98F009A50A5 /* UnabsorbedInsulinPumpEvent.swift in Sources */,
- C1E34A6F29C7A98F009A50A5 /* ChangeSensorAlarmSilenceConfigPumpEvent.swift in Sources */,
- C1E34A6929C7A98F009A50A5 /* AlarmClockReminderPumpEvent.swift in Sources */,
- C1E34A4829C7A98F009A50A5 /* MinimedPumpManager.swift in Sources */,
- C1E34A9829C7A98F009A50A5 /* PowerOnCarelinkMessageBody.swift in Sources */,
- C1E34A8329C7A98F009A50A5 /* ResultDailyTotalPumpEvent.swift in Sources */,
- C1E34A9B29C7A98F009A50A5 /* GetHistoryPageCarelinkMessageBody.swift in Sources */,
- C1E34AAD29C7A98F009A50A5 /* TimestampedHistoryEvent.swift in Sources */,
- C1E34ABD29C7A98F009A50A5 /* ChangeMaxBasalRateMessageBody.swift in Sources */,
- C1E34A6C29C7A98F009A50A5 /* NewTimePumpEvent.swift in Sources */,
- C1E34A2129C7A98F009A50A5 /* SensorErrorGlucoseEvent.swift in Sources */,
- C1E34A2D29C7A98F009A50A5 /* GlucoseEvent.swift in Sources */,
- C1E34A7129C7A98F009A50A5 /* PrimePumpEvent.swift in Sources */,
- C1E34AC929C7A98F009A50A5 /* CarelinkMessageBody.swift in Sources */,
- C1E34A9729C7A98F009A50A5 /* ReadCurrentPageNumberMessageBody.swift in Sources */,
- C1E34A9629C7A98F009A50A5 /* MessageBody.swift in Sources */,
- C1E34A3E29C7A98F009A50A5 /* ReservoirReading.swift in Sources */,
- C1E34A5429C7A98F009A50A5 /* ChangeBolusScrollStepSizePumpEvent.swift in Sources */,
- C1E34AB029C7A98F009A50A5 /* GetPumpModelCarelinkMessageBody.swift in Sources */,
- C1E34AC329C7A98F009A50A5 /* DataFrameMessageBody.swift in Sources */,
- C1E34A7629C7A98F009A50A5 /* ChangeSensorRateOfChangeAlertSetupPumpEvent.swift in Sources */,
- C1E34AA929C7A98F009A50A5 /* MySentryAlertType.swift in Sources */,
- C1E34B8529C7B1D4009A50A5 /* HKUnit.swift in Sources */,
- C1E34ABC29C7A98F009A50A5 /* ChangeMaxBolusMessageBody.swift in Sources */,
- C1E34A4229C7A98F009A50A5 /* PumpSettings.swift in Sources */,
- C1E34AA129C7A98F009A50A5 /* DeviceLinkMessageBody.swift in Sources */,
- C1E34AAB29C7A98F009A50A5 /* BasalSchedule.swift in Sources */,
- C1E34A6629C7A98F009A50A5 /* EnableBolusWizardPumpEvent.swift in Sources */,
- C1E34A3129C7A98F009A50A5 /* SensorCalFactorGlucoseEvent.swift in Sources */,
- C1E34A6829C7A98F009A50A5 /* DeleteOtherDeviceIDPumpEvent.swift in Sources */,
- C1E34A4929C7A98F009A50A5 /* UnfinalizedDose.swift in Sources */,
- C1E34A1E29C7A98F009A50A5 /* CalBGForGHGlucoseEvent.swift in Sources */,
- C1E34AB229C7A98F009A50A5 /* ChangeTempBasalCarelinkMessageBody.swift in Sources */,
- C1E34A7F29C7A98F009A50A5 /* ResumePumpEvent.swift in Sources */,
- C1E34AA229C7A98F009A50A5 /* ReadTempBasalCarelinkMessageBody.swift in Sources */,
- C1E34A2629C7A98F009A50A5 /* SensorTimestampGlucoseEvent.swift in Sources */,
- C1E34A7829C7A98F009A50A5 /* BolusWizardSetupPumpEvent.swift in Sources */,
- C1E34A8229C7A98F009A50A5 /* BasalProfileStartPumpEvent.swift in Sources */,
- C1E34A5129C7A98F009A50A5 /* PumpAlarmPumpEvent.swift in Sources */,
- C1E34A3929C7A98F009A50A5 /* MinimedPumpManagerRecents.swift in Sources */,
- C1E34ACF29C7A98F009A50A5 /* PumpRegion.swift in Sources */,
- C1E34A2E29C7A98F009A50A5 /* GlucoseSensorDataGlucoseEvent.swift in Sources */,
- C1E34ACE29C7A98F009A50A5 /* PumpModel.swift in Sources */,
- C1E34A3A29C7A98F009A50A5 /* EnliteSensorDisplayable.swift in Sources */,
- C1E34A8029C7A98F009A50A5 /* ChangeBGReminderOffsetPumpEvent.swift in Sources */,
- C1E34AB529C7A98F009A50A5 /* ReadSettingsCarelinkMessageBody.swift in Sources */,
- C1E34A9329C7A98F009A50A5 /* DailyTotal515PumpEvent.swift in Sources */,
- C1E34A8129C7A98F009A50A5 /* ChangeWatchdogMarriageProfilePumpEvent.swift in Sources */,
- C1E34A8E29C7A98F009A50A5 /* DeleteBolusReminderTimePumpEvent.swift in Sources */,
- C1E34A5229C7A98F009A50A5 /* ChangeCaptureEventEnablePumpEvent.swift in Sources */,
- C1E34B7B29C7B044009A50A5 /* OSLog.swift in Sources */,
- C1E34A7729C7A98F009A50A5 /* RestoreMystery55PumpEvent.swift in Sources */,
- C1E34AA029C7A98F009A50A5 /* UnknownMessageBody.swift in Sources */,
- C1E34AB629C7A98F009A50A5 /* GetPumpFirmwareVersionMessageBody.swift in Sources */,
- C1E34A8A29C7A98F009A50A5 /* RewindPumpEvent.swift in Sources */,
- C1E34A3029C7A98F009A50A5 /* BatteryChangeGlucoseEvent.swift in Sources */,
- C1E34B8329C7B1AB009A50A5 /* TimeZone.swift in Sources */,
- C1E34AA429C7A98F009A50A5 /* GlucosePage.swift in Sources */,
- C1E34A3B29C7A98F009A50A5 /* PumpOpsSession+LoopKit.swift in Sources */,
- C1E34A7229C7A98F009A50A5 /* DailyTotal523PumpEvent.swift in Sources */,
- C1E34A2529C7A98F009A50A5 /* SensorSyncGlucoseEvent.swift in Sources */,
- C1E34A5929C7A98F009A50A5 /* ChangeBolusReminderEnablePumpEvent.swift in Sources */,
- C1E34B7929C7AFF7009A50A5 /* TimeInterval.swift in Sources */,
- C1E34A5729C7A98F009A50A5 /* ChangeMaxBolusPumpEvent.swift in Sources */,
- C1E34A6E29C7A98F009A50A5 /* ChangeTempBasalTypePumpEvent.swift in Sources */,
- C1E34AB929C7A98F009A50A5 /* PumpMessage.swift in Sources */,
- C1E34AB329C7A98F009A50A5 /* ReadOtherDevicesIDsMessageBody.swift in Sources */,
- C1E34AB429C7A98F009A50A5 /* ReadTimeCarelinkMessageBody.swift in Sources */,
- C1E34AA829C7A98F009A50A5 /* PartialDecode.swift in Sources */,
- C1E34A4629C7A98F009A50A5 /* MinimedDoseProgressEstimator.swift in Sources */,
- C1E34A9E29C7A98F009A50A5 /* MySentryAlertMessageBody.swift in Sources */,
- C1E34A2929C7A98F009A50A5 /* DateTimeChangeGlucoseEvent.swift in Sources */,
- C1E34AB829C7A98F009A50A5 /* ReadRemoteControlIDsMessageBody.swift in Sources */,
- C1E34A2829C7A98F009A50A5 /* SensorPacketGlucoseEvent.swift in Sources */,
- C1E34A5C29C7A98F009A50A5 /* ClearAlarmPumpEvent.swift in Sources */,
- C1E34A3429C7A98F009A50A5 /* MySentryPumpStatusMessageBody+CGMManager.swift in Sources */,
- C1E34AAC29C7A98F009A50A5 /* PumpEventType.swift in Sources */,
- C1E34A3D29C7A98F009A50A5 /* HistoryPage+PumpOpsSession.swift in Sources */,
- C1E34AC029C7A98F009A50A5 /* PacketType.swift in Sources */,
- C1E34A3329C7A98F009A50A5 /* SensorValueGlucoseEvent+CGMManager.swift in Sources */,
- C1E34A9129C7A98F009A50A5 /* BolusNormalPumpEvent.swift in Sources */,
- C1E34ABF29C7A98F009A50A5 /* ReadRemainingInsulinMessageBody.swift in Sources */,
- C1E34ACC29C7A98F009A50A5 /* BatteryChemistryType.swift in Sources */,
- C1E34AC629C7A98F009A50A5 /* ChangeTimeCarelinkMessageBody.swift in Sources */,
- C1E34A8629C7A98F009A50A5 /* CalBGForPHPumpEvent.swift in Sources */,
- C1E34A5329C7A98F009A50A5 /* TempBasalDurationPumpEvent.swift in Sources */,
- C1E34A2729C7A98F009A50A5 /* SensorDataLowGlucoseEvent.swift in Sources */,
- C1E34A4429C7A98F009A50A5 /* PumpMessage+PumpOpsSession.swift in Sources */,
- C1E34ABA29C7A98F009A50A5 /* SuspendResumeMessageBody.swift in Sources */,
- C1E34A2A29C7A98F009A50A5 /* UnknownGlucoseEvent.swift in Sources */,
- C1E34AAA29C7A98F009A50A5 /* CRC16.swift in Sources */,
- C1E34ABB29C7A98F009A50A5 /* ReadOtherDevicesStatusMessageBody.swift in Sources */,
- C1E34A8929C7A98F009A50A5 /* ChangeBasalProfilePatternPumpEvent.swift in Sources */,
- C1E34A9029C7A98F009A50A5 /* JournalEntryExerciseMarkerPumpEvent.swift in Sources */,
- C1E34A3F29C7A98F009A50A5 /* PumpMessageSender.swift in Sources */,
- C1E34AC729C7A98F009A50A5 /* SelectBasalProfileMessageBody.swift in Sources */,
- C1E34AC129C7A98F009A50A5 /* MeterMessage.swift in Sources */,
- C1E34AAE29C7A98F009A50A5 /* GetGlucosePageMessageBody.swift in Sources */,
- C1E34A2229C7A98F009A50A5 /* TenSomethingGlucoseEvent.swift in Sources */,
- C1E34B7529C7AF61009A50A5 /* LocalisedString.swift in Sources */,
- C1E34AA729C7A98F009A50A5 /* TimestampedGlucoseEvent.swift in Sources */,
- C1E34AC829C7A98F009A50A5 /* ButtonPressCarelinkMessageBody.swift in Sources */,
- C1E34A9A29C7A98F009A50A5 /* SetRemoteControlEnabledMessageBody.swift in Sources */,
- C1E34A7929C7A98F009A50A5 /* ChangeTimePumpEvent.swift in Sources */,
- C1E34A8F29C7A98F009A50A5 /* ChangeReservoirWarningTimePumpEvent.swift in Sources */,
- C1E34AD029C7A98F009A50A5 /* MinimedPacket.swift in Sources */,
- C1E34A4129C7A98F009A50A5 /* DoseStore.swift in Sources */,
- C1E34A8C29C7A98F009A50A5 /* ChangeMeterIDPumpEvent.swift in Sources */,
- C1E34A9F29C7A98F009A50A5 /* PumpErrorMessageBody.swift in Sources */,
- C1E34A4329C7A98F009A50A5 /* PumpOps.swift in Sources */,
- C1E34A7029C7A98F009A50A5 /* ChangeOtherDeviceIDPumpEvent.swift in Sources */,
- C1E34A2329C7A98F009A50A5 /* SensorStatusGlucoseEvent.swift in Sources */,
- C1E34A9C29C7A98F009A50A5 /* PumpAckMessageBody.swift in Sources */,
- C1E34AA329C7A98F009A50A5 /* ReadCurrentGlucosePageMessageBody.swift in Sources */,
- C1E34A5A29C7A98F009A50A5 /* ChangeCarbUnitsPumpEvent.swift in Sources */,
- C1E34AAF29C7A98F009A50A5 /* MySentryPumpStatusMessageBody.swift in Sources */,
- C1E34ABE29C7A98F009A50A5 /* FindDeviceMessageBody.swift in Sources */,
- C1E34AB129C7A98F009A50A5 /* MySentryAlertClearedMessageBody.swift in Sources */,
- C1E34AD229C7A98F009A50A5 /* FourByteSixByteEncoding.swift in Sources */,
- C1E34A5829C7A98F009A50A5 /* ChangeVariableBolusPumpEvent.swift in Sources */,
- C1E34A4729C7A98F009A50A5 /* MinimedPumpMessageSender.swift in Sources */,
- C1E34B8129C7B155009A50A5 /* PumpOpsSession.swift in Sources */,
- C1E34A8D29C7A98F009A50A5 /* ChangeAudioBolusPumpEvent.swift in Sources */,
- C1E34A5029C7A98F009A50A5 /* ChangeWatchdogEnablePumpEvent.swift in Sources */,
- C1E34ADC29C7A98F009A50A5 /* ISO8601DateFormatter.swift in Sources */,
- C1E34A3C29C7A98F009A50A5 /* BasalProfile.swift in Sources */,
- C1E34A7329C7A98F009A50A5 /* BatteryPumpEvent.swift in Sources */,
- C1E34A8829C7A98F009A50A5 /* ChangeChildBlockEnablePumpEvent.swift in Sources */,
- C1E34A7429C7A98F009A50A5 /* EnableDisableRemotePumpEvent.swift in Sources */,
- C1E34A5B29C7A98F009A50A5 /* BolusWizardEstimatePumpEvent.swift in Sources */,
- C1E34A7D29C7A98F009A50A5 /* PumpEvent.swift in Sources */,
- C1E34A8529C7A98F009A50A5 /* RestoreMystery54PumpEvent.swift in Sources */,
- C1E34A4529C7A98F009A50A5 /* InsulinDataSource.swift in Sources */,
- C1E34A6B29C7A98F009A50A5 /* JournalEntryPumpLowBatteryPumpEvent.swift in Sources */,
- C1E34AB729C7A98F009A50A5 /* MessageType.swift in Sources */,
- C1E34A2029C7A98F009A50A5 /* SensorCalGlucoseEvent.swift in Sources */,
- C1E34A5E29C7A98F009A50A5 /* ChangeAlarmClockEnablePumpEvent.swift in Sources */,
- C1E34A1F29C7A98F009A50A5 /* RelativeTimestampedGlucoseEvent.swift in Sources */,
- C1E34A9D29C7A98F009A50A5 /* MySentryAckMessageBody.swift in Sources */,
- C1E34A4B29C7A98F009A50A5 /* PumpOpsError.swift in Sources */,
- C1E34A7E29C7A98F009A50A5 /* ChangeBasalProfilePumpEvent.swift in Sources */,
- C1E34A8429C7A98F009A50A5 /* UnknownPumpEvent57.swift in Sources */,
- C1E34A2429C7A98F009A50A5 /* SensorValueGlucoseEvent.swift in Sources */,
- C1E34A6429C7A98F009A50A5 /* TimestampedPumpEvent.swift in Sources */,
- C1E34AC429C7A98F009A50A5 /* ChangeRemoteControlIDMessageBody.swift in Sources */,
- C1E34AC529C7A98F009A50A5 /* ReadPumpStatusMessageBody.swift in Sources */,
- C1E34A8729C7A98F009A50A5 /* ChangeParadigmLinkIDPumpEvent.swift in Sources */,
- C1E34B7729C7AFCF009A50A5 /* Data.swift in Sources */,
- C1E34A7A29C7A98F009A50A5 /* ChangeBolusReminderTimePumpEvent.swift in Sources */,
- C1E34A5F29C7A98F009A50A5 /* JournalEntryPumpLowReservoirPumpEvent.swift in Sources */,
- C1E34A6029C7A98F009A50A5 /* ChangeTimeFormatPumpEvent.swift in Sources */,
- C1E34A9929C7A98F009A50A5 /* GetBatteryCarelinkMessageBody.swift in Sources */,
- C1E34AA529C7A98F009A50A5 /* HistoryPage.swift in Sources */,
- C1E34A2B29C7A98F009A50A5 /* DataEndGlucoseEvent.swift in Sources */,
- C1E34A6D29C7A98F009A50A5 /* ChangeMaxBasalPumpEvent.swift in Sources */,
- C1E34A2C29C7A98F009A50A5 /* NineteenSomethingGlucoseEvent.swift in Sources */,
- C1E34A9429C7A98F009A50A5 /* JournalEntryMealMarkerPumpEvent.swift in Sources */,
- C1E34A3229C7A98F009A50A5 /* SensorWeakSignalGlucoseEvent.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C1E34AFD29C7ABCB009A50A5 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C1E34B2829C7ABF3009A50A5 /* MinimedPumpSetupCompleteViewController.swift in Sources */,
- C1E34B8829C7B292009A50A5 /* Comparable.swift in Sources */,
- C1E34B8A29C7B2FC009A50A5 /* LocalisedString.swift in Sources */,
- C1E34B2429C7ABF3009A50A5 /* Image.swift in Sources */,
- C1E34B3029C7ABF3009A50A5 /* MinimedHUDProvider.swift in Sources */,
- C1E34B3729C7ABF3009A50A5 /* MinimedPumpSettingsViewModel.swift in Sources */,
- C1E34B2E29C7ABF3009A50A5 /* MinimedPumpUICoordinator.swift in Sources */,
- C1E34B3129C7ABF3009A50A5 /* UseMySentrySelectionView.swift in Sources */,
- C1E34B8C29C7B334009A50A5 /* IdentifiableClass.swift in Sources */,
- C1E34B2729C7ABF3009A50A5 /* MinimedPumpClockSetupViewController.swift in Sources */,
- C1E34B3229C7ABF3009A50A5 /* DataSourceSelectionView.swift in Sources */,
- C1E34B3A29C7ABF3009A50A5 /* TimeView.swift in Sources */,
- C1E34B3929C7ABF3009A50A5 /* MinimedReservoirView.swift in Sources */,
- C1E34B2A29C7ABF3009A50A5 /* MinimedPumpManager+UI.swift in Sources */,
- C1E34B2F29C7ABF3009A50A5 /* CommandResponseViewController.swift in Sources */,
- C1E34B3529C7ABF3009A50A5 /* MinimedPumpSettingsView.swift in Sources */,
- C1E34B3329C7ABF3009A50A5 /* BatteryTypeSelectionView.swift in Sources */,
- C1E34B2929C7ABF3009A50A5 /* MinimedPumpSentrySetupViewController.swift in Sources */,
- C1E34B9229C7B46C009A50A5 /* TimeZone.swift in Sources */,
- C1E34B8E29C7B34F009A50A5 /* NibLoadable.swift in Sources */,
- C1E34B3629C7ABF3009A50A5 /* ReservoirHUDView.swift in Sources */,
- C1E34B3829C7ABF3009A50A5 /* InsulinTypeConfirmation.swift in Sources */,
- C1E34B2B29C7ABF3009A50A5 /* PumpModel.swift in Sources */,
- C1E34B2529C7ABF3009A50A5 /* MinimedPumpIDSetupViewController.swift in Sources */,
- C1E34B9029C7B38A009A50A5 /* NumberFormatter.swift in Sources */,
- C1E34B2629C7ABF3009A50A5 /* MinimedPumpManagerSetupViewController.swift in Sources */,
- C1E34B2C29C7ABF3009A50A5 /* RadioSelectionTableViewController.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C1E34B5729C7AD01009A50A5 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C13CC3DD29C7BA48007F25DE /* OSLog.swift in Sources */,
- C1E34B6429C7AD31009A50A5 /* MinimedKitPlugin.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXTargetDependency section */
- C13CC33B29C7B6BC007F25DE /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = C1E3491029C7A866009A50A5 /* MinimedKit */;
- targetProxy = C13CC33A29C7B6BC007F25DE /* PBXContainerItemProxy */;
- };
- C13CC34729C7B73A007F25DE /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = C1E3491029C7A866009A50A5 /* MinimedKit */;
- targetProxy = C13CC34629C7B73A007F25DE /* PBXContainerItemProxy */;
- };
- C1E34B6E29C7AD9C009A50A5 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = C1E3491029C7A866009A50A5 /* MinimedKit */;
- targetProxy = C1E34B6D29C7AD9C009A50A5 /* PBXContainerItemProxy */;
- };
- C1E34B7229C7AD9C009A50A5 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = C1E34B0029C7ABCB009A50A5 /* MinimedKitUI */;
- targetProxy = C1E34B7129C7AD9C009A50A5 /* PBXContainerItemProxy */;
- };
- /* End PBXTargetDependency section */
- /* Begin PBXVariantGroup section */
- C13CC3C129C7B8BC007F25DE /* MinimedPumpManager.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- C13CC3C229C7B8BC007F25DE /* Base */,
- C13CC3C529C7B8D0007F25DE /* ar */,
- C13CC3C629C7B8D4007F25DE /* en */,
- C13CC3C729C7B8D8007F25DE /* zh-Hans */,
- C13CC3C829C7B8DA007F25DE /* cs */,
- C13CC3C929C7B8DB007F25DE /* da */,
- C13CC3CA29C7B8DC007F25DE /* nl */,
- C13CC3CB29C7B8DD007F25DE /* fi */,
- C13CC3CC29C7B8DE007F25DE /* fr */,
- C13CC3CD29C7B8DF007F25DE /* de */,
- C13CC3CE29C7B8E0007F25DE /* he */,
- C13CC3CF29C7B8E0007F25DE /* it */,
- C13CC3D029C7B8E1007F25DE /* ja */,
- C13CC3D129C7B8E2007F25DE /* nb */,
- C13CC3D229C7B8E3007F25DE /* pl */,
- C13CC3D329C7B8E4007F25DE /* pt-BR */,
- C13CC3D429C7B8E5007F25DE /* ro */,
- C13CC3D529C7B8E5007F25DE /* ru */,
- C13CC3D629C7B8E6007F25DE /* sk */,
- C13CC3D729C7B8E7007F25DE /* es */,
- C13CC3D829C7B8E9007F25DE /* sv */,
- C13CC3D929C7B8E9007F25DE /* tr */,
- C13CC3DA29C7B8EB007F25DE /* vi */,
- 193F1E522B44C22A00525770 /* hu */,
- );
- name = MinimedPumpManager.storyboard;
- sourceTree = "<group>";
- };
- C1E34AE429C7A9BC009A50A5 /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- C1E34AE529C7A9BC009A50A5 /* de */,
- C1E34AE629C7A9BC009A50A5 /* he */,
- C1E34AE729C7A9BC009A50A5 /* ar */,
- C1E34AE829C7A9BC009A50A5 /* zh-Hans */,
- C1E34AE929C7A9BC009A50A5 /* ja */,
- C1E34AEA29C7A9BC009A50A5 /* nb */,
- C1E34AEB29C7A9BC009A50A5 /* es */,
- C1E34AEC29C7A9BC009A50A5 /* da */,
- C1E34AED29C7A9BC009A50A5 /* it */,
- C1E34AEE29C7A9BC009A50A5 /* sk */,
- C1E34AEF29C7A9BC009A50A5 /* sv */,
- C1E34AF029C7A9BC009A50A5 /* cs */,
- C1E34AF129C7A9BC009A50A5 /* Base */,
- C1E34AF229C7A9BC009A50A5 /* tr */,
- C1E34AF329C7A9BC009A50A5 /* pl */,
- C1E34AF429C7A9BC009A50A5 /* pt-BR */,
- C1E34AF529C7A9BC009A50A5 /* vi */,
- C1E34AF629C7A9BC009A50A5 /* ru */,
- C1E34AF729C7A9BC009A50A5 /* fr */,
- C1E34AF829C7A9BC009A50A5 /* fi */,
- C1E34AF929C7A9BC009A50A5 /* nl */,
- C1E34AFA29C7A9BC009A50A5 /* ro */,
- 193F1E532B44C22A00525770 /* hu */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
- C1E34B4029C7AC0A009A50A5 /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- C1E34B4129C7AC4C009A50A5 /* ar */,
- C1E34B4229C7AC4F009A50A5 /* zh-Hans */,
- C1E34B4329C7AC51009A50A5 /* cs */,
- C1E34B4429C7AC54009A50A5 /* da */,
- C1E34B4529C7AC56009A50A5 /* nl */,
- C1E34B4629C7AC58009A50A5 /* fi */,
- C1E34B4729C7AC5B009A50A5 /* fr */,
- C1E34B4829C7AC5D009A50A5 /* de */,
- C1E34B4929C7AC5F009A50A5 /* he */,
- C1E34B4A29C7AC61009A50A5 /* it */,
- C1E34B4B29C7AC64009A50A5 /* ja */,
- C1E34B4C29C7AC66009A50A5 /* nb */,
- C1E34B4D29C7AC68009A50A5 /* pl */,
- C1E34B4E29C7AC69009A50A5 /* pt-BR */,
- C1E34B4F29C7AC6A009A50A5 /* ro */,
- C1E34B5029C7AC6B009A50A5 /* ru */,
- C1E34B5129C7AC6C009A50A5 /* sk */,
- C1E34B5229C7AC6D009A50A5 /* es */,
- C1E34B5329C7AC6E009A50A5 /* sv */,
- C1E34B5429C7AC6F009A50A5 /* tr */,
- C1E34B5529C7AC70009A50A5 /* vi */,
- C1BF2DB929C8007300EB8987 /* en */,
- 193F1E542B44C22A00525770 /* hu */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
- /* End PBXVariantGroup section */
- /* Begin XCBuildConfiguration section */
- C13CC34929C7B73A007F25DE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = UY678SP37Q;
- GENERATE_INFOPLIST_FILE = YES;
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = org.loopkit.MinimedKitTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_EMIT_LOC_STRINGS = NO;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- C13CC34A29C7B73A007F25DE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = UY678SP37Q;
- GENERATE_INFOPLIST_FILE = YES;
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = org.loopkit.MinimedKitTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_EMIT_LOC_STRINGS = NO;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- C1E3491629C7A866009A50A5 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
- 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 = 1;
- 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 = 15.2;
- LOCALIZED_STRING_MACRO_NAMES = (
- NSLocalizedString,
- CFCopyLocalizedString,
- LocalizedString,
- );
- 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";
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
- };
- name = Debug;
- };
- C1E3491729C7A866009A50A5 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
- 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 = 1;
- 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 = 15.2;
- LOCALIZED_STRING_MACRO_NAMES = (
- NSLocalizedString,
- CFCopyLocalizedString,
- LocalizedString,
- );
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- SDKROOT = iphoneos;
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- VALIDATE_PRODUCT = YES;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
- };
- name = Release;
- };
- C1E3491929C7A866009A50A5 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DEVELOPMENT_TEAM = "";
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_KEY_NSHumanReadableCopyright = "";
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = org.loopkit.MinimedKit;
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
- SKIP_INSTALL = YES;
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- C1E3491A29C7A866009A50A5 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DEVELOPMENT_TEAM = "";
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_KEY_NSHumanReadableCopyright = "";
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = org.loopkit.MinimedKit;
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
- SKIP_INSTALL = YES;
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- C1E34B0629C7ABCB009A50A5 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_ENABLE_MODULES = YES;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DEVELOPMENT_TEAM = "";
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_KEY_NSHumanReadableCopyright = "";
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = org.loopkit.MinimedKitUI;
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
- SKIP_INSTALL = YES;
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_INSTALL_OBJC_HEADER = NO;
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- C1E34B0729C7ABCB009A50A5 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_ENABLE_MODULES = YES;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DEVELOPMENT_TEAM = "";
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_KEY_NSHumanReadableCopyright = "";
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = org.loopkit.MinimedKitUI;
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
- SKIP_INSTALL = YES;
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_INSTALL_OBJC_HEADER = NO;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- C1E34B6029C7AD01009A50A5 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_ENABLE_MODULES = YES;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DEVELOPMENT_TEAM = "";
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_FILE = MinimedKitPlugin/Info.plist;
- INFOPLIST_KEY_NSHumanReadableCopyright = "";
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = org.loopkit.MinimedKitPlugin;
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
- SKIP_INSTALL = YES;
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- WRAPPER_EXTENSION = loopplugin;
- };
- name = Debug;
- };
- C1E34B6129C7AD01009A50A5 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_ENABLE_MODULES = YES;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DEVELOPMENT_TEAM = "";
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_FILE = MinimedKitPlugin/Info.plist;
- INFOPLIST_KEY_NSHumanReadableCopyright = "";
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = org.loopkit.MinimedKitPlugin;
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
- SKIP_INSTALL = YES;
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- WRAPPER_EXTENSION = loopplugin;
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- C13CC34829C7B73A007F25DE /* Build configuration list for PBXNativeTarget "MinimedKitTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- C13CC34929C7B73A007F25DE /* Debug */,
- C13CC34A29C7B73A007F25DE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- C1E3490B29C7A866009A50A5 /* Build configuration list for PBXProject "MinimedKit" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- C1E3491629C7A866009A50A5 /* Debug */,
- C1E3491729C7A866009A50A5 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- C1E3491829C7A866009A50A5 /* Build configuration list for PBXNativeTarget "MinimedKit" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- C1E3491929C7A866009A50A5 /* Debug */,
- C1E3491A29C7A866009A50A5 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- C1E34B0529C7ABCB009A50A5 /* Build configuration list for PBXNativeTarget "MinimedKitUI" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- C1E34B0629C7ABCB009A50A5 /* Debug */,
- C1E34B0729C7ABCB009A50A5 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- C1E34B5F29C7AD01009A50A5 /* Build configuration list for PBXNativeTarget "MinimedKitPlugin" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- C1E34B6029C7AD01009A50A5 /* Debug */,
- C1E34B6129C7AD01009A50A5 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- /* End XCConfigurationList section */
- };
- rootObject = C1E3490829C7A866009A50A5 /* Project object */;
- }
|