├── .github ├── FUNDING.yml └── workflows │ ├── add_identifiers.yml │ ├── build_iAPS.yml │ ├── create_certs.yml │ ├── empty_commit.yaml │ └── validate_secrets.yml ├── .gitignore ├── BuildTools ├── Package.resolved ├── Package.swift └── main.swift ├── Config.xcconfig ├── Core_Data.xcdatamodeld └── Core_Data.xcdatamodel │ └── contents ├── Dependencies ├── CGMBLEKit │ ├── .gitignore │ ├── .travis.yml │ ├── CGMBLEKit Example │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── CommandQueue.swift │ │ ├── Info.plist │ │ ├── NSUserDefaults.swift │ │ ├── ViewController.swift │ │ ├── da.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── de.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── en.lproj │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── es.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── fi.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── fr.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── he.lproj │ │ │ ├── LaunchScreen.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── it.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── ja.lproj │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── nb.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── nl.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── pl.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── pt-BR.lproj │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── ro.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── ru.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── sk.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── sv.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── tr.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── LaunchScreen.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── vi.lproj │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ └── zh-Hans.lproj │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ ├── CGMBLEKit.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── CGMBLEKit │ │ ├── AESCrypt.h │ │ ├── AESCrypt.m │ │ ├── Base.lproj │ │ │ └── Localizable.strings │ │ ├── BluetoothManager.swift │ │ ├── BluetoothServices.swift │ │ ├── CBPeripheral.swift │ │ ├── CGMBLEKit.h │ │ ├── Calibration.swift │ │ ├── CalibrationState.swift │ │ ├── Command.swift │ │ ├── Glucose+SensorDisplayable.swift │ │ ├── Glucose.swift │ │ ├── Info.plist │ │ ├── Messages │ │ │ ├── AuthChallengeRxMessage.swift │ │ │ ├── AuthChallengeTxMessage.swift │ │ │ ├── AuthRequestRxMessage.swift │ │ │ ├── AuthRequestTxMessage.swift │ │ │ ├── BatteryStatusTxMessage.swift │ │ │ ├── BondRequestTxMessage.swift │ │ │ ├── CalibrateGlucoseRxMessage.swift │ │ │ ├── CalibrateGlucoseTxMessage.swift │ │ │ ├── CalibrationDataRxMessage.swift │ │ │ ├── CalibrationDataTxMessage.swift │ │ │ ├── DisconnectTxMessage.swift │ │ │ ├── FirmwareVersionTxMessage.swift │ │ │ ├── GlucoseBackfillMessage.swift │ │ │ ├── GlucoseHistoryTxMessage.swift │ │ │ ├── GlucoseRxMessage.swift │ │ │ ├── GlucoseTxMessage.swift │ │ │ ├── KeepAliveTxMessage.swift │ │ │ ├── ResetMessage.swift │ │ │ ├── SessionStartRxMessage.swift │ │ │ ├── SessionStartTxMessage.swift │ │ │ ├── SessionStopRxMessage.swift │ │ │ ├── SessionStopTxMessage.swift │ │ │ ├── TransmitterMessage.swift │ │ │ ├── TransmitterTimeRxMessage.swift │ │ │ ├── TransmitterTimeTxMessage.swift │ │ │ ├── TransmitterVersionRxMessage.swift │ │ │ └── TransmitterVersionTxMessage.swift │ │ ├── NSData+CRC.swift │ │ ├── OSLog.swift │ │ ├── Opcode.swift │ │ ├── PeripheralManager+G5.swift │ │ ├── PeripheralManager.swift │ │ ├── PeripheralManagerError.swift │ │ ├── Transmitter.swift │ │ ├── TransmitterManager.swift │ │ ├── TransmitterStatus.swift │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── ca.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ ├── pt-PT.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hans.lproj │ │ │ └── Localizable.strings │ ├── CGMBLEKitG5Plugin │ │ ├── CGMBLEKitG5Plugin-Bridging-Header.h │ │ ├── CGMBLEKitG5Plugin.swift │ │ └── Info.plist │ ├── CGMBLEKitG6Plugin │ │ ├── CGMBLEKitG6Plugin-Bridging-Header.h │ │ ├── CGMBLEKitG6Plugin.swift │ │ └── Info.plist │ ├── CGMBLEKitTests │ │ ├── CalibrationDataRxMessageTests.swift │ │ ├── GlucoseBackfillMessageTests.swift │ │ ├── GlucoseRxMessageTests.swift │ │ ├── GlucoseTests.swift │ │ ├── Info.plist │ │ ├── SessionStartRxMessageTests.swift │ │ ├── SessionStopRxMessageTests.swift │ │ ├── TransmitterIDTests.swift │ │ ├── TransmitterTimeRxMessageTests.swift │ │ └── TransmitterVersionRxMessageTests.swift │ ├── CGMBLEKitUI │ │ ├── Assets.xcassets │ │ │ ├── Contents.json │ │ │ └── g6.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── g6.png │ │ ├── Base.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.storyboard │ │ ├── CGMBLEKitUI.h │ │ ├── IdentifiableClass.swift │ │ ├── Info.plist │ │ ├── TransmitterIDSetupViewController.swift │ │ ├── TransmitterManager+UI.swift │ │ ├── TransmitterSettingsViewController.swift │ │ ├── TransmitterSetupViewController.swift │ │ ├── UIColor.swift │ │ ├── ar.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── ca.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── de.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── en.lproj │ │ │ └── TransmitterManagerSetup.strings │ │ ├── es.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── fi.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── fr.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── he.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── it.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── ja.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── nb.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── nl.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── pl.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── pt-BR.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── pt-PT.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── ro.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── ru.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── sk.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── sv.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── tr.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── uk.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ ├── vi.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ │ └── zh-Hans.lproj │ │ │ ├── Localizable.strings │ │ │ └── TransmitterManagerSetup.strings │ ├── CODE_OF_CONDUCT.md │ ├── Common │ │ ├── Data.swift │ │ ├── HKUnit.swift │ │ ├── LocalizedString.swift │ │ ├── Locked.swift │ │ └── TimeInterval.swift │ ├── LICENSE │ ├── Pod │ │ └── CGMBLEKit.h │ ├── README.md │ └── ResetTransmitter │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-24@2x.png │ │ │ ├── Icon-27.5@2x.png │ │ │ ├── Icon-29@2x.png │ │ │ ├── Icon-29@3x.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-44@2x.png │ │ │ ├── Icon-86@2x.png │ │ │ ├── Icon-98@2x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x-1.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x-1.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x-1.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── ItunesArtwork@2x.png │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── CompletionViewController.swift │ │ ├── Info.plist │ │ ├── ResetManager.swift │ │ ├── ResetViewController.swift │ │ ├── Views │ │ ├── Button.swift │ │ ├── ParagraphView.swift │ │ └── TextField.swift │ │ ├── ar.lproj │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ └── Localizable.strings │ │ ├── da.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── de.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── en.lproj │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── es.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── fi.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── fr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── he.lproj │ │ ├── InfoPlist.strings │ │ ├── LaunchScreen.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── hi.lproj │ │ └── Localizable.strings │ │ ├── it.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── ja.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── nb.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── nl.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── pl.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── pt-BR.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── ro.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── ru.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── sk.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── sv.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── tr.lproj │ │ ├── InfoPlist.strings │ │ ├── LaunchScreen.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ ├── vi.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ │ └── zh-Hans.lproj │ │ ├── Localizable.strings │ │ └── Main.strings ├── ConnectIQ 2.xcframework │ ├── Info.plist │ ├── ios-armv7_arm64 │ │ └── ConnectIQ.framework │ │ │ ├── ConnectIQ │ │ │ ├── Headers │ │ │ ├── ConnectIQ.h │ │ │ ├── IQApp.h │ │ │ ├── IQAppStatus.h │ │ │ ├── IQConstants.h │ │ │ └── IQDevice.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── ar.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── cs.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── da.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── de.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── el.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── en.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── es.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── fi.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── fr.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── he.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── hr.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── hu.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── id.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── it.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── ja.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── ko.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── ms.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── nb.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── nl.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── pl.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── pt-PT.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── pt.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── ru.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── sk.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── sv.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── th.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── tr.lproj │ │ │ └── IQLocalizable.strings │ │ │ ├── zh-Hans.lproj │ │ │ └── IQLocalizable.strings │ │ │ └── zh-Hant.lproj │ │ │ └── IQLocalizable.strings │ └── ios-i386_x86_64-simulator │ │ └── ConnectIQ.framework │ │ ├── ConnectIQ │ │ ├── Headers │ │ ├── ConnectIQ.h │ │ ├── IQApp.h │ │ ├── IQAppStatus.h │ │ ├── IQConstants.h │ │ └── IQDevice.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── _CodeSignature │ │ └── CodeResources │ │ ├── ar.lproj │ │ └── IQLocalizable.strings │ │ ├── cs.lproj │ │ └── IQLocalizable.strings │ │ ├── da.lproj │ │ └── IQLocalizable.strings │ │ ├── de.lproj │ │ └── IQLocalizable.strings │ │ ├── el.lproj │ │ └── IQLocalizable.strings │ │ ├── en.lproj │ │ └── IQLocalizable.strings │ │ ├── es.lproj │ │ └── IQLocalizable.strings │ │ ├── fi.lproj │ │ └── IQLocalizable.strings │ │ ├── fr.lproj │ │ └── IQLocalizable.strings │ │ ├── he.lproj │ │ └── IQLocalizable.strings │ │ ├── hr.lproj │ │ └── IQLocalizable.strings │ │ ├── hu.lproj │ │ └── IQLocalizable.strings │ │ ├── id.lproj │ │ └── IQLocalizable.strings │ │ ├── it.lproj │ │ └── IQLocalizable.strings │ │ ├── ja.lproj │ │ └── IQLocalizable.strings │ │ ├── ko.lproj │ │ └── IQLocalizable.strings │ │ ├── ms.lproj │ │ └── IQLocalizable.strings │ │ ├── nb.lproj │ │ └── IQLocalizable.strings │ │ ├── nl.lproj │ │ └── IQLocalizable.strings │ │ ├── pl.lproj │ │ └── IQLocalizable.strings │ │ ├── pt-PT.lproj │ │ └── IQLocalizable.strings │ │ ├── pt.lproj │ │ └── IQLocalizable.strings │ │ ├── ru.lproj │ │ └── IQLocalizable.strings │ │ ├── sk.lproj │ │ └── IQLocalizable.strings │ │ ├── sv.lproj │ │ └── IQLocalizable.strings │ │ ├── th.lproj │ │ └── IQLocalizable.strings │ │ ├── tr.lproj │ │ └── IQLocalizable.strings │ │ ├── zh-Hans.lproj │ │ └── IQLocalizable.strings │ │ └── zh-Hant.lproj │ │ └── IQLocalizable.strings ├── DanaKit │ ├── .gitignore │ ├── Common │ │ ├── BackgroundTask.swift │ │ ├── Bundle.swift │ │ ├── Data.swift │ │ ├── DoseEntry.swift │ │ ├── IdentifiableClass.swift │ │ ├── LocalizedString.swift │ │ ├── NavigationLink.swift │ │ ├── NewPumpEvent.swift │ │ ├── NibLoadable.swift │ │ ├── NotificationHelper.swift │ │ ├── NumberFormatter.swift │ │ ├── OSLog.swift │ │ ├── PumpAlarmType.swift │ │ ├── TimeInterval.swift │ │ └── UnfinalizedDose.swift │ ├── DanaKit.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── OmniBLEParser.xcscheme │ │ │ └── OmniBLETests.xcscheme │ ├── DanaKit │ │ ├── DanaKit.h │ │ ├── Encryption │ │ │ ├── Common.swift │ │ │ ├── Crc.swift │ │ │ ├── Decryption.swift │ │ │ ├── Encrypt.swift │ │ │ ├── EncryptionManager.swift │ │ │ └── Lookup.swift │ │ ├── Info.plist │ │ ├── Packets │ │ │ ├── DanaBasalCancelTemporary.swift │ │ │ ├── DanaBasalGetProfileNumber.swift │ │ │ ├── DanaBasalGetRate.swift │ │ │ ├── DanaBasalSetProfileNumber.swift │ │ │ ├── DanaBasalSetProfileRate.swift │ │ │ ├── DanaBasalSetSuspendOff.swift │ │ │ ├── DanaBasalSetSuspendOn.swift │ │ │ ├── DanaBasalSetTemporary.swift │ │ │ ├── DanaBolusCancelExtended.swift │ │ │ ├── DanaBolusGet24CIRCFArray.swift │ │ │ ├── DanaBolusGetCIRCFArray.swift │ │ │ ├── DanaBolusGetCalculationInformation.swift │ │ │ ├── DanaBolusGetOption.swift │ │ │ ├── DanaBolusGetStepInformation.swift │ │ │ ├── DanaBolusSet24CIRCFArray.swift │ │ │ ├── DanaBolusSetExtended.swift │ │ │ ├── DanaBolusSetOption.swift │ │ │ ├── DanaBolusStart.swift │ │ │ ├── DanaBolusStop.swift │ │ │ ├── DanaGeneralAvgBolus.swift │ │ │ ├── DanaGeneralClearUserTimeChangeFlag.swift │ │ │ ├── DanaGeneralGetInitialScreenInformation.swift │ │ │ ├── DanaGeneralGetPumpCheck.swift │ │ │ ├── DanaGeneralGetPumpDecRatio.swift │ │ │ ├── DanaGeneralGetPumpTime.swift │ │ │ ├── DanaGeneralGetPumpTimeUtcWithTimezone.swift │ │ │ ├── DanaGeneralGetShippingInformation.swift │ │ │ ├── DanaGeneralGetShippingVersion.swift │ │ │ ├── DanaGeneralGetUserOption.swift │ │ │ ├── DanaGeneralGetUserTimeChangeFlag.swift │ │ │ ├── DanaGeneralKeepConnection.swift │ │ │ ├── DanaGeneralSaveHistory.swift │ │ │ ├── DanaGeneralSetHistoryUploadMode.swift │ │ │ ├── DanaGeneralSetPumpTime.swift │ │ │ ├── DanaGeneralSetPumpTimeUtcWithTimezone.swift │ │ │ ├── DanaGeneralSetUserOption.swift │ │ │ ├── DanaHistoryAlarm.swift │ │ │ ├── DanaHistoryAll.swift │ │ │ ├── DanaHistoryBasal.swift │ │ │ ├── DanaHistoryBase.swift │ │ │ ├── DanaHistoryBloodGlucose.swift │ │ │ ├── DanaHistoryBolus.swift │ │ │ ├── DanaHistoryCarbohydrates.swift │ │ │ ├── DanaHistoryDaily.swift │ │ │ ├── DanaHistoryPrime.swift │ │ │ ├── DanaHistoryRefill.swift │ │ │ ├── DanaHistorySuspend.swift │ │ │ ├── DanaHistoryTemporary.swift │ │ │ ├── DanaLoopHistoryEvents.swift │ │ │ ├── DanaLoopSetEventHistory.swift │ │ │ ├── DanaLoopSetTemporaryBasal.swift │ │ │ ├── DanaNotifyAlarm.swift │ │ │ ├── DanaNotifyDeliveryComplete.swift │ │ │ ├── DanaNotifyDeliveryRateDisplay.swift │ │ │ ├── DanaNotifyMissedBolus.swift │ │ │ ├── DanaPacketBase.swift │ │ │ ├── DanaPacketParser.swift │ │ │ └── DanaPacketType.swift │ │ └── PumpManager │ │ │ ├── BluetoothManager.swift │ │ │ ├── ContinousBluetoothManager.swift │ │ │ ├── DanaKit.swift │ │ │ ├── DanaKitDoseProgressReporter.swift │ │ │ ├── DanaKitPumpManager.swift │ │ │ ├── DanaKitPumpManagerError.swift │ │ │ ├── DanaKitPumpManagerState.swift │ │ │ ├── InteractiveBluetoothManager.swift │ │ │ ├── PeripheralManager.swift │ │ │ └── PumpManagerAlert.swift │ ├── DanaKitTests │ │ ├── Constants.swift │ │ ├── Encryption │ │ │ ├── CommonTests.swift │ │ │ ├── CrcTests.swift │ │ │ ├── DecryptionTests.swift │ │ │ └── EncryptTests.swift │ │ ├── GeneratePacketTests.swift │ │ └── Info.plist │ ├── DanaKitUI │ │ ├── DanaKitHUDProvider.swift │ │ ├── DanaKitPumpManager+UI.swift │ │ ├── DanaKitUI.xcassets │ │ │ ├── Contents.json │ │ │ ├── danai.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dana-i.png │ │ │ │ ├── dana-i@2x.png │ │ │ │ └── dana-i@3x.png │ │ │ ├── danars.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── danars.png │ │ │ │ ├── danars@2.png │ │ │ │ └── danars@3.png │ │ │ ├── pairing_request.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DanaRS_Pairing.jpg │ │ │ ├── reservoir.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── reservoir.pdf │ │ │ └── reservoir_mask.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── reservoir_mask.pdf │ │ ├── ViewController │ │ │ ├── ActivityViewController.swift │ │ │ └── DanaUICoordinator.swift │ │ ├── ViewModels │ │ │ ├── DanaKitDebugViewModel.swift │ │ │ ├── DanaKitScanViewModel.swift │ │ │ ├── DanaKitSettingsViewModel.swift │ │ │ └── DanaKitUserSettingsViewModel.swift │ │ ├── Views │ │ │ ├── ContinueButton.swift │ │ │ ├── DanaKitReservoirView.swift │ │ │ ├── DanaKitReservoirView.xib │ │ │ ├── Image.swift │ │ │ ├── Onboarding │ │ │ │ ├── DanaIExplainationView.swift │ │ │ │ ├── DanaKitDebugView.swift │ │ │ │ ├── DanaKitPumpSpeed.swift │ │ │ │ ├── DanaKitScanView.swift │ │ │ │ ├── DanaKitSetupCompleteView.swift │ │ │ │ ├── DanaKitSetupView.swift │ │ │ │ ├── DanaRSv1Explaination.swift │ │ │ │ ├── DanaRSv1Password.swift │ │ │ │ ├── DanaRSv3Explaination.swift │ │ │ │ └── InsulinTypeConfirmation.swift │ │ │ ├── ReservoirView.swift │ │ │ └── Settings │ │ │ │ ├── DanaKitSettingsPumpSpeed.swift │ │ │ │ ├── DanaKitSettingsView.swift │ │ │ │ ├── DanaKitUserSettingsView.swift │ │ │ │ ├── InsulinTypeView.swift │ │ │ │ └── PickerView.swift │ │ └── blank.wav │ ├── LICENSE │ ├── Localization │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hans.lproj │ │ │ └── Localizable.strings │ └── README.md ├── G7SensorKit │ ├── .gitignore │ ├── Common │ │ ├── Data.swift │ │ ├── HKUnit.swift │ │ ├── LocalizedString.swift │ │ ├── Locked.swift │ │ └── TimeInterval.swift │ ├── G7SensorKit.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── G7SensorKit │ │ ├── AlgorithmError.swift │ │ ├── AlgorithmState.swift │ │ ├── BluetoothServices.swift │ │ ├── CBPeripheral.swift │ │ ├── G7CGMManager │ │ │ ├── G7BackfillMessage.swift │ │ │ ├── G7BluetoothManager.swift │ │ │ ├── G7CGMManager.swift │ │ │ ├── G7CGMManagerState.swift │ │ │ ├── G7DeviceStatus.swift │ │ │ ├── G7LastReading.swift │ │ │ ├── G7PeripheralManager.swift │ │ │ └── G7Sensor.swift │ │ ├── G7SensorKit.h │ │ ├── GlucoseLimits.swift │ │ ├── Messages │ │ │ ├── AuthChallengeRxMessage.swift │ │ │ ├── G7GlucoseMessage.swift │ │ │ ├── G7Opcode.swift │ │ │ └── SensorMessage.swift │ │ ├── OSLog.swift │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ └── vi.lproj │ │ │ └── Localizable.strings │ ├── G7SensorKitTests │ │ ├── G7GlucoseMessageTests.swift │ │ └── G7SensorKitTests.swift │ ├── G7SensorKitUI │ │ ├── Assets.xcassets │ │ │ ├── Contents.json │ │ │ └── g7.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── g7.png │ │ ├── Extensions │ │ │ └── Image.swift │ │ ├── G7CGMManager │ │ │ ├── G7CGMManager+UI.swift │ │ │ └── G7UICoordinator.swift │ │ ├── G7SensorKitUI.h │ │ ├── LocalizedString.swift │ │ ├── OSLog.swift │ │ ├── Views │ │ │ ├── G7ProgressBarState.swift │ │ │ ├── G7SettingsView.swift │ │ │ ├── G7SettingsViewModel.swift │ │ │ └── G7StartupView.swift │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ ├── pt-PT.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hans.lproj │ │ │ └── Localizable.strings │ ├── G7SensorPlugin │ │ ├── G7SensorPlugin.h │ │ ├── G7SensorPlugin.swift │ │ ├── Info.plist │ │ └── OSLog.swift │ ├── README.md │ ├── ar.lproj │ │ └── Localizable.strings │ ├── ca.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── fi.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ └── Localizable.strings │ ├── hu.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ ├── nb.lproj │ │ └── Localizable.strings │ ├── nl.lproj │ │ └── Localizable.strings │ ├── pl.lproj │ │ └── Localizable.strings │ ├── pt-BR.lproj │ │ └── Localizable.strings │ ├── pt-PT.lproj │ │ └── Localizable.strings │ ├── ru.lproj │ │ └── Localizable.strings │ ├── sk.lproj │ │ └── Localizable.strings │ ├── sv.lproj │ │ └── Localizable.strings │ ├── tr.lproj │ │ └── Localizable.strings │ ├── uk.lproj │ │ └── Localizable.strings │ ├── vi.lproj │ │ └── Localizable.strings │ └── zh-Hans.lproj │ │ └── Localizable.strings ├── LibreTransmitter │ ├── LibreTramsmitterExample │ │ ├── LibreTramsmitterExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── LibreTramsmitterExample │ │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── Info.plist │ │ │ ├── LibreTramsmitterExample.entitlements │ │ │ ├── LibreTramsmitterExampleApp.swift │ │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ │ └── StateModel.swift │ ├── Package.swift │ ├── README.md │ ├── RawGlucose.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64 │ │ │ └── RawGlucose.framework │ │ │ │ ├── Headers │ │ │ │ ├── RawGlucose-Swift.h │ │ │ │ └── RawGlucose.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ ├── RawGlucose.swiftmodule │ │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ │ ├── arm64-apple-ios.swiftinterface │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ └── arm64.swiftinterface │ │ │ │ └── module.modulemap │ │ │ │ ├── RawGlucose │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── ios-arm64_x86_64-simulator │ │ │ └── RawGlucose.framework │ │ │ ├── Headers │ │ │ ├── RawGlucose-Swift.h │ │ │ └── RawGlucose.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── RawGlucose.swiftmodule │ │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ │ ├── arm64.swiftdoc │ │ │ │ ├── arm64.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ ├── x86_64-apple-ios-simulator.swiftinterface │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── RawGlucose │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── Sources │ │ └── LibreTransmitter │ │ ├── Bluetooth │ │ ├── BluetoothSearch.swift │ │ ├── CBPeripheralExtensions.swift │ │ ├── GenericThrottler.swift │ │ ├── LibreTransmitterMetadata.swift │ │ └── Transmitter │ │ │ ├── BubbleTransmitter.swift │ │ │ ├── Libre2DirectTransmitter.swift │ │ │ ├── LibreTransmitterProxyManager.swift │ │ │ ├── LibreTransmitterProxyProtocol.swift │ │ │ ├── MiaomiaoTransmitter.swift │ │ │ └── UUIDContainer.swift │ │ ├── Common │ │ ├── Extensions │ │ │ ├── CollectionExtensions.swift │ │ │ ├── DataExtensions.swift │ │ │ ├── DateExtensions.swift │ │ │ ├── DoubleExtensions.swift │ │ │ ├── HashableClass.swift │ │ │ ├── Notification.swift │ │ │ └── TimeIntervalExtensions.swift │ │ ├── GlucoseSampleValue.swift │ │ ├── GlucoseValue.swift │ │ ├── HKQuantitySample+GlucoseKit.swift │ │ ├── HKUnit.swift │ │ ├── LocalizedString.swift │ │ ├── MessagePassing.swift │ │ ├── NewGlucoseSample.swift │ │ ├── NotificationHelper.swift │ │ ├── NumberFormatter.swift │ │ ├── QuantityFormatter.swift │ │ ├── SampleValue.swift │ │ ├── Settings │ │ │ ├── KeyChainManagerWrapper.swift │ │ │ ├── LogExport.swift │ │ │ ├── UIApplication+metadata.swift │ │ │ ├── UserDefaults+Alarmsettings.swift │ │ │ ├── UserDefaults+Bluetooth.swift │ │ │ └── UserDefaults+GlucoseSettings.swift │ │ ├── UnfairLock.swift │ │ └── WeakSynchronizedDelegate.swift │ │ ├── CompletionNotifying.swift │ │ ├── ConcreteGlucoseDisplayable.swift │ │ ├── DeviceLogEntryType.swift │ │ ├── Features.swift │ │ ├── LibreGlucose.swift │ │ ├── LibreSensor │ │ ├── Calibration.swift │ │ ├── GlucoseAlgorithm │ │ │ ├── GlucoseFromRaw.swift │ │ │ └── GlucoseSmoothing.swift │ │ ├── LibreError.swift │ │ ├── LimitedQueue.swift │ │ └── SensorContents │ │ │ ├── CRC.swift │ │ │ ├── Measurement.swift │ │ │ ├── PreLibre2.swift │ │ │ ├── Sensor.swift │ │ │ ├── SensorData.swift │ │ │ ├── SensorSerialNumber.swift │ │ │ └── SensorState.swift │ │ ├── LibreTransmitterManager.swift │ │ ├── LibreTransmitterUI │ │ ├── Controllers │ │ │ └── LibreTransmitterSetupViewController.swift │ │ ├── Graphics │ │ │ ├── bubble.png │ │ │ ├── ic_bubble_mini_3-2.png │ │ │ ├── icons8-down-arrow-50.png │ │ │ ├── icons8-drop-down-arrow-50.png │ │ │ ├── icons8-schedule-50.png │ │ │ ├── icons8-slide-up-50.png │ │ │ ├── icons8-up-50.png │ │ │ ├── libresensor.png │ │ │ └── miaomiao-small.png │ │ ├── LibreTransmitterManager+UI.swift │ │ ├── SensorPairing │ │ │ ├── SensorPairing.swift │ │ │ └── SensorPairingService.swift │ │ └── Views │ │ │ ├── Settings │ │ │ ├── CalibrationEditView.swift │ │ │ ├── GlucoseSettingsView.swift │ │ │ ├── NotificationSettingsView.swift │ │ │ └── SettingsView.swift │ │ │ ├── Setup │ │ │ ├── BluetoothSelection.swift │ │ │ ├── Libre2DirectSetup.swift │ │ │ └── ModeSelectionView.swift │ │ │ ├── Styles │ │ │ ├── BlueButtonStyle.swift │ │ │ └── ErrorTextFieldStyle.swift │ │ │ └── Utilities │ │ │ ├── EnumeratedForEach.swift │ │ │ ├── GenericObservableObject.swift │ │ │ ├── NumericTextField.swift │ │ │ ├── StatusMessage.swift │ │ │ └── ViewExtensions.swift │ │ ├── OSLog.swift │ │ ├── Observables │ │ ├── GlucoseInfo.swift │ │ ├── SensorInfo.swift │ │ └── TransmitterInfo.swift │ │ └── SettingsNavigationViewController.swift ├── LoopKit │ ├── .circleci │ │ └── config.yml │ ├── .gitignore │ ├── .swiftpm │ │ └── xcode │ │ │ └── package.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── LoopKit Example │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Extensions │ │ │ ├── HKUnit.swift │ │ │ ├── IdentifiableClass.swift │ │ │ ├── LegacyInsulinDeliveryTableViewController.swift │ │ │ ├── NSUserDefaults.swift │ │ │ └── TimeInterval.swift │ │ ├── Info.plist │ │ ├── LoopKitExample.entitlements │ │ ├── Managers │ │ │ └── DeviceDataManager.swift │ │ ├── MasterViewController.swift │ │ ├── ar.lproj │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── LaunchScreen.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── de.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── fi.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── LaunchScreen.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── fr.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── he.lproj │ │ │ ├── LaunchScreen.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── it.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── ja.lproj │ │ │ ├── LaunchScreen.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── nb.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── nl.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── pl.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── pt-BR.lproj │ │ │ ├── LaunchScreen.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── ro.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── LaunchScreen.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── ru.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── sk.lproj │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── sv.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── LaunchScreen.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── tr.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── LaunchScreen.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ ├── vi.lproj │ │ │ ├── LaunchScreen.strings │ │ │ ├── Localizable.strings │ │ │ └── Main.strings │ │ └── zh-Hans.lproj │ │ │ └── Localizable.strings │ ├── LoopKit.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── LoopKit │ │ ├── Alert.swift │ │ ├── AnyCodableEquatable.swift │ │ ├── AutomaticDosingStrategy.swift │ │ ├── BasalRateSchedule.swift │ │ ├── BluetoothProvider.swift │ │ ├── CarbKit │ │ │ ├── AbsorbedCarbValue.swift │ │ │ ├── CachedCarbObject+CoreDataClass.swift │ │ │ ├── CachedCarbObject+CoreDataProperties.swift │ │ │ ├── CarbEntry.swift │ │ │ ├── CarbMath.swift │ │ │ ├── CarbStatus.swift │ │ │ ├── CarbStore.swift │ │ │ ├── CarbStoreError.swift │ │ │ ├── CarbValue.swift │ │ │ ├── HKQuantitySample+CarbKit.swift │ │ │ ├── NSUserDefaults.swift │ │ │ ├── NewCarbEntry.swift │ │ │ ├── StoredCarbEntry.swift │ │ │ └── SyncCarbObject.swift │ │ ├── CarbRatioSchedule.swift │ │ ├── CarbSensitivitySchedule.swift │ │ ├── CorrectionRangeOverrides.swift │ │ ├── CriticalEventLog.swift │ │ ├── DailyQuantitySchedule+Override.swift │ │ ├── DailyQuantitySchedule.swift │ │ ├── DailyValueSchedule.swift │ │ ├── DeliveryLimits.swift │ │ ├── DeviceManager │ │ │ ├── AlertSoundPlayer.swift │ │ │ ├── CGMManager.swift │ │ │ ├── CodableDevice.swift │ │ │ ├── DeviceLifecycleProgress.swift │ │ │ ├── DeviceLog │ │ │ │ ├── DeviceLog.xcdatamodeld │ │ │ │ │ └── DeviceCommsLog.xcdatamodel │ │ │ │ │ │ └── contents │ │ │ │ ├── DeviceLogEntry+CoreDataClass.swift │ │ │ │ ├── DeviceLogEntry+CoreDataProperties.swift │ │ │ │ ├── DeviceLogEntryType.swift │ │ │ │ ├── PersistentDeviceLog.swift │ │ │ │ └── StoredDeviceLogEntry.swift │ │ │ ├── DeviceManager.swift │ │ │ ├── DeviceStatusHighlight.swift │ │ │ ├── DoseProgressReporter.swift │ │ │ ├── DoseProgressTimerEstimator.swift │ │ │ ├── PumpManager.swift │ │ │ ├── PumpManagerError.swift │ │ │ └── PumpManagerStatus.swift │ │ ├── DosingDecisionObject+CoreDataClass.swift │ │ ├── DosingDecisionObject+CoreDataProperties.swift │ │ ├── DosingDecisionStore.swift │ │ ├── EGPSchedule.swift │ │ ├── Extensions │ │ │ ├── ClosedRange.swift │ │ │ ├── Collection.swift │ │ │ ├── Comparable.swift │ │ │ ├── Data.swift │ │ │ ├── Date.swift │ │ │ ├── DateFormatter.swift │ │ │ ├── Double.swift │ │ │ ├── FloatingPoint.swift │ │ │ ├── Guardrail+Settings.swift │ │ │ ├── HKHealthStore.swift │ │ │ ├── HKObject.swift │ │ │ ├── HKQuantity.swift │ │ │ ├── HKQuantitySample.swift │ │ │ ├── HKUnit.swift │ │ │ ├── MutableCollection.swift │ │ │ ├── NSUserActivity+CarbKit.swift │ │ │ ├── NumberFormatter.swift │ │ │ ├── OSLog.swift │ │ │ ├── OutputStream.swift │ │ │ ├── Sequence.swift │ │ │ ├── TimeInterval.swift │ │ │ ├── TimeZone.swift │ │ │ └── UUID.swift │ │ ├── GlucoseChange.swift │ │ ├── GlucoseEffect.swift │ │ ├── GlucoseEffectVelocity.swift │ │ ├── GlucoseKit │ │ │ ├── CachedGlucoseObject+CoreDataClass.swift │ │ │ ├── CachedGlucoseObject+CoreDataProperties.swift │ │ │ ├── GlucoseCondition.swift │ │ │ ├── GlucoseDisplayable.swift │ │ │ ├── GlucoseMath.swift │ │ │ ├── GlucoseRangeCategory.swift │ │ │ ├── GlucoseSampleValue.swift │ │ │ ├── GlucoseStore.swift │ │ │ ├── GlucoseTrend.swift │ │ │ ├── HKDevice+Encodable.swift │ │ │ ├── HKQuantitySample+GlucoseKit.swift │ │ │ ├── NewGlucoseSample.swift │ │ │ └── StoredGlucoseSample.swift │ │ ├── GlucoseRange.swift │ │ ├── GlucoseRangeSchedule+SafeBounds.swift │ │ ├── GlucoseRangeSchedule.swift │ │ ├── GlucoseSchedule.swift │ │ ├── GlucoseThreshold.swift │ │ ├── GlucoseValue.swift │ │ ├── Guardrail.swift │ │ ├── HealthKitSampleStore.swift │ │ ├── HealthStoreUnitCache.swift │ │ ├── Info.plist │ │ ├── Insulin │ │ │ ├── ExponentialInsulinModelPreset.swift │ │ │ └── InsulinModelProvider.swift │ │ ├── InsulinKit │ │ │ ├── AutomaticDoseRecommendation.swift │ │ │ ├── CachedInsulinDeliveryObject+CoreDataClass.swift │ │ │ ├── CachedInsulinDeliveryObject+CoreDataProperties.swift │ │ │ ├── DoseEntry.swift │ │ │ ├── DoseStore.swift │ │ │ ├── DoseType.swift │ │ │ ├── DoseUnit.swift │ │ │ ├── ExponentialInsulinModel.swift │ │ │ ├── HKQuantitySample+InsulinKit.swift │ │ │ ├── InsulinDeliveryStore.swift │ │ │ ├── InsulinMath.swift │ │ │ ├── InsulinModel.swift │ │ │ ├── InsulinType.swift │ │ │ ├── InsulinValue.swift │ │ │ ├── ManualBolusRecommendation.swift │ │ │ ├── NewPumpEvent.swift │ │ │ ├── PersistedPumpEvent.swift │ │ │ ├── PumpAlarmType.swift │ │ │ ├── PumpEvent+CoreDataClass.swift │ │ │ ├── PumpEvent+CoreDataProperties.swift │ │ │ ├── PumpEventType.swift │ │ │ ├── Reservoir+CoreDataProperties.swift │ │ │ ├── Reservoir.swift │ │ │ ├── ReservoirValue.swift │ │ │ ├── TempBasalRecommendation.swift │ │ │ └── WalshInsulinModel.swift │ │ ├── JSONStreamEncoder.swift │ │ ├── KeychainManager.swift │ │ ├── LocalizedString.swift │ │ ├── Locked.swift │ │ ├── LoopKit.h │ │ ├── LoopMath.swift │ │ ├── LoopPluginBundleKey.swift │ │ ├── Notification │ │ │ ├── LoopNotificationCategory.swift │ │ │ └── LoopNotificationUserInfoKey.swift │ │ ├── NotificationSettings.swift │ │ ├── Persistence │ │ │ ├── Model.xcdatamodeld │ │ │ │ ├── .xccurrentversion │ │ │ │ ├── Model.xcdatamodel │ │ │ │ │ └── contents │ │ │ │ └── Modelv4.xcdatamodel │ │ │ │ │ └── contents │ │ │ ├── Modelv1v4.xcmappingmodel │ │ │ │ └── xcmapping.xml │ │ │ ├── Modelv3EntityMigrationPolicy.swift │ │ │ ├── NSManagedObjectContext.swift │ │ │ └── PersistenceController.swift │ │ ├── Prescription.swift │ │ ├── QuantityFormatter.swift │ │ ├── Resources │ │ │ ├── Base.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ar.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── cs.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── da.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── de.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fi.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── he.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── hu.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── it.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ja.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── nb.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── nl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pt-BR.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ro.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ru.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── sk.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── sv.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── tr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── vi.lproj │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ ├── SampleValue.swift │ │ ├── Service │ │ │ ├── AnalyticsService.swift │ │ │ ├── LoggingService.swift │ │ │ ├── Remote │ │ │ │ └── Actions │ │ │ │ │ ├── Action.swift │ │ │ │ │ ├── BolusAction.swift │ │ │ │ │ ├── CarbAction.swift │ │ │ │ │ ├── OverrideAction.swift │ │ │ │ │ └── OverrideCancelAction.swift │ │ │ ├── RemoteDataService.swift │ │ │ └── Service.swift │ │ ├── ServiceAuthentication.swift │ │ ├── SettingsObject+CoreDataClass.swift │ │ ├── SettingsObject+CoreDataProperties.swift │ │ ├── SettingsStore.swift │ │ ├── StoredInsulinModel.swift │ │ ├── SyncAlertObject.swift │ │ ├── TemporaryScheduleOverride.swift │ │ ├── TemporaryScheduleOverrideHistory.swift │ │ ├── TemporaryScheduleOverridePreset.swift │ │ ├── TemporaryScheduleOverrideSettings.swift │ │ ├── TherapySetting.swift │ │ ├── TherapySettings.swift │ │ ├── UnfairLock.swift │ │ ├── VersionUpdate.swift │ │ ├── WeakSet.swift │ │ ├── WeakSynchronizedDelegate.swift │ │ └── WeakSynchronizedSet.swift │ ├── LoopKitHostedTests │ │ ├── CarbStoreHKQueryTests.swift │ │ ├── CoreDataMigrationTests.swift │ │ ├── GlucoseStoreTests.swift │ │ ├── HKAnchoredObjectQueryMock.swift │ │ ├── HKObserverQueryMock.swift │ │ ├── InsulinDeliveryStoreTests.swift │ │ ├── LoopKitHostedTests.plist │ │ ├── Persistence │ │ │ └── CachedGlucoseObjectTests.swift │ │ └── TestCoreData │ │ │ └── Model.sqlite.v1.original │ ├── LoopKitTests │ │ ├── AlertTests.swift │ │ ├── BasalRateScheduleTests.swift │ │ ├── BolusRecommendationTests.swift │ │ ├── CGMManagerStatusTests.swift │ │ ├── CarbMathTests.swift │ │ ├── CarbStoreTests.swift │ │ ├── CarbValueTests.swift │ │ ├── CollectionTests.swift │ │ ├── CorrectionRangeOverridesTests.swift │ │ ├── CriticalEventLogTests.swift │ │ ├── DailyQuantityScheduleTests.swift │ │ ├── DailyValueScheduleTests.swift │ │ ├── DoseEntryTests.swift │ │ ├── DoseProgressTests.swift │ │ ├── DoseStoreTests.swift │ │ ├── DosingDecisionStoreTests.swift │ │ ├── Extensions │ │ │ ├── CacheStore.swift │ │ │ ├── DailyValueSchedule.swift │ │ │ ├── HKHealthStoreMock.swift │ │ │ └── NSManagedObjectContext.swift │ │ ├── Fixtures │ │ │ ├── CarbKit │ │ │ │ ├── carb_effect_from_history_input.json │ │ │ │ ├── carb_effect_from_history_output.json │ │ │ │ ├── carb_entry_input.json │ │ │ │ ├── carbs_on_board_output.json │ │ │ │ ├── dynamic_glucose_effect_fully_observed_output.json │ │ │ │ ├── dynamic_glucose_effect_never_fully_observed_output.json │ │ │ │ ├── dynamic_glucose_effect_none_observed_output.json │ │ │ │ ├── dynamic_glucose_effect_partially_observed_output.json │ │ │ │ ├── grouped_by_overlapping_absorption_times_border_case_input.json │ │ │ │ ├── grouped_by_overlapping_absorption_times_border_case_output.json │ │ │ │ ├── grouped_by_overlapping_absorption_times_input.json │ │ │ │ ├── grouped_by_overlapping_absorption_times_output.json │ │ │ │ ├── ice_1_hour_input.json │ │ │ │ ├── ice_1_hour_output.json │ │ │ │ ├── ice_35_min_input.json │ │ │ │ ├── ice_35_min_none_output.json │ │ │ │ ├── ice_35_min_none_piecewiselinear_output.json │ │ │ │ ├── ice_35_min_partial_output.json │ │ │ │ ├── ice_35_min_partial_piecewiselinear_adaptiverate_output.json │ │ │ │ ├── ice_35_min_partial_piecewiselinear_output.json │ │ │ │ ├── ice_slow_absorption.json │ │ │ │ ├── ice_slow_absorption_output.json │ │ │ │ ├── ice_slow_absorption_piecewiselinear_output.json │ │ │ │ ├── reconcile_bolus_wizard_duplicates_input.json │ │ │ │ └── reconcile_bolus_wizard_duplicates_output.json │ │ │ ├── GlucoseKit │ │ │ │ ├── counteraction_effect_falling_glucose_almost_duplicates_input.json │ │ │ │ ├── counteraction_effect_falling_glucose_almost_duplicates_output.json │ │ │ │ ├── counteraction_effect_falling_glucose_double_entries._input.json │ │ │ │ ├── counteraction_effect_falling_glucose_input.json │ │ │ │ ├── counteraction_effect_falling_glucose_insulin.json │ │ │ │ ├── counteraction_effect_falling_glucose_output.json │ │ │ │ ├── momentum_effect_bouncing_glucose_input.json │ │ │ │ ├── momentum_effect_bouncing_glucose_output.json │ │ │ │ ├── momentum_effect_display_only_glucose_input.json │ │ │ │ ├── momentum_effect_duplicate_glucose_input.json │ │ │ │ ├── momentum_effect_falling_glucose_input.json │ │ │ │ ├── momentum_effect_falling_glucose_output.json │ │ │ │ ├── momentum_effect_impossible_rising_glucose_input.json │ │ │ │ ├── momentum_effect_impossible_rising_glucose_output.json │ │ │ │ ├── momentum_effect_incomplete_glucose_input.json │ │ │ │ ├── momentum_effect_mixed_provenance_glucose_input.json │ │ │ │ ├── momentum_effect_rising_glucose_double_entries_input.json │ │ │ │ ├── momentum_effect_rising_glucose_input.json │ │ │ │ ├── momentum_effect_rising_glucose_output.json │ │ │ │ ├── momentum_effect_stable_glucose_input.json │ │ │ │ └── momentum_effect_stable_glucose_output.json │ │ │ ├── InsulinKit │ │ │ │ ├── basal_dose.json │ │ │ │ ├── basal_dose_with_delivered.json │ │ │ │ ├── basal_dose_with_expired.json │ │ │ │ ├── bolus_dose.json │ │ │ │ ├── dose_history_with_delivered_units.json │ │ │ │ ├── doses_overlay_basal_profile_output.json │ │ │ │ ├── effect_from_basal_output.json │ │ │ │ ├── effect_from_basal_output_exponential.json │ │ │ │ ├── effect_from_bolus_output.json │ │ │ │ ├── effect_from_history_exponential_delivered_units_output.json │ │ │ │ ├── effect_from_history_output.json │ │ │ │ ├── iob_from_bolus_120min_output.json │ │ │ │ ├── iob_from_bolus_180min_output.json │ │ │ │ ├── iob_from_bolus_240min_output.json │ │ │ │ ├── iob_from_bolus_300min_output.json │ │ │ │ ├── iob_from_bolus_312min_output.json │ │ │ │ ├── iob_from_bolus_360min_output.json │ │ │ │ ├── iob_from_bolus_420min_output.json │ │ │ │ ├── iob_from_bolus_exponential_output.json │ │ │ │ ├── iob_from_doses_exponential_output.json │ │ │ │ ├── iob_from_doses_output.json │ │ │ │ ├── iob_from_multiple_curves_output.json │ │ │ │ ├── iob_from_reservoir_output.json │ │ │ │ ├── normalize_edge_case_doses_input.json │ │ │ │ ├── normalize_edge_case_doses_mutable_input.json │ │ │ │ ├── normalize_edge_case_doses_mutable_output.json │ │ │ │ ├── normalize_edge_case_doses_output.json │ │ │ │ ├── normalized_doses.json │ │ │ │ ├── normalized_reservoir_history_output.json │ │ │ │ ├── reconcile_history_input.json │ │ │ │ ├── reconcile_history_output.json │ │ │ │ ├── reconcile_resume_before_rewind_input.json │ │ │ │ ├── reconcile_resume_before_rewind_output.json │ │ │ │ ├── reservoir_for_iob_missing.json │ │ │ │ ├── reservoir_history_with_continuity_holes.json │ │ │ │ ├── reservoir_history_with_rewind_and_prime_input.json │ │ │ │ ├── reservoir_history_with_rewind_and_prime_output.json │ │ │ │ ├── reservoir_iob_test.json │ │ │ │ ├── short_basal_dose.json │ │ │ │ ├── suspend_dose.json │ │ │ │ ├── suspend_dose_reconciled.json │ │ │ │ ├── suspend_dose_reconciled_normalized.json │ │ │ │ └── suspend_dose_reconciled_normalized_iob.json │ │ │ ├── basal.json │ │ │ ├── glucose_from_effects_carb_effect_input.json │ │ │ ├── glucose_from_effects_glucose_input.json │ │ │ ├── glucose_from_effects_insulin_effect_input.json │ │ │ ├── glucose_from_effects_momentum_blend_glucose_input.json │ │ │ ├── glucose_from_effects_momentum_blend_insulin_effect_input.json │ │ │ ├── glucose_from_effects_momentum_blend_momentum_input.json │ │ │ ├── glucose_from_effects_momentum_blend_output.json │ │ │ ├── glucose_from_effects_momentum_down_input.json │ │ │ ├── glucose_from_effects_momentum_down_output.json │ │ │ ├── glucose_from_effects_momentum_flat_glucose_input.json │ │ │ ├── glucose_from_effects_momentum_flat_input.json │ │ │ ├── glucose_from_effects_momentum_flat_output.json │ │ │ ├── glucose_from_effects_momentum_up_input.json │ │ │ ├── glucose_from_effects_momentum_up_output.json │ │ │ ├── glucose_from_effects_no_momentum_output.json │ │ │ ├── glucose_from_effects_non_zero_carb_input.json │ │ │ ├── glucose_from_effects_non_zero_glucose_input.json │ │ │ ├── glucose_from_effects_non_zero_insulin_input.json │ │ │ ├── glucose_from_effects_non_zero_output.json │ │ │ ├── ice_minus_carb_effect_with_gaps_output.json │ │ │ ├── ice_minus_flat_carb_effect_output.json │ │ │ └── read_carb_ratios.json │ │ ├── GlucoseMathTests.swift │ │ ├── GlucoseRangeScheduleTests.swift │ │ ├── GlucoseRangeTests.swift │ │ ├── GlucoseStoreTests.swift │ │ ├── GlucoseThresholdTests.swift │ │ ├── GlucoseValueTests.swift │ │ ├── GuardrailTests.swift │ │ ├── HKDeviceCodableTests.swift │ │ ├── HKUnitTests.swift │ │ ├── Info.plist │ │ ├── InsulinMathTests.swift │ │ ├── InsulinSensitivityScheduleTests.swift │ │ ├── JSONStreamEncoderTests.swift │ │ ├── LoopKitTests.swift │ │ ├── LoopMathTests.swift │ │ ├── NSDateTests.swift │ │ ├── NewGlucoseSampleTests.swift │ │ ├── NewPumpEventTests.swift │ │ ├── NotificationSettingsTests.swift │ │ ├── OutputStreamTests.swift │ │ ├── OverrideTests.swift │ │ ├── Persistence │ │ │ ├── CachedCarbObjectTests.swift │ │ │ ├── CachedGlucoseObjectTests.swift │ │ │ ├── CachedInsulinDeliveryObjectTests.swift │ │ │ ├── DeviceLogEntryTests.swift │ │ │ ├── PersistenceControllerTestCase.swift │ │ │ ├── PersistenceControllerTests.swift │ │ │ └── PumpEventTests.swift │ │ ├── PersistentDeviceLogTests.swift │ │ ├── PumpManagerStatusTests.swift │ │ ├── QuantityFormatterTests.swift │ │ ├── QuantityScheduleTests.swift │ │ ├── ServiceTests.swift │ │ ├── SettingsStoreTests.swift │ │ ├── StoredCarbEntryTests.swift │ │ ├── StoredGlucoseSampleTests.swift │ │ ├── TempBasalRecommendationTests.swift │ │ ├── TemporaryScheduleOverrideHistoryTests.swift │ │ ├── TemporaryScheduleOverrideTests.swift │ │ ├── TherapySettingsTests.swift │ │ └── VersionCheckServiceTests.swift │ ├── LoopKitUI │ │ ├── CGMManagerUI.swift │ │ ├── CarbKit │ │ │ ├── CustomInputTextField.swift │ │ │ ├── DateAndDurationSteppableTableViewCell.swift │ │ │ ├── DateAndDurationSteppableTableViewCell.xib │ │ │ ├── DateAndDurationTableViewCell.swift │ │ │ ├── DateAndDurationTableViewCell.xib │ │ │ ├── DecimalTextFieldTableViewCell.swift │ │ │ ├── FoodEmojiDataSource.swift │ │ │ └── FoodTypeShortcutCell.swift │ │ ├── ChartColorPalette.swift │ │ ├── Charts │ │ │ ├── GlucoseChart.swift │ │ │ └── InsulinModelChart.swift │ │ ├── CompletionNotifying.swift │ │ ├── DeviceManagerUI.swift │ │ ├── DeviceStatusBadge.swift │ │ ├── DisplayGlucoseUnitObserver.swift │ │ ├── Extensions │ │ │ ├── Binding.swift │ │ │ ├── ChartLineModel+LoopKitUI.swift │ │ │ ├── ChartSettings+LoopKitUI.swift │ │ │ ├── Collection.swift │ │ │ ├── Color.swift │ │ │ ├── Comparable.swift │ │ │ ├── Data.swift │ │ │ ├── DateFormatter.swift │ │ │ ├── Dictionary.swift │ │ │ ├── Environment+AppName.swift │ │ │ ├── Environment+Authenticate.swift │ │ │ ├── Environment+Colors.swift │ │ │ ├── Environment+Dismiss.swift │ │ │ ├── GlucoseTrend.swift │ │ │ ├── Guardrail+UI.swift │ │ │ ├── HKUnit.swift │ │ │ ├── IdentifiableClass.swift │ │ │ ├── Image.swift │ │ │ ├── Keyboard.swift │ │ │ ├── Math.swift │ │ │ ├── NSTimeInterval.swift │ │ │ ├── NibLoadable.swift │ │ │ ├── NumberFormatter.swift │ │ │ ├── OrientationLock.swift │ │ │ ├── QuantityFormatter+Guardrails.swift │ │ │ ├── TimeZone.swift │ │ │ ├── UIFont.swift │ │ │ ├── UIImage.swift │ │ │ ├── UITableViewCell.swift │ │ │ ├── UITextField.swift │ │ │ ├── View+InsetGroupedListStyle.swift │ │ │ └── View+KeyboardAware.swift │ │ ├── HUDProvider.swift │ │ ├── HorizontalSizeClassOverride.swift │ │ ├── Info.plist │ │ ├── InsulinKit │ │ │ ├── ErrorBackgroundView.swift │ │ │ └── LegacyInsulinDeliveryTableViewController.swift │ │ ├── InsulinModelSettings+LoopKitUI.swift │ │ ├── LocalizedString.swift │ │ ├── LoopKitUI.h │ │ ├── LoopUIColorPalette.swift │ │ ├── LoopUIPlugin.swift │ │ ├── Models │ │ │ ├── ChartAxisValueDoubleUnit.swift │ │ │ └── GuidanceColors.swift │ │ ├── OnboardingUI.swift │ │ ├── OverrideEmojiDataSource.swift │ │ ├── PumpManagerUI.swift │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── Apidra.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Checkmark.imageset │ │ │ │ │ ├── Checkmark.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Darkened Insulin.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Delete-Left.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Delete@2x.png │ │ │ │ │ └── Delete@3x.png │ │ │ │ ├── Delete.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Fiasp.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Humalog.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Invalid.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Lightened Insulin.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Lyumjev.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Novolog.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Oval Selection.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Oval Selection Dark.pdf │ │ │ │ │ └── Oval Selection.pdf │ │ │ │ ├── Pre-Meal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Pre-Meal.pdf │ │ │ │ ├── Warning.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── play-button.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── play-button.pdf │ │ │ │ ├── vial.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── vial_stroke_dark.svg │ │ │ │ │ └── vial_stroke_light.svg │ │ │ │ ├── vial_color.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── vial_color.svg │ │ │ │ └── workout.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── workout.pdf │ │ │ ├── Base.lproj │ │ │ │ ├── InsulinKit.storyboard │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.storyboard │ │ │ │ └── Localizable.strings │ │ │ ├── EmojiInputController.storyboard │ │ │ ├── OverrideSelectionViewController.storyboard │ │ │ ├── ar.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── cs.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── da.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── de.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── fi.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── he.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── hi.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── hu.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── it.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── ja.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── nb.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── nl.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── pl.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── pt-BR.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── ro.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── ru.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── sk.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── sv.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── tr.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ ├── vi.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ ├── InsulinKit.strings │ │ │ │ ├── LegacyInsulinDeliveryTableViewController.strings │ │ │ │ └── Localizable.strings │ │ ├── ServiceAuthenticationUI.swift │ │ ├── ServiceCredential.swift │ │ ├── ServiceUI.swift │ │ ├── SetupUIResult.swift │ │ ├── StateColorPalette.swift │ │ ├── SupportUI.swift │ │ ├── UIActivityIndicatorView.swift │ │ ├── UIAlertController.swift │ │ ├── UIColor.swift │ │ ├── View Controllers │ │ │ ├── AddEditOverrideTableViewController.swift │ │ │ ├── AuthenticationViewController.swift │ │ │ ├── ChartsManager.swift │ │ │ ├── ChartsTableViewController.swift │ │ │ ├── CommandResponseViewController.swift │ │ │ ├── DailyQuantityScheduleTableViewController.swift │ │ │ ├── DailyValueScheduleTableViewController.swift │ │ │ ├── DateAndDurationTableViewController.swift │ │ │ ├── DismissibleHostingController.swift │ │ │ ├── EmojiInputController.swift │ │ │ ├── GlucoseEntryTableViewController.swift │ │ │ ├── GlucoseRangeScheduleTableViewController.swift │ │ │ ├── HistoricalOverrideDetailView.swift │ │ │ ├── InsulinSensitivityScheduleViewController.swift │ │ │ ├── OverrideSelectionViewController.swift │ │ │ ├── PercentageTextFieldTableViewController.swift │ │ │ ├── RadioSelectionTableViewController.swift │ │ │ ├── ServiceNavigationController.swift │ │ │ ├── SettingsNavigationViewController.swift │ │ │ ├── SetupTableViewController.swift │ │ │ ├── SingleValueScheduleTableViewController.swift │ │ │ └── TextFieldTableViewController.swift │ │ ├── ViewModels │ │ │ ├── CorrectionRangeOverridesEditorViewModel.swift │ │ │ ├── CorrectionRangeScheduleEditorViewModel.swift │ │ │ ├── DisplayGlucoseUnitObservable.swift │ │ │ ├── InsulinSensitivityScheduleEditorViewModel.swift │ │ │ ├── SuspendThresholdEditorViewModel.swift │ │ │ └── TherapySettingsViewModel.swift │ │ ├── Views │ │ │ ├── ActionButton.swift │ │ │ ├── ActionButtonStyle.swift │ │ │ ├── ActivityIndicator.swift │ │ │ ├── AlertContent.swift │ │ │ ├── AuthenticationTableViewCell.swift │ │ │ ├── AuthenticationTableViewCell.xib │ │ │ ├── BaseHUDView.swift │ │ │ ├── BatteryLevelHUDView.swift │ │ │ ├── BatteryLevelHUDView.xib │ │ │ ├── CardList │ │ │ │ ├── Card.swift │ │ │ │ ├── CardBuilder.swift │ │ │ │ ├── CardList.swift │ │ │ │ ├── CardStack.swift │ │ │ │ ├── CardStackBuilder.swift │ │ │ │ ├── Splat.swift │ │ │ │ └── TimePicker.swift │ │ │ ├── ChartContainerView.swift │ │ │ ├── ChartTableViewCell.swift │ │ │ ├── CheckmarkListItem.swift │ │ │ ├── ConfigurationPage.swift │ │ │ ├── ConfigurationPageScrollView.swift │ │ │ ├── CustomOverrideCollectionViewCell.swift │ │ │ ├── DatePickerTableViewCell.swift │ │ │ ├── DecimalTextFieldTableViewCell.xib │ │ │ ├── Deletable.swift │ │ │ ├── DescriptiveText.swift │ │ │ ├── DismissibleKeyboardTextField.swift │ │ │ ├── DoubleRangeTableViewCell.swift │ │ │ ├── DoubleRangeTableViewCell.xib │ │ │ ├── DurationPicker.swift │ │ │ ├── EmojiDataSource.swift │ │ │ ├── EmojiInputCell.swift │ │ │ ├── EmojiInputHeaderView.swift │ │ │ ├── ExpandableDatePicker.swift │ │ │ ├── ExpandablePicker.swift │ │ │ ├── ExpandableSetting.swift │ │ │ ├── FractionalQuantityPicker.swift │ │ │ ├── GlucoseRangeOverrideTableViewCell.swift │ │ │ ├── GlucoseRangeOverrideTableViewCell.xib │ │ │ ├── GlucoseRangePicker.swift │ │ │ ├── GlucoseRangeTableViewCell.swift │ │ │ ├── GlucoseRangeTableViewCell.xib │ │ │ ├── GlucoseValuePicker.swift │ │ │ ├── GuardrailConstrainedQuantityRangeView.swift │ │ │ ├── GuardrailConstraintedQuantityView.swift │ │ │ ├── GuardrailWarning.swift │ │ │ ├── GuideNavigationButton.swift │ │ │ ├── GuidePage.swift │ │ │ ├── HUDAssets.xcassets │ │ │ │ ├── Contents.json │ │ │ │ ├── battery │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── battery.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery.pdf │ │ │ │ │ └── battery_mask.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_mask.pdf │ │ │ │ ├── reservoir │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pod_reservoir.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── pod_reservoir.pdf │ │ │ │ │ └── pod_reservoir_mask.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── pod_reservoir_mask.pdf │ │ │ │ └── status-bar-symbols │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── arrow.double.down.circle.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── arrow.double.down.circle.svg │ │ │ │ │ ├── arrow.double.down.fill.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── arrow.double.down.fill.svg │ │ │ │ │ ├── arrow.double.up.circle.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── arrow.double.up.circle.svg │ │ │ │ │ └── arrow.double.up.fill.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── arrow.double.up.fill.svg │ │ │ ├── Information Screens │ │ │ │ ├── BasalRatesInformationView.swift │ │ │ │ ├── CarbRatioInformationView.swift │ │ │ │ ├── CorrectionRangeInformationView.swift │ │ │ │ ├── CorrectionRangeOverrideInformationView.swift │ │ │ │ ├── DeliveryLimitsInformationView.swift │ │ │ │ ├── GlucoseTherapySettingInformationView.swift │ │ │ │ ├── InformationScreens.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── glucoseTargetRange mgdL.imageset │ │ │ │ │ │ ├── Chart=Correction, Version=V7, Appearance=Dark, Unit=mgdL.pdf │ │ │ │ │ │ ├── Chart=Correction, Version=V7, Appearance=Light, Unit=mgdL.pdf │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── preMealCorrectionRangeOverride mgdL.imageset │ │ │ │ │ │ ├── Chart=Premeal, Version=V7, Appearance=Dark, Unit=mgdL.pdf │ │ │ │ │ │ ├── Chart=Premeal, Version=V7, Appearance=Light, Unit=mgdL.pdf │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── suspendThreshold mgdL.imageset │ │ │ │ │ │ ├── Chart=Glucose, Version=V7, Appearance=Dark, Unit=mgdL.pdf │ │ │ │ │ │ ├── Chart=Glucose, Version=V7, Appearance=Light, Unit=mgdL.pdf │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── workoutCorrectionRangeOverride mgdL.imageset │ │ │ │ │ │ ├── Chart=Workout, Version=V7, Appearance=Dark, Unit=mgdL.pdf │ │ │ │ │ │ ├── Chart=Workout, Version=V7, Appearance=Light, Unit=mgdL.pdf │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── InformationView.swift │ │ │ │ ├── InsulinModelInformationView.swift │ │ │ │ ├── InsulinSensitivityInformationView.swift │ │ │ │ └── SuspendThresholdInformationView.swift │ │ │ ├── InstructionList.swift │ │ │ ├── InsulinSensitivityScalingTableViewCell.swift │ │ │ ├── InsulinSensitivityScalingTableViewCell.xib │ │ │ ├── InsulinTypeChooser.swift │ │ │ ├── InsulinTypeSetting.swift │ │ │ ├── LabeledDateView.swift │ │ │ ├── LabeledNumberInput.swift │ │ │ ├── LabeledTextField.swift │ │ │ ├── LabeledTextFieldTableViewCell.swift │ │ │ ├── LabeledTextFieldTableViewCell.xib │ │ │ ├── LabeledValueView.swift │ │ │ ├── LevelHUDView.swift │ │ │ ├── LevelMaskView.swift │ │ │ ├── LoadingTableViewCell.swift │ │ │ ├── ModalHeaderButtonBar.swift │ │ │ ├── MultipleSelectionList.swift │ │ │ ├── NewScheduleItemEditor.swift │ │ │ ├── OverrideHistoryCollectionViewCell.swift │ │ │ ├── OverridePresetCollectionViewCell.swift │ │ │ ├── OverrideSelectionFooterView.swift │ │ │ ├── OverrideSelectionHeaderView.swift │ │ │ ├── OverrideSelectionHistory.swift │ │ │ ├── OverrideViewCell.swift │ │ │ ├── PaddedTextField.swift │ │ │ ├── PopoverLink.swift │ │ │ ├── ProgressIndicatorView.swift │ │ │ ├── ProgressView.swift │ │ │ ├── QuantityPicker.swift │ │ │ ├── QuantityScheduleEditor.swift │ │ │ ├── RepeatingScheduleValueTableViewCell.swift │ │ │ ├── RepeatingScheduleValueTableViewCell.xib │ │ │ ├── ReservoirVolumeHUDView.swift │ │ │ ├── ReservoirVolumeHUDView.xib │ │ │ ├── ResizeablePicker.swift │ │ │ ├── RoundedCorners.swift │ │ │ ├── ScheduleEditor.swift │ │ │ ├── ScheduleItemPicker.swift │ │ │ ├── ScheduleItemView.swift │ │ │ ├── SectionHeader.swift │ │ │ ├── SegmentedControlTableViewCell.swift │ │ │ ├── SegmentedGaugeBar.swift │ │ │ ├── SegmentedGaugeBarLayer.swift │ │ │ ├── SegmentedGaugeBarView.swift │ │ │ ├── SelectableLabel.swift │ │ │ ├── SetConstrainedScheduleEntryTableViewCell.swift │ │ │ ├── SetConstrainedScheduleEntryTableViewCell.xib │ │ │ ├── SettingDescription.swift │ │ │ ├── Settings Editors │ │ │ │ ├── BasalRateScheduleEditor.swift │ │ │ │ ├── CarbRatioScheduleEditor.swift │ │ │ │ ├── CorrectionRangeOverridesEditor.swift │ │ │ │ ├── CorrectionRangeOverridesExpandableSetting.swift │ │ │ │ ├── CorrectionRangeOverridesExtension.swift │ │ │ │ ├── CorrectionRangeScheduleEditor.swift │ │ │ │ ├── DeliveryLimitsEditor.swift │ │ │ │ ├── InsulinModelChartView.swift │ │ │ │ ├── InsulinModelSelection.swift │ │ │ │ ├── InsulinSensitivityScheduleEditor.swift │ │ │ │ ├── PumpSupportedIncrements.swift │ │ │ │ ├── SettingsPresentationMode.swift │ │ │ │ ├── SuspendThresholdEditor.swift │ │ │ │ ├── TherapySetting+Settings.swift │ │ │ │ └── TherapySettingsView.swift │ │ │ ├── SettingsTableViewCell.swift │ │ │ ├── SetupButton.swift │ │ │ ├── SetupIndicatorView.swift │ │ │ ├── SingleSelectionCheckList.swift │ │ │ ├── SuspendResumeTableViewCell.swift │ │ │ ├── SwitchTableViewCell.swift │ │ │ ├── TableViewTitleLabel.swift │ │ │ ├── TextButtonTableViewCell.swift │ │ │ ├── TextFieldTableViewCell.swift │ │ │ ├── TextFieldTableViewCell.xib │ │ │ ├── ThumbView.swift │ │ │ ├── ValidatingIndicatorView.swift │ │ │ ├── VideoPlayView.swift │ │ │ ├── VideoView.swift │ │ │ ├── WarningView.swift │ │ │ └── WebView.swift │ │ └── en.lproj │ │ │ ├── CarbKit.strings │ │ │ └── InsulinKit.strings │ ├── LoopTestingKit │ │ ├── Data.swift │ │ ├── DateRelativeBasalEntry.swift │ │ ├── DateRelativeBolusEntry.swift │ │ ├── DateRelativeCarbEntry.swift │ │ ├── DateRelativeGlucoseSample.swift │ │ ├── DateRelativeQuantity.swift │ │ ├── HKUnit.swift │ │ ├── Info.plist │ │ ├── LoopTestingKit.h │ │ ├── TestingCGMManager.swift │ │ ├── TestingDeviceManager.swift │ │ ├── TestingPumpManager.swift │ │ ├── TestingScenario.swift │ │ └── TestingScenarioInstance.swift │ ├── MockKit │ │ ├── Extensions │ │ │ ├── Collection.swift │ │ │ ├── HKUnit.swift │ │ │ ├── TimeInterval.swift │ │ │ ├── TimeZone.swift │ │ │ └── UIImage.swift │ │ ├── Info.plist │ │ ├── LocalizedString.swift │ │ ├── MockCGMDataSource.swift │ │ ├── MockCGMManager.swift │ │ ├── MockDoseProgressEstimator.swift │ │ ├── MockGlucoseProvider.swift │ │ ├── MockKit.h │ │ ├── MockPumpManager.swift │ │ ├── MockPumpManagerState.swift │ │ ├── MockService.swift │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── Contents.json │ │ │ │ └── status.badge │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── battery.circle.fill.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── battery.circle.fill.svg │ │ │ │ │ └── drop.circle.fill.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── drop.circle.fill.svg │ │ │ ├── Sounds │ │ │ │ ├── critical.caf │ │ │ │ └── sub.caf │ │ │ ├── ar.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── cs.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── da.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── de.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fi.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── he.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── it.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ja.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── nb.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── nl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pt-BR.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ro.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ru.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── sk.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── sv.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── tr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── vi.lproj │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ └── UnfinalizedDose.swift │ ├── MockKitTests │ │ ├── Info.plist │ │ └── UnfinalizedDoseTests.swift │ ├── MockKitUI │ │ ├── Extensions │ │ │ ├── Comparable.swift │ │ │ ├── IdentifiableClass.swift │ │ │ ├── NibLoadable.swift │ │ │ ├── NumberFormatter.swift │ │ │ ├── TimeInterval.swift │ │ │ ├── UIColor.swift │ │ │ ├── UIImage.swift │ │ │ └── UITableViewCell.swift │ │ ├── Info.plist │ │ ├── LocalizedString.swift │ │ ├── MockCGMManager+UI.swift │ │ ├── MockHUDProvider.swift │ │ ├── MockKitUI.h │ │ ├── MockPumpManager+UI.swift │ │ ├── MockService+UI.swift │ │ ├── MockSupport.swift │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── CGM Simulator.imageset │ │ │ │ │ ├── CGM Simulator.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── Pump Simulator.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Pump Simulator.pdf │ │ │ ├── ar.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── cs.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── da.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── de.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fi.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── he.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── hi.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── it.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ja.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── nb.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── nl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pt-BR.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ro.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ru.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── sk.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── sv.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── tr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── vi.lproj │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ ├── View Controllers │ │ │ ├── GlucoseTrendTableViewController.swift │ │ │ ├── IssueAlertTableViewController.swift │ │ │ ├── MeasurementFrequencyTableViewController.swift │ │ │ ├── MockCGMManagerSettingsViewController.swift │ │ │ ├── MockPumpManagerSettingsViewController.swift │ │ │ ├── MockServiceTableViewController.swift │ │ │ ├── RandomOutlierTableViewController.swift │ │ │ ├── SineCurveParametersTableViewController.swift │ │ │ └── SupportedRangeTableViewController.swift │ │ └── Views │ │ │ ├── BoundSwitchTableViewCell.swift │ │ │ └── DeliveryUncertaintyRecoveryView.swift │ ├── Package.resolved │ ├── Package.swift │ └── README.md ├── MKRingProgressView │ ├── .gitignore │ ├── Example │ │ ├── ActivityRingsExample │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-1024.png │ │ │ │ │ ├── Icon-20.png │ │ │ │ │ ├── Icon-20@2x.png │ │ │ │ │ ├── Icon-20@3x.png │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ ├── Icon-29@2x.png │ │ │ │ │ ├── Icon-29@3x.png │ │ │ │ │ ├── Icon-40.png │ │ │ │ │ ├── Icon-40@2x.png │ │ │ │ │ ├── Icon-40@3x.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-60@3x.png │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ └── Icon-83.5@2x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── icon1.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon1@2x.png │ │ │ │ │ └── icon1@3x.png │ │ │ │ ├── icon2.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon2@2x.png │ │ │ │ │ └── icon2@3x.png │ │ │ │ ├── icon3.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon3@2x.png │ │ │ │ │ └── icon3@3x.png │ │ │ │ └── tab.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── tab@2x.png │ │ │ │ │ └── tab@3x.png │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Icon.swift │ │ │ ├── Info.plist │ │ │ ├── MKRingProgressGroupButton.swift │ │ │ ├── MKRingProgressGroupView.swift │ │ │ └── ViewController.swift │ │ ├── MKRingProgressViewExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── ProgressRingExample │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-1024.png │ │ │ │ ├── Icon-20.png │ │ │ │ ├── Icon-20@2x.png │ │ │ │ ├── Icon-20@3x.png │ │ │ │ ├── Icon-29.png │ │ │ │ ├── Icon-29@2x.png │ │ │ │ ├── Icon-29@3x.png │ │ │ │ ├── Icon-40.png │ │ │ │ ├── Icon-40@2x.png │ │ │ │ ├── Icon-40@3x.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ └── Icon-83.5@2x.png │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Icon.swift │ │ │ ├── Info.plist │ │ │ ├── ParametersViewController.swift │ │ │ └── ViewController.swift │ ├── LICENSE │ ├── MKRingProgressView.png │ ├── MKRingProgressView.podspec │ ├── MKRingProgressView.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── MKRingProgressView │ │ ├── Info.plist │ │ ├── MKGradientGenerator.swift │ │ ├── MKRingProgressLayer.swift │ │ ├── MKRingProgressView.h │ │ └── MKRingProgressView.swift │ └── README.md ├── MinimedKit │ ├── .gitignore │ ├── MinimedKit.xcodeproj │ │ └── project.pbxproj │ ├── MinimedKit │ │ ├── CGMManager │ │ │ ├── MySentryPumpStatusMessageBody+CGMManager.swift │ │ │ └── SensorValueGlucoseEvent+CGMManager.swift │ │ ├── Extensions │ │ │ ├── Data.swift │ │ │ ├── HKUnit.swift │ │ │ ├── ISO8601DateFormatter.swift │ │ │ ├── Int.swift │ │ │ ├── NSDateComponents.swift │ │ │ ├── OSLog.swift │ │ │ ├── TimeInterval.swift │ │ │ └── TimeZone.swift │ │ ├── GlucoseEvents │ │ │ ├── BatteryChangeGlucoseEvent.swift │ │ │ ├── CalBGForGHGlucoseEvent.swift │ │ │ ├── DataEndGlucoseEvent.swift │ │ │ ├── DateTimeChangeGlucoseEvent.swift │ │ │ ├── GlucoseEvent.swift │ │ │ ├── GlucoseSensorDataGlucoseEvent.swift │ │ │ ├── NineteenSomethingGlucoseEvent.swift │ │ │ ├── RelativeTimestampedGlucoseEvent.swift │ │ │ ├── SensorCalFactorGlucoseEvent.swift │ │ │ ├── SensorCalGlucoseEvent.swift │ │ │ ├── SensorDataHighGlucoseEvent.swift │ │ │ ├── SensorDataLowGlucoseEvent.swift │ │ │ ├── SensorErrorGlucoseEvent.swift │ │ │ ├── SensorPacketGlucoseEvent.swift │ │ │ ├── SensorStatusGlucoseEvent.swift │ │ │ ├── SensorSyncGlucoseEvent.swift │ │ │ ├── SensorTimestampGlucoseEvent.swift │ │ │ ├── SensorValueGlucoseEvent.swift │ │ │ ├── SensorWeakSignalGlucoseEvent.swift │ │ │ ├── TenSomethingGlucoseEvent.swift │ │ │ └── UnknownGlucoseEvent.swift │ │ ├── Info.plist │ │ ├── LocalisedString.swift │ │ ├── Messages │ │ │ ├── BolusCarelinkMessageBody.swift │ │ │ ├── ButtonPressCarelinkMessageBody.swift │ │ │ ├── CarelinkMessageBody.swift │ │ │ ├── ChangeMaxBasalRateMessageBody.swift │ │ │ ├── ChangeMaxBolusMessageBody.swift │ │ │ ├── ChangeRemoteControlIDMessageBody.swift │ │ │ ├── ChangeTempBasalCarelinkMessageBody.swift │ │ │ ├── ChangeTimeCarelinkMessageBody.swift │ │ │ ├── DataFrameMessageBody.swift │ │ │ ├── DeviceLinkMessageBody.swift │ │ │ ├── FindDeviceMessageBody.swift │ │ │ ├── GetBatteryCarelinkMessageBody.swift │ │ │ ├── GetGlucosePageMessageBody.swift │ │ │ ├── GetHistoryPageCarelinkMessageBody.swift │ │ │ ├── GetPumpFirmwareVersionMessageBody.swift │ │ │ ├── GetPumpModelCarelinkMessageBody.swift │ │ │ ├── MessageBody.swift │ │ │ ├── MessageType.swift │ │ │ ├── MeterMessage.swift │ │ │ ├── Models │ │ │ │ ├── BasalSchedule.swift │ │ │ │ ├── CRC16.swift │ │ │ │ ├── GlucoseEventType.swift │ │ │ │ ├── GlucosePage.swift │ │ │ │ ├── HistoryPage.swift │ │ │ │ ├── MySentryAlertType.swift │ │ │ │ ├── PartialDecode.swift │ │ │ │ ├── PumpEventType.swift │ │ │ │ ├── TimestampedGlucoseEvent.swift │ │ │ │ └── TimestampedHistoryEvent.swift │ │ │ ├── MySentryAckMessageBody.swift │ │ │ ├── MySentryAlertClearedMessageBody.swift │ │ │ ├── MySentryAlertMessageBody.swift │ │ │ ├── MySentryPumpStatusMessageBody.swift │ │ │ ├── PacketType.swift │ │ │ ├── PowerOnCarelinkMessageBody.swift │ │ │ ├── PumpAckMessageBody.swift │ │ │ ├── PumpErrorMessageBody.swift │ │ │ ├── PumpMessage.swift │ │ │ ├── ReadCurrentGlucosePageMessageBody.swift │ │ │ ├── ReadCurrentPageNumberMessageBody.swift │ │ │ ├── ReadOtherDevicesIDsMessageBody.swift │ │ │ ├── ReadOtherDevicesStatusMessageBody.swift │ │ │ ├── ReadPumpStatusMessageBody.swift │ │ │ ├── ReadRemainingInsulinMessageBody.swift │ │ │ ├── ReadRemoteControlIDsMessageBody.swift │ │ │ ├── ReadSettingsCarelinkMessageBody.swift │ │ │ ├── ReadTempBasalCarelinkMessageBody.swift │ │ │ ├── ReadTimeCarelinkMessageBody.swift │ │ │ ├── SelectBasalProfileMessageBody.swift │ │ │ ├── SetRemoteControlEnabledMessageBody.swift │ │ │ ├── SuspendResumeMessageBody.swift │ │ │ └── UnknownMessageBody.swift │ │ ├── MinimedKit.h │ │ ├── Models │ │ │ ├── BatteryChemistryType.swift │ │ │ ├── PumpColor.swift │ │ │ ├── PumpModel.swift │ │ │ └── PumpRegion.swift │ │ ├── PumpEvents │ │ │ ├── AlarmClockReminderPumpEvent.swift │ │ │ ├── AlarmSensorPumpEvent.swift │ │ │ ├── BGReceivedPumpEvent.swift │ │ │ ├── BasalProfileStartPumpEvent.swift │ │ │ ├── BatteryPumpEvent.swift │ │ │ ├── BolusNormalPumpEvent.swift │ │ │ ├── BolusReminderPumpEvent.swift │ │ │ ├── BolusWizardEstimatePumpEvent.swift │ │ │ ├── BolusWizardSetupPumpEvent.swift │ │ │ ├── CalBGForPHPumpEvent.swift │ │ │ ├── ChangeAlarmClockEnablePumpEvent.swift │ │ │ ├── ChangeAlarmNotifyModePumpEvent.swift │ │ │ ├── ChangeAudioBolusPumpEvent.swift │ │ │ ├── ChangeBGReminderEnablePumpEvent.swift │ │ │ ├── ChangeBGReminderOffsetPumpEvent.swift │ │ │ ├── ChangeBasalProfilePatternPumpEvent.swift │ │ │ ├── ChangeBasalProfilePumpEvent.swift │ │ │ ├── ChangeBolusReminderEnablePumpEvent.swift │ │ │ ├── ChangeBolusReminderTimePumpEvent.swift │ │ │ ├── ChangeBolusScrollStepSizePumpEvent.swift │ │ │ ├── ChangeBolusWizardSetupPumpEvent.swift │ │ │ ├── ChangeCaptureEventEnablePumpEvent.swift │ │ │ ├── ChangeCarbUnitsPumpEvent.swift │ │ │ ├── ChangeChildBlockEnablePumpEvent.swift │ │ │ ├── ChangeMaxBasalPumpEvent.swift │ │ │ ├── ChangeMaxBolusPumpEvent.swift │ │ │ ├── ChangeMeterIDPumpEvent.swift │ │ │ ├── ChangeOtherDeviceIDPumpEvent.swift │ │ │ ├── ChangeParadigmLinkIDPumpEvent.swift │ │ │ ├── ChangeReservoirWarningTimePumpEvent.swift │ │ │ ├── ChangeSensorAlarmSilenceConfigPumpEvent.swift │ │ │ ├── ChangeSensorRateOfChangeAlertSetupPumpEvent.swift │ │ │ ├── ChangeSensorSetup2PumpEvent.swift │ │ │ ├── ChangeTempBasalTypePumpEvent.swift │ │ │ ├── ChangeTimeFormatPumpEvent.swift │ │ │ ├── ChangeTimePumpEvent.swift │ │ │ ├── ChangeVariableBolusPumpEvent.swift │ │ │ ├── ChangeWatchdogEnablePumpEvent.swift │ │ │ ├── ChangeWatchdogMarriageProfilePumpEvent.swift │ │ │ ├── ClearAlarmPumpEvent.swift │ │ │ ├── DailyTotal515PumpEvent.swift │ │ │ ├── DailyTotal522PumpEvent.swift │ │ │ ├── DailyTotal523PumpEvent.swift │ │ │ ├── DeleteBolusReminderTimePumpEvent.swift │ │ │ ├── DeleteOtherDeviceIDPumpEvent.swift │ │ │ ├── EnableBolusWizardPumpEvent.swift │ │ │ ├── EnableDisableRemotePumpEvent.swift │ │ │ ├── JournalEntryExerciseMarkerPumpEvent.swift │ │ │ ├── JournalEntryInsulinMarkerPumpEvent.swift │ │ │ ├── JournalEntryMealMarkerPumpEvent.swift │ │ │ ├── JournalEntryPumpLowBatteryPumpEvent.swift │ │ │ ├── JournalEntryPumpLowReservoirPumpEvent.swift │ │ │ ├── NewTimePumpEvent.swift │ │ │ ├── PlaceholderPumpEvent.swift │ │ │ ├── PrimePumpEvent.swift │ │ │ ├── PumpAlarmPumpEvent.swift │ │ │ ├── PumpEvent.swift │ │ │ ├── RestoreMystery54PumpEvent.swift │ │ │ ├── RestoreMystery55PumpEvent.swift │ │ │ ├── ResultDailyTotalPumpEvent.swift │ │ │ ├── ResumePumpEvent.swift │ │ │ ├── RewindPumpEvent.swift │ │ │ ├── SelectBasalProfilePumpEvent.swift │ │ │ ├── SuspendPumpEvent.swift │ │ │ ├── TempBasalDurationPumpEvent.swift │ │ │ ├── TempBasalPumpEvent.swift │ │ │ ├── TimestampedPumpEvent.swift │ │ │ ├── UnabsorbedInsulinPumpEvent.swift │ │ │ └── UnknownPumpEvent57.swift │ │ ├── PumpManager │ │ │ ├── BasalProfile.swift │ │ │ ├── DoseStore.swift │ │ │ ├── EnliteSensorDisplayable.swift │ │ │ ├── HistoryPage+PumpOpsSession.swift │ │ │ ├── InsulinDataSource.swift │ │ │ ├── MinimedDoseProgressEstimator.swift │ │ │ ├── MinimedPumpManager.swift │ │ │ ├── MinimedPumpManagerError.swift │ │ │ ├── MinimedPumpManagerRecents.swift │ │ │ ├── MinimedPumpManagerState.swift │ │ │ ├── MinimedPumpMessageSender.swift │ │ │ ├── PumpMessage+PumpOpsSession.swift │ │ │ ├── PumpMessageSender.swift │ │ │ ├── PumpOps.swift │ │ │ ├── PumpOpsError.swift │ │ │ ├── PumpOpsSession+LoopKit.swift │ │ │ ├── PumpOpsSession.swift │ │ │ ├── PumpSettings.swift │ │ │ ├── PumpState.swift │ │ │ ├── ReservoirReading.swift │ │ │ ├── RileyLinkDevice.swift │ │ │ └── UnfinalizedDose.swift │ │ ├── Radio │ │ │ ├── CRC8.swift │ │ │ ├── FourByteSixByteEncoding.swift │ │ │ └── MinimedPacket.swift │ │ └── Resources │ │ │ ├── Base.lproj │ │ │ └── Localizable.strings │ │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ │ ├── ca.lproj │ │ │ └── Localizable.strings │ │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ │ ├── pt-PT.lproj │ │ │ └── Localizable.strings │ │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ └── Localizable.strings │ ├── MinimedKitPlugin │ │ ├── Extensions │ │ │ └── OSLog.swift │ │ ├── Info.plist │ │ └── MinimedKitPlugin.swift │ ├── MinimedKitTests │ │ ├── BasalScheduleTests.swift │ │ ├── CRC16Tests.swift │ │ ├── CRC8Tests.swift │ │ ├── Extensions │ │ │ ├── Data.swift │ │ │ └── TimeInterval.swift │ │ ├── GlucoseEvents │ │ │ ├── BatteryChangeGlucoseEventTests.swift │ │ │ ├── CalBGForGHGlucoseEventTests.swift │ │ │ ├── DateTimeChangeGlucoseEventTests.swift │ │ │ ├── GlucoseSensorDataGlucoseEventTests.swift │ │ │ ├── SensorCalFactorGlucoseEventTests.swift │ │ │ ├── SensorCalGlucoseEventTests.swift │ │ │ ├── SensorDataHighGlucoseEventTests.swift │ │ │ ├── SensorDataLowGlucoseEventTests.swift │ │ │ ├── SensorErrorGlucoseEventTests.swift │ │ │ ├── SensorPacketGlucoseEventTests.swift │ │ │ ├── SensorStatusGlucoseEventTests.swift │ │ │ ├── SensorSyncGlucoseEventTests.swift │ │ │ ├── SensorTimestampGlucoseEventTests.swift │ │ │ └── TenSomethingGlucoseEventTests.swift │ │ ├── GlucosePageTests.swift │ │ ├── HistoryPageTests.swift │ │ ├── Info.plist │ │ ├── Messages │ │ │ ├── BolusCarelinkMessageBodyTests.swift │ │ │ ├── ChangeMaxBasalRateMessageBodyTests.swift │ │ │ ├── ChangeMaxBolusMessageBodyTests.swift │ │ │ ├── ChangeRemoteControlIDMessageBodyTests.swift │ │ │ ├── ChangeTempBasalCarelinkMessageBodyTests.swift │ │ │ ├── ChangeTimeCarelinMessageBodyTests.swift │ │ │ ├── DeviceLinkMessageBodyTests.swift │ │ │ ├── FindDeviceMessageBodyTests.swift │ │ │ ├── GetBatteryCarelinkMessageBodyTests.swift │ │ │ ├── GetGlucosePageMessageBodyTests.swift │ │ │ ├── GetPumpModelCarelinkMessageBodyTests.swift │ │ │ ├── MeterMessageTests.swift │ │ │ ├── ReadCurrentGlucosePageMessageBodyTests.swift │ │ │ ├── ReadOtherDevicesIDsMessageBodyTests.swift │ │ │ ├── ReadRemainingInsulinMessageBodyTests.swift │ │ │ ├── ReadRemoteControlIDsMessageBodyTests.swift │ │ │ └── ReadTempBasalCarelinkMessageBodyTests.swift │ │ ├── MinimedPacketTests.swift │ │ ├── MinimedPumpManagerTests.swift │ │ ├── Mocks │ │ │ ├── MockPumpManagerDelegate.swift │ │ │ ├── MockPumpMessageSender.swift │ │ │ ├── MockPumpOps.swift │ │ │ ├── MockRileyLinkDevice.swift │ │ │ └── MockRileyLinkProvider.swift │ │ ├── MySentryPumpStatusMessageBodyTests.swift │ │ ├── NSDataTests.swift │ │ ├── NSDateComponents.swift │ │ ├── NSDateComponentsTests.swift │ │ ├── NSStringExtensions.swift │ │ ├── PumpEvents │ │ │ ├── BolusNormalPumpEventTests.swift │ │ │ └── ResumePumpEventTests.swift │ │ ├── PumpModelTests.swift │ │ ├── PumpOpsSynchronousBuildFromFramesTests.swift │ │ ├── PumpOpsSynchronousTests.swift │ │ ├── ReadSettingsCarelinkMessageBodyTests.swift │ │ ├── ReconciliationTests.swift │ │ └── TimestampedHistoryEventTests.swift │ ├── MinimedKitUI │ │ ├── CommandResponseViewController.swift │ │ ├── Extensions │ │ │ ├── Comparable.swift │ │ │ ├── IdentifiableClass.swift │ │ │ ├── Image.swift │ │ │ ├── NibLoadable.swift │ │ │ ├── NumberFormatter.swift │ │ │ └── TimeZone.swift │ │ ├── Info.plist │ │ ├── LocalisedString.swift │ │ ├── MinimedHUDProvider.swift │ │ ├── MinimedKitUI.h │ │ ├── MinimedPumpManager+UI.swift │ │ ├── MinimedPumpUICoordinator.swift │ │ ├── PumpModel.swift │ │ ├── RadioSelectionTableViewController.swift │ │ ├── Resources │ │ │ ├── Base.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.storyboard │ │ │ ├── MinimedKitUI.xcassets │ │ │ │ ├── 5xx Blue.imageset │ │ │ │ │ ├── 5xx Blue.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5xx Clear.imageset │ │ │ │ │ ├── 5xx Clear.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5xx Outline.imageset │ │ │ │ │ ├── 5xx Outline.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5xx Pink.imageset │ │ │ │ │ ├── 5xx Pink.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5xx Purple.imageset │ │ │ │ │ ├── 5xx Purple.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5xx Small Blue.imageset │ │ │ │ │ ├── 5xx Small Blue.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5xx Small Clear.imageset │ │ │ │ │ ├── 5xx Small Clear.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5xx Small Outline.imageset │ │ │ │ │ ├── 5xx Small Outline.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5xx Small Pink.imageset │ │ │ │ │ ├── 5xx Small Pink.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5xx Small Purple.imageset │ │ │ │ │ ├── 5xx Small Purple.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5xx Small Smoke.imageset │ │ │ │ │ ├── 5xx Small Smoke.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5xx Smoke.imageset │ │ │ │ │ ├── 5xx Smoke.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7xx Blue.imageset │ │ │ │ │ ├── 7xx Blue.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7xx Clear.imageset │ │ │ │ │ ├── 7xx Clear.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7xx Outline.imageset │ │ │ │ │ ├── 7xx Outline.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7xx Pink.imageset │ │ │ │ │ ├── 7xx Pink.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7xx Purple.imageset │ │ │ │ │ ├── 7xx Purple.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7xx Small Blue.imageset │ │ │ │ │ ├── 7xx Small Blue.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7xx Small Clear.imageset │ │ │ │ │ ├── 7xx Small Clear.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7xx Small Outline.imageset │ │ │ │ │ ├── 7xx Small Outline.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7xx Small Pink.imageset │ │ │ │ │ ├── 7xx Small Pink.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7xx Small Purple.imageset │ │ │ │ │ ├── 7xx Small Purple.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7xx Small Smoke.imageset │ │ │ │ │ ├── 7xx Small Smoke.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7xx Smoke.imageset │ │ │ │ │ ├── 7xx Smoke.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Pump ID Diagram.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Pump ID Diagram.pdf │ │ │ │ ├── Pump Screen Background.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Pump Screen Text.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── reservoir.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── reservoir.pdf │ │ │ │ └── reservoir_mask.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── reservoir_mask.pdf │ │ │ ├── ar.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── ca.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── cs.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── da.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── de.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── en.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── es.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── fi.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── fr.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── he.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── hi.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── hu.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── it.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── ja.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── nb.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── nl.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── pl.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── pt-BR.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── pt-PT.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ro.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── ru.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── sk.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── sv.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── tr.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ ├── uk.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── vi.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ │ └── zh-Hans.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ └── MinimedPumpManager.strings │ │ ├── Setup │ │ │ ├── MinimedPumpClockSetupViewController.swift │ │ │ ├── MinimedPumpIDSetupViewController.swift │ │ │ ├── MinimedPumpManagerSetupViewController.swift │ │ │ ├── MinimedPumpSentrySetupViewController.swift │ │ │ └── MinimedPumpSetupCompleteViewController.swift │ │ └── Views │ │ │ ├── BatteryTypeSelectionView.swift │ │ │ ├── DataSourceSelectionView.swift │ │ │ ├── InsulinTypeConfirmation.swift │ │ │ ├── MinimedPumpSettingsView.swift │ │ │ ├── MinimedPumpSettingsViewModel.swift │ │ │ ├── MinimedReservoirView.swift │ │ │ ├── ReservoirHUDView.swift │ │ │ ├── ReservoirHUDView.xib │ │ │ ├── TimeView.swift │ │ │ └── UseMySentrySelectionView.swift │ └── README.md ├── OmniBLE │ ├── .gitignore │ ├── Common │ │ ├── Data.swift │ │ ├── FrameworkLocalText.swift │ │ ├── HKUnit.swift │ │ ├── IdentifiableClass.swift │ │ ├── Image.swift │ │ ├── LocalizedString.swift │ │ ├── NibLoadable.swift │ │ ├── NumberFormatter.swift │ │ ├── OSLog.swift │ │ ├── TimeInterval.swift │ │ ├── TimeZone.swift │ │ └── UIColor.swift │ ├── LICENSE │ ├── Localizations │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── bn.lproj │ │ │ └── Localizable.strings │ │ ├── ca.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── lt.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ ├── pt-PT.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hans.lproj │ │ │ └── Localizable.strings │ ├── OmniBLE.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── OmniBLE │ │ ├── Bluetooth │ │ │ ├── BluetoothManager.swift │ │ │ ├── BluetoothServices.swift │ │ │ ├── CBPeripheral.swift │ │ │ ├── EnDecrypt │ │ │ │ ├── EnDecrypt.swift │ │ │ │ └── Nonce.swift │ │ │ ├── Id.swift │ │ │ ├── Ids.swift │ │ │ ├── MessagePacket.swift │ │ │ ├── Packet │ │ │ │ ├── BLEPacket.swift │ │ │ │ ├── PayloadJoiner.swift │ │ │ │ └── PayloadSplitter.swift │ │ │ ├── Pair │ │ │ │ ├── KeyExchange.swift │ │ │ │ ├── LTKExchanger.swift │ │ │ │ ├── PairMessage.swift │ │ │ │ └── PairResult.swift │ │ │ ├── PeripheralManager+OmniBLE.swift │ │ │ ├── PeripheralManager.swift │ │ │ ├── PeripheralManagerError.swift │ │ │ ├── PodProtocolError.swift │ │ │ ├── Session │ │ │ │ ├── EapAkaAttribute.swift │ │ │ │ ├── EapMessage.swift │ │ │ │ ├── EapSqn.swift │ │ │ │ ├── Milenage.swift │ │ │ │ ├── SessionEstablisher.swift │ │ │ │ └── SessionKeys.swift │ │ │ ├── StringLengthPrefixEncoding.swift │ │ │ └── Util │ │ │ │ ├── OmniRandomByteGenerator.swift │ │ │ │ └── X25519KeyGenerator.swift │ │ ├── Info.plist │ │ ├── OmniBLE.h │ │ ├── OmnipodCommon │ │ │ ├── AlertSlot.swift │ │ │ ├── BasalDeliveryTable.swift │ │ │ ├── BasalSchedule+LoopKit.swift │ │ │ ├── BasalSchedule.swift │ │ │ ├── BeepPreference.swift │ │ │ ├── BeepType.swift │ │ │ ├── BolusDeliveryTable.swift │ │ │ ├── CRC16.swift │ │ │ ├── FaultEventCode.swift │ │ │ ├── InsulinTableEntry.swift │ │ │ ├── Message.swift │ │ │ ├── MessageBlocks │ │ │ │ ├── AcknowledgeAlertCommand.swift │ │ │ │ ├── AssignAddressCommand.swift │ │ │ │ ├── BasalScheduleExtraCommand.swift │ │ │ │ ├── BeepConfigCommand.swift │ │ │ │ ├── BolusExtraCommand.swift │ │ │ │ ├── CancelDeliveryCommand.swift │ │ │ │ ├── ConfigureAlertsCommand.swift │ │ │ │ ├── DeactivatePodCommand.swift │ │ │ │ ├── DetailedStatus.swift │ │ │ │ ├── ErrorResponse.swift │ │ │ │ ├── FaultConfigCommand.swift │ │ │ │ ├── GetStatusCommand.swift │ │ │ │ ├── MessageBlock.swift │ │ │ │ ├── PlaceholderMessageBlock.swift │ │ │ │ ├── PodInfo.swift │ │ │ │ ├── PodInfoActivationTime.swift │ │ │ │ ├── PodInfoPulseLog.swift │ │ │ │ ├── PodInfoPulseLogPlus.swift │ │ │ │ ├── PodInfoResponse.swift │ │ │ │ ├── PodInfoTriggeredAlerts.swift │ │ │ │ ├── SetInsulinScheduleCommand.swift │ │ │ │ ├── SetupPodCommand.swift │ │ │ │ ├── StatusResponse.swift │ │ │ │ ├── TempBasalExtraCommand.swift │ │ │ │ └── VersionResponse.swift │ │ │ ├── PendingCommand.swift │ │ │ ├── Pod.swift │ │ │ ├── PodDoseProgressEstimator.swift │ │ │ ├── PodInsulinMeasurements.swift │ │ │ ├── PodProgressStatus.swift │ │ │ ├── PumpManagerAlert.swift │ │ │ ├── ReservoirLevel.swift │ │ │ ├── SilencePodPreference.swift │ │ │ └── UnfinalizedDose.swift │ │ ├── PumpManager │ │ │ ├── DetailedStatus+OmniBLE.swift │ │ │ ├── MessageTransport.swift │ │ │ ├── OmniBLE.swift │ │ │ ├── OmniBLEPumpManager.swift │ │ │ ├── OmniBLEPumpManagerState.swift │ │ │ ├── PodAdvertisement.swift │ │ │ ├── PodComms.swift │ │ │ ├── PodCommsSession.swift │ │ │ └── PodState.swift │ │ ├── PumpManagerUI │ │ │ ├── OmniBLEHUDProvider.swift │ │ │ ├── OmniBLEPumpManager+UI.swift │ │ │ ├── OmniBLEUI.xcassets │ │ │ │ ├── Cannula Inserted.imageset │ │ │ │ │ ├── CannulaInserted.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Pod.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pod1x.png │ │ │ │ │ ├── pod2x.png │ │ │ │ │ └── pod3x.png │ │ │ │ ├── PodBottom.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── PodBottom1x.png │ │ │ │ │ ├── PodBottom2x.png │ │ │ │ │ └── PodBottom3x.png │ │ │ │ ├── PodLarge.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── PodLarge@1x.png │ │ │ │ │ ├── PodLarge@2x.png │ │ │ │ │ └── PodLarge@3x.png │ │ │ │ ├── pod_reservoir_mask_swiftui.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── pod_reservoir_mask.svg │ │ │ │ └── pod_reservoir_swiftui.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── pod_reservoir.svg │ │ │ ├── ViewControllers │ │ │ │ └── DashUICoordinator.swift │ │ │ ├── ViewModels │ │ │ │ ├── DeactivatePodViewModel.swift │ │ │ │ ├── DeliveryUncertaintyRecoveryViewModel.swift │ │ │ │ ├── InsertCannulaViewModel.swift │ │ │ │ ├── OmniBLESettingsViewModel.swift │ │ │ │ ├── PairPodViewModel.swift │ │ │ │ └── PodLifeState.swift │ │ │ └── Views │ │ │ │ ├── ActivityView.swift │ │ │ │ ├── AttachPodView.swift │ │ │ │ ├── BasalStateView.swift │ │ │ │ ├── BeepPreferenceSelectionView.swift │ │ │ │ ├── CheckInsertedCannulaView.swift │ │ │ │ ├── DeactivatePodView.swift │ │ │ │ ├── DeliveryUncertaintyRecoveryView.swift │ │ │ │ ├── DesignElements │ │ │ │ ├── ErrorView.swift │ │ │ │ ├── LeadingImage.swift │ │ │ │ └── RoundedCard.swift │ │ │ │ ├── ExpirationReminderPickerView.swift │ │ │ │ ├── ExpirationReminderSetupView.swift │ │ │ │ ├── FirstAppear.swift │ │ │ │ ├── HUDAssets.xcassets │ │ │ │ ├── Contents.json │ │ │ │ ├── pod_life │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── pod_life.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Pod Life.pdf │ │ │ │ └── reservoir │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pod_reservoir.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── reservoir.pdf │ │ │ │ │ └── pod_reservoir_mask.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── reservoir_mask.pdf │ │ │ │ ├── InsertCannulaView.swift │ │ │ │ ├── InsulinTypeConfirmation.swift │ │ │ │ ├── LowReservoirReminderEditView.swift │ │ │ │ ├── LowReservoirReminderSetupView.swift │ │ │ │ ├── ManualTempBasalEntryView.swift │ │ │ │ ├── NotificationSettingsView.swift │ │ │ │ ├── OmniBLEReservoirView.swift │ │ │ │ ├── OmniBLEReservoirView.xib │ │ │ │ ├── OmniBLESettingsView.swift │ │ │ │ ├── PairPodView.swift │ │ │ │ ├── PlayTestBeepsView.swift │ │ │ │ ├── PodDetailsView.swift │ │ │ │ ├── PodDiagnostics.swift │ │ │ │ ├── PodLifeHUDView.swift │ │ │ │ ├── PodLifeHUDView.xib │ │ │ │ ├── PodSetupView.swift │ │ │ │ ├── PumpManagerDetailsView.swift │ │ │ │ ├── ReadPodInfoView.swift │ │ │ │ ├── ReadPodStatusView.swift │ │ │ │ ├── ReadPulseLogView.swift │ │ │ │ ├── ScheduledExpirationReminderEditView.swift │ │ │ │ ├── SetupCompleteView.swift │ │ │ │ ├── SilencePodSelectionView.swift │ │ │ │ ├── TimeView.swift │ │ │ │ └── UncertaintyRecoveredView.swift │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── ca.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ ├── pt-PT.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hans.lproj │ │ │ └── Localizable.strings │ ├── OmniBLEPlugin │ │ ├── Extensions │ │ │ └── OSLog.swift │ │ ├── Info.plist │ │ ├── OmniBLEPlugin.h │ │ └── OmniBLEPlugin.swift │ ├── OmniBLETests │ │ ├── AcknowledgeAlertsTests.swift │ │ ├── BasalScheduleTests.swift │ │ ├── BolusTests.swift │ │ ├── CRC16Tests.swift │ │ ├── Driver │ │ │ └── Comm │ │ │ │ ├── endecrypt │ │ │ │ └── EnDecryptTests.swift │ │ │ │ ├── message │ │ │ │ ├── MessagePacketTests.swift │ │ │ │ ├── PayloadJoinerTest.swift │ │ │ │ ├── PayloadSplitJoinTests.swift │ │ │ │ ├── PayloadSplitterTest.swift │ │ │ │ └── StringLengthPrefixEncodingTests.swift │ │ │ │ └── pair │ │ │ │ └── KeyExchangeTests.swift │ │ ├── HexConversionTests.swift │ │ ├── Info.plist │ │ ├── MessageTests.swift │ │ ├── OmniBLETests.swift │ │ ├── PodCommsSessionTests.swift │ │ ├── PodInfoTests.swift │ │ ├── PodStateTests.swift │ │ ├── StatusTests.swift │ │ ├── TempBasalTests.swift │ │ ├── TestUtilities.swift │ │ └── ZeroBasalScheduleTest.swift │ └── README.md ├── OmniKit │ ├── .gitignore │ ├── OmniKit.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── OmniKit │ │ ├── Extensions │ │ │ ├── Data.swift │ │ │ ├── HKUnit.swift │ │ │ ├── Notification.swift │ │ │ ├── NumberFormatter.swift │ │ │ ├── OSLog.swift │ │ │ ├── TimeInterval.swift │ │ │ └── TimeZone.swift │ │ ├── Info.plist │ │ ├── LocalizedString.swift │ │ ├── MessageTransport │ │ │ ├── CRC8.swift │ │ │ ├── MessageTransport.swift │ │ │ ├── Packet+RFPacket.swift │ │ │ └── Packet.swift │ │ ├── OmniKit.h │ │ ├── OmnipodCommon │ │ │ ├── AlertSlot.swift │ │ │ ├── BasalDeliveryTable.swift │ │ │ ├── BasalSchedule+LoopKit.swift │ │ │ ├── BasalSchedule.swift │ │ │ ├── BeepPreference.swift │ │ │ ├── BeepType.swift │ │ │ ├── BolusDeliveryTable.swift │ │ │ ├── CRC16.swift │ │ │ ├── FaultEventCode.swift │ │ │ ├── InsulinTableEntry.swift │ │ │ ├── Message.swift │ │ │ ├── MessageBlocks │ │ │ │ ├── AcknowledgeAlertCommand.swift │ │ │ │ ├── AssignAddressCommand.swift │ │ │ │ ├── BasalScheduleExtraCommand.swift │ │ │ │ ├── BeepConfigCommand.swift │ │ │ │ ├── BolusExtraCommand.swift │ │ │ │ ├── CancelDeliveryCommand.swift │ │ │ │ ├── ConfigureAlertsCommand.swift │ │ │ │ ├── DeactivatePodCommand.swift │ │ │ │ ├── DetailedStatus.swift │ │ │ │ ├── ErrorResponse.swift │ │ │ │ ├── FaultConfigCommand.swift │ │ │ │ ├── GetStatusCommand.swift │ │ │ │ ├── MessageBlock.swift │ │ │ │ ├── PlaceholderMessageBlock.swift │ │ │ │ ├── PodInfo.swift │ │ │ │ ├── PodInfoActivationTime.swift │ │ │ │ ├── PodInfoPulseLog.swift │ │ │ │ ├── PodInfoPulseLogPlus.swift │ │ │ │ ├── PodInfoResponse.swift │ │ │ │ ├── PodInfoTriggeredAlerts.swift │ │ │ │ ├── SetInsulinScheduleCommand.swift │ │ │ │ ├── SetupPodCommand.swift │ │ │ │ ├── StatusResponse.swift │ │ │ │ ├── TempBasalExtraCommand.swift │ │ │ │ └── VersionResponse.swift │ │ │ ├── PendingCommand.swift │ │ │ ├── Pod.swift │ │ │ ├── PodDoseProgressEstimator.swift │ │ │ ├── PodInsulinMeasurements.swift │ │ │ ├── PodProgressStatus.swift │ │ │ ├── PumpManagerAlert.swift │ │ │ ├── ReservoirLevel.swift │ │ │ ├── SilencePodPreference.swift │ │ │ └── UnfinalizedDose.swift │ │ ├── PumpManager │ │ │ ├── DetailedStatus+OmniKit.swift │ │ │ ├── OmnipodPumpManager.swift │ │ │ ├── OmnipodPumpManagerState.swift │ │ │ ├── PodComms.swift │ │ │ ├── PodCommsSession.swift │ │ │ └── PodState.swift │ │ └── Resources │ │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ │ ├── ca.lproj │ │ │ └── Localizable.strings │ │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ │ ├── pt-PT.lproj │ │ │ └── Localizable.strings │ │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ └── Localizable.strings │ ├── OmniKitPacketParser │ │ └── main.swift │ ├── OmniKitPlugin │ │ ├── Extensions │ │ │ └── OSLog.swift │ │ ├── Info.plist │ │ └── OmniKitPlugin.swift │ ├── OmniKitTests │ │ ├── AcknowledgeAlertsTests.swift │ │ ├── BasalScheduleTests.swift │ │ ├── BolusTests.swift │ │ ├── CRC16Tests.swift │ │ ├── CRC8Tests.swift │ │ ├── Info.plist │ │ ├── MessageTests.swift │ │ ├── OmniKitTests-Bridging-Header.h │ │ ├── OmniKitTests.swift │ │ ├── PacketTests.swift │ │ ├── PodCommsSessionTests.swift │ │ ├── PodInfoTests.swift │ │ ├── PodStateTests.swift │ │ ├── StatusTests.swift │ │ └── TempBasalTests.swift │ ├── OmniKitUI │ │ ├── Common │ │ │ └── FrameworkLocalText.swift │ │ ├── Extensions │ │ │ ├── HKUnit.swift │ │ │ ├── IdentifiableClass.swift │ │ │ ├── Image.swift │ │ │ ├── NibLoadable.swift │ │ │ ├── NumberFormatter.swift │ │ │ ├── TimeInterval.swift │ │ │ └── TimeZone.swift │ │ ├── Info.plist │ │ ├── LocalizedString.swift │ │ ├── OmniKitUI.h │ │ ├── PumpManager │ │ │ ├── OmniPodPumpManager+UI.swift │ │ │ └── OmnipodHUDProvider.swift │ │ ├── Resources │ │ │ ├── HUDAssets.xcassets │ │ │ │ ├── Contents.json │ │ │ │ ├── pod_life │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── pod_life.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Pod Life.pdf │ │ │ │ └── reservoir │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pod_reservoir.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── reservoir.pdf │ │ │ │ │ └── pod_reservoir_mask.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── reservoir_mask.pdf │ │ │ ├── OmniKitUI.xcassets │ │ │ │ ├── Cannula Inserted.imageset │ │ │ │ │ ├── CannulaInserted.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Pod.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pod1x.png │ │ │ │ │ ├── pod2x.png │ │ │ │ │ └── pod3x.png │ │ │ │ ├── PodBottom.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── PodBottom1x.png │ │ │ │ │ ├── PodBottom2x.png │ │ │ │ │ └── PodBottom3x.png │ │ │ │ ├── PodLarge.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── PodLarge@1x.png │ │ │ │ │ ├── PodLarge@2x.png │ │ │ │ │ └── PodLarge@3x.png │ │ │ │ ├── pod_reservoir_mask_swiftui.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── pod_reservoir_mask.svg │ │ │ │ └── pod_reservoir_swiftui.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── pod_reservoir.svg │ │ │ ├── OmnipodReservoirView.xib │ │ │ ├── PodLifeHUDView.xib │ │ │ ├── ar.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ca.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── cs.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── da.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── de.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fi.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── he.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── hi.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── hu.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── it.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ja.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── nb.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── nl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pt-BR.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pt-PT.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ro.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ru.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── sk.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── sv.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── tr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── uk.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── vi.lproj │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ ├── ViewControllers │ │ │ └── OmnipodUICoordinator.swift │ │ ├── ViewModels │ │ │ ├── DeactivatePodViewModel.swift │ │ │ ├── DeliveryUncertaintyRecoveryViewModel.swift │ │ │ ├── InsertCannulaViewModel.swift │ │ │ ├── OmnipodSettingsViewModel.swift │ │ │ ├── PairPodViewModel.swift │ │ │ ├── PodLifeState.swift │ │ │ └── RileyLinkListDataSource.swift │ │ └── Views │ │ │ ├── ActivityView.swift │ │ │ ├── AttachPodView.swift │ │ │ ├── BasalStateView.swift │ │ │ ├── BeepPreferenceSelectionView.swift │ │ │ ├── CheckInsertedCannulaView.swift │ │ │ ├── DeactivatePodView.swift │ │ │ ├── DeliveryUncertaintyRecoveryView.swift │ │ │ ├── DesignElements │ │ │ ├── ErrorView.swift │ │ │ ├── LeadingImage.swift │ │ │ └── RoundedCard.swift │ │ │ ├── ExpirationReminderPickerView.swift │ │ │ ├── ExpirationReminderSetupView.swift │ │ │ ├── FirstAppear.swift │ │ │ ├── InsertCannulaView.swift │ │ │ ├── InsulinTypeConfirmation.swift │ │ │ ├── LowReservoirReminderEditView.swift │ │ │ ├── LowReservoirReminderSetupView.swift │ │ │ ├── ManualTempBasalEntryView.swift │ │ │ ├── NotificationSettingsView.swift │ │ │ ├── OmnipodReservoirView.swift │ │ │ ├── OmnipodSettingsView.swift │ │ │ ├── PairPodView.swift │ │ │ ├── PlayTestBeepsView.swift │ │ │ ├── PodDetailsView.swift │ │ │ ├── PodDiagnostics.swift │ │ │ ├── PodLifeHUDView.swift │ │ │ ├── PodSetupView.swift │ │ │ ├── PumpManagerDetailsView.swift │ │ │ ├── ReadPodInfoView.swift │ │ │ ├── ReadPodStatusView.swift │ │ │ ├── ReadPulseLogView.swift │ │ │ ├── RileyLinkSetupView.swift │ │ │ ├── ScheduledExpirationReminderEditView.swift │ │ │ ├── SetupCompleteView.swift │ │ │ ├── SilencePodSelectionView.swift │ │ │ ├── TimeView.swift │ │ │ └── UncertaintyRecoveredView.swift │ └── README.md ├── dexcom-share-client-swift │ ├── .gitignore │ ├── .travis.yml │ ├── Common │ │ └── LocalizedString.swift │ ├── LICENSE │ ├── ShareClient.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── ShareClient │ │ ├── Base.lproj │ │ │ └── Localizable.strings │ │ ├── HKUnit.swift │ │ ├── Info.plist │ │ ├── OSLog.swift │ │ ├── ShareClient.h │ │ ├── ShareClient.swift │ │ ├── ShareClientManager.swift │ │ ├── ShareGlucose+GlucoseKit.swift │ │ ├── ShareService.swift │ │ ├── TimeInterval.swift │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hans.lproj │ │ │ └── Localizable.strings │ ├── ShareClientPlugin │ │ ├── Info.plist │ │ ├── ShareClientPlugin-Bridging-Header.h │ │ └── ShareClientPlugin.swift │ └── ShareClientUI │ │ ├── Base.lproj │ │ └── Localizable.strings │ │ ├── IdentifiableClass.swift │ │ ├── Info.plist │ │ ├── ShareClientManager+UI.swift │ │ ├── ShareClientSettingsViewController.swift │ │ ├── ShareClientSetupViewController.swift │ │ ├── ShareClientUI.h │ │ ├── ShareService+UI.swift │ │ ├── UIColor.swift │ │ ├── ar.lproj │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ └── Localizable.strings │ │ ├── da.lproj │ │ └── Localizable.strings │ │ ├── de.lproj │ │ └── Localizable.strings │ │ ├── es.lproj │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ └── Localizable.strings │ │ ├── he.lproj │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ └── Localizable.strings │ │ ├── it.lproj │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ └── Localizable.strings │ │ └── zh-Hans.lproj │ │ └── Localizable.strings └── rileylink_ios │ ├── .gitignore │ ├── .travis.yml │ ├── Common │ ├── CaseCountable.swift │ ├── Comparable.swift │ ├── Data.swift │ ├── HKUnit.swift │ ├── IdentifiableClass.swift │ ├── LocalizedString.swift │ ├── NibLoadable.swift │ ├── NumberFormatter.swift │ ├── OSLog.swift │ ├── TimeInterval.swift │ ├── TimeZone.swift │ └── UIColor.swift │ ├── Images │ ├── errors_when_building.png │ ├── rileylink_ios_omnipod_status.png │ ├── rileylink_ios_paired_omnipod.png │ └── rileylink_ios_setup.PNG │ ├── LICENSE │ ├── README.md │ ├── RileyLink.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ ├── RileyLink │ ├── AppDelegate.swift │ ├── AuthenticationViewController.swift │ ├── Base.lproj │ │ └── Localizable.strings │ ├── Config.h │ ├── Config.m │ ├── DeviceDataManager.swift │ ├── Extensions │ │ ├── BatteryIndicator.swift │ │ ├── RileyLinkDevice.swift │ │ ├── UIViewController.swift │ │ └── UserDefaults.swift │ ├── KeychainManager+RileyLink.swift │ ├── KeychainManager.swift │ ├── LaunchScreen.storyboard │ ├── Log.h │ ├── Log.m │ ├── MainStoryboard.storyboard │ ├── Models │ │ ├── NightscoutService.swift │ │ ├── ServiceAuthentication.swift │ │ └── ServiceCredential.swift │ ├── PumpManagerState.swift │ ├── RemoteDataManager.swift │ ├── RileyLink-Bridging-Header.h │ ├── RileyLink-Info.plist │ ├── RileyLink.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── icon_20pt@2x.png │ │ │ ├── icon_20pt@3x.png │ │ │ ├── icon_29pt@2x.png │ │ │ ├── icon_29pt@3x.png │ │ │ ├── icon_40pt@2x.png │ │ │ ├── icon_40pt@3x.png │ │ │ ├── icon_60pt@2x.png │ │ │ └── icon_60pt@3x.png │ │ ├── Contents.json │ │ ├── RileyLink Tint.colorset │ │ │ └── Contents.json │ │ └── RileyLink.imageset │ │ │ ├── Contents.json │ │ │ └── RileyLink.pdf │ ├── RileyLink.xcdatamodeld │ │ └── RileyLink.xcdatamodel │ │ │ └── contents │ ├── RileyLinkListTableViewController.swift │ ├── RileyLinkModel.xcdatamodeld │ │ └── RileyLinkModel.xcdatamodel │ │ │ └── contents │ ├── SettingsTableViewController.swift │ ├── TextFieldTableViewController.swift │ ├── View Controllers │ │ └── MainViewController.swift │ ├── Views │ │ └── SettingsImageTableViewCell.swift │ ├── ar.lproj │ │ ├── Localizable.strings │ │ └── LoopKit.strings │ ├── cs.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── da.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── de.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── fi.lproj │ │ ├── Localizable.strings │ │ └── LoopKit.strings │ ├── fr.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── he.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── hi.lproj │ │ └── Localizable.strings │ ├── hu.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── ja.lproj │ │ ├── Localizable.strings │ │ └── LoopKit.strings │ ├── nb.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── nl.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── pl.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── pt-BR.lproj │ │ ├── Localizable.strings │ │ └── LoopKit.strings │ ├── ro.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── ru.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── sk.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── sv.lproj │ │ ├── Localizable.strings │ │ └── LoopKit.strings │ ├── tr.lproj │ │ ├── Localizable.strings │ │ ├── LoopKit.strings │ │ └── RileyLink-InfoPlist.strings │ ├── vi.lproj │ │ ├── Localizable.strings │ │ └── LoopKit.strings │ └── zh-Hans.lproj │ │ └── Localizable.strings │ ├── RileyLinkBLEKit │ ├── BLEFirmwareVersion.swift │ ├── Base.lproj │ │ └── Localizable.strings │ ├── CBCentralManager.swift │ ├── CBPeripheral.swift │ ├── Command.swift │ ├── CommandSession.swift │ ├── Info.plist │ ├── PeripheralManager+RileyLink.swift │ ├── PeripheralManager.swift │ ├── PeripheralManagerError.swift │ ├── RFPacket.swift │ ├── RadioFirmwareVersion.swift │ ├── Response.swift │ ├── ResponseBuffer.swift │ ├── RileyLinkBLEKit.h │ ├── RileyLinkBluetoothDevice.swift │ ├── RileyLinkBluetoothDeviceProvider.swift │ ├── RileyLinkConnectionState.swift │ ├── RileyLinkDevice.swift │ ├── RileyLinkDeviceError.swift │ ├── RileyLinkDeviceProvider.swift │ ├── cs.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── fi.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ └── Localizable.strings │ ├── hu.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ ├── nb.lproj │ │ └── Localizable.strings │ ├── nl.lproj │ │ └── Localizable.strings │ ├── pl.lproj │ │ └── Localizable.strings │ ├── pt-BR.lproj │ │ └── Localizable.strings │ ├── ro.lproj │ │ └── Localizable.strings │ ├── ru.lproj │ │ └── Localizable.strings │ ├── sk.lproj │ │ └── Localizable.strings │ ├── sv.lproj │ │ └── Localizable.strings │ ├── tr.lproj │ │ └── Localizable.strings │ ├── vi.lproj │ │ └── Localizable.strings │ └── zh-Hans.lproj │ │ └── Localizable.strings │ ├── RileyLinkBLEKitTests │ ├── Info.plist │ ├── RFPacketTests.swift │ ├── RadioFirmwareVersionTests.swift │ └── ResponseBufferTests.swift │ ├── RileyLinkKit │ ├── Info.plist │ ├── RileyLinkDevice.swift │ ├── RileyLinkDeviceManager.swift │ ├── RileyLinkKit.h │ ├── RileyLinkListDataSource.swift │ └── RileyLinkPumpManager.swift │ ├── RileyLinkKitTests │ └── Info.plist │ ├── RileyLinkKitUI │ ├── Base.lproj │ │ └── Localizable.strings │ ├── CBPeripheralState.swift │ ├── CommandResponseViewController.swift │ ├── Info.plist │ ├── RileyLinkDeviceTableViewCell.swift │ ├── RileyLinkDeviceTableViewController.swift │ ├── RileyLinkDevicesHeaderView.swift │ ├── RileyLinkDevicesTableViewDataSource.swift │ ├── RileyLinkKitUI.h │ ├── RileyLinkKitUI.xcassets │ │ ├── Contents.json │ │ ├── RileyLink Tint.colorset │ │ │ └── Contents.json │ │ └── RileyLink.imageset │ │ │ ├── Contents.json │ │ │ └── RileyLink.pdf │ ├── RileyLinkManagerSetupViewController.swift │ ├── RileyLinkSettingsViewController.swift │ ├── RileyLinkSetupTableViewController.swift │ ├── SetupImageTableViewCell.swift │ ├── SetupImageTableViewCell.xib │ ├── UIActivityIndicatorView.swift │ ├── UITableViewCell.swift │ ├── ar.lproj │ │ └── Localizable.strings │ ├── ca.lproj │ │ └── Localizable.strings │ ├── cs.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── fi.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ └── Localizable.strings │ ├── hi.lproj │ │ └── Localizable.strings │ ├── hu.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ ├── nb.lproj │ │ └── Localizable.strings │ ├── nl.lproj │ │ └── Localizable.strings │ ├── pl.lproj │ │ └── Localizable.strings │ ├── pt-BR.lproj │ │ └── Localizable.strings │ ├── pt-PT.lproj │ │ └── Localizable.strings │ ├── ro.lproj │ │ └── Localizable.strings │ ├── ru.lproj │ │ └── Localizable.strings │ ├── sk.lproj │ │ └── Localizable.strings │ ├── sv.lproj │ │ └── Localizable.strings │ ├── tr.lproj │ │ └── Localizable.strings │ ├── uk.lproj │ │ └── Localizable.strings │ ├── vi.lproj │ │ └── Localizable.strings │ └── zh-Hans.lproj │ │ └── Localizable.strings │ └── RileyLinkTests │ ├── RileyLinkTests-Info.plist │ └── RileyLinkTests.m ├── FAQ.md ├── FAQ_RU.md ├── FreeAPS.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ ├── FreeAPS X.xcscheme │ └── FreeAPSWatch.xcscheme ├── FreeAPS.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ ├── WorkspaceSettings.xcsettings │ └── swiftpm │ └── Package.resolved ├── FreeAPS ├── Resources │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── Colors │ │ │ ├── Background_DarkBlue.colorset │ │ │ │ └── Contents.json │ │ │ ├── Background_DarkerDarkBlue.colorset │ │ │ │ └── Contents.json │ │ │ ├── Basal.colorset │ │ │ │ └── Contents.json │ │ │ ├── Chart.colorset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── DarkerBlue.colorset │ │ │ │ └── Contents.json │ │ │ ├── Insulin.colorset │ │ │ │ └── Contents.json │ │ │ ├── Lemon.colorset │ │ │ │ └── Contents.json │ │ │ ├── LoopGray.colorset │ │ │ │ └── Contents.json │ │ │ ├── LoopGreen.colorset │ │ │ │ └── Contents.json │ │ │ ├── LoopPink.colorset │ │ │ │ └── Contents.json │ │ │ ├── LoopRed.colorset │ │ │ │ └── Contents.json │ │ │ ├── LoopYellow.colorset │ │ │ │ └── Contents.json │ │ │ ├── ManualTempBasal.colorset │ │ │ │ └── Contents.json │ │ │ ├── TempBasal.colorset │ │ │ │ └── Contents.json │ │ │ ├── UAM.colorset │ │ │ │ └── Contents.json │ │ │ ├── Violet.colorset │ │ │ │ └── Contents.json │ │ │ ├── ZT.colorset │ │ │ │ └── Contents.json │ │ │ ├── darkGray.colorset │ │ │ │ └── Contents.json │ │ │ ├── minus.colorset │ │ │ │ └── Contents.json │ │ │ └── warning.colorset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── catWithPod.appiconset │ │ │ ├── Cat2 1.png │ │ │ ├── Cat2.png │ │ │ └── Contents.json │ │ ├── catWithPodWhiteBG.appiconset │ │ │ ├── Contents.json │ │ │ ├── catWithPodWhiteBG1024x1024 1.png │ │ │ └── catWithPodWhiteBG1024x1024.png │ │ ├── iAPS.appiconset │ │ │ ├── Contents.json │ │ │ ├── iAPS Text 1.png │ │ │ └── iAPS Text.png │ │ ├── iAPS_Black.appiconset │ │ │ ├── Contents.json │ │ │ ├── iAPS Icon2 1.png │ │ │ └── iAPS Icon2.png │ │ ├── iAPS_Black_Black.appiconset │ │ │ ├── Contents.json │ │ │ ├── iAPS Icon4 1.png │ │ │ └── iAPS Icon4.png │ │ ├── iAPS_Clean.appiconset │ │ │ ├── Contents.json │ │ │ ├── Logo_Pink 1.png │ │ │ └── Logo_Pink.png │ │ ├── iAPS_Glow_BG.appiconset │ │ │ ├── Contents.json │ │ │ ├── iAPS Icon1 1.png │ │ │ └── iAPS Icon1.png │ │ ├── iAPS_Gray.appiconset │ │ │ ├── Contents.json │ │ │ ├── iAPS Pump_Bevel 1.png │ │ │ └── iAPS Pump_Bevel.png │ │ ├── iAPS_Gray_Flat.appiconset │ │ │ ├── Contents.json │ │ │ ├── iAPS Pump_Black 1.png │ │ │ └── iAPS Pump_Black.png │ │ ├── iAPS_Gray_No_Buttons_BBG.appiconset │ │ │ ├── Contents.json │ │ │ ├── iAPS Pump_Bevel2_Black 1.png │ │ │ └── iAPS Pump_Bevel2_Black.png │ │ ├── iAPS_Loop.appiconset │ │ │ ├── Contents.json │ │ │ ├── imageLoop 1.png │ │ │ └── imageLoop.png │ │ ├── iAPS_Loop_Cyan_Text.appiconset │ │ │ ├── Contents.json │ │ │ ├── LoopWhite 1.png │ │ │ └── LoopWhite.png │ │ ├── iAPS_Loop_Text.appiconset │ │ │ ├── Contents.json │ │ │ ├── image 1.png │ │ │ └── image.png │ │ ├── iAPS_Loop_White_Text.appiconset │ │ │ ├── Contents.json │ │ │ ├── LoopWhite 1.png │ │ │ └── LoopWhite.png │ │ ├── iAPS_NoButtons_Gray_White_BG.appiconset │ │ │ ├── Contents.json │ │ │ ├── iAPS Pump_Bevel2_Transparent.png │ │ │ └── iAPS_NoButtons_Gray1024x1024.png │ │ ├── iAPS_Purple.appiconset │ │ │ ├── Contents.json │ │ │ ├── iAPS Pump_FlatGradient 1.png │ │ │ └── iAPS Pump_FlatGradient.png │ │ ├── iAPS_Purple_BG.appiconset │ │ │ ├── Contents.json │ │ │ ├── iAPS Icon3 1.png │ │ │ └── iAPS Icon3.png │ │ ├── iAPS_WhiteAndGray.appiconset │ │ │ ├── Contents.json │ │ │ ├── iAPS Pump_White 1.png │ │ │ └── iAPS Pump_White.png │ │ ├── iAPS_White_BG.appiconset │ │ │ ├── Contents.json │ │ │ ├── iAPS Icon5 1.png │ │ │ └── iAPS Icon5.png │ │ ├── icons │ │ │ ├── Contents.json │ │ │ ├── bolus.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bolus.svg │ │ │ ├── bolus1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bolus1.svg │ │ │ ├── carbs.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── carbs.pdf │ │ │ ├── carbs1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── carbs1.svg │ │ │ ├── premeal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── premeal.svg │ │ │ ├── premeal1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── premeal1.pdf │ │ │ ├── settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── settings.svg │ │ │ ├── settings1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── settings1.pdf │ │ │ ├── statistics.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── statistics.svg │ │ │ ├── statistics1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── statistics1.pdf │ │ │ ├── target.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── target.pdf │ │ │ └── target1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── target1.svg │ │ ├── owl.imageset │ │ │ ├── Contents.json │ │ │ ├── apps.53525.13510798887505226.836b071a-2d62-4ce8-92bc-701910b6b96e.19f04184-2123-4d05-89b5-97f5c4f7a432-2 3 (kopia).png │ │ │ └── apps.53525.13510798887505226.836b071a-2d62-4ce8-92bc-701910b6b96e.19f04184-2123-4d05-89b5-97f5c4f7a432-2 3.png │ │ ├── podPurple.appiconset │ │ │ ├── Contents.json │ │ │ ├── Pod2 1.png │ │ │ └── Pod2.png │ │ ├── podTemplateBlack.appiconset │ │ │ ├── Contents.json │ │ │ ├── pod4 1.png │ │ │ └── pod4.png │ │ ├── podTemplateWhite.appiconset │ │ │ ├── Contents.json │ │ │ ├── Pod3 1.png │ │ │ └── Pod3.png │ │ └── pod_colorful.appiconset │ │ │ ├── Contents.json │ │ │ ├── Pod1.png │ │ │ └── pod_colorful1024x1024.png │ ├── FreeAPS.entitlements │ ├── Info.plist │ ├── javascript │ │ ├── bundle │ │ │ ├── autosens.js │ │ │ ├── autotune-core.js │ │ │ ├── autotune-prep.js │ │ │ ├── basal-set-temp.js │ │ │ ├── determine-basal.js │ │ │ ├── glucose-get-last.js │ │ │ ├── iob.js │ │ │ ├── meal.js │ │ │ └── profile.js │ │ ├── middleware │ │ │ └── determine_basal.js │ │ └── prepare │ │ │ ├── autosens.js │ │ │ ├── autotune-core.js │ │ │ ├── autotune-prep.js │ │ │ ├── determine-basal.js │ │ │ ├── iob.js │ │ │ ├── log.js │ │ │ ├── meal.js │ │ │ └── profile.js │ └── json │ │ └── defaults │ │ ├── announcements.json │ │ ├── freeaps │ │ ├── announcements_enacted.json │ │ ├── freeaps_settings.json │ │ └── temptargets_presets.json │ │ ├── monitor │ │ ├── carbhistory.json │ │ ├── glucose.json │ │ ├── loopStats.json │ │ ├── pumphistory-24h-zoned.json │ │ ├── reservoir.json │ │ ├── statistics.json │ │ ├── status.json │ │ └── tdd_averages.json │ │ ├── nightscout │ │ ├── not-uploaded-overrides.json │ │ ├── uploaded-carbs.json │ │ ├── uploaded-pumphistory.json │ │ └── uploaded-temptargets.json │ │ ├── preferences.json │ │ └── settings │ │ ├── autosense.json │ │ ├── basal_profile.json │ │ ├── bg_targets.json │ │ ├── carb_ratios.json │ │ ├── contact_trick.json │ │ ├── insulin_sensitivities.json │ │ ├── model.json │ │ ├── profile.json │ │ ├── pumpprofile.json │ │ ├── settings.json │ │ └── temptargets.json └── Sources │ ├── APS │ ├── APSManager.swift │ ├── CGM │ │ ├── AppGroupSource.swift │ │ ├── BluetoothTransmitter.swift │ │ ├── CGMType.swift │ │ ├── Calibrations │ │ │ └── CalibrationService.swift │ │ ├── DexcomSourceG5.swift │ │ ├── DexcomSourceG6.swift │ │ ├── GlucoseSimulatorSource.swift │ │ ├── GlucoseSource.swift │ │ ├── HeartBeatManager.swift │ │ ├── LibreTransmitterSource.swift │ │ └── dexcomSourceG7.swift │ ├── DeviceDataManager.swift │ ├── Extensions │ │ ├── BloodGlucoseExtensions.swift │ │ ├── DanaKitPumpManagerExtensions.swift │ │ ├── LoopUIColorPalette+Default.swift │ │ ├── OmniBLEPumpManagerExtensions.swift │ │ ├── OmniPodManagerExtensions.swift │ │ ├── PumpManagerExtensions.swift │ │ └── UserDefaultsExtensions.swift │ ├── FetchAnnouncementsManager.swift │ ├── FetchGlucoseManager.swift │ ├── FetchTreatmentsManager.swift │ ├── OpenAPS │ │ ├── Constants.swift │ │ ├── JavaScriptWorker.swift │ │ ├── OpenAPS.swift │ │ └── Script.swift │ └── Storage │ │ ├── AlertStorage.swift │ │ ├── AnnouncementsStorage.swift │ │ ├── CarbsStorage.swift │ │ ├── CoreDataStorage.swift │ │ ├── GlucoseStorage.swift │ │ ├── OverrideStorage.swift │ │ ├── PumpHistoryStorage.swift │ │ └── TempTargetsStorage.swift │ ├── AnimatedBackground │ ├── Assets.xcassets │ │ ├── Contents.json │ │ └── Particle Sprite Atlas.spriteatlas │ │ │ ├── Contents.json │ │ │ ├── bokeh.imageset │ │ │ ├── Contents.json │ │ │ └── bokeh.png │ │ │ └── spark.imageset │ │ │ ├── Contents.json │ │ │ └── spark.png │ ├── SnowScene.swift │ └── snow.sks │ ├── Application │ ├── AppDelegate.swift │ └── FreeAPSApp.swift │ ├── Assemblies │ ├── APSAssembly.swift │ ├── NetworkAssembly.swift │ ├── SecurityAssembly.swift │ ├── ServiceAssembly.swift │ ├── StorageAssembly.swift │ └── UIAssembly.swift │ ├── Config │ └── Config.swift │ ├── Helpers │ ├── Array+Extension.swift │ ├── BulletList.swift │ ├── Bundle+Extensions.swift │ ├── Color+Extensions.swift │ ├── ConcurrentMap.swift │ ├── ConvenienceExtensions.swift │ ├── CoreDataStack.swift │ ├── CustomDateTimePicker.swift │ ├── Decimal+Extensions.swift │ ├── DispatchQueue+Extensions.swift │ ├── DispatchTimer.swift │ ├── Formatters.swift │ ├── HKUnit.swift │ ├── IndexedCollection.swift │ ├── Interpolation.swift │ ├── JSON.swift │ ├── LRUCache.swift │ ├── MD5.swift │ ├── NSLocking+Extensions.swift │ ├── NSObject+AssociatedValues.swift │ ├── ProgressBar.swift │ ├── PropertyWrappers │ │ ├── Injected.swift │ │ ├── PersistedProperty.swift │ │ ├── Protected.swift │ │ └── SyncAccess.swift │ ├── Publisher.swift │ ├── SavitzkyGolayFilter.swift │ ├── String+Extensions.swift │ ├── UIColor.swift │ └── UIDevice+Extensions.swift │ ├── Localizations │ ├── InfoPlists │ │ ├── Base.lproj │ │ │ └── InfoPlist.strings │ │ ├── ar.lproj │ │ │ └── InfoPlist.strings │ │ ├── ca.lproj │ │ │ └── InfoPlist.strings │ │ ├── da.lproj │ │ │ └── InfoPlist.strings │ │ ├── de.lproj │ │ │ └── InfoPlist.strings │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ │ └── InfoPlist.strings │ │ ├── fi.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr.lproj │ │ │ └── InfoPlist.strings │ │ ├── he.lproj │ │ │ └── InfoPlist.strings │ │ ├── hu.lproj │ │ │ └── InfoPlist.strings │ │ ├── it.lproj │ │ │ └── InfoPlist.strings │ │ ├── nb.lproj │ │ │ └── InfoPlist.strings │ │ ├── nl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt-BR.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt-PT.lproj │ │ │ └── InfoPlist.strings │ │ ├── ru.lproj │ │ │ └── InfoPlist.strings │ │ ├── sk.lproj │ │ │ └── InfoPlist.strings │ │ ├── sv.lproj │ │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ │ └── InfoPlist.strings │ │ ├── uk.lproj │ │ │ └── InfoPlist.strings │ │ ├── vi.lproj │ │ │ └── InfoPlist.strings │ │ └── zh-Hans.lproj │ │ │ └── InfoPlist.strings │ ├── Main │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── ca.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── el.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ ├── pt-PT.lproj │ │ │ └── Localizable.strings │ │ ├── pt.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hans.lproj │ │ │ └── Localizable.strings │ ├── Shortcuts │ │ ├── ar.lproj │ │ │ └── AppShortcuts.strings │ │ ├── ca.lproj │ │ │ └── AppShortcuts.strings │ │ ├── da.lproj │ │ │ └── AppShortcuts.strings │ │ ├── de.lproj │ │ │ └── AppShortcuts.strings │ │ ├── en.lproj │ │ │ ├── AppShortcuts.strings │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── AppShortcuts.strings │ │ ├── fi.lproj │ │ │ └── AppShortcuts.strings │ │ ├── fr.lproj │ │ │ └── AppShortcuts.strings │ │ ├── he.lproj │ │ │ └── AppShortcuts.strings │ │ ├── hu.lproj │ │ │ └── AppShortcuts.strings │ │ ├── it.lproj │ │ │ └── AppShortcuts.strings │ │ ├── nb.lproj │ │ │ └── AppShortcuts.strings │ │ ├── nl.lproj │ │ │ └── AppShortcuts.strings │ │ ├── pl.lproj │ │ │ └── AppShortcuts.strings │ │ ├── pt-BR.lproj │ │ │ └── AppShortcuts.strings │ │ ├── pt-PT.lproj │ │ │ └── AppShortcuts.strings │ │ ├── ru.lproj │ │ │ └── AppShortcuts.strings │ │ ├── sk.lproj │ │ │ └── AppShortcuts.strings │ │ ├── sv.lproj │ │ │ └── AppShortcuts.strings │ │ ├── tr.lproj │ │ │ └── AppShortcuts.strings │ │ ├── uk.lproj │ │ │ └── AppShortcuts.strings │ │ ├── vi.lproj │ │ │ └── AppShortcuts.strings │ │ └── zh-Hans.lproj │ │ │ └── AppShortcuts.strings │ └── ShortcutsDetail │ │ └── ShortcutsDetail.xcstrings │ ├── Logger │ ├── Error+Extensions.swift │ ├── IssueReporter │ │ ├── CollectionIssueReporter.swift │ │ ├── IssueReporter.swift │ │ └── SimpleLogReporter.swift │ ├── Logger.swift │ └── Signpost.swift │ ├── Models │ ├── AlertEntry.swift │ ├── Announcement.swift │ ├── Autosens.swift │ ├── Autotune.swift │ ├── BGTargets.swift │ ├── BasalProfileEntry.swift │ ├── Battery.swift │ ├── BloodGlucose.swift │ ├── CarbRatios.swift │ ├── CarbsEntry.swift │ ├── Charts.swift │ ├── Configs.swift │ ├── ContactTrickEntry.swift │ ├── Credentials.swift │ ├── FetchedProfile.swift │ ├── FontTracking.swift │ ├── FontWeight.swift │ ├── FreeAPSSettings.swift │ ├── Glucose.swift │ ├── HealthKitSample.swift │ ├── HistoryLayout.swift │ ├── IOBEntry.swift │ ├── Icons.swift │ ├── InsulinSensitivities.swift │ ├── LockScreenView.swift │ ├── LoopStats.swift │ ├── Loops.swift │ ├── NIghtscoutExercise.swift │ ├── NightscoutPreferences.swift │ ├── NightscoutSettings.swift │ ├── NightscoutStatistics.swift │ ├── NightscoutStatus.swift │ ├── NightscoutTreatment.swift │ ├── Oref2_variables.swift │ ├── Preferences.swift │ ├── PumpHistoryEvent.swift │ ├── PumpSettings.swift │ ├── PumpStatus.swift │ ├── RawFetchedProfile.swift │ ├── Reservoir.swift │ ├── Statistics.swift │ ├── Suggestion.swift │ ├── TempBasal.swift │ ├── TempTarget.swift │ ├── Threshold.swift │ └── User.swift │ ├── Modules │ ├── AddCarbs │ │ ├── AddCarbsDataFlow.swift │ │ ├── AddCarbsProvider.swift │ │ ├── AddCarbsStateModel.swift │ │ └── View │ │ │ └── AddCarbsRootView.swift │ ├── AddTempTarget │ │ ├── AddTempTargetDataFlow.swift │ │ ├── AddTempTargetProvider.swift │ │ ├── AddTempTargetStateModel.swift │ │ └── View │ │ │ └── AddTempTargetRootView.swift │ ├── AutoISF │ │ ├── AutoISFConfDataFlow.swift │ │ ├── AutoISFConfProvider.swift │ │ ├── AutoISFConfStateModel.swift │ │ └── View │ │ │ └── AutoISFConfRootView.swift │ ├── AutotuneConfig │ │ ├── AutotuneConfigDataFlow.swift │ │ ├── AutotuneConfigProvider.swift │ │ ├── AutotuneConfigStateModel.swift │ │ └── View │ │ │ └── AutotuneConfigRootView.swift │ ├── B30 │ │ ├── B30ConfDataFlow.swift │ │ ├── B30ConfProvider.swift │ │ ├── B30ConfStateModel.swift │ │ └── View │ │ │ └── B30ConfRootView.swift │ ├── BasalProfileEditor │ │ ├── BasalProfileEditorDataFlow.swift │ │ ├── BasalProfileEditorProvider.swift │ │ ├── BasalProfileEditorStateModel.swift │ │ └── View │ │ │ └── BasalProfileEditorRootView.swift │ ├── Base │ │ ├── BaseProvider.swift │ │ ├── BaseStateModel.swift │ │ └── BaseView.swift │ ├── Bolus │ │ ├── BolusDataFlow.swift │ │ ├── BolusProvider.swift │ │ ├── BolusStateModel.swift │ │ ├── Components │ │ │ └── CheckboxToggleStyle.swift │ │ └── View │ │ │ ├── AlternativeBolusCalcRootView.swift │ │ │ ├── BolusRootView.swift │ │ │ ├── DefaultBolusCalcRootView.swift │ │ │ └── Predictions.swift │ ├── BolusCalculatorConfig │ │ ├── BolusCalculatorConfigDataFlow.swift │ │ ├── BolusCalculatorConfigProvider.swift │ │ ├── BolusCalculatorStateModel.swift │ │ └── View │ │ │ └── BolusCalculatorConfigRootView.swift │ ├── CGM │ │ ├── CGMDataFlow.swift │ │ ├── CGMProvider.swift │ │ ├── CGMStateModel.swift │ │ └── View │ │ │ ├── CGMRootView.swift │ │ │ ├── CGMSettingsView.swift │ │ │ └── CGMSetupView.swift │ ├── CREditor │ │ ├── CREditorDataFlow.swift │ │ ├── CREditorProvider.swift │ │ ├── CREditorStateModel.swift │ │ └── View │ │ │ └── CREditorRootView.swift │ ├── Calibrations │ │ ├── CalibrationsDataFlow.swift │ │ ├── CalibrationsProvider.swift │ │ ├── CalibrationsStateModel.swift │ │ └── View │ │ │ ├── CalibrationsChart.swift │ │ │ └── CalibrationsRootView.swift │ ├── ConfigEditor │ │ ├── ConfigEditorDataFlow.swift │ │ ├── ConfigEditorProvider.swift │ │ ├── ConfigEditorStateModel.swift │ │ └── View │ │ │ └── ConfigEditorRootView.swift │ ├── ContactTrick │ │ ├── ContactTrickDataFlow.swift │ │ ├── ContactTrickProvider.swift │ │ ├── ContactTrickStateModel.swift │ │ └── View │ │ │ └── ContactTrickRootView.swift │ ├── DataTable │ │ ├── DataTableDataFlow.swift │ │ ├── DataTableProvider.swift │ │ ├── DataTableStateModel.swift │ │ └── View │ │ │ └── DataTableRootView.swift │ ├── Dynamic │ │ ├── DynamicDataFlow.swift │ │ ├── DynamicProvider.swift │ │ ├── DynamicStateModel.swift │ │ └── View │ │ │ └── DynamicRootView.swift │ ├── FPUConfig │ │ ├── FPUConfigDataFlow.swift │ │ ├── FPUConfigProvider.swift │ │ ├── FPUConfigStateModel.swift │ │ └── View │ │ │ └── FPUConfigRootView.swift │ ├── HealthKit │ │ ├── HealthKitDataFlow.swift │ │ ├── HealthKitProvider.swift │ │ ├── HealthKitStateModel.swift │ │ └── View │ │ │ └── AppleHealthKitRootView.swift │ ├── Home │ │ ├── HomeDataFlow.swift │ │ ├── HomeProvider.swift │ │ ├── HomeStateModel.swift │ │ └── View │ │ │ ├── Chart │ │ │ └── MainChartView.swift │ │ │ ├── Header │ │ │ ├── CurrentGlucoseView.swift │ │ │ ├── LoopView.swift │ │ │ └── PumpView.swift │ │ │ └── HomeRootView.swift │ ├── ISFEditor │ │ ├── ISFEditorDataFlow.swift │ │ ├── ISFEditorProvider.swift │ │ ├── ISFEditorStateModel.swift │ │ └── View │ │ │ └── ISFEditorRootView.swift │ ├── IconConfig │ │ ├── IconConfigDataFlow.swift │ │ ├── IconConfigProvider.swift │ │ ├── IconConfigStateModel.swift │ │ └── View │ │ │ ├── IconConfigRootWiew.swift │ │ │ ├── IconImage.swift │ │ │ └── IconSelection.swift │ ├── KetoProtect │ │ ├── KetoProtectConfProvider.swift │ │ ├── KetoProtectConfStateModel.swift │ │ ├── KetoProtectDataFlow.swift │ │ └── View │ │ │ └── KetoProtectConfRootView.swift │ ├── LibreConfig │ │ ├── LibreConfigDataFlow.swift │ │ ├── LibreConfigProvider.swift │ │ ├── LibreConfigStateModel.swift │ │ └── View │ │ │ └── LibreConfigRootView.swift │ ├── Main │ │ ├── MainDataFlow.swift │ │ ├── MainProvider.swift │ │ ├── MainStateModel.swift │ │ └── View │ │ │ └── MainRootView.swift │ ├── ManualTempBasal │ │ ├── ManualTempBasalDataFlow.swift │ │ ├── ManualTempBasalProvider.swift │ │ ├── ManualTempBasalStateModel.swift │ │ └── View │ │ │ └── ManualTempBasalRootView.swift │ ├── NightscoutConfig │ │ ├── NightscoutConfigDataFlow.swift │ │ ├── NightscoutConfigProvider.swift │ │ ├── NightscoutConfigStateModel.swift │ │ └── View │ │ │ └── NightscoutConfigRootView.swift │ ├── NotificationsConfig │ │ ├── NotificationsConfigDataFlow.swift │ │ ├── NotificationsConfigProvider.swift │ │ ├── NotificationsConfigStateModel.swift │ │ └── View │ │ │ └── NotificationsConfigRootView.swift │ ├── OverrideProfilesConfig │ │ ├── OverrideProfilesDataFlow.swift │ │ ├── OverrideProfilesProvider.swift │ │ ├── OverrideProfilesStateModel.swift │ │ └── View │ │ │ └── OverrideProfilesRootView.swift │ ├── PreferencesEditor │ │ ├── PreferencesEditorDataFlow.swift │ │ ├── PreferencesEditorProvider.swift │ │ ├── PreferencesEditorStateModel.swift │ │ └── View │ │ │ └── PreferencesEditorRootView.swift │ ├── PumpConfig │ │ ├── PumpConfigDataFlow.swift │ │ ├── PumpConfigProvider.swift │ │ ├── PumpConfigStateModel.swift │ │ └── View │ │ │ ├── PumpConfigRootView.swift │ │ │ ├── PumpSettingsView.swift │ │ │ └── PumpSetupView.swift │ ├── PumpSettingsEditor │ │ ├── PumpSettingsEditorDataFlow.swift │ │ ├── PumpSettingsEditorProvider.swift │ │ ├── PumpSettingsEditorStateModel.swift │ │ └── View │ │ │ └── PumpSettingsEditorRootView.swift │ ├── Settings │ │ ├── SettingsDataFlow.swift │ │ ├── SettingsProvider.swift │ │ ├── SettingsStateModel.swift │ │ └── View │ │ │ └── SettingsRootView.swift │ ├── Snooze │ │ ├── SnoozeDataFlow.swift │ │ ├── SnoozeProvider.swift │ │ ├── SnoozeStateModel.swift │ │ └── View │ │ │ └── SnoozeRootView.swift │ ├── Stat │ │ ├── StatDataFlow.swift │ │ ├── StatProvider.swift │ │ ├── StatStateModel.swift │ │ └── View │ │ │ ├── ChartsView.swift │ │ │ ├── StatRootView.swift │ │ │ ├── StatsView.swift │ │ │ └── autoISFTableView.swift │ ├── StatConfig │ │ ├── StatConfigDataFlow.swift │ │ ├── StatConfigProvider.swift │ │ ├── StatConfigStateModel.swift │ │ └── View │ │ │ └── StatConfigRootView.swift │ ├── TargetsEditor │ │ ├── TargetsEditorDataFlow.swift │ │ ├── TargetsEditorProvider.swift │ │ ├── TargetsEditorStateModel.swift │ │ └── View │ │ │ └── TargetsEditorRootView.swift │ └── WatchConfig │ │ ├── View │ │ └── WatchConfigRootView.swift │ │ ├── WatchConfigDataFlow.swift │ │ ├── WatchConfigProvider.swift │ │ └── WatchConfigStateModel.swift │ ├── Router │ ├── Router.swift │ └── Screen.swift │ ├── Services │ ├── Appearance │ │ └── AppearanceManager.swift │ ├── Bluetooth │ │ └── BluetoothStateManager.swift │ ├── Calendar │ │ └── CalendarManager.swift │ ├── ContactTrick │ │ ├── ContactPicture.swift │ │ ├── ContactTrickManager.swift │ │ └── ContactTrickState.swift │ ├── HealthKit │ │ └── HealthKitManager.swift │ ├── LiveActivity │ │ ├── LiveActitiyShared.swift │ │ └── LiveActivityBridge.swift │ ├── Network │ │ ├── HTTPResponseStatus.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── NetworkService.swift │ │ ├── NightscoutAPI.swift │ │ ├── NightscoutManager.swift │ │ └── ReachabilityManager.swift │ ├── Notifications │ │ ├── Broadcaster.swift │ │ ├── NotificationCenter.swift │ │ └── SwiftNotificationCenter │ │ │ ├── SwiftNotificationCenter.swift │ │ │ └── WeakObjectSet.swift │ ├── SettingsManager │ │ └── SettingsManager.swift │ ├── Storage │ │ ├── Cache │ │ │ ├── Cache.swift │ │ │ └── UserDefaults+Cache.swift │ │ ├── Disk │ │ │ ├── Disk+Codable.swift │ │ │ ├── Disk+Data.swift │ │ │ ├── Disk+Errors.swift │ │ │ ├── Disk+Helpers.swift │ │ │ ├── Disk+InternalHelpers.swift │ │ │ ├── Disk+UIImage.swift │ │ │ ├── Disk+VolumeInformation.swift │ │ │ ├── Disk+[Data].swift │ │ │ ├── Disk+[UIImage].swift │ │ │ └── Disk.swift │ │ ├── FileStorage.swift │ │ ├── KeyValueStorage.swift │ │ └── Keychain │ │ │ ├── BaseKeychain.swift │ │ │ ├── Keychain.swift │ │ │ └── KeychainItemAccessibility.swift │ ├── UnlockManager │ │ └── UnlockManager.swift │ ├── UserNotifiactions │ │ └── UserNotificationsManager.swift │ └── WatchManager │ │ ├── GarminManager.swift │ │ └── WatchManager.swift │ ├── Shortcuts │ ├── AppShortcuts.swift │ ├── BaseIntentsRequest.swift │ ├── Bolus │ │ └── BolusShortcut.swift │ ├── Carbs │ │ ├── AddCarbsPresetIntent.swift │ │ ├── CarbPresetIntentRequest.swift │ │ ├── ListCarbsPresetIntent.swift │ │ └── carbPresetResult.swift │ ├── Overrides │ │ └── OverrideShortcuts.swift │ ├── State │ │ ├── ListStateIntent.swift │ │ ├── ListStateView.swift │ │ └── StateIntentRequest.swift │ └── TempPresets │ │ ├── ApplyTempPresetIntent.swift │ │ ├── CancelTempPresetIntent.swift │ │ ├── CreateAndApplyTempTarget.swift │ │ ├── ListTempPresetsIntent.swift │ │ ├── TempPresetsIntentRequest.swift │ │ ├── UnitIntent.swift │ │ └── tempPresetEntity.swift │ └── Views │ ├── BolusProgressViewStyle.swift │ ├── DecimalTextField.swift │ ├── DescriptionView.swift │ ├── Popup.swift │ ├── TagCloudView.swift │ ├── View+Snapshot.swift │ └── ViewModifiers.swift ├── FreeAPSTests ├── FileStorageTests.swift └── Info.plist ├── FreeAPSWatch WatchKit Extension ├── Assets.xcassets │ ├── Complication.complicationset │ │ ├── Circular.imageset │ │ │ ├── Contents.json │ │ │ └── iaps_watch_36-1.png │ │ ├── Contents.json │ │ ├── Extra Large.imageset │ │ │ ├── Contents.json │ │ │ └── iaps_watch_203-1.png │ │ ├── Graphic Bezel.imageset │ │ │ ├── Contents.json │ │ │ └── iaps_watch_84-1.png │ │ ├── Graphic Circular.imageset │ │ │ ├── Contents.json │ │ │ └── iaps_watch_84-1.png │ │ ├── Graphic Corner.imageset │ │ │ ├── Contents.json │ │ │ └── iaps_watch_40-1.png │ │ ├── Graphic Extra Large.imageset │ │ │ ├── Contents.json │ │ │ └── iaps_watch_240-1.png │ │ ├── Graphic Large Rectangular.imageset │ │ │ └── Contents.json │ │ ├── Modular.imageset │ │ │ ├── Contents.json │ │ │ └── iaps_watch_58.png │ │ └── Utilitarian.imageset │ │ │ ├── Contents.json │ │ │ └── iaps_watch_44.png │ └── Contents.json ├── ComplicationController.swift ├── DataFlow.swift ├── FreeAPSApp.swift ├── FreeAPSWatch WatchKit Extension.entitlements ├── Info.plist ├── NotificationController.swift ├── NotificationView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── PushNotificationPayload.apns ├── Views │ ├── BolusConfirmationView.swift │ ├── BolusView.swift │ ├── CarbsView.swift │ ├── ConfirmationView.swift │ ├── MainView.swift │ ├── OverridesView.swift │ └── TempTargetsView.swift └── WatchStateModel.swift ├── FreeAPSWatch ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── FreeAPSWatch.entitlements └── Info.plist ├── Garmin_DataField.png ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── LiveActivity ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── WidgetBackground.colorset │ │ └── Contents.json ├── Info.plist ├── LiveActivity.swift ├── LiveActivityBundle.swift └── WidgetBobble.swift ├── ProfileSwitching ├── createProfile.py ├── readme.md ├── settings │ ├── autosense.json │ ├── basal_profile.json │ ├── bg_targets.json │ ├── carb_ratios.json │ ├── insulin_sensitivities.json │ ├── profile.json │ ├── pumpprofile.json │ ├── settings.json │ └── temptargets.json └── settings20 │ ├── autosense.json │ ├── basal_profile.json │ ├── bg_targets.json │ ├── carb_ratios.json │ ├── insulin_sensitivities.json │ ├── profile.json │ ├── pumpprofile.json │ ├── settings.json │ └── temptargets.json ├── README.md ├── Rambafile ├── Templates └── unit │ ├── Code │ ├── DataFlow.swift.liquid │ ├── Provider.swift.liquid │ ├── StateModel.swift.liquid │ └── View │ │ └── RootView.swift.liquid │ └── unit.rambaspec ├── crowdin.yml ├── fastlane ├── Fastfile ├── Matchfile └── testflight.md ├── iAPS_AppleWatch_01.png ├── iAPS_AppleWatch_02.png ├── iAPS_iPhone_01.png ├── iAPS_iPhone_02.png ├── iAPS_iPhone_03.png ├── iAPS_iPhone_04.png ├── iAPS_iPhone_05.png ├── iAPS_iPhone_06.png ├── oref0_source_version.txt └── scripts ├── swiftformat.sh └── webpack.config.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/add_identifiers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/.github/workflows/add_identifiers.yml -------------------------------------------------------------------------------- /.github/workflows/build_iAPS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/.github/workflows/build_iAPS.yml -------------------------------------------------------------------------------- /.github/workflows/create_certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/.github/workflows/create_certs.yml -------------------------------------------------------------------------------- /.github/workflows/empty_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/.github/workflows/empty_commit.yaml -------------------------------------------------------------------------------- /.github/workflows/validate_secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/.github/workflows/validate_secrets.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildTools/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/BuildTools/Package.resolved -------------------------------------------------------------------------------- /BuildTools/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/BuildTools/Package.swift -------------------------------------------------------------------------------- /BuildTools/main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Config.xcconfig -------------------------------------------------------------------------------- /Core_Data.xcdatamodeld/Core_Data.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Core_Data.xcdatamodeld/Core_Data.xcdatamodel/contents -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/.gitignore -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/.travis.yml -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit Example/Info.plist -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit Example/he.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit Example/tr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/AESCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/AESCrypt.h -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/AESCrypt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/AESCrypt.m -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/BluetoothManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/BluetoothManager.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/BluetoothServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/BluetoothServices.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/CBPeripheral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/CBPeripheral.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/CGMBLEKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/CGMBLEKit.h -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/Calibration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/Calibration.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/CalibrationState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/CalibrationState.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/Command.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/Glucose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/Glucose.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/Info.plist -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/NSData+CRC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/NSData+CRC.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/OSLog.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/Opcode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/Opcode.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/PeripheralManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/PeripheralManager.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/Transmitter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/Transmitter.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/TransmitterManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/TransmitterManager.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKit/TransmitterStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKit/TransmitterStatus.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKitG5Plugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKitG5Plugin/Info.plist -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKitG6Plugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKitG6Plugin/Info.plist -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKitTests/GlucoseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKitTests/GlucoseTests.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKitTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKitUI/CGMBLEKitUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKitUI/CGMBLEKitUI.h -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKitUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKitUI/Info.plist -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CGMBLEKitUI/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CGMBLEKitUI/UIColor.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/Common/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/Common/Data.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/Common/HKUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/Common/HKUnit.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/Common/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/Common/LocalizedString.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/Common/Locked.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/Common/Locked.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/Common/TimeInterval.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/Common/TimeInterval.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/LICENSE -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/Pod/CGMBLEKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/Pod/CGMBLEKit.h -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/README.md -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/ResetTransmitter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/ResetTransmitter/AppDelegate.swift -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/ResetTransmitter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/CGMBLEKit/ResetTransmitter/Info.plist -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/ResetTransmitter/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* Title of button to cancel reset */ 2 | "Cancel" = "إلغاء"; 3 | 4 | -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/ResetTransmitter/he.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/ResetTransmitter/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* Title of button to cancel reset */ 2 | "Cancel" = "निरस्त"; 3 | 4 | -------------------------------------------------------------------------------- /Dependencies/CGMBLEKit/ResetTransmitter/tr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/ConnectIQ 2.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/ConnectIQ 2.xcframework/Info.plist -------------------------------------------------------------------------------- /Dependencies/DanaKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/.gitignore -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/BackgroundTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/BackgroundTask.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/Bundle.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/Data.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/DoseEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/DoseEntry.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/IdentifiableClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/IdentifiableClass.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/LocalizedString.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/NavigationLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/NavigationLink.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/NewPumpEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/NewPumpEvent.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/NibLoadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/NibLoadable.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/NotificationHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/NotificationHelper.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/NumberFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/NumberFormatter.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/OSLog.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/PumpAlarmType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/PumpAlarmType.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/TimeInterval.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/TimeInterval.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/Common/UnfinalizedDose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/Common/UnfinalizedDose.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/DanaKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/DanaKit.h -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/Encryption/Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/Encryption/Common.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/Encryption/Crc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/Encryption/Crc.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/Encryption/Decryption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/Encryption/Decryption.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/Encryption/Encrypt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/Encryption/Encrypt.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/Encryption/Lookup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/Encryption/Lookup.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/Info.plist -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/Packets/DanaBolusStart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/Packets/DanaBolusStart.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/Packets/DanaBolusStop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/Packets/DanaBolusStop.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/Packets/DanaHistoryAll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/Packets/DanaHistoryAll.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/Packets/DanaPacketBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/Packets/DanaPacketBase.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/Packets/DanaPacketType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/Packets/DanaPacketType.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKit/PumpManager/DanaKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKit/PumpManager/DanaKit.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKitTests/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKitTests/Constants.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKitTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKitUI/DanaKitHUDProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKitUI/DanaKitHUDProvider.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKitUI/Views/ContinueButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKitUI/Views/ContinueButton.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKitUI/Views/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKitUI/Views/Image.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKitUI/Views/ReservoirView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKitUI/Views/ReservoirView.swift -------------------------------------------------------------------------------- /Dependencies/DanaKit/DanaKitUI/blank.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/DanaKitUI/blank.wav -------------------------------------------------------------------------------- /Dependencies/DanaKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/LICENSE -------------------------------------------------------------------------------- /Dependencies/DanaKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/DanaKit/README.md -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/.gitignore -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/Common/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/Common/Data.swift -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/Common/HKUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/Common/HKUnit.swift -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/Common/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/Common/LocalizedString.swift -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/Common/Locked.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/Common/Locked.swift -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/Common/TimeInterval.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/Common/TimeInterval.swift -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/G7SensorKit/AlgorithmError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/G7SensorKit/AlgorithmError.swift -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/G7SensorKit/AlgorithmState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/G7SensorKit/AlgorithmState.swift -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/G7SensorKit/CBPeripheral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/G7SensorKit/CBPeripheral.swift -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/G7SensorKit/G7SensorKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/G7SensorKit/G7SensorKit.h -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/G7SensorKit/GlucoseLimits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/G7SensorKit/GlucoseLimits.swift -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/G7SensorKit/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/G7SensorKit/OSLog.swift -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/G7SensorKitUI/G7SensorKitUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/G7SensorKitUI/G7SensorKitUI.h -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/G7SensorKitUI/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/G7SensorKitUI/OSLog.swift -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/G7SensorPlugin/G7SensorPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/G7SensorPlugin/G7SensorPlugin.h -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/G7SensorPlugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/G7SensorPlugin/Info.plist -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/G7SensorPlugin/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/G7SensorPlugin/OSLog.swift -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/README.md -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/G7SensorKit/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/G7SensorKit/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/LibreTransmitter/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LibreTransmitter/Package.swift -------------------------------------------------------------------------------- /Dependencies/LibreTransmitter/README.md: -------------------------------------------------------------------------------- 1 | # LibreTransmitter 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Dependencies/LoopKit/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/.circleci/config.yml -------------------------------------------------------------------------------- /Dependencies/LoopKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/.gitignore -------------------------------------------------------------------------------- /Dependencies/LoopKit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/.travis.yml -------------------------------------------------------------------------------- /Dependencies/LoopKit/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dependencies/LoopKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LICENSE -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit Example/AppDelegate.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit Example/Info.plist -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit Example/da.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit Example/fi.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit Example/he.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit Example/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit Example/pt-BR.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit Example/ro.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit Example/sv.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit Example/tr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit Example/vi.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Alert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Alert.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/AnyCodableEquatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/AnyCodableEquatable.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/BasalRateSchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/BasalRateSchedule.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/BluetoothProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/BluetoothProvider.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/CarbKit/CarbEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/CarbKit/CarbEntry.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/CarbKit/CarbMath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/CarbKit/CarbMath.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/CarbKit/CarbStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/CarbKit/CarbStatus.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/CarbKit/CarbStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/CarbKit/CarbStore.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/CarbKit/CarbStoreError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/CarbKit/CarbStoreError.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/CarbKit/CarbValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/CarbKit/CarbValue.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/CarbKit/NSUserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/CarbKit/NSUserDefaults.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/CarbKit/NewCarbEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/CarbKit/NewCarbEntry.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/CarbKit/SyncCarbObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/CarbKit/SyncCarbObject.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/CarbRatioSchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/CarbRatioSchedule.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/CriticalEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/CriticalEventLog.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/DailyQuantitySchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/DailyQuantitySchedule.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/DailyValueSchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/DailyValueSchedule.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/DeliveryLimits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/DeliveryLimits.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/DosingDecisionStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/DosingDecisionStore.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/EGPSchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/EGPSchedule.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/ClosedRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/ClosedRange.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/Collection.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/Comparable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/Comparable.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/Data.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/Date.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/Double.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/Double.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/HKObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/HKObject.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/HKQuantity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/HKQuantity.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/HKUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/HKUnit.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/OSLog.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/Sequence.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/TimeZone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/TimeZone.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Extensions/UUID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Extensions/UUID.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/GlucoseChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/GlucoseChange.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/GlucoseEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/GlucoseEffect.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/GlucoseEffectVelocity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/GlucoseEffectVelocity.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/GlucoseKit/GlucoseMath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/GlucoseKit/GlucoseMath.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/GlucoseRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/GlucoseRange.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/GlucoseRangeSchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/GlucoseRangeSchedule.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/GlucoseSchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/GlucoseSchedule.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/GlucoseThreshold.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/GlucoseThreshold.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/GlucoseValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/GlucoseValue.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Guardrail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Guardrail.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/HealthKitSampleStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/HealthKitSampleStore.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/HealthStoreUnitCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/HealthStoreUnitCache.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Info.plist -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/InsulinKit/DoseEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/InsulinKit/DoseEntry.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/InsulinKit/DoseStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/InsulinKit/DoseStore.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/InsulinKit/DoseType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/InsulinKit/DoseType.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/InsulinKit/DoseUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/InsulinKit/DoseUnit.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/InsulinKit/InsulinMath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/InsulinKit/InsulinMath.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/InsulinKit/InsulinType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/InsulinKit/InsulinType.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/InsulinKit/Reservoir.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/InsulinKit/Reservoir.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/JSONStreamEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/JSONStreamEncoder.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/KeychainManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/KeychainManager.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/LocalizedString.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Locked.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Locked.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/LoopKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/LoopKit.h -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/LoopMath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/LoopMath.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/LoopPluginBundleKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/LoopPluginBundleKey.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/NotificationSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/NotificationSettings.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Prescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Prescription.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/QuantityFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/QuantityFormatter.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/SampleValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/SampleValue.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Service/LoggingService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Service/LoggingService.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/Service/Service.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/Service/Service.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/ServiceAuthentication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/ServiceAuthentication.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/SettingsStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/SettingsStore.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/StoredInsulinModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/StoredInsulinModel.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/SyncAlertObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/SyncAlertObject.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/TherapySetting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/TherapySetting.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/TherapySettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/TherapySettings.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/UnfairLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/UnfairLock.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/VersionUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/VersionUpdate.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/WeakSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/WeakSet.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKit/WeakSynchronizedSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKit/WeakSynchronizedSet.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/AlertTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/AlertTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/CarbMathTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/CarbMathTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/CarbStoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/CarbStoreTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/CarbValueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/CarbValueTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/CollectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/CollectionTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/DoseEntryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/DoseEntryTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/DoseProgressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/DoseProgressTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/DoseStoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/DoseStoreTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/Fixtures/basal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/Fixtures/basal.json -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/GlucoseMathTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/GlucoseMathTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/GlucoseRangeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/GlucoseRangeTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/GlucoseStoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/GlucoseStoreTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/GlucoseValueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/GlucoseValueTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/GuardrailTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/GuardrailTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/HKUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/HKUnitTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/InsulinMathTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/InsulinMathTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/LoopKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/LoopKitTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/LoopMathTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/LoopMathTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/NSDateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/NSDateTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/NewPumpEventTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/NewPumpEventTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/OutputStreamTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/OutputStreamTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/OverrideTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/OverrideTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitTests/ServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitTests/ServiceTests.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/CGMManagerUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/CGMManagerUI.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/ChartColorPalette.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/ChartColorPalette.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Charts/GlucoseChart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Charts/GlucoseChart.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/CompletionNotifying.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/CompletionNotifying.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/DeviceManagerUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/DeviceManagerUI.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/DeviceStatusBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/DeviceStatusBadge.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Extensions/Binding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Extensions/Binding.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Extensions/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Extensions/Color.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Extensions/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Extensions/Data.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Extensions/HKUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Extensions/HKUnit.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Extensions/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Extensions/Image.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Extensions/Keyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Extensions/Keyboard.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Extensions/Math.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Extensions/Math.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Extensions/TimeZone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Extensions/TimeZone.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Extensions/UIFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Extensions/UIFont.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Extensions/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Extensions/UIImage.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/HUDProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/HUDProvider.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Info.plist -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/LocalizedString.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/LoopKitUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/LoopKitUI.h -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/LoopUIColorPalette.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/LoopUIColorPalette.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/LoopUIPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/LoopUIPlugin.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/OnboardingUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/OnboardingUI.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/PumpManagerUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/PumpManagerUI.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/ServiceCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/ServiceCredential.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/ServiceUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/ServiceUI.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/SetupUIResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/SetupUIResult.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/StateColorPalette.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/StateColorPalette.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/SupportUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/SupportUI.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/UIAlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/UIAlertController.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/UIColor.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/ActionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/ActionButton.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/AlertContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/AlertContent.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/BaseHUDView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/BaseHUDView.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/CardList/Card.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/CardList/Card.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/CardList/Splat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/CardList/Splat.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/Deletable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/Deletable.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/DurationPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/DurationPicker.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/EmojiInputCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/EmojiInputCell.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/GuidePage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/GuidePage.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/LevelHUDView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/LevelHUDView.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/LevelMaskView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/LevelMaskView.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/PopoverLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/PopoverLink.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/ProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/ProgressView.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/QuantityPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/QuantityPicker.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/RoundedCorners.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/RoundedCorners.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/ScheduleEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/ScheduleEditor.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/SectionHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/SectionHeader.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/SetupButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/SetupButton.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/ThumbView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/ThumbView.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/VideoPlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/VideoPlayView.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/VideoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/VideoView.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/WarningView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/WarningView.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/Views/WebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/Views/WebView.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopKitUI/en.lproj/CarbKit.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopKitUI/en.lproj/CarbKit.strings -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopTestingKit/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopTestingKit/Data.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopTestingKit/HKUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopTestingKit/HKUnit.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopTestingKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopTestingKit/Info.plist -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopTestingKit/LoopTestingKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopTestingKit/LoopTestingKit.h -------------------------------------------------------------------------------- /Dependencies/LoopKit/LoopTestingKit/TestingScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/LoopTestingKit/TestingScenario.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/Extensions/Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/Extensions/Collection.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/Extensions/HKUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/Extensions/HKUnit.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/Extensions/TimeZone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/Extensions/TimeZone.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/Extensions/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/Extensions/UIImage.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/Info.plist -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/LocalizedString.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/MockCGMDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/MockCGMDataSource.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/MockCGMManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/MockCGMManager.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/MockGlucoseProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/MockGlucoseProvider.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/MockKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/MockKit.h -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/MockPumpManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/MockPumpManager.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/MockPumpManagerState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/MockPumpManagerState.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/MockService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/MockService.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/Resources/Sounds/sub.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/Resources/Sounds/sub.caf -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKit/UnfinalizedDose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKit/UnfinalizedDose.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKitTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKitUI/Extensions/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKitUI/Extensions/UIColor.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKitUI/Extensions/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKitUI/Extensions/UIImage.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKitUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKitUI/Info.plist -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKitUI/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKitUI/LocalizedString.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKitUI/MockCGMManager+UI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKitUI/MockCGMManager+UI.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKitUI/MockHUDProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKitUI/MockHUDProvider.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKitUI/MockKitUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKitUI/MockKitUI.h -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKitUI/MockPumpManager+UI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKitUI/MockPumpManager+UI.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKitUI/MockService+UI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKitUI/MockService+UI.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/MockKitUI/MockSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/MockKitUI/MockSupport.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/Package.resolved -------------------------------------------------------------------------------- /Dependencies/LoopKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/Package.swift -------------------------------------------------------------------------------- /Dependencies/LoopKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/LoopKit/README.md -------------------------------------------------------------------------------- /Dependencies/MKRingProgressView/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MKRingProgressView/.gitignore -------------------------------------------------------------------------------- /Dependencies/MKRingProgressView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MKRingProgressView/LICENSE -------------------------------------------------------------------------------- /Dependencies/MKRingProgressView/MKRingProgressView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MKRingProgressView/MKRingProgressView.png -------------------------------------------------------------------------------- /Dependencies/MKRingProgressView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MKRingProgressView/README.md -------------------------------------------------------------------------------- /Dependencies/MinimedKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/.gitignore -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKit/Extensions/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKit/Extensions/Data.swift -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKit/Extensions/Int.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKit/Extensions/Int.swift -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKit/Extensions/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKit/Extensions/OSLog.swift -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKit/Info.plist -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKit/LocalisedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKit/LocalisedString.swift -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKit/MinimedKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKit/MinimedKit.h -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKit/Models/PumpColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKit/Models/PumpColor.swift -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKit/Models/PumpModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKit/Models/PumpModel.swift -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKit/Radio/CRC8.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKit/Radio/CRC8.swift -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKitPlugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKitPlugin/Info.plist -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKitTests/CRC16Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKitTests/CRC16Tests.swift -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKitTests/CRC8Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKitTests/CRC8Tests.swift -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKitTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKitTests/NSDataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKitTests/NSDataTests.swift -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKitUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKitUI/Info.plist -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKitUI/MinimedKitUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKitUI/MinimedKitUI.h -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKitUI/PumpModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKitUI/PumpModel.swift -------------------------------------------------------------------------------- /Dependencies/MinimedKit/MinimedKitUI/Views/TimeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/MinimedKitUI/Views/TimeView.swift -------------------------------------------------------------------------------- /Dependencies/MinimedKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/MinimedKit/README.md -------------------------------------------------------------------------------- /Dependencies/OmniBLE/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/.gitignore -------------------------------------------------------------------------------- /Dependencies/OmniBLE/Common/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/Common/Data.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/Common/FrameworkLocalText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/Common/FrameworkLocalText.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/Common/HKUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/Common/HKUnit.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/Common/IdentifiableClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/Common/IdentifiableClass.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/Common/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/Common/Image.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/Common/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/Common/LocalizedString.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/Common/NibLoadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/Common/NibLoadable.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/Common/NumberFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/Common/NumberFormatter.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/Common/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/Common/OSLog.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/Common/TimeInterval.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/Common/TimeInterval.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/Common/TimeZone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/Common/TimeZone.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/Common/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/Common/UIColor.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/LICENSE -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/Bluetooth/CBPeripheral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/Bluetooth/CBPeripheral.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/Bluetooth/Id.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/Bluetooth/Id.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/Bluetooth/Ids.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/Bluetooth/Ids.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/Info.plist -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/OmniBLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/OmniBLE.h -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/OmnipodCommon/BeepType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/OmnipodCommon/BeepType.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/OmnipodCommon/CRC16.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/OmnipodCommon/CRC16.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/OmnipodCommon/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/OmnipodCommon/Message.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/OmnipodCommon/Pod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/OmnipodCommon/Pod.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/PumpManager/OmniBLE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/PumpManager/OmniBLE.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/PumpManager/PodComms.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/PumpManager/PodComms.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/PumpManager/PodState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/PumpManager/PodState.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLE/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLE/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLEPlugin/Extensions/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLEPlugin/Extensions/OSLog.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLEPlugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLEPlugin/Info.plist -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLEPlugin/OmniBLEPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLEPlugin/OmniBLEPlugin.h -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLEPlugin/OmniBLEPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLEPlugin/OmniBLEPlugin.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLETests/BolusTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLETests/BolusTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLETests/CRC16Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLETests/CRC16Tests.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLETests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLETests/Info.plist -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLETests/MessageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLETests/MessageTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLETests/OmniBLETests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLETests/OmniBLETests.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLETests/PodInfoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLETests/PodInfoTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLETests/PodStateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLETests/PodStateTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLETests/StatusTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLETests/StatusTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLETests/TempBasalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLETests/TempBasalTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/OmniBLETests/TestUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/OmniBLETests/TestUtilities.swift -------------------------------------------------------------------------------- /Dependencies/OmniBLE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniBLE/README.md -------------------------------------------------------------------------------- /Dependencies/OmniKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/.gitignore -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/Extensions/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/Extensions/Data.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/Extensions/HKUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/Extensions/HKUnit.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/Extensions/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/Extensions/OSLog.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/Extensions/TimeZone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/Extensions/TimeZone.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/Info.plist -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/LocalizedString.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/MessageTransport/CRC8.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/MessageTransport/CRC8.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/OmniKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/OmniKit.h -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/OmnipodCommon/BeepType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/OmnipodCommon/BeepType.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/OmnipodCommon/CRC16.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/OmnipodCommon/CRC16.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/OmnipodCommon/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/OmnipodCommon/Message.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/OmnipodCommon/Pod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/OmnipodCommon/Pod.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/PumpManager/PodComms.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/PumpManager/PodComms.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKit/PumpManager/PodState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKit/PumpManager/PodState.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitPacketParser/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitPacketParser/main.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitPlugin/Extensions/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitPlugin/Extensions/OSLog.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitPlugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitPlugin/Info.plist -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitPlugin/OmniKitPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitPlugin/OmniKitPlugin.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitTests/BolusTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitTests/BolusTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitTests/CRC16Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitTests/CRC16Tests.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitTests/CRC8Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitTests/CRC8Tests.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitTests/MessageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitTests/MessageTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitTests/OmniKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitTests/OmniKitTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitTests/PacketTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitTests/PacketTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitTests/PodInfoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitTests/PodInfoTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitTests/PodStateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitTests/PodStateTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitTests/StatusTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitTests/StatusTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitTests/TempBasalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitTests/TempBasalTests.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Extensions/HKUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Extensions/HKUnit.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Extensions/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Extensions/Image.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Extensions/TimeZone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Extensions/TimeZone.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Info.plist -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/LocalizedString.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/OmniKitUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/OmniKitUI.h -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Views/ActivityView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Views/ActivityView.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Views/AttachPodView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Views/AttachPodView.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Views/BasalStateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Views/BasalStateView.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Views/FirstAppear.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Views/FirstAppear.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Views/PairPodView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Views/PairPodView.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Views/PodDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Views/PodDetailsView.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Views/PodDiagnostics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Views/PodDiagnostics.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Views/PodLifeHUDView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Views/PodLifeHUDView.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Views/PodSetupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Views/PodSetupView.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/OmniKitUI/Views/TimeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/OmniKitUI/Views/TimeView.swift -------------------------------------------------------------------------------- /Dependencies/OmniKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/OmniKit/README.md -------------------------------------------------------------------------------- /Dependencies/dexcom-share-client-swift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/dexcom-share-client-swift/.gitignore -------------------------------------------------------------------------------- /Dependencies/dexcom-share-client-swift/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/dexcom-share-client-swift/.travis.yml -------------------------------------------------------------------------------- /Dependencies/dexcom-share-client-swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/dexcom-share-client-swift/LICENSE -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/.gitignore -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/.travis.yml -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Common/CaseCountable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Common/CaseCountable.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Common/Comparable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Common/Comparable.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Common/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Common/Data.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Common/HKUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Common/HKUnit.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Common/IdentifiableClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Common/IdentifiableClass.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Common/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Common/LocalizedString.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Common/NibLoadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Common/NibLoadable.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Common/NumberFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Common/NumberFormatter.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Common/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Common/OSLog.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Common/TimeInterval.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Common/TimeInterval.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Common/TimeZone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Common/TimeZone.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Common/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Common/UIColor.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/Images/rileylink_ios_setup.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/Images/rileylink_ios_setup.PNG -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/LICENSE -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/README.md -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/RileyLink/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/RileyLink/AppDelegate.swift -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/RileyLink/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/RileyLink/Config.h -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/RileyLink/Config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/RileyLink/Config.m -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/RileyLink/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/RileyLink/Log.h -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/RileyLink/Log.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/RileyLink/Log.m -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/RileyLinkBLEKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/RileyLinkBLEKit/Info.plist -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/RileyLinkKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/RileyLinkKit/Info.plist -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/RileyLinkKit/RileyLinkKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/RileyLinkKit/RileyLinkKit.h -------------------------------------------------------------------------------- /Dependencies/rileylink_ios/RileyLinkKitUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Dependencies/rileylink_ios/RileyLinkKitUI/Info.plist -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FAQ.md -------------------------------------------------------------------------------- /FAQ_RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FAQ_RU.md -------------------------------------------------------------------------------- /FreeAPS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FreeAPS.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FreeAPS/Resources/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /FreeAPS/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FreeAPS/Resources/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/Assets.xcassets/icons/Contents.json -------------------------------------------------------------------------------- /FreeAPS/Resources/FreeAPS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/FreeAPS.entitlements -------------------------------------------------------------------------------- /FreeAPS/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/Info.plist -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/bundle/autosens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/bundle/autosens.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/bundle/autotune-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/bundle/autotune-core.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/bundle/autotune-prep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/bundle/autotune-prep.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/bundle/basal-set-temp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/bundle/basal-set-temp.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/bundle/determine-basal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/bundle/determine-basal.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/bundle/iob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/bundle/iob.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/bundle/meal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/bundle/meal.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/bundle/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/bundle/profile.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/prepare/autosens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/prepare/autosens.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/prepare/autotune-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/prepare/autotune-core.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/prepare/autotune-prep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/prepare/autotune-prep.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/prepare/iob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/prepare/iob.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/prepare/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/prepare/log.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/prepare/meal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/prepare/meal.js -------------------------------------------------------------------------------- /FreeAPS/Resources/javascript/prepare/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/javascript/prepare/profile.js -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/announcements.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/freeaps/announcements_enacted.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/freeaps/temptargets_presets.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/monitor/carbhistory.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/monitor/glucose.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/monitor/loopStats.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/monitor/pumphistory-24h-zoned.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/monitor/reservoir.json: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/monitor/statistics.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/monitor/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/json/defaults/monitor/status.json -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/monitor/tdd_averages.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/nightscout/not-uploaded-overrides.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/nightscout/uploaded-carbs.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/nightscout/uploaded-pumphistory.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/nightscout/uploaded-temptargets.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/preferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/json/defaults/preferences.json -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/settings/autosense.json: -------------------------------------------------------------------------------- 1 | { 2 | "ratio": 1 3 | } -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/settings/contact_trick.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/settings/model.json: -------------------------------------------------------------------------------- 1 | "722" 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/settings/profile.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/settings/pumpprofile.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/settings/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Resources/json/defaults/settings/settings.json -------------------------------------------------------------------------------- /FreeAPS/Resources/json/defaults/settings/temptargets.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/APSManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/APSManager.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/CGM/AppGroupSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/CGM/AppGroupSource.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/CGM/BluetoothTransmitter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/CGM/BluetoothTransmitter.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/CGM/CGMType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/CGM/CGMType.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/CGM/DexcomSourceG5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/CGM/DexcomSourceG5.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/CGM/DexcomSourceG6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/CGM/DexcomSourceG6.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/CGM/GlucoseSimulatorSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/CGM/GlucoseSimulatorSource.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/CGM/GlucoseSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/CGM/GlucoseSource.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/CGM/HeartBeatManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/CGM/HeartBeatManager.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/CGM/LibreTransmitterSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/CGM/LibreTransmitterSource.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/CGM/dexcomSourceG7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/CGM/dexcomSourceG7.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/DeviceDataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/DeviceDataManager.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/FetchAnnouncementsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/FetchAnnouncementsManager.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/FetchGlucoseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/FetchGlucoseManager.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/FetchTreatmentsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/FetchTreatmentsManager.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/OpenAPS/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/OpenAPS/Constants.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/OpenAPS/JavaScriptWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/OpenAPS/JavaScriptWorker.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/OpenAPS/OpenAPS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/OpenAPS/OpenAPS.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/OpenAPS/Script.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/OpenAPS/Script.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/Storage/AlertStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/Storage/AlertStorage.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/Storage/AnnouncementsStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/Storage/AnnouncementsStorage.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/Storage/CarbsStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/Storage/CarbsStorage.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/Storage/CoreDataStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/Storage/CoreDataStorage.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/Storage/GlucoseStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/Storage/GlucoseStorage.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/Storage/OverrideStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/Storage/OverrideStorage.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/Storage/PumpHistoryStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/Storage/PumpHistoryStorage.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/APS/Storage/TempTargetsStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/APS/Storage/TempTargetsStorage.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/AnimatedBackground/SnowScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/AnimatedBackground/SnowScene.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/AnimatedBackground/snow.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/AnimatedBackground/snow.sks -------------------------------------------------------------------------------- /FreeAPS/Sources/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Application/AppDelegate.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Application/FreeAPSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Application/FreeAPSApp.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Assemblies/APSAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Assemblies/APSAssembly.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Assemblies/NetworkAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Assemblies/NetworkAssembly.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Assemblies/SecurityAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Assemblies/SecurityAssembly.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Assemblies/ServiceAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Assemblies/ServiceAssembly.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Assemblies/StorageAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Assemblies/StorageAssembly.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Assemblies/UIAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Assemblies/UIAssembly.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Config/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Config/Config.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/Array+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/Array+Extension.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/BulletList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/BulletList.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/Bundle+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/Bundle+Extensions.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/Color+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/Color+Extensions.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/ConcurrentMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/ConcurrentMap.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/ConvenienceExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/ConvenienceExtensions.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/CoreDataStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/CoreDataStack.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/CustomDateTimePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/CustomDateTimePicker.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/Decimal+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/Decimal+Extensions.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/DispatchTimer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/DispatchTimer.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/Formatters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/Formatters.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/HKUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/HKUnit.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/IndexedCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/IndexedCollection.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/Interpolation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/Interpolation.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/JSON.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/LRUCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/LRUCache.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/MD5.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/NSLocking+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/NSLocking+Extensions.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/ProgressBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/ProgressBar.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/Publisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/Publisher.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/SavitzkyGolayFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/SavitzkyGolayFilter.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/String+Extensions.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/UIColor.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Helpers/UIDevice+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Helpers/UIDevice+Extensions.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Logger/Error+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Logger/Error+Extensions.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Logger/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Logger/Logger.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Logger/Signpost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Logger/Signpost.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/AlertEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/AlertEntry.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Announcement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Announcement.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Autosens.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Autosens.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Autotune.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Autotune.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/BGTargets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/BGTargets.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/BasalProfileEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/BasalProfileEntry.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Battery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Battery.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/BloodGlucose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/BloodGlucose.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/CarbRatios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/CarbRatios.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/CarbsEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/CarbsEntry.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Charts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Charts.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Configs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Configs.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/ContactTrickEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/ContactTrickEntry.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Credentials.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | struct Credentials: Codable { 4 | var id = UUID() 5 | } 6 | -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/FetchedProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/FetchedProfile.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/FontTracking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/FontTracking.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/FontWeight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/FontWeight.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/FreeAPSSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/FreeAPSSettings.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Glucose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Glucose.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/HealthKitSample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/HealthKitSample.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/HistoryLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/HistoryLayout.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/IOBEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/IOBEntry.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Icons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Icons.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/InsulinSensitivities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/InsulinSensitivities.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/LockScreenView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/LockScreenView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/LoopStats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/LoopStats.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Loops.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Loops.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/NIghtscoutExercise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/NIghtscoutExercise.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/NightscoutPreferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/NightscoutPreferences.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/NightscoutSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/NightscoutSettings.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/NightscoutStatistics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/NightscoutStatistics.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/NightscoutStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/NightscoutStatus.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/NightscoutTreatment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/NightscoutTreatment.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Oref2_variables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Oref2_variables.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Preferences.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/PumpHistoryEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/PumpHistoryEvent.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/PumpSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/PumpSettings.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/PumpStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/PumpStatus.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/RawFetchedProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/RawFetchedProfile.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Reservoir.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Reservoir.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Statistics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Statistics.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Suggestion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Suggestion.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/TempBasal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/TempBasal.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/TempTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/TempTarget.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/Threshold.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Models/Threshold.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Models/User.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | struct User: Codable { 4 | var id: UUID 5 | } 6 | -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/B30/B30ConfDataFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/B30/B30ConfDataFlow.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/B30/B30ConfProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/B30/B30ConfProvider.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/B30/B30ConfStateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/B30/B30ConfStateModel.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/B30/View/B30ConfRootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/B30/View/B30ConfRootView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Base/BaseProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Base/BaseProvider.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Base/BaseStateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Base/BaseStateModel.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Base/BaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Base/BaseView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Bolus/BolusDataFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Bolus/BolusDataFlow.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Bolus/BolusProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Bolus/BolusProvider.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Bolus/BolusStateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Bolus/BolusStateModel.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Bolus/View/BolusRootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Bolus/View/BolusRootView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Bolus/View/Predictions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Bolus/View/Predictions.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/CGM/CGMDataFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/CGM/CGMDataFlow.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/CGM/CGMProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/CGM/CGMProvider.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/CGM/CGMStateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/CGM/CGMStateModel.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/CGM/View/CGMRootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/CGM/View/CGMRootView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/CGM/View/CGMSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/CGM/View/CGMSettingsView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/CGM/View/CGMSetupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/CGM/View/CGMSetupView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Dynamic/DynamicDataFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Dynamic/DynamicDataFlow.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Dynamic/DynamicProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Dynamic/DynamicProvider.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Home/HomeDataFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Home/HomeDataFlow.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Home/HomeProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Home/HomeProvider.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Home/HomeStateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Home/HomeStateModel.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Home/View/HomeRootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Home/View/HomeRootView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Main/MainDataFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Main/MainDataFlow.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Main/MainProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Main/MainProvider.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Main/MainStateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Main/MainStateModel.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Main/View/MainRootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Main/View/MainRootView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Snooze/SnoozeDataFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Snooze/SnoozeDataFlow.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Snooze/SnoozeProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Snooze/SnoozeProvider.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Snooze/SnoozeStateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Snooze/SnoozeStateModel.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Stat/StatDataFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Stat/StatDataFlow.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Stat/StatProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Stat/StatProvider.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Stat/StatStateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Stat/StatStateModel.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Stat/View/ChartsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Stat/View/ChartsView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Stat/View/StatRootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Stat/View/StatRootView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Modules/Stat/View/StatsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Modules/Stat/View/StatsView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Router/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Router/Router.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Router/Screen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Router/Screen.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Services/Network/NetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Services/Network/NetworkService.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Services/Network/NightscoutAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Services/Network/NightscoutAPI.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Services/Storage/Cache/Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Services/Storage/Cache/Cache.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Services/Storage/Disk/Disk+Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Services/Storage/Disk/Disk+Data.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Services/Storage/Disk/Disk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Services/Storage/Disk/Disk.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Services/Storage/FileStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Services/Storage/FileStorage.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Services/Storage/KeyValueStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Services/Storage/KeyValueStorage.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Shortcuts/AppShortcuts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Shortcuts/AppShortcuts.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Shortcuts/BaseIntentsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Shortcuts/BaseIntentsRequest.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Shortcuts/Bolus/BolusShortcut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Shortcuts/Bolus/BolusShortcut.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Shortcuts/Carbs/carbPresetResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Shortcuts/Carbs/carbPresetResult.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Shortcuts/State/ListStateIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Shortcuts/State/ListStateIntent.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Shortcuts/State/ListStateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Shortcuts/State/ListStateView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Shortcuts/TempPresets/UnitIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Shortcuts/TempPresets/UnitIntent.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Views/BolusProgressViewStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Views/BolusProgressViewStyle.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Views/DecimalTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Views/DecimalTextField.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Views/DescriptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Views/DescriptionView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Views/Popup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Views/Popup.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Views/TagCloudView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Views/TagCloudView.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Views/View+Snapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Views/View+Snapshot.swift -------------------------------------------------------------------------------- /FreeAPS/Sources/Views/ViewModifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPS/Sources/Views/ViewModifiers.swift -------------------------------------------------------------------------------- /FreeAPSTests/FileStorageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSTests/FileStorageTests.swift -------------------------------------------------------------------------------- /FreeAPSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSTests/Info.plist -------------------------------------------------------------------------------- /FreeAPSWatch WatchKit Extension/DataFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSWatch WatchKit Extension/DataFlow.swift -------------------------------------------------------------------------------- /FreeAPSWatch WatchKit Extension/FreeAPSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSWatch WatchKit Extension/FreeAPSApp.swift -------------------------------------------------------------------------------- /FreeAPSWatch WatchKit Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSWatch WatchKit Extension/Info.plist -------------------------------------------------------------------------------- /FreeAPSWatch WatchKit Extension/NotificationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSWatch WatchKit Extension/NotificationView.swift -------------------------------------------------------------------------------- /FreeAPSWatch WatchKit Extension/Views/BolusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSWatch WatchKit Extension/Views/BolusView.swift -------------------------------------------------------------------------------- /FreeAPSWatch WatchKit Extension/Views/CarbsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSWatch WatchKit Extension/Views/CarbsView.swift -------------------------------------------------------------------------------- /FreeAPSWatch WatchKit Extension/Views/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSWatch WatchKit Extension/Views/MainView.swift -------------------------------------------------------------------------------- /FreeAPSWatch WatchKit Extension/WatchStateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSWatch WatchKit Extension/WatchStateModel.swift -------------------------------------------------------------------------------- /FreeAPSWatch/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSWatch/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FreeAPSWatch/FreeAPSWatch.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSWatch/FreeAPSWatch.entitlements -------------------------------------------------------------------------------- /FreeAPSWatch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/FreeAPSWatch/Info.plist -------------------------------------------------------------------------------- /Garmin_DataField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Garmin_DataField.png -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LiveActivity/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/LiveActivity/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LiveActivity/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/LiveActivity/Info.plist -------------------------------------------------------------------------------- /LiveActivity/LiveActivity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/LiveActivity/LiveActivity.swift -------------------------------------------------------------------------------- /LiveActivity/LiveActivityBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/LiveActivity/LiveActivityBundle.swift -------------------------------------------------------------------------------- /LiveActivity/WidgetBobble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/LiveActivity/WidgetBobble.swift -------------------------------------------------------------------------------- /ProfileSwitching/createProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/createProfile.py -------------------------------------------------------------------------------- /ProfileSwitching/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/readme.md -------------------------------------------------------------------------------- /ProfileSwitching/settings/autosense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings/autosense.json -------------------------------------------------------------------------------- /ProfileSwitching/settings/basal_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings/basal_profile.json -------------------------------------------------------------------------------- /ProfileSwitching/settings/bg_targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings/bg_targets.json -------------------------------------------------------------------------------- /ProfileSwitching/settings/carb_ratios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings/carb_ratios.json -------------------------------------------------------------------------------- /ProfileSwitching/settings/insulin_sensitivities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings/insulin_sensitivities.json -------------------------------------------------------------------------------- /ProfileSwitching/settings/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings/profile.json -------------------------------------------------------------------------------- /ProfileSwitching/settings/pumpprofile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings/pumpprofile.json -------------------------------------------------------------------------------- /ProfileSwitching/settings/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings/settings.json -------------------------------------------------------------------------------- /ProfileSwitching/settings/temptargets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings/temptargets.json -------------------------------------------------------------------------------- /ProfileSwitching/settings20/autosense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings20/autosense.json -------------------------------------------------------------------------------- /ProfileSwitching/settings20/basal_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings20/basal_profile.json -------------------------------------------------------------------------------- /ProfileSwitching/settings20/bg_targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings20/bg_targets.json -------------------------------------------------------------------------------- /ProfileSwitching/settings20/carb_ratios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings20/carb_ratios.json -------------------------------------------------------------------------------- /ProfileSwitching/settings20/insulin_sensitivities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings20/insulin_sensitivities.json -------------------------------------------------------------------------------- /ProfileSwitching/settings20/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings20/profile.json -------------------------------------------------------------------------------- /ProfileSwitching/settings20/pumpprofile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings20/pumpprofile.json -------------------------------------------------------------------------------- /ProfileSwitching/settings20/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings20/settings.json -------------------------------------------------------------------------------- /ProfileSwitching/settings20/temptargets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/ProfileSwitching/settings20/temptargets.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/README.md -------------------------------------------------------------------------------- /Rambafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Rambafile -------------------------------------------------------------------------------- /Templates/unit/Code/DataFlow.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Templates/unit/Code/DataFlow.swift.liquid -------------------------------------------------------------------------------- /Templates/unit/Code/Provider.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Templates/unit/Code/Provider.swift.liquid -------------------------------------------------------------------------------- /Templates/unit/Code/StateModel.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Templates/unit/Code/StateModel.swift.liquid -------------------------------------------------------------------------------- /Templates/unit/Code/View/RootView.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Templates/unit/Code/View/RootView.swift.liquid -------------------------------------------------------------------------------- /Templates/unit/unit.rambaspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/Templates/unit/unit.rambaspec -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/crowdin.yml -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /fastlane/testflight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/fastlane/testflight.md -------------------------------------------------------------------------------- /iAPS_AppleWatch_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/iAPS_AppleWatch_01.png -------------------------------------------------------------------------------- /iAPS_AppleWatch_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/iAPS_AppleWatch_02.png -------------------------------------------------------------------------------- /iAPS_iPhone_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/iAPS_iPhone_01.png -------------------------------------------------------------------------------- /iAPS_iPhone_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/iAPS_iPhone_02.png -------------------------------------------------------------------------------- /iAPS_iPhone_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/iAPS_iPhone_03.png -------------------------------------------------------------------------------- /iAPS_iPhone_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/iAPS_iPhone_04.png -------------------------------------------------------------------------------- /iAPS_iPhone_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/iAPS_iPhone_05.png -------------------------------------------------------------------------------- /iAPS_iPhone_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/iAPS_iPhone_06.png -------------------------------------------------------------------------------- /oref0_source_version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/oref0_source_version.txt -------------------------------------------------------------------------------- /scripts/swiftformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/scripts/swiftformat.sh -------------------------------------------------------------------------------- /scripts/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountrcg/iAPS/HEAD/scripts/webpack.config.js --------------------------------------------------------------------------------