From 5b3e12ad52ba161fb1ebd34b8e278e0202513102 Mon Sep 17 00:00:00 2001 From: Andreas <55641247+2020Nonprofit@users.noreply.github.com> Date: Thu, 26 Mar 2020 00:00:34 -0400 Subject: [PATCH] Add files via upload --- TrackIT2/Podfile | 35 + TrackIT2/Podfile.lock | 307 +++++++ TrackIT2/TrackIT.xcodeproj/project.pbxproj | 843 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../UserInterfaceState.xcuserstate | Bin 0 -> 11417 bytes .../xcschemes/xcschememanagement.plist | 14 + .../contents.xcworkspacedata | 10 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../UserInterfaceState.xcuserstate | Bin 0 -> 63913 bytes TrackIT2/TrackIT/AI.swift | 25 + TrackIT2/TrackIT/AIManager.swift | 86 ++ TrackIT2/TrackIT/AIRequest.swift | 43 + TrackIT2/TrackIT/AIService.swift | 53 ++ TrackIT2/TrackIT/Action.swift | 62 ++ TrackIT2/TrackIT/AppDelegate.swift | 101 +++ .../AppIcon.appiconset/Contents.json | 98 ++ .../TrackIT/Assets.xcassets/Contents.json | 6 + .../Rectangle 7.imageset/Contents.json | 21 + .../Rectangle 7.imageset/Rectangle 7.png | Bin 0 -> 354 bytes .../Assets.xcassets/home.imageset/69524 1.png | Bin 0 -> 520 bytes .../home.imageset/Contents.json | 21 + .../question.imageset/Contents.json | 21 + .../PNG image-520FB3231A8C-1 1.png | Bin 0 -> 645 bytes .../settings.imageset/Contents.json | 21 + .../PNG image-00F48C98FD47-1 1.png | Bin 0 -> 831 bytes .../settings2.imageset/Contents.json | 21 + .../PNG image-00F48C98FD47-1 1.png | Bin 0 -> 1173 bytes .../Base.lproj/LaunchScreen.storyboard | 25 + TrackIT2/TrackIT/Base.lproj/Main.storyboard | 100 +++ TrackIT2/TrackIT/ChatViewController.swift | 296 ++++++ TrackIT2/TrackIT/Colors.swift | 75 ++ TrackIT2/TrackIT/Errors.swift | 16 + .../ForecastResponsTableViewCell.swift | 74 ++ .../TrackIT/ForecastResponseTableViewCell.xib | 119 +++ TrackIT2/TrackIT/GoogleService-Info.plist | 36 + TrackIT2/TrackIT/Info.plist | 67 ++ TrackIT2/TrackIT/Intent.swift | 82 ++ TrackIT2/TrackIT/Message.swift | 37 + TrackIT2/TrackIT/SceneDelegate.swift | 53 ++ .../TrackIT/TextResponseTableViewCell.swift | 48 + .../TrackIT/TextResponseTableViewCell.xib | 79 ++ TrackIT2/TrackIT/TrackIT.entitlements | 8 + TrackIT2/TrackIT/URLGenerator.swift | 45 + TrackIT2/TrackIT/UserTableViewCell.swift | 49 + TrackIT2/TrackIT/UserTableViewCell.xib | 80 ++ TrackIT2/TrackIT/ViewController.swift | 377 ++++++++ TrackIT2/TrackIT/extentions.swift | 22 + TrackIT2/TrackIT/settings.swift | 80 ++ TrackIT2/TrackIT/syncPulse.swift | 49 + TrackIT2/lf30_editor_SKZ870.json | 1 + 51 files changed, 3629 insertions(+) create mode 100644 TrackIT2/Podfile create mode 100644 TrackIT2/Podfile.lock create mode 100644 TrackIT2/TrackIT.xcodeproj/project.pbxproj create mode 100644 TrackIT2/TrackIT.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 TrackIT2/TrackIT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 TrackIT2/TrackIT.xcodeproj/project.xcworkspace/xcuserdata/andreas.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 TrackIT2/TrackIT.xcodeproj/xcuserdata/andreas.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 TrackIT2/TrackIT.xcworkspace/contents.xcworkspacedata create mode 100644 TrackIT2/TrackIT.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 TrackIT2/TrackIT.xcworkspace/xcuserdata/andreas.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 TrackIT2/TrackIT/AI.swift create mode 100644 TrackIT2/TrackIT/AIManager.swift create mode 100644 TrackIT2/TrackIT/AIRequest.swift create mode 100644 TrackIT2/TrackIT/AIService.swift create mode 100644 TrackIT2/TrackIT/Action.swift create mode 100644 TrackIT2/TrackIT/AppDelegate.swift create mode 100644 TrackIT2/TrackIT/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 TrackIT2/TrackIT/Assets.xcassets/Contents.json create mode 100644 TrackIT2/TrackIT/Assets.xcassets/Rectangle 7.imageset/Contents.json create mode 100644 TrackIT2/TrackIT/Assets.xcassets/Rectangle 7.imageset/Rectangle 7.png create mode 100644 TrackIT2/TrackIT/Assets.xcassets/home.imageset/69524 1.png create mode 100644 TrackIT2/TrackIT/Assets.xcassets/home.imageset/Contents.json create mode 100644 TrackIT2/TrackIT/Assets.xcassets/question.imageset/Contents.json create mode 100644 TrackIT2/TrackIT/Assets.xcassets/question.imageset/PNG image-520FB3231A8C-1 1.png create mode 100644 TrackIT2/TrackIT/Assets.xcassets/settings.imageset/Contents.json create mode 100644 TrackIT2/TrackIT/Assets.xcassets/settings.imageset/PNG image-00F48C98FD47-1 1.png create mode 100644 TrackIT2/TrackIT/Assets.xcassets/settings2.imageset/Contents.json create mode 100644 TrackIT2/TrackIT/Assets.xcassets/settings2.imageset/PNG image-00F48C98FD47-1 1.png create mode 100644 TrackIT2/TrackIT/Base.lproj/LaunchScreen.storyboard create mode 100644 TrackIT2/TrackIT/Base.lproj/Main.storyboard create mode 100644 TrackIT2/TrackIT/ChatViewController.swift create mode 100644 TrackIT2/TrackIT/Colors.swift create mode 100644 TrackIT2/TrackIT/Errors.swift create mode 100644 TrackIT2/TrackIT/ForecastResponsTableViewCell.swift create mode 100644 TrackIT2/TrackIT/ForecastResponseTableViewCell.xib create mode 100644 TrackIT2/TrackIT/GoogleService-Info.plist create mode 100644 TrackIT2/TrackIT/Info.plist create mode 100644 TrackIT2/TrackIT/Intent.swift create mode 100644 TrackIT2/TrackIT/Message.swift create mode 100644 TrackIT2/TrackIT/SceneDelegate.swift create mode 100644 TrackIT2/TrackIT/TextResponseTableViewCell.swift create mode 100644 TrackIT2/TrackIT/TextResponseTableViewCell.xib create mode 100644 TrackIT2/TrackIT/TrackIT.entitlements create mode 100644 TrackIT2/TrackIT/URLGenerator.swift create mode 100644 TrackIT2/TrackIT/UserTableViewCell.swift create mode 100644 TrackIT2/TrackIT/UserTableViewCell.xib create mode 100644 TrackIT2/TrackIT/ViewController.swift create mode 100644 TrackIT2/TrackIT/extentions.swift create mode 100644 TrackIT2/TrackIT/settings.swift create mode 100644 TrackIT2/TrackIT/syncPulse.swift create mode 100644 TrackIT2/lf30_editor_SKZ870.json diff --git a/TrackIT2/Podfile b/TrackIT2/Podfile new file mode 100644 index 0000000..9d86c46 --- /dev/null +++ b/TrackIT2/Podfile @@ -0,0 +1,35 @@ +# Uncomment the next line to define a global platform for your project +# platform :ios, '9.0' + +target 'TrackIT' do + # Comment the next line if you don't want to use dynamic frameworks + use_frameworks! + + # Pods for TrackIT + pod 'lottie-ios' +pod 'Firebase/Firestore' + +pod 'Alamofire', '~> 4.5' + #Auto Layout library + pod 'SnapKit', '~> 4.0.0' + #library for downloading and caching images from API + #pod 'Kingfisher', '~> 3.0' + #Send Message TextInput + pod 'Toolbar' + #Messages TableView + pod 'ReverseExtension' + #Promise + pod 'PromiseKit', '~> 4.4' + +# Optionally, include the Swift extensions if you're using Swift. +pod 'FirebaseFirestoreSwift' + target 'TrackITTests' do + inherit! :search_paths + # Pods for testing + end + + target 'TrackITUITests' do + # Pods for testing + end + +end diff --git a/TrackIT2/Podfile.lock b/TrackIT2/Podfile.lock new file mode 100644 index 0000000..878dc0c --- /dev/null +++ b/TrackIT2/Podfile.lock @@ -0,0 +1,307 @@ +PODS: + - abseil/algorithm (0.20190808): + - abseil/algorithm/algorithm (= 0.20190808) + - abseil/algorithm/container (= 0.20190808) + - abseil/algorithm/algorithm (0.20190808) + - abseil/algorithm/container (0.20190808): + - abseil/algorithm/algorithm + - abseil/base/core_headers + - abseil/meta/type_traits + - abseil/base (0.20190808): + - abseil/base/atomic_hook (= 0.20190808) + - abseil/base/base (= 0.20190808) + - abseil/base/base_internal (= 0.20190808) + - abseil/base/bits (= 0.20190808) + - abseil/base/config (= 0.20190808) + - abseil/base/core_headers (= 0.20190808) + - abseil/base/dynamic_annotations (= 0.20190808) + - abseil/base/endian (= 0.20190808) + - abseil/base/log_severity (= 0.20190808) + - abseil/base/malloc_internal (= 0.20190808) + - abseil/base/pretty_function (= 0.20190808) + - abseil/base/spinlock_wait (= 0.20190808) + - abseil/base/throw_delegate (= 0.20190808) + - abseil/base/atomic_hook (0.20190808) + - abseil/base/base (0.20190808): + - abseil/base/atomic_hook + - abseil/base/base_internal + - abseil/base/config + - abseil/base/core_headers + - abseil/base/dynamic_annotations + - abseil/base/log_severity + - abseil/base/spinlock_wait + - abseil/meta/type_traits + - abseil/base/base_internal (0.20190808): + - abseil/meta/type_traits + - abseil/base/bits (0.20190808): + - abseil/base/core_headers + - abseil/base/config (0.20190808) + - abseil/base/core_headers (0.20190808): + - abseil/base/config + - abseil/base/dynamic_annotations (0.20190808) + - abseil/base/endian (0.20190808): + - abseil/base/config + - abseil/base/core_headers + - abseil/base/log_severity (0.20190808): + - abseil/base/core_headers + - abseil/base/malloc_internal (0.20190808): + - abseil/base/base + - abseil/base/config + - abseil/base/core_headers + - abseil/base/dynamic_annotations + - abseil/base/spinlock_wait + - abseil/base/pretty_function (0.20190808) + - abseil/base/spinlock_wait (0.20190808): + - abseil/base/core_headers + - abseil/base/throw_delegate (0.20190808): + - abseil/base/base + - abseil/base/config + - abseil/memory (0.20190808): + - abseil/memory/memory (= 0.20190808) + - abseil/memory/memory (0.20190808): + - abseil/base/core_headers + - abseil/meta/type_traits + - abseil/meta (0.20190808): + - abseil/meta/type_traits (= 0.20190808) + - abseil/meta/type_traits (0.20190808): + - abseil/base/config + - abseil/numeric/int128 (0.20190808): + - abseil/base/config + - abseil/base/core_headers + - abseil/strings/internal (0.20190808): + - abseil/base/core_headers + - abseil/base/endian + - abseil/meta/type_traits + - abseil/strings/strings (0.20190808): + - abseil/base/base + - abseil/base/bits + - abseil/base/config + - abseil/base/core_headers + - abseil/base/endian + - abseil/base/throw_delegate + - abseil/memory/memory + - abseil/meta/type_traits + - abseil/numeric/int128 + - abseil/strings/internal + - abseil/time (0.20190808): + - abseil/time/internal (= 0.20190808) + - abseil/time/time (= 0.20190808) + - abseil/time/internal (0.20190808): + - abseil/time/internal/cctz (= 0.20190808) + - abseil/time/internal/cctz (0.20190808): + - abseil/time/internal/cctz/civil_time (= 0.20190808) + - abseil/time/internal/cctz/includes (= 0.20190808) + - abseil/time/internal/cctz/time_zone (= 0.20190808) + - abseil/time/internal/cctz/civil_time (0.20190808) + - abseil/time/internal/cctz/includes (0.20190808) + - abseil/time/internal/cctz/time_zone (0.20190808): + - abseil/time/internal/cctz/civil_time + - abseil/time/time (0.20190808): + - abseil/base/base + - abseil/base/core_headers + - abseil/numeric/int128 + - abseil/strings/strings + - abseil/time/internal/cctz/civil_time + - abseil/time/internal/cctz/time_zone + - abseil/types (0.20190808): + - abseil/types/any (= 0.20190808) + - abseil/types/bad_any_cast (= 0.20190808) + - abseil/types/bad_any_cast_impl (= 0.20190808) + - abseil/types/bad_optional_access (= 0.20190808) + - abseil/types/bad_variant_access (= 0.20190808) + - abseil/types/compare (= 0.20190808) + - abseil/types/optional (= 0.20190808) + - abseil/types/span (= 0.20190808) + - abseil/types/variant (= 0.20190808) + - abseil/types/any (0.20190808): + - abseil/base/config + - abseil/base/core_headers + - abseil/meta/type_traits + - abseil/types/bad_any_cast + - abseil/utility/utility + - abseil/types/bad_any_cast (0.20190808): + - abseil/base/config + - abseil/types/bad_any_cast_impl + - abseil/types/bad_any_cast_impl (0.20190808): + - abseil/base/base + - abseil/base/config + - abseil/types/bad_optional_access (0.20190808): + - abseil/base/base + - abseil/base/config + - abseil/types/bad_variant_access (0.20190808): + - abseil/base/base + - abseil/base/config + - abseil/types/compare (0.20190808): + - abseil/base/core_headers + - abseil/meta/type_traits + - abseil/types/optional (0.20190808): + - abseil/base/base_internal + - abseil/base/config + - abseil/base/core_headers + - abseil/memory/memory + - abseil/meta/type_traits + - abseil/types/bad_optional_access + - abseil/utility/utility + - abseil/types/span (0.20190808): + - abseil/algorithm/algorithm + - abseil/base/core_headers + - abseil/base/throw_delegate + - abseil/meta/type_traits + - abseil/types/variant (0.20190808): + - abseil/base/base_internal + - abseil/base/config + - abseil/base/core_headers + - abseil/meta/type_traits + - abseil/types/bad_variant_access + - abseil/utility/utility + - abseil/utility/utility (0.20190808): + - abseil/base/base_internal + - abseil/base/config + - abseil/meta/type_traits + - Alamofire (4.9.1) + - BoringSSL-GRPC (0.0.3): + - BoringSSL-GRPC/Implementation (= 0.0.3) + - BoringSSL-GRPC/Interface (= 0.0.3) + - BoringSSL-GRPC/Implementation (0.0.3): + - BoringSSL-GRPC/Interface (= 0.0.3) + - BoringSSL-GRPC/Interface (0.0.3) + - Firebase/CoreOnly (6.20.0): + - FirebaseCore (= 6.6.4) + - Firebase/Firestore (6.20.0): + - Firebase/CoreOnly + - FirebaseFirestore (~> 1.11.2) + - FirebaseAuthInterop (1.1.0) + - FirebaseCore (6.6.4): + - FirebaseCoreDiagnostics (~> 1.2) + - FirebaseCoreDiagnosticsInterop (~> 1.2) + - GoogleUtilities/Environment (~> 6.5) + - GoogleUtilities/Logger (~> 6.5) + - FirebaseCoreDiagnostics (1.2.2): + - FirebaseCoreDiagnosticsInterop (~> 1.2) + - GoogleDataTransportCCTSupport (~> 2.0) + - GoogleUtilities/Environment (~> 6.5) + - GoogleUtilities/Logger (~> 6.5) + - nanopb (~> 0.3.901) + - FirebaseCoreDiagnosticsInterop (1.2.0) + - FirebaseFirestore (1.11.2): + - abseil/algorithm (= 0.20190808) + - abseil/base (= 0.20190808) + - abseil/memory (= 0.20190808) + - abseil/meta (= 0.20190808) + - abseil/strings/strings (= 0.20190808) + - abseil/time (= 0.20190808) + - abseil/types (= 0.20190808) + - FirebaseAuthInterop (~> 1.0) + - FirebaseCore (~> 6.2) + - "gRPC-C++ (= 0.0.9)" + - leveldb-library (~> 1.22) + - nanopb (~> 0.3.901) + - FirebaseFirestoreSwift (0.2): + - FirebaseFirestore (>= 1.6.1, ~> 1.6) + - GoogleDataTransport (5.0.0) + - GoogleDataTransportCCTSupport (2.0.0): + - GoogleDataTransport (~> 5.0) + - nanopb (~> 0.3.901) + - GoogleUtilities/Environment (6.5.2) + - GoogleUtilities/Logger (6.5.2): + - GoogleUtilities/Environment + - "gRPC-C++ (0.0.9)": + - "gRPC-C++/Implementation (= 0.0.9)" + - "gRPC-C++/Interface (= 0.0.9)" + - "gRPC-C++/Implementation (0.0.9)": + - "gRPC-C++/Interface (= 0.0.9)" + - gRPC-Core (= 1.21.0) + - nanopb (~> 0.3) + - "gRPC-C++/Interface (0.0.9)" + - gRPC-Core (1.21.0): + - gRPC-Core/Implementation (= 1.21.0) + - gRPC-Core/Interface (= 1.21.0) + - gRPC-Core/Implementation (1.21.0): + - BoringSSL-GRPC (= 0.0.3) + - gRPC-Core/Interface (= 1.21.0) + - nanopb (~> 0.3) + - gRPC-Core/Interface (1.21.0) + - leveldb-library (1.22) + - lottie-ios (3.1.6) + - nanopb (0.3.9011): + - nanopb/decode (= 0.3.9011) + - nanopb/encode (= 0.3.9011) + - nanopb/decode (0.3.9011) + - nanopb/encode (0.3.9011) + - PromiseKit (4.5.2): + - PromiseKit/Foundation (= 4.5.2) + - PromiseKit/QuartzCore (= 4.5.2) + - PromiseKit/UIKit (= 4.5.2) + - PromiseKit/CorePromise (4.5.2) + - PromiseKit/Foundation (4.5.2): + - PromiseKit/CorePromise + - PromiseKit/QuartzCore (4.5.2): + - PromiseKit/CorePromise + - PromiseKit/UIKit (4.5.2): + - PromiseKit/CorePromise + - ReverseExtension (0.5.0) + - SnapKit (4.0.1) + - Toolbar (0.7.3) + +DEPENDENCIES: + - Alamofire (~> 4.5) + - Firebase/Firestore + - FirebaseFirestoreSwift + - lottie-ios + - PromiseKit (~> 4.4) + - ReverseExtension + - SnapKit (~> 4.0.0) + - Toolbar + +SPEC REPOS: + trunk: + - abseil + - Alamofire + - BoringSSL-GRPC + - Firebase + - FirebaseAuthInterop + - FirebaseCore + - FirebaseCoreDiagnostics + - FirebaseCoreDiagnosticsInterop + - FirebaseFirestore + - FirebaseFirestoreSwift + - GoogleDataTransport + - GoogleDataTransportCCTSupport + - GoogleUtilities + - "gRPC-C++" + - gRPC-Core + - leveldb-library + - lottie-ios + - nanopb + - PromiseKit + - ReverseExtension + - SnapKit + - Toolbar + +SPEC CHECKSUMS: + abseil: 18063d773f5366ff8736a050fe035a28f635fd27 + Alamofire: 85e8a02c69d6020a0d734f6054870d7ecb75cf18 + BoringSSL-GRPC: db8764df3204ccea016e1c8dd15d9a9ad63ff318 + Firebase: fe7f74012742ab403451dd283e6909b8f1fb348a + FirebaseAuthInterop: a0f37ae05833af156e72028f648d313f7e7592e9 + FirebaseCore: ed0a24c758a57c2b88c5efa8e6a8195e868af589 + FirebaseCoreDiagnostics: e9b4cd8ba60dee0f2d13347332e4b7898cca5b61 + FirebaseCoreDiagnosticsInterop: 296e2c5f5314500a850ad0b83e9e7c10b011a850 + FirebaseFirestore: 71925e62a5d1cbfaff46aa4d5107e525cc48356a + FirebaseFirestoreSwift: 0437bb10d83f8161a9131da1739998254c78fdf5 + GoogleDataTransport: a857c6a002d201b524dd4bc2ed7e7355ed07e785 + GoogleDataTransportCCTSupport: 32f75fbe904c82772fcbb6b6bd4525bfb6f2a862 + GoogleUtilities: ad0f3b691c67909d03a3327cc205222ab8f42e0e + "gRPC-C++": 9dfe7b44821e7b3e44aacad2af29d2c21f7cde83 + gRPC-Core: c9aef9a261a1247e881b18059b84d597293c9947 + leveldb-library: 55d93ee664b4007aac644a782d11da33fba316f7 + lottie-ios: 85ce835dd8c53e02509f20729fc7d6a4e6645a0a + nanopb: 18003b5e52dab79db540fe93fe9579f399bd1ccd + PromiseKit: 743e497a5f505a470d3bbbf4ce0663c1268af0a4 + ReverseExtension: 21c8dd4e767f93b56fb97d873686d24160f83945 + SnapKit: 0de968a9fec17499afa29683b05d0c775b6d1c29 + Toolbar: 4321f97ec8ea5f20ecee5a55e505a319bd5e3021 + +PODFILE CHECKSUM: 347370e52028fdb828922e6f707bde9f1b1a48c6 + +COCOAPODS: 1.9.1 diff --git a/TrackIT2/TrackIT.xcodeproj/project.pbxproj b/TrackIT2/TrackIT.xcodeproj/project.pbxproj new file mode 100644 index 0000000..f483663 --- /dev/null +++ b/TrackIT2/TrackIT.xcodeproj/project.pbxproj @@ -0,0 +1,843 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 51; + objects = { + +/* Begin PBXBuildFile section */ + 34D62258D8EA74E449C5AB6C /* Pods_TrackITTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AF93C0CD6EFCD9A0E4727F5 /* Pods_TrackITTests.framework */; }; + 4274A339C3EACE13FECA30EE /* Pods_TrackIT_TrackITUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E393149E42E3EBCB3836685D /* Pods_TrackIT_TrackITUITests.framework */; }; + C108DB36EF2F552A14453777 /* Pods_TrackIT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 188D54E5AFC5D0B51D7BD933 /* Pods_TrackIT.framework */; }; + E129378D242C38EC00003CCB /* AIManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = E129378C242C38EC00003CCB /* AIManager.swift */; }; + E1293791242C38FE00003CCB /* TextResponseTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E129378E242C38FA00003CCB /* TextResponseTableViewCell.swift */; }; + E1293792242C38FE00003CCB /* ForecastResponsTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E129378F242C38FC00003CCB /* ForecastResponsTableViewCell.swift */; }; + E1293793242C38FE00003CCB /* UserTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1293790242C38FE00003CCB /* UserTableViewCell.swift */; }; + E1293795242C390000003CCB /* ChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1293794242C390000003CCB /* ChatViewController.swift */; }; + E129379A242C391500003CCB /* AIRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1293798242C391300003CCB /* AIRequest.swift */; }; + E129379B242C391500003CCB /* AIService.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1293799242C391500003CCB /* AIService.swift */; }; + E12937A0242C391B00003CCB /* extentions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E129379C242C391800003CCB /* extentions.swift */; }; + E12937A1242C391B00003CCB /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = E129379D242C391900003CCB /* Errors.swift */; }; + E12937A2242C391B00003CCB /* Colors.swift in Sources */ = {isa = PBXBuildFile; fileRef = E129379E242C391A00003CCB /* Colors.swift */; }; + E12937A3242C391B00003CCB /* URLGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = E129379F242C391A00003CCB /* URLGenerator.swift */; }; + E12937A6242C392300003CCB /* Action.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12937A4242C392200003CCB /* Action.swift */; }; + E12937A7242C392300003CCB /* Message.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12937A5242C392300003CCB /* Message.swift */; }; + E12937A9242C392900003CCB /* AI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12937A8242C392900003CCB /* AI.swift */; }; + E12937AB242C392D00003CCB /* Intent.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12937AA242C392D00003CCB /* Intent.swift */; }; + E12937AF242C393E00003CCB /* UserTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = E12937AC242C393B00003CCB /* UserTableViewCell.xib */; }; + E12937B0242C393E00003CCB /* ForecastResponseTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = E12937AD242C393C00003CCB /* ForecastResponseTableViewCell.xib */; }; + E12937B1242C393E00003CCB /* TextResponseTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = E12937AE242C393E00003CCB /* TextResponseTableViewCell.xib */; }; + E12937B3242C437D00003CCB /* settings.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12937B2242C437D00003CCB /* settings.swift */; }; + E1E55B58242C118B00FFAA8A /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E55B57242C118B00FFAA8A /* AppDelegate.swift */; }; + E1E55B5A242C118B00FFAA8A /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E55B59242C118B00FFAA8A /* SceneDelegate.swift */; }; + E1E55B5C242C118B00FFAA8A /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E55B5B242C118B00FFAA8A /* ViewController.swift */; }; + E1E55B5F242C118B00FFAA8A /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E1E55B5D242C118B00FFAA8A /* Main.storyboard */; }; + E1E55B61242C119500FFAA8A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E1E55B60242C119500FFAA8A /* Assets.xcassets */; }; + E1E55B64242C119500FFAA8A /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E1E55B62242C119500FFAA8A /* LaunchScreen.storyboard */; }; + E1E55B6F242C119500FFAA8A /* TrackITTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E55B6E242C119500FFAA8A /* TrackITTests.swift */; }; + E1E55B7A242C119500FFAA8A /* TrackITUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E55B79242C119500FFAA8A /* TrackITUITests.swift */; }; + E1E55B88242C121D00FFAA8A /* lf30_editor_SKZ870.json in Resources */ = {isa = PBXBuildFile; fileRef = E1E55B87242C121D00FFAA8A /* lf30_editor_SKZ870.json */; }; + E1E55B8A242C28C100FFAA8A /* syncPulse.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E55B89242C28C100FFAA8A /* syncPulse.swift */; }; + E1E55B8C242C2BA400FFAA8A /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = E1E55B8B242C2BA300FFAA8A /* GoogleService-Info.plist */; }; + E1E55B8D242C2BA400FFAA8A /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = E1E55B8B242C2BA300FFAA8A /* GoogleService-Info.plist */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + E1E55B6B242C119500FFAA8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = E1E55B4C242C118A00FFAA8A /* Project object */; + proxyType = 1; + remoteGlobalIDString = E1E55B53242C118B00FFAA8A; + remoteInfo = TrackIT; + }; + E1E55B76242C119500FFAA8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = E1E55B4C242C118A00FFAA8A /* Project object */; + proxyType = 1; + remoteGlobalIDString = E1E55B53242C118B00FFAA8A; + remoteInfo = TrackIT; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0AF93C0CD6EFCD9A0E4727F5 /* Pods_TrackITTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TrackITTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 188D54E5AFC5D0B51D7BD933 /* Pods_TrackIT.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TrackIT.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 29EFD4B810C83C6D90DC4A25 /* Pods-TrackIT.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TrackIT.release.xcconfig"; path = "Target Support Files/Pods-TrackIT/Pods-TrackIT.release.xcconfig"; sourceTree = ""; }; + 2E3FBB11CD6BD222DEA90EF8 /* Pods-TrackITTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TrackITTests.release.xcconfig"; path = "Target Support Files/Pods-TrackITTests/Pods-TrackITTests.release.xcconfig"; sourceTree = ""; }; + 6F8A2AAB681311CE18D16556 /* Pods-TrackIT.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TrackIT.debug.xcconfig"; path = "Target Support Files/Pods-TrackIT/Pods-TrackIT.debug.xcconfig"; sourceTree = ""; }; + 85D8276A1B7A8CA655A1776A /* Pods-TrackITTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TrackITTests.debug.xcconfig"; path = "Target Support Files/Pods-TrackITTests/Pods-TrackITTests.debug.xcconfig"; sourceTree = ""; }; + 9DFE0B060806E356086B2AF8 /* Pods-TrackIT-TrackITUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TrackIT-TrackITUITests.release.xcconfig"; path = "Target Support Files/Pods-TrackIT-TrackITUITests/Pods-TrackIT-TrackITUITests.release.xcconfig"; sourceTree = ""; }; + C26554D9DA3AFFB990770668 /* Pods-TrackIT-TrackITUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TrackIT-TrackITUITests.debug.xcconfig"; path = "Target Support Files/Pods-TrackIT-TrackITUITests/Pods-TrackIT-TrackITUITests.debug.xcconfig"; sourceTree = ""; }; + E129378C242C38EC00003CCB /* AIManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AIManager.swift; sourceTree = ""; }; + E129378E242C38FA00003CCB /* TextResponseTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TextResponseTableViewCell.swift; sourceTree = ""; }; + E129378F242C38FC00003CCB /* ForecastResponsTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ForecastResponsTableViewCell.swift; sourceTree = ""; }; + E1293790242C38FE00003CCB /* UserTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserTableViewCell.swift; sourceTree = ""; }; + E1293794242C390000003CCB /* ChatViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChatViewController.swift; sourceTree = ""; }; + E1293798242C391300003CCB /* AIRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AIRequest.swift; sourceTree = ""; }; + E1293799242C391500003CCB /* AIService.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AIService.swift; sourceTree = ""; }; + E129379C242C391800003CCB /* extentions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = extentions.swift; sourceTree = ""; }; + E129379D242C391900003CCB /* Errors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Errors.swift; sourceTree = ""; }; + E129379E242C391A00003CCB /* Colors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Colors.swift; sourceTree = ""; }; + E129379F242C391A00003CCB /* URLGenerator.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = URLGenerator.swift; sourceTree = ""; }; + E12937A4242C392200003CCB /* Action.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Action.swift; sourceTree = ""; }; + E12937A5242C392300003CCB /* Message.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Message.swift; sourceTree = ""; }; + E12937A8242C392900003CCB /* AI.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AI.swift; sourceTree = ""; }; + E12937AA242C392D00003CCB /* Intent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Intent.swift; sourceTree = ""; }; + E12937AC242C393B00003CCB /* UserTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = UserTableViewCell.xib; sourceTree = ""; }; + E12937AD242C393C00003CCB /* ForecastResponseTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ForecastResponseTableViewCell.xib; sourceTree = ""; }; + E12937AE242C393E00003CCB /* TextResponseTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TextResponseTableViewCell.xib; sourceTree = ""; }; + E12937B2242C437D00003CCB /* settings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = settings.swift; sourceTree = ""; }; + E1E55B54242C118B00FFAA8A /* TrackIT.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TrackIT.app; sourceTree = BUILT_PRODUCTS_DIR; }; + E1E55B57242C118B00FFAA8A /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + E1E55B59242C118B00FFAA8A /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; + E1E55B5B242C118B00FFAA8A /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + E1E55B5E242C118B00FFAA8A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + E1E55B60242C119500FFAA8A /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + E1E55B63242C119500FFAA8A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + E1E55B65242C119500FFAA8A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E1E55B6A242C119500FFAA8A /* TrackITTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TrackITTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + E1E55B6E242C119500FFAA8A /* TrackITTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrackITTests.swift; sourceTree = ""; }; + E1E55B70242C119500FFAA8A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E1E55B75242C119500FFAA8A /* TrackITUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TrackITUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + E1E55B79242C119500FFAA8A /* TrackITUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrackITUITests.swift; sourceTree = ""; }; + E1E55B7B242C119500FFAA8A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E1E55B87242C121D00FFAA8A /* lf30_editor_SKZ870.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = lf30_editor_SKZ870.json; sourceTree = ""; }; + E1E55B89242C28C100FFAA8A /* syncPulse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = syncPulse.swift; sourceTree = ""; }; + E1E55B8B242C2BA300FFAA8A /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; }; + E1E55B8E242C2C5A00FFAA8A /* TrackIT.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = TrackIT.entitlements; sourceTree = ""; }; + E393149E42E3EBCB3836685D /* Pods_TrackIT_TrackITUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TrackIT_TrackITUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + E1E55B51242C118B00FFAA8A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + C108DB36EF2F552A14453777 /* Pods_TrackIT.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E1E55B67242C119500FFAA8A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 34D62258D8EA74E449C5AB6C /* Pods_TrackITTests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E1E55B72242C119500FFAA8A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 4274A339C3EACE13FECA30EE /* Pods_TrackIT_TrackITUITests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 8929458AECDE0E30768C82C3 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 188D54E5AFC5D0B51D7BD933 /* Pods_TrackIT.framework */, + E393149E42E3EBCB3836685D /* Pods_TrackIT_TrackITUITests.framework */, + 0AF93C0CD6EFCD9A0E4727F5 /* Pods_TrackITTests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 9CD3431AD4CEA07C2192237B /* Pods */ = { + isa = PBXGroup; + children = ( + 6F8A2AAB681311CE18D16556 /* Pods-TrackIT.debug.xcconfig */, + 29EFD4B810C83C6D90DC4A25 /* Pods-TrackIT.release.xcconfig */, + C26554D9DA3AFFB990770668 /* Pods-TrackIT-TrackITUITests.debug.xcconfig */, + 9DFE0B060806E356086B2AF8 /* Pods-TrackIT-TrackITUITests.release.xcconfig */, + 85D8276A1B7A8CA655A1776A /* Pods-TrackITTests.debug.xcconfig */, + 2E3FBB11CD6BD222DEA90EF8 /* Pods-TrackITTests.release.xcconfig */, + ); + path = Pods; + sourceTree = ""; + }; + E1E55B4B242C118A00FFAA8A = { + isa = PBXGroup; + children = ( + E1E55B87242C121D00FFAA8A /* lf30_editor_SKZ870.json */, + E1E55B56242C118B00FFAA8A /* TrackIT */, + E1E55B6D242C119500FFAA8A /* TrackITTests */, + E1E55B78242C119500FFAA8A /* TrackITUITests */, + E1E55B55242C118B00FFAA8A /* Products */, + 9CD3431AD4CEA07C2192237B /* Pods */, + 8929458AECDE0E30768C82C3 /* Frameworks */, + ); + sourceTree = ""; + }; + E1E55B55242C118B00FFAA8A /* Products */ = { + isa = PBXGroup; + children = ( + E1E55B54242C118B00FFAA8A /* TrackIT.app */, + E1E55B6A242C119500FFAA8A /* TrackITTests.xctest */, + E1E55B75242C119500FFAA8A /* TrackITUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + E1E55B56242C118B00FFAA8A /* TrackIT */ = { + isa = PBXGroup; + children = ( + E1E55B8E242C2C5A00FFAA8A /* TrackIT.entitlements */, + E1E55B57242C118B00FFAA8A /* AppDelegate.swift */, + E129378C242C38EC00003CCB /* AIManager.swift */, + E129378F242C38FC00003CCB /* ForecastResponsTableViewCell.swift */, + E129378E242C38FA00003CCB /* TextResponseTableViewCell.swift */, + E1293790242C38FE00003CCB /* UserTableViewCell.swift */, + E1293794242C390000003CCB /* ChatViewController.swift */, + E1293798242C391300003CCB /* AIRequest.swift */, + E1293799242C391500003CCB /* AIService.swift */, + E1E55B89242C28C100FFAA8A /* syncPulse.swift */, + E129379E242C391A00003CCB /* Colors.swift */, + E129379D242C391900003CCB /* Errors.swift */, + E129379C242C391800003CCB /* extentions.swift */, + E129379F242C391A00003CCB /* URLGenerator.swift */, + E1E55B8B242C2BA300FFAA8A /* GoogleService-Info.plist */, + E1E55B59242C118B00FFAA8A /* SceneDelegate.swift */, + E12937A4242C392200003CCB /* Action.swift */, + E12937A5242C392300003CCB /* Message.swift */, + E12937A8242C392900003CCB /* AI.swift */, + E12937AA242C392D00003CCB /* Intent.swift */, + E1E55B5B242C118B00FFAA8A /* ViewController.swift */, + E12937B2242C437D00003CCB /* settings.swift */, + E12937AC242C393B00003CCB /* UserTableViewCell.xib */, + E12937AE242C393E00003CCB /* TextResponseTableViewCell.xib */, + E12937AD242C393C00003CCB /* ForecastResponseTableViewCell.xib */, + E1E55B5D242C118B00FFAA8A /* Main.storyboard */, + E1E55B60242C119500FFAA8A /* Assets.xcassets */, + E1E55B62242C119500FFAA8A /* LaunchScreen.storyboard */, + E1E55B65242C119500FFAA8A /* Info.plist */, + ); + path = TrackIT; + sourceTree = ""; + }; + E1E55B6D242C119500FFAA8A /* TrackITTests */ = { + isa = PBXGroup; + children = ( + E1E55B6E242C119500FFAA8A /* TrackITTests.swift */, + E1E55B70242C119500FFAA8A /* Info.plist */, + ); + path = TrackITTests; + sourceTree = ""; + }; + E1E55B78242C119500FFAA8A /* TrackITUITests */ = { + isa = PBXGroup; + children = ( + E1E55B79242C119500FFAA8A /* TrackITUITests.swift */, + E1E55B7B242C119500FFAA8A /* Info.plist */, + ); + path = TrackITUITests; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + E1E55B53242C118B00FFAA8A /* TrackIT */ = { + isa = PBXNativeTarget; + buildConfigurationList = E1E55B7E242C119500FFAA8A /* Build configuration list for PBXNativeTarget "TrackIT" */; + buildPhases = ( + 4835BAF832367208E8904B15 /* [CP] Check Pods Manifest.lock */, + E1E55B50242C118B00FFAA8A /* Sources */, + E1E55B51242C118B00FFAA8A /* Frameworks */, + E1E55B52242C118B00FFAA8A /* Resources */, + C47F024BA20C9E07952B0BE1 /* [CP] Embed Pods Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = TrackIT; + productName = TrackIT; + productReference = E1E55B54242C118B00FFAA8A /* TrackIT.app */; + productType = "com.apple.product-type.application"; + }; + E1E55B69242C119500FFAA8A /* TrackITTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = E1E55B81242C119500FFAA8A /* Build configuration list for PBXNativeTarget "TrackITTests" */; + buildPhases = ( + 2C0B2AF7DC211CAF647AEEED /* [CP] Check Pods Manifest.lock */, + E1E55B66242C119500FFAA8A /* Sources */, + E1E55B67242C119500FFAA8A /* Frameworks */, + E1E55B68242C119500FFAA8A /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + E1E55B6C242C119500FFAA8A /* PBXTargetDependency */, + ); + name = TrackITTests; + productName = TrackITTests; + productReference = E1E55B6A242C119500FFAA8A /* TrackITTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + E1E55B74242C119500FFAA8A /* TrackITUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = E1E55B84242C119500FFAA8A /* Build configuration list for PBXNativeTarget "TrackITUITests" */; + buildPhases = ( + B5162CEAC3B5C9767304CB7A /* [CP] Check Pods Manifest.lock */, + E1E55B71242C119500FFAA8A /* Sources */, + E1E55B72242C119500FFAA8A /* Frameworks */, + E1E55B73242C119500FFAA8A /* Resources */, + 4DA5052BE5D676C58E93D137 /* [CP] Embed Pods Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + E1E55B77242C119500FFAA8A /* PBXTargetDependency */, + ); + name = TrackITUITests; + productName = TrackITUITests; + productReference = E1E55B75242C119500FFAA8A /* TrackITUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + E1E55B4C242C118A00FFAA8A /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 1130; + LastUpgradeCheck = 1130; + ORGANIZATIONNAME = "Steve Ink"; + TargetAttributes = { + E1E55B53242C118B00FFAA8A = { + CreatedOnToolsVersion = 11.3; + }; + E1E55B69242C119500FFAA8A = { + CreatedOnToolsVersion = 11.3; + TestTargetID = E1E55B53242C118B00FFAA8A; + }; + E1E55B74242C119500FFAA8A = { + CreatedOnToolsVersion = 11.3; + TestTargetID = E1E55B53242C118B00FFAA8A; + }; + }; + }; + buildConfigurationList = E1E55B4F242C118A00FFAA8A /* Build configuration list for PBXProject "TrackIT" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = E1E55B4B242C118A00FFAA8A; + productRefGroup = E1E55B55242C118B00FFAA8A /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + E1E55B53242C118B00FFAA8A /* TrackIT */, + E1E55B69242C119500FFAA8A /* TrackITTests */, + E1E55B74242C119500FFAA8A /* TrackITUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + E1E55B52242C118B00FFAA8A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E1E55B88242C121D00FFAA8A /* lf30_editor_SKZ870.json in Resources */, + E1E55B64242C119500FFAA8A /* LaunchScreen.storyboard in Resources */, + E1E55B8C242C2BA400FFAA8A /* GoogleService-Info.plist in Resources */, + E1E55B61242C119500FFAA8A /* Assets.xcassets in Resources */, + E12937AF242C393E00003CCB /* UserTableViewCell.xib in Resources */, + E12937B1242C393E00003CCB /* TextResponseTableViewCell.xib in Resources */, + E12937B0242C393E00003CCB /* ForecastResponseTableViewCell.xib in Resources */, + E1E55B5F242C118B00FFAA8A /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E1E55B68242C119500FFAA8A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E1E55B73242C119500FFAA8A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E1E55B8D242C2BA400FFAA8A /* GoogleService-Info.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 2C0B2AF7DC211CAF647AEEED /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-TrackITTests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + 4835BAF832367208E8904B15 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-TrackIT-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + 4DA5052BE5D676C58E93D137 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-TrackIT-TrackITUITests/Pods-TrackIT-TrackITUITests-frameworks-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-TrackIT-TrackITUITests/Pods-TrackIT-TrackITUITests-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-TrackIT-TrackITUITests/Pods-TrackIT-TrackITUITests-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + B5162CEAC3B5C9767304CB7A /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-TrackIT-TrackITUITests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + C47F024BA20C9E07952B0BE1 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-TrackIT/Pods-TrackIT-frameworks-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-TrackIT/Pods-TrackIT-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-TrackIT/Pods-TrackIT-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + E1E55B50242C118B00FFAA8A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E12937AB242C392D00003CCB /* Intent.swift in Sources */, + E12937A0242C391B00003CCB /* extentions.swift in Sources */, + E129379B242C391500003CCB /* AIService.swift in Sources */, + E1E55B8A242C28C100FFAA8A /* syncPulse.swift in Sources */, + E12937A7242C392300003CCB /* Message.swift in Sources */, + E12937A2242C391B00003CCB /* Colors.swift in Sources */, + E1293791242C38FE00003CCB /* TextResponseTableViewCell.swift in Sources */, + E12937A6242C392300003CCB /* Action.swift in Sources */, + E1E55B5C242C118B00FFAA8A /* ViewController.swift in Sources */, + E1293792242C38FE00003CCB /* ForecastResponsTableViewCell.swift in Sources */, + E12937A3242C391B00003CCB /* URLGenerator.swift in Sources */, + E1293793242C38FE00003CCB /* UserTableViewCell.swift in Sources */, + E12937A9242C392900003CCB /* AI.swift in Sources */, + E12937A1242C391B00003CCB /* Errors.swift in Sources */, + E12937B3242C437D00003CCB /* settings.swift in Sources */, + E1E55B58242C118B00FFAA8A /* AppDelegate.swift in Sources */, + E129378D242C38EC00003CCB /* AIManager.swift in Sources */, + E129379A242C391500003CCB /* AIRequest.swift in Sources */, + E1293795242C390000003CCB /* ChatViewController.swift in Sources */, + E1E55B5A242C118B00FFAA8A /* SceneDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E1E55B66242C119500FFAA8A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E1E55B6F242C119500FFAA8A /* TrackITTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E1E55B71242C119500FFAA8A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E1E55B7A242C119500FFAA8A /* TrackITUITests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + E1E55B6C242C119500FFAA8A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E1E55B53242C118B00FFAA8A /* TrackIT */; + targetProxy = E1E55B6B242C119500FFAA8A /* PBXContainerItemProxy */; + }; + E1E55B77242C119500FFAA8A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E1E55B53242C118B00FFAA8A /* TrackIT */; + targetProxy = E1E55B76242C119500FFAA8A /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + E1E55B5D242C118B00FFAA8A /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + E1E55B5E242C118B00FFAA8A /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + E1E55B62242C119500FFAA8A /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + E1E55B63242C119500FFAA8A /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + E1E55B7C242C119500FFAA8A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.2; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + E1E55B7D242C119500FFAA8A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.2; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + E1E55B7F242C119500FFAA8A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6F8A2AAB681311CE18D16556 /* Pods-TrackIT.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_ENTITLEMENTS = TrackIT/TrackIT.entitlements; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = MC27HKM86M; + INFOPLIST_FILE = TrackIT/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = "-020.TrackIT3"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + E1E55B80242C119500FFAA8A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 29EFD4B810C83C6D90DC4A25 /* Pods-TrackIT.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_ENTITLEMENTS = TrackIT/TrackIT.entitlements; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = MC27HKM86M; + INFOPLIST_FILE = TrackIT/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = "-020.TrackIT3"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + E1E55B82242C119500FFAA8A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 85D8276A1B7A8CA655A1776A /* Pods-TrackITTests.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = MC27HKM86M; + INFOPLIST_FILE = TrackITTests/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 13.2; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = "-020.TrackITTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TrackIT.app/TrackIT"; + }; + name = Debug; + }; + E1E55B83242C119500FFAA8A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2E3FBB11CD6BD222DEA90EF8 /* Pods-TrackITTests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = MC27HKM86M; + INFOPLIST_FILE = TrackITTests/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 13.2; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = "-020.TrackITTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TrackIT.app/TrackIT"; + }; + name = Release; + }; + E1E55B85242C119500FFAA8A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C26554D9DA3AFFB990770668 /* Pods-TrackIT-TrackITUITests.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = MC27HKM86M; + INFOPLIST_FILE = TrackITUITests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = "-020.TrackITUITests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = TrackIT; + }; + name = Debug; + }; + E1E55B86242C119500FFAA8A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9DFE0B060806E356086B2AF8 /* Pods-TrackIT-TrackITUITests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = MC27HKM86M; + INFOPLIST_FILE = TrackITUITests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = "-020.TrackITUITests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = TrackIT; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + E1E55B4F242C118A00FFAA8A /* Build configuration list for PBXProject "TrackIT" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E1E55B7C242C119500FFAA8A /* Debug */, + E1E55B7D242C119500FFAA8A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E1E55B7E242C119500FFAA8A /* Build configuration list for PBXNativeTarget "TrackIT" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E1E55B7F242C119500FFAA8A /* Debug */, + E1E55B80242C119500FFAA8A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E1E55B81242C119500FFAA8A /* Build configuration list for PBXNativeTarget "TrackITTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E1E55B82242C119500FFAA8A /* Debug */, + E1E55B83242C119500FFAA8A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E1E55B84242C119500FFAA8A /* Build configuration list for PBXNativeTarget "TrackITUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E1E55B85242C119500FFAA8A /* Debug */, + E1E55B86242C119500FFAA8A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = E1E55B4C242C118A00FFAA8A /* Project object */; +} diff --git a/TrackIT2/TrackIT.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/TrackIT2/TrackIT.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..b0efb8c --- /dev/null +++ b/TrackIT2/TrackIT.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/TrackIT2/TrackIT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/TrackIT2/TrackIT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/TrackIT2/TrackIT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/TrackIT2/TrackIT.xcodeproj/project.xcworkspace/xcuserdata/andreas.xcuserdatad/UserInterfaceState.xcuserstate b/TrackIT2/TrackIT.xcodeproj/project.xcworkspace/xcuserdata/andreas.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..ff01ecd1c5e295c3b86e72c16f4748ca8bb413f2 GIT binary patch literal 11417 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 + + + + SchemeUserState + + TrackIT.xcscheme_^#shared#^_ + + orderHint + 26 + + + + diff --git a/TrackIT2/TrackIT.xcworkspace/contents.xcworkspacedata b/TrackIT2/TrackIT.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..7af0153 --- /dev/null +++ b/TrackIT2/TrackIT.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/TrackIT2/TrackIT.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/TrackIT2/TrackIT.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/TrackIT2/TrackIT.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/TrackIT2/TrackIT.xcworkspace/xcuserdata/andreas.xcuserdatad/UserInterfaceState.xcuserstate b/TrackIT2/TrackIT.xcworkspace/xcuserdata/andreas.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..ed6927616c4651bd78759496c5a76e7450559ce9 GIT binary patch literal 63913 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 AI? { + + var id: String? = nil + var lang: String? = nil + var score: Double = 0 + + //ID + if let value = aiDictionary["id"] as? String { + id = value + } + + //Language + if let value = aiDictionary["lang"] as? String { + lang = value + } + + if id == nil && lang == nil { + //id or lang is nil for ai Dictionary + print("id or created is nil for AI Dictionary") + return nil + } else { + + //result + if let result = aiDictionary["result"] as? [String:AnyObject] { + + //Score + if let value = result["score"] as? Double { + score = value + } + + ai = AI(id: id!, lang: lang!, score: score) + + //action + if let value = result["action"] as? String { + + ai!.intent = Intent(intentName: value) + + //fulfillment + if let fulfillment = result["fulfillment"] as? NSDictionary { + if let speech = fulfillment["speech"] as? String { + ai!.intent.speech = speech + } + } + + //contexts + if let contextsArr = result["contexts"] as? [[String : Any]] { + if let contexts = contextsArr.first as NSDictionary? { + //parameters + if let parameters = contexts["parameters"] as? NSDictionary, !result.isEmpty { + ai!.intent.setParametes(parameters) + } + } + } + + } + + } + + return ai + + } + + } + +} diff --git a/TrackIT2/TrackIT/AIRequest.swift b/TrackIT2/TrackIT/AIRequest.swift new file mode 100644 index 0000000..f5afb8f --- /dev/null +++ b/TrackIT2/TrackIT/AIRequest.swift @@ -0,0 +1,43 @@ +// +// AIRequest.swift +// AiBasicApp +// +// Created by Enrico Piovesan on 2018-01-04. +// Copyright © 2018 Enrico Piovesan. All rights reserved. +// + +import UIKit +import Alamofire + +class AIRequest { + + var query: String + var lang: String + var sessionId: String + + init(query: String, lang: String) { + self.query = query + self.lang = lang + self.sessionId = "WB-" + Date().ticks.description + } + + func getHeaders() -> HTTPHeaders { + let clientAccessToken = "52956a2ad4034a53afe10e1274e86f85" + let headers: HTTPHeaders = [ + "Authorization": "Bearer " + clientAccessToken, + ] + return headers + } + + func toParameters() -> Parameters { + + let parameters: Parameters = [ + "query": query, + "lang": lang, + "sessionId": sessionId + ] + + return parameters + } + +} diff --git a/TrackIT2/TrackIT/AIService.swift b/TrackIT2/TrackIT/AIService.swift new file mode 100644 index 0000000..f8c7dc9 --- /dev/null +++ b/TrackIT2/TrackIT/AIService.swift @@ -0,0 +1,53 @@ +// +// AIService.swift +// AiBasicApp +// +// Created by Enrico Piovesan on 2018-01-04. +// Copyright © 2018 Enrico Piovesan. All rights reserved. +// + +import UIKit +import Alamofire +import PromiseKit + +class AIService { + + let aiUrl = URLGenerator.aiApiUrlForPathString(path: "query?v=20150910") + var aiRequest: AIRequest + + init(_ aiRequest: AIRequest) { + self.aiRequest = aiRequest + } + + func getAi() -> Promise { + + let parameters = aiRequest.toParameters() + let headers = aiRequest.getHeaders() + + return Promise { fulfill, reject in + + Alamofire.request(aiUrl, method: .post, parameters: parameters, encoding: JSONEncoding.default, headers: headers) + .responseJSON { response in + switch response.result { + case .success(let json): + var ai: AI? = nil + if let aiManagerDictionary = json as? NSDictionary { + let aiManager = AIManager(aiDictionary: aiManagerDictionary) + ai = aiManager.serialize() + } + + if ai != nil { + fulfill(ai!) + } else { + reject(WeatherBotError.aiManagerDictionary) + } + + case .failure(let error): + reject(error) + } + } + } + + } + +} diff --git a/TrackIT2/TrackIT/Action.swift b/TrackIT2/TrackIT/Action.swift new file mode 100644 index 0000000..3e31aac --- /dev/null +++ b/TrackIT2/TrackIT/Action.swift @@ -0,0 +1,62 @@ +// +// ActionManager.swift +// weatherBot +// +// Created by Enrico Piovesan on 2017-09-09. +// Copyright © 2017 Enrico Piovesan. All rights reserved. +// + +import UIKit +import PromiseKit + +class Action { + + var intent : Intent + + init(_ intent: Intent) { + self.intent = intent + } + + // MARK:- Update Message content + func updateMessage() -> Promise { + return Promise{ fulfill, reject in + switch intent.intentType { + case .smalltalkGreetingsHello: + smalltalkGreetingsHello().then { message in + fulfill(message) + } + case .weather: + + break + case .weatherCondition: + break + case .unKnow: + unkowAction().then { message in + fulfill(message) + } + } + } + + } + + // MARK:- create a weather action + + // MARK:- create an unkow action + func smalltalkGreetingsHello() -> Promise { + let textMessage = intent.speech != "" ? intent.speech : "Hello!" + let message = Message(text: textMessage!, date: Date(), type: .botText) + return Promise{ fulfill, reject in + fulfill(message) + } + } + + // MARK:- create an unkow action + func unkowAction() -> Promise { + let textMessage = intent.speech != "" ? intent.speech : "I'm not sure I understand what you are saying, but I am learning more every day." + let message = Message(text: textMessage!, date: Date(), type: .botText) + return Promise{ fulfill, reject in + fulfill(message) + } + } + +} diff --git a/TrackIT2/TrackIT/AppDelegate.swift b/TrackIT2/TrackIT/AppDelegate.swift new file mode 100644 index 0000000..7d616f5 --- /dev/null +++ b/TrackIT2/TrackIT/AppDelegate.swift @@ -0,0 +1,101 @@ +// +// AppDelegate.swift +// TrackIT +// +// Created by Laima Cernius-Ink on 3/25/20. +// Copyright © 2020 Steve Ink. All rights reserved. +// + +import UIKit +import Firebase + + +@UIApplicationMain +class AppDelegate: UIResponder, UIApplicationDelegate { + +var window: UIWindow? + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + + // Override point for customization after application launch. + let center = UNUserNotificationCenter.current() + + center.requestAuthorization(options: [.alert, .sound]) { (granted, error) in + } + FirebaseApp.configure() + + let db = Firestore.firestore() + + //findPulseTime + + let docRef = db.collection("sync").document("pulse") + + docRef.getDocument { (document, error) in + if let document = document, document.exists { + let dataDescription = document.data().map(String.init(describing:)) ?? "nil" + print("\(dataDescription)") + let text2 = dataDescription.replacingOccurrences(of: "[\"pulseTime\": ", with: "", options: NSString.CompareOptions.literal, range: nil) + let text3 = text2.replacingOccurrences(of: "]", with: "", options: NSString.CompareOptions.literal, range: nil) + // 2040 + //setPulseTime + if 60 > Double(text3)! { + UIApplication.shared.setMinimumBackgroundFetchInterval(Double(text3 )! + 60) + } + + if 60 < Double(text3)! { + UIApplication.shared.setMinimumBackgroundFetchInterval(Double(text3 )!) + } + } else { + print("Document does not exist") + } + } + + + return true + } + func application(_ application: UIApplication, performFetchWithCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) { + + let center = UNUserNotificationCenter.current() + // MARK: UISceneSession Lifecycle + let content = UNMutableNotificationContent() + content.title = "Hey I'm a notification!" + content.body = "Look at me!" + + // Step 3: Create the notification trigger + let date = Date().addingTimeInterval(10) + + let dateComponents = Calendar.current.dateComponents([.year, .month, .day, .hour, .minute, .second], from: date) + + let trigger = UNCalendarNotificationTrigger(dateMatching: dateComponents, repeats: false) + + // Step 4: Create the request + + let uuidString = UUID().uuidString + + let request = UNNotificationRequest(identifier: uuidString, content: content, trigger: trigger) + + // Step 5: Register the request + center.add(request) { (error) in + // Check the error parameter and handle any errors + } + } + @available(iOS 13.0, *) + func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { + // Called when a new scene session is being created. + // Use this method to select a configuration to create the new scene with. + + return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) + + // Fallback on earlier versions + } + + @available(iOS 13.0, *) + func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { + // Called when the user discards a scene session. + // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. + // Use this method to release any resources that were specific to the discarded scenes, as they will not return. + } + + +} + diff --git a/TrackIT2/TrackIT/Assets.xcassets/AppIcon.appiconset/Contents.json b/TrackIT2/TrackIT/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d8db8d6 --- /dev/null +++ b/TrackIT2/TrackIT/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,98 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "29x29", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "29x29", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "40x40", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "40x40", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "60x60", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "60x60", + "scale" : "3x" + }, + { + "idiom" : "ipad", + "size" : "20x20", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "20x20", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "29x29", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "29x29", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "40x40", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "40x40", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "76x76", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "76x76", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "83.5x83.5", + "scale" : "2x" + }, + { + "idiom" : "ios-marketing", + "size" : "1024x1024", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/TrackIT2/TrackIT/Assets.xcassets/Contents.json b/TrackIT2/TrackIT/Assets.xcassets/Contents.json new file mode 100644 index 0000000..da4a164 --- /dev/null +++ b/TrackIT2/TrackIT/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/TrackIT2/TrackIT/Assets.xcassets/Rectangle 7.imageset/Contents.json b/TrackIT2/TrackIT/Assets.xcassets/Rectangle 7.imageset/Contents.json new file mode 100644 index 0000000..27f4621 --- /dev/null +++ b/TrackIT2/TrackIT/Assets.xcassets/Rectangle 7.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "Rectangle 7.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/TrackIT2/TrackIT/Assets.xcassets/Rectangle 7.imageset/Rectangle 7.png b/TrackIT2/TrackIT/Assets.xcassets/Rectangle 7.imageset/Rectangle 7.png new file mode 100644 index 0000000000000000000000000000000000000000..557e73df462bc11cad97e1551e485a3b91209a7f GIT binary patch literal 354 zcmeAS@N?(olHy`uVBq!ia0y~yU@Ql+9XZ&5q}G%tzkn2Hfk$L90|U1(2s1Lwnj--e zWGoJHcVbv~PUa<$!;&U>cv7h@-A}f&p-P6S}q=ND76-Ge@1s(=P(;ZiP%&Px5 za(t^b=5Cm>nc>7lYljJU7@MB(38<7eDC}frIVr2)@s7c0(EX=%@_i;rI QFbEhtUHx3vIVCg!0Fr}i=Kufz literal 0 HcmV?d00001 diff --git a/TrackIT2/TrackIT/Assets.xcassets/home.imageset/69524 1.png b/TrackIT2/TrackIT/Assets.xcassets/home.imageset/69524 1.png new file mode 100644 index 0000000000000000000000000000000000000000..42bf33b38ef7ae419402fa96f18ed7003fd4fd39 GIT binary patch literal 520 zcmV+j0{8uiP)500009a7bBm000XU z000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yPfF) z=sLb}XLsK&Tlm3`z?(PhkC~7SP@_yBf2N2HVwG4R-iUxWM8z@0fEYR$#C4ud%q%Jr zk%an*+BH1IC`4RByk{N-V+4^iqD`FtA;kL@Q6NSTIUt(x9s3yyLXW;=j39C%+z*hx z!dx;&5IMs4M0lhL6_PPZkxk-(=(7IMmyCgKHCLl*i`=`+V zFselOL?jWHkWG+P$d`yTA+?YsqFs$vC`=R5PNbJnB+HljOXx;1k-Q>VCUj|w&+xk% z?S#0{i#^;)92~QTq7z9I+E3K_Dt2O=0NU6Qd2dc@CAGl;9;vVHD!stH? z(qwG5hfM)41@u&|9- zSXx@7uuNfLVPTO%!6Fh3`W6)>&PFF@7yQ7m$?WXB`F_7UZ&rmIdNP^(n@XjA4h91& z91fd?VSEh)0-1Wf-fg$rJxmf^*UexsxJ!X+{&j6!$PUL^crCVV2RYfwbArPy8jWsN zDwPiy7fsW)WCVxAJEc-dgDi}6!EI7SQF_cmhhvULiL*S5kioJnoe%Xylf`1ORbKV` zv4uk6GhenH7xB|fCiC*Bnd09v5j2}kjSK3Co}us`NHC43={f1>e< zsFQp3Y`BjRt+iUMGq?~6g)T(>s;WjI16OLZ9rEYNT{I)1@E!yavuwZM6^TS*P9)03 zT+>i=ctIo*nSsl8;=N^ffX<26-9(v%1Jg9+4P+Fo`4sDa0C(4Fm&;`XlO&(df23<2 zi3A-_=gYJXFQ83sKx{7EiJVL#s@3XyruY(1O~ToBQ}7Db&V<+&zrahf*{m@fF;l+} zKX4ok4=Fw`7K`8E7wL5R8!x7l0lYO-jECdD@7SCZ=?Z=jkH_boPaoWRahKLO3m=$< z*dk3xqR0&9p)UN4>G%6T;H5D4>;)!-lra5xThyP+iZ9`jf$#)$S5pabRClO3xVG+nH1TBOJT3l&iVId@-poQR*D-h+a`HW@>+E(BqfrQ_|H^Gl1O(JvTM~q_e^!Of$k{D zIg)uyiJRzzaD&7_7Q3OkB(S}%x^X{+=5R9{J zTjyq~y9Ohcg2nkvU54z)19WF^jDv)`0XZIi@qUrVVL(-#-Gv~o*&K!sE2_(cZO~{#aFyxHB_)(-kMY4rXqHyR^ zbTT%}S;z|=TYwRc0}O7jpPz~%Snsm-7b7(x}Xp)FA2#F9cy7k%EF$w^BfY1 zvBnQ#G7j&;<_IR>P#?YT=T`JDcPbpJZ#w=HQdSZShntD7k!}uhLoKWP#u%iK1Kcl3 zQq^A`;A2&7;@&U|{I)Pb@5mwKQt()v%>`p+eGz{|-o@{`AGQf^7vG-UiTq83Zy26N zdWX(#e1_CZEIG z7%_V-ez+flTzg+g-m2~*xeCvm$-h1d3JUf+{{Sqv)Khlq#&Q4v002ov JPDHLkV1h5IbKL*{ literal 0 HcmV?d00001 diff --git a/TrackIT2/TrackIT/Assets.xcassets/settings2.imageset/Contents.json b/TrackIT2/TrackIT/Assets.xcassets/settings2.imageset/Contents.json new file mode 100644 index 0000000..9632f73 --- /dev/null +++ b/TrackIT2/TrackIT/Assets.xcassets/settings2.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "PNG image-00F48C98FD47-1 1.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/TrackIT2/TrackIT/Assets.xcassets/settings2.imageset/PNG image-00F48C98FD47-1 1.png b/TrackIT2/TrackIT/Assets.xcassets/settings2.imageset/PNG image-00F48C98FD47-1 1.png new file mode 100644 index 0000000000000000000000000000000000000000..06cadaf5cf9e5161ff3b1edc967f4334b2cb94ed GIT binary patch literal 1173 zcmV;G1Zw+!O!Xii@Q!FIdM92!37AaB$Hn4$M1e~x%0x4WfvD>*t zz(D?ju!TYj7g9`NVPWwK3j-+>EG$G`KHr)9-0|&9hMjpXOPDWQ-kWpooO|y1{mfcu zp@p}Dd_F(KqqKNW+B=5L?(Xh@XK8hIc3!o&w|`?Xpv{`Z5I8?SKkMk|czJz&{f8re z-qzNZ41(Z&dz-*Yv*?qLkUwGtJv}{ZApvEdVZp%jyi7=2U0qG}_4VB!7#PUeT>!T| zGUq}R{hgdI*ului$gBwC&{Ysm|Vj2^z?$0wM7Chtgo*(+!h~l_)RIn%?A<1cSO(S za-Y@`faM>!{}&?vJ+fDA@q$F$v^PYOq>z9jCE_t_#UkZ|LrxL?XFWl<+vjpem9*vM zWtEpaysuf}o!T2h%Di^-5GyMyB|aAZ!RiSb8hY+LQ5DqG=Tg282kc<1FT=tw&dK#M@x3{+w)LNB=Clcmv z9zt>Gqxc0$^jhO5_8zI1;<4&zoxak1O)jDlYm2!2 z5ZVsod(Ea#8Od|87fO`L$;rh~9uJk43*t3naezaVrOG^CmULs)SvX#aZns;ZhXTju zzCm~|^>ku$%gO`Bm7CP#gKC++)Xc??%R-O2uQW6a4-bD9?&a_YPVpx*Gc$6d=Z1~I z4Zdr37m#~U^wyZ}rtF}y*z#Vgo6$O_c&;(T-W~Yf9mI{7ib-N~OH1zMw{PzXsCnP2 n_}Z(_(6ffyR|_q)@IS-9?cfQ@TSW#J00000NkvXXu0mjf$_6g^ literal 0 HcmV?d00001 diff --git a/TrackIT2/TrackIT/Base.lproj/LaunchScreen.storyboard b/TrackIT2/TrackIT/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..865e932 --- /dev/null +++ b/TrackIT2/TrackIT/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrackIT2/TrackIT/Base.lproj/Main.storyboard b/TrackIT2/TrackIT/Base.lproj/Main.storyboard new file mode 100644 index 0000000..81ece02 --- /dev/null +++ b/TrackIT2/TrackIT/Base.lproj/Main.storyboard @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrackIT2/TrackIT/ChatViewController.swift b/TrackIT2/TrackIT/ChatViewController.swift new file mode 100644 index 0000000..bc9c973 --- /dev/null +++ b/TrackIT2/TrackIT/ChatViewController.swift @@ -0,0 +1,296 @@ +// +// ChatViewController.swift +// weatherBot +// +// Created by Enrico Piovesan on 2017-05-25. +// Copyright © 2017 Enrico Piovesan. All rights reserved. +// + +import UIKit +import Toolbar +import SnapKit +import ReverseExtension +import Alamofire +import PromiseKit + +class ChatViewController: UIViewController, UITextViewDelegate, UITableViewDataSource, UITableViewDelegate { + + //tool bar + let containerView = UIView() + let toolbar: Toolbar = Toolbar() + var textView: UITextView? + var item0: ToolbarItem? + var item1: ToolbarItem? + var toolbarBottomConstraint: NSLayoutConstraint? + var constraint: NSLayoutConstraint? + + //Messages + var tableView = UITableView() + var messages = [Message]() + + var isMenuHidden: Bool = false { + didSet { + if oldValue == isMenuHidden { + return + } + self.toolbar.layoutIfNeeded() + UIView.animate(withDuration: 0.3) { + self.toolbar.layoutIfNeeded() + } + } + } + + override func loadView() { + super.loadView() + + self.view.addSubview(containerView) + containerView.snp.makeConstraints { (make) -> Void in + make.bottom.equalTo(self.view.snp.bottomMargin) + make.right.equalTo(self.view) + make.left.equalTo(self.view) + make.top.equalTo(self.view.snp.topMargin) + } + //setup background + let gradientLayer = CAGradientLayer() + gradientLayer.colors = [UIColor.chatBackgroundEnd.cgColor, UIColor.chatBackgroundStart.cgColor] + gradientLayer.locations = [0.0, 1.0] + gradientLayer.frame = self.view.bounds + containerView.layer.addSublayer(gradientLayer) + + //add tool bar + containerView.addSubview(toolbar) + self.toolbarBottomConstraint = self.toolbar.bottomAnchor.constraint(equalTo: containerView.bottomAnchor, constant: 0) + self.toolbarBottomConstraint?.isActive = true + let bottomView = UIView() + bottomView.backgroundColor = .chatBackgroundEnd + containerView.addSubview(bottomView) + bottomView.snp.makeConstraints { (make) -> Void in + make.right.equalTo(containerView) + make.left.equalTo(containerView) + make.top.equalTo(toolbar.snp.bottom) + make.height.equalTo(100) + } + + //add table view + containerView.addSubview(tableView) + tableView.snp.makeConstraints { (make) -> Void in + make.bottom.equalTo(toolbar.snp.top) + make.right.equalTo(containerView) + make.left.equalTo(containerView) + make.top.equalTo(containerView) + } + + } + + override func viewDidLoad() { + super.viewDidLoad() + + //add back button + let backButton = UIButton() + backButton.backgroundColor = UIColor.black.withAlphaComponent(0.7) + backButton.clipsToBounds = true + backButton.layer.cornerRadius = 25 + backButton.setImage(UIImage(named: "icon_close"), for: .normal) + backButton.addTarget(self, action: #selector(backHome), for: .touchUpInside) + // containerView.addSubview(backButton) + + + //setup tool bar + let textView: UITextView = UITextView(frame: .zero) + textView.delegate = self + textView.font = UIFont.systemFont(ofSize: 14) + textView.backgroundColor = UIColor.black.withAlphaComponent(0.30) + textView.textColor = .white + self.textView = textView + textView.layer.cornerRadius = 10 + item0 = ToolbarItem(customView: textView) + item1 = ToolbarItem(title: "SEND", target: self, action: #selector(send)) + item1!.tintColor = .mainGreen + item1!.setEnabled(true, animated: false) + toolbar.setItems([item0!, item1!], animated: false) + toolbar.backgroundColor = .black + + let toolbarWrapperView = UIView() + toolbarWrapperView.backgroundColor = .grayBlue + toolbar.insertSubview(toolbarWrapperView, at: 1) + toolbarWrapperView.snp.makeConstraints { (make) -> Void in + make.bottom.equalTo(toolbar) + make.right.equalTo(toolbar) + make.left.equalTo(toolbar) + make.top.equalTo(toolbar) + } + + let gestureRecognizer: UITapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(hide)) + self.view.addGestureRecognizer(gestureRecognizer) + + //setup messages table view + tableView.dataSource = self + tableView.delegate = self + tableView.re.delegate = self + + tableView.tableFooterView = UIView() + tableView.register(UINib(nibName: "UserTableViewCell", bundle: nil), forCellReuseIdentifier: "UserTableViewCell") + tableView.register(UINib(nibName: "TextResponseTableViewCell", bundle: nil), forCellReuseIdentifier: "TextResponseTableViewCell") + tableView.register(UINib(nibName: "ForecastResponseTableViewCell", bundle: nil), forCellReuseIdentifier: "ForecastResponseTableViewCell") + tableView.estimatedRowHeight = 56 + tableView.separatorStyle = .none + tableView.rowHeight = UITableView.automaticDimension + tableView.backgroundColor = .clear + + + tableView.re.scrollViewDidReachTop = { scrollView in + print("scrollViewDidReachTop") + } + tableView.re.scrollViewDidReachBottom = { scrollView in + print("scrollViewDidReachBottom") + } + + //send welcome message + sendWelcomeMessage() + + } + + override func didReceiveMemoryWarning() { + super.didReceiveMemoryWarning() + } + + override func viewDidAppear(_ animated: Bool) { + super.viewDidAppear(animated) + + } + + override func viewDidDisappear(_ animated: Bool) { + super.viewDidDisappear(animated) + NotificationCenter.default.removeObserver(self) + } + + override func willTransition(to newCollection: UITraitCollection, with coordinator: UIViewControllerTransitionCoordinator) { + self.toolbar.setNeedsUpdateConstraints() + } + + // MARK: back button + @objc func backHome() { + self.dismiss(animated: true, completion: nil) + } + + // MARK:- tableView + func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + return messages.count + } + + func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + + let message = messages[messages.count - (indexPath.row + 1)] + + switch message.type { + case .user: + let cell = tableView.dequeueReusableCell(withIdentifier: "UserTableViewCell", for: indexPath) as! UserTableViewCell + cell.configure(with: message) + return cell + case .botText: + let cell = tableView.dequeueReusableCell(withIdentifier: "TextResponseTableViewCell", for: indexPath) as! TextResponseTableViewCell + cell.configure(with: message) + return cell + case .botForecast: + let cell = tableView.dequeueReusableCell(withIdentifier: "ForecastResponseTableViewCell", for: indexPath) as! ForecastResponseTableViewCell + cell.configure(with: message) + return cell + } + + } + + // Mark - Tool bar + + @objc func hide() { + self.textView?.resignFirstResponder() + } + + @objc final func keyboardWillShow(notification: Notification) { + moveToolbar(up: true, notification: notification) + } + + @objc final func keyboardWillHide(notification: Notification) { + moveToolbar(up: false, notification: notification) + } + + @objc func send() { + if self.textView!.text != "" { + + //configure AI Request + let aiRequest = AIRequest(query: textView!.text, lang: "en") + let aiService = AIService(aiRequest) + + //Promise block + firstly{ + aiService.getAi() + }.then { (ai) -> Promise in + ai.intent.createMessage() + }.then {(message) -> Void in + self.sendMessage(message) + }.catch { (error) in + //oh noes error + } + + //user message + let message = Message(text: self.textView!.text!, date: Date(), type: .user) + self.sendMessage(message) + + //reset + self.textView?.text = nil + if let constraint: NSLayoutConstraint = self.constraint { + self.textView?.removeConstraint(constraint) + } + self.toolbar.setNeedsLayout() + } + + } + + // MARK:- send message + func sendMessage(_ message: Message) { + messages.append(message) + tableView.beginUpdates() + tableView.re.insertRows(at: [IndexPath(row: messages.count - 1, section: 0)], with: .automatic) + tableView.endUpdates() + } + + func textViewDidBeginEditing(_ textView: UITextView) { + self.isMenuHidden = true + } + + func textViewDidChange(_ textView: UITextView) { + let size: CGSize = textView.sizeThatFits(textView.bounds.size) + if let constraint: NSLayoutConstraint = self.constraint { + textView.removeConstraint(constraint) + } + self.constraint = textView.heightAnchor.constraint(equalToConstant: size.height) + self.constraint?.priority = UILayoutPriority.defaultHigh + self.constraint?.isActive = true + } + + final func moveToolbar(up: Bool, notification: Notification) { + guard let userInfo = notification.userInfo else { + return + } + let animationDuration: TimeInterval = (userInfo[UIResponder.keyboardAnimationDurationUserInfoKey] as! NSNumber).doubleValue + let keyboardHeight = up ? -(userInfo[UIResponder.keyboardFrameEndUserInfoKey] as! NSValue).cgRectValue.height : 0 + + // Animation + self.toolbarBottomConstraint?.constant = keyboardHeight + UIView.animate(withDuration: animationDuration, animations: { + self.toolbar.layoutIfNeeded() + }, completion: nil) + self.isMenuHidden = up + } + + // MARK:- welcome message + + func sendWelcomeMessage() { + let firstTime = true + if firstTime { + let text = "Hello, can I answer any questions for you?" + let message = Message(text: text, date: Date(), type: .botText) + messages.append(message) + } + } +} + diff --git a/TrackIT2/TrackIT/Colors.swift b/TrackIT2/TrackIT/Colors.swift new file mode 100644 index 0000000..2f382bd --- /dev/null +++ b/TrackIT2/TrackIT/Colors.swift @@ -0,0 +1,75 @@ +// +// Colors.swift +// FL_challenge +// +// Created by Enrico Piovesan on 2017-04-01. +// Copyright © 2017 Enrico Piovesan. All rights reserved. +// + +import UIKit + +extension UIColor { + + static var grayBlue:UIColor { + return UIColor(red:0.29, green:0.63, blue:1.00, alpha:1.00) + } + static var blueBorder:UIColor { + return UIColor(red: 64/255, green: 77/255, blue: 96/255, alpha: 1) + } + static var mainGreen:UIColor { + return UIColor(red:1.00, green:1.00, blue:1.00, alpha:1.00) + } + static var buttonBorder:UIColor { + return UIColor(red: 134/255, green: 238/255, blue: 215/255, alpha: 1) + } + static var purple:UIColor { + return UIColor(red: 175/255, green: 145/255, blue: 221/255, alpha: 1) + } + static var purpleStart:UIColor { + return UIColor(red:0.90, green:0.95, blue:1.00, alpha:1.00) + } + static var purpleEnd:UIColor { + return UIColor(red:0.90, green:0.95, blue:1.00, alpha:1.00) + } + static var chatBackgroundStart:UIColor { + return UIColor(red:0.90, green:0.95, blue:1.00, alpha:1.00) + } + static var chatBackgroundEnd:UIColor { + return UIColor(red:0.90, green:0.95, blue:1.00, alpha:1.00) + } + static var warning:UIColor { + return UIColor(red: 195/255, green: 195/255, blue: 34/255, alpha: 1) + } + static var error:UIColor { + return UIColor(red: 231/255, green: 76/255, blue: 60/255, alpha: 1) + } + static var success:UIColor { + return UIColor(red: 26/255, green: 188/255, blue: 156/255, alpha: 1) + } + static var grey800:UIColor { + return UIColor(red: 34/255, green: 34/255, blue: 34/255, alpha: 1) + } + static var grey700:UIColor { + return UIColor(red: 51/255, green: 51/255, blue: 51/255, alpha: 1) + } + static var grey600:UIColor { + return UIColor(red: 102/255, green: 102/255, blue: 102/255, alpha: 1) + } + static var grey500:UIColor { + return UIColor(red: 153/255, green: 153/255, blue: 153/255, alpha: 1) + } + static var grey400:UIColor { + return UIColor(red: 187/255, green: 187/255, blue: 187/255, alpha: 1) + } + static var grey300:UIColor { + return UIColor(red: 204/255, green: 204/255, blue: 204/255, alpha: 1) + } + static var grey200:UIColor { + return UIColor(red: 221/255, green: 221/255, blue: 221/255, alpha: 1) + } + static var grey100:UIColor { + return UIColor(red: 238/255, green: 238/255, blue: 238/255, alpha: 1) + } +} + + diff --git a/TrackIT2/TrackIT/Errors.swift b/TrackIT2/TrackIT/Errors.swift new file mode 100644 index 0000000..10fb721 --- /dev/null +++ b/TrackIT2/TrackIT/Errors.swift @@ -0,0 +1,16 @@ +// +// Errors.swift +// weatherBot +// +// Created by Enrico Piovesan on 2017-12-27. +// Copyright © 2017 Enrico Piovesan. All rights reserved. +// + +import Foundation + +enum WeatherBotError: Error { + case unKnowIntent + case weatherManagerDictionary + case aiManagerDictionary + case geocodingManagerDictionary +} diff --git a/TrackIT2/TrackIT/ForecastResponsTableViewCell.swift b/TrackIT2/TrackIT/ForecastResponsTableViewCell.swift new file mode 100644 index 0000000..bf5941d --- /dev/null +++ b/TrackIT2/TrackIT/ForecastResponsTableViewCell.swift @@ -0,0 +1,74 @@ +// +// ForecastResponsTableViewCell.swift +// weatherBot +// +// Created by Enrico Piovesan on 2017-07-17. +// Copyright © 2017 Enrico Piovesan. All rights reserved. +// + +import UIKit +import SnapKit + +class ForecastResponseTableViewCell: UITableViewCell { + + @IBOutlet weak var iconImageView: UIImageView! + @IBOutlet weak var labelContainerView: UIView! + @IBOutlet weak var timeLabel: UILabel! + @IBOutlet weak var cityLabel: UILabel! + @IBOutlet weak var weatherIconImageView: UIImageView! + @IBOutlet weak var dateLabel: UILabel! + @IBOutlet weak var forecastWrapperView: UIView! + + let numberOfDay = 5 + + override func awakeFromNib() { + super.awakeFromNib() + // Initialization code + iconImageView.layer.cornerRadius = 16 + iconImageView.layer.masksToBounds = true + + labelContainerView.layer.cornerRadius = 8 + labelContainerView.layer.masksToBounds = true + + labelContainerView.backgroundColor = .clear + labelContainerView.layer.borderColor = UIColor.blueBorder.cgColor + labelContainerView.layer.borderWidth = 1 + } + + override func setSelected(_ selected: Bool, animated: Bool) { + super.setSelected(selected, animated: animated) + + // Configure the view for the selected state + } + + func configure(with message: Message) { + + //general + + let dateFormatterMessage = DateFormatter() + dateFormatterMessage.setLocalizedDateFormatFromTemplate("hh:mm") + timeLabel.text = dateFormatterMessage.string(from: message.date) + timeLabel.textColor = .grey300 + + ///header + + let dateFormatterHeader = DateFormatter() + dateFormatterHeader.setLocalizedDateFormatFromTemplate("MMMM dd yyyy") + + dateLabel.font = dateLabel.font.withSize(12) + + let sepView = UIView() + sepView.backgroundColor = UIColor.blueBorder.withAlphaComponent(0.5) + labelContainerView.addSubview(sepView) + sepView.snp.makeConstraints { (make) -> Void in + make.right.equalTo(labelContainerView) + make.left.equalTo(labelContainerView) + make.height.equalTo(1) + make.bottom.equalTo(forecastWrapperView.snp.top) + } + + //forecast Days + + } + +} diff --git a/TrackIT2/TrackIT/ForecastResponseTableViewCell.xib b/TrackIT2/TrackIT/ForecastResponseTableViewCell.xib new file mode 100644 index 0000000..b986ef4 --- /dev/null +++ b/TrackIT2/TrackIT/ForecastResponseTableViewCell.xib @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrackIT2/TrackIT/GoogleService-Info.plist b/TrackIT2/TrackIT/GoogleService-Info.plist new file mode 100644 index 0000000..aa68dab --- /dev/null +++ b/TrackIT2/TrackIT/GoogleService-Info.plist @@ -0,0 +1,36 @@ + + + + + CLIENT_ID + 1041612323849-02nd6mvrp3q6qji398g6lvqoral4jq82.apps.googleusercontent.com + REVERSED_CLIENT_ID + com.googleusercontent.apps.1041612323849-02nd6mvrp3q6qji398g6lvqoral4jq82 + API_KEY + AIzaSyBLEg-Qw-D0kl7CJO3AESD-C-u3bPDmni8 + GCM_SENDER_ID + 1041612323849 + PLIST_VERSION + 1 + BUNDLE_ID + com.2020.FirebaseTest + PROJECT_ID + sick-9b5ac + STORAGE_BUCKET + sick-9b5ac.appspot.com + IS_ADS_ENABLED + + IS_ANALYTICS_ENABLED + + IS_APPINVITE_ENABLED + + IS_GCM_ENABLED + + IS_SIGNIN_ENABLED + + GOOGLE_APP_ID + 1:1041612323849:ios:801113e4de4a1764370cd8 + DATABASE_URL + https://sick-9b5ac.firebaseio.com + + diff --git a/TrackIT2/TrackIT/Info.plist b/TrackIT2/TrackIT/Info.plist new file mode 100644 index 0000000..2ccd2fe --- /dev/null +++ b/TrackIT2/TrackIT/Info.plist @@ -0,0 +1,67 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + $(PRODUCT_BUNDLE_PACKAGE_TYPE) + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + LSRequiresIPhoneOS + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneConfigurationName + Default Configuration + UISceneDelegateClassName + $(PRODUCT_MODULE_NAME).SceneDelegate + UISceneStoryboardFile + Main + + + + + UIBackgroundModes + + fetch + processing + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/TrackIT2/TrackIT/Intent.swift b/TrackIT2/TrackIT/Intent.swift new file mode 100644 index 0000000..bda1483 --- /dev/null +++ b/TrackIT2/TrackIT/Intent.swift @@ -0,0 +1,82 @@ +// +// Intent.swift +// weatherBot +// +// Created by Enrico Piovesan on 2017-09-04. +// Copyright © 2017 Enrico Piovesan. All rights reserved. +// + +import UIKit +import PromiseKit +import MapKit + +enum IntentType { + case weather + case weatherCondition + case smalltalkGreetingsHello + case unKnow +} + +class Intent { + + var intentName: String + var intentType: IntentType + var parameters: NSDictionary? + var speech : String? + var dates : [Date]? + + + init(intentName: String) { + print(intentName) + self.intentName = intentName + switch intentName { + case "weather.condition": + self.intentType = .weatherCondition + case "weather": + self.intentType = .weather + case "smalltalk.greetings.hello": + self.intentType = .smalltalkGreetingsHello + default: + self.intentType = .unKnow + } + } + + func setParametes(_ parameters: NSDictionary) { + self.parameters = parameters + + dates = getDate(parameters) + } + + func getDate(_ parameters: NSDictionary) -> [Date]? { + if let date = parameters["date-time"] as? String { + var dates = [Date]() + let datesString = date.split(separator: "/") + for dateString in datesString { + let dateFormatter = DateFormatter() + dateFormatter.dateFormat = "yyyy-MM-dd" + guard let dateObj = dateFormatter.date(from: String(dateString)) else { + return nil + } + dates.append(dateObj) + + } + return dates + } else { + return nil + } + } + + func createMessage() -> Promise { + + return Promise{ fulfill, reject in + + Action(self).updateMessage().then { message in + fulfill(message) + }.catch { (error) in + reject(error) + } + + } + } + +} diff --git a/TrackIT2/TrackIT/Message.swift b/TrackIT2/TrackIT/Message.swift new file mode 100644 index 0000000..5a10693 --- /dev/null +++ b/TrackIT2/TrackIT/Message.swift @@ -0,0 +1,37 @@ +// +// Message.swift +// weatherBot +// +// Created by Enrico Piovesan on 2017-06-04. +// Copyright © 2017 Enrico Piovesan. All rights reserved. +// + +import UIKit + +enum MessageType { + case user + case botText + case botForecast +} + +class Message { + + var text: String = "" + var date: Date + var type: MessageType + + + init(date: Date, type: MessageType) { + self.date = date + self.type = type + } + + + + convenience init(text: String, date: Date, type: MessageType) { + self.init(date: date, type: type) + self.text = text + } + + // MARK : create a text response for weather condition intnet +} diff --git a/TrackIT2/TrackIT/SceneDelegate.swift b/TrackIT2/TrackIT/SceneDelegate.swift new file mode 100644 index 0000000..f1d27e5 --- /dev/null +++ b/TrackIT2/TrackIT/SceneDelegate.swift @@ -0,0 +1,53 @@ +// +// SceneDelegate.swift +// TrackIT +// +// Created by Laima Cernius-Ink on 3/25/20. +// Copyright © 2020 Steve Ink. All rights reserved. +// + +import UIKit + +class SceneDelegate: UIResponder, UIWindowSceneDelegate { + + var window: UIWindow? + + + func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { + // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. + // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. + // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). + guard let _ = (scene as? UIWindowScene) else { return } + } + + func sceneDidDisconnect(_ scene: UIScene) { + // Called as the scene is being released by the system. + // This occurs shortly after the scene enters the background, or when its session is discarded. + // Release any resources associated with this scene that can be re-created the next time the scene connects. + // The scene may re-connect later, as its session was not neccessarily discarded (see `application:didDiscardSceneSessions` instead). + } + + func sceneDidBecomeActive(_ scene: UIScene) { + // Called when the scene has moved from an inactive state to an active state. + // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. + } + + func sceneWillResignActive(_ scene: UIScene) { + // Called when the scene will move from an active state to an inactive state. + // This may occur due to temporary interruptions (ex. an incoming phone call). + } + + func sceneWillEnterForeground(_ scene: UIScene) { + // Called as the scene transitions from the background to the foreground. + // Use this method to undo the changes made on entering the background. + } + + func sceneDidEnterBackground(_ scene: UIScene) { + // Called as the scene transitions from the foreground to the background. + // Use this method to save data, release shared resources, and store enough scene-specific state information + // to restore the scene back to its current state. + } + + +} + diff --git a/TrackIT2/TrackIT/TextResponseTableViewCell.swift b/TrackIT2/TrackIT/TextResponseTableViewCell.swift new file mode 100644 index 0000000..e89ed1e --- /dev/null +++ b/TrackIT2/TrackIT/TextResponseTableViewCell.swift @@ -0,0 +1,48 @@ +// +// TextResponseTableViewCell.swift +// weatherBot +// +// Created by Enrico Piovesan on 2017-07-16. +// Copyright © 2017 Enrico Piovesan. All rights reserved. +// + +import UIKit + +class TextResponseTableViewCell: UITableViewCell { + + @IBOutlet weak var iconImageView: UIImageView! + @IBOutlet weak var messageLabel: UILabel! + @IBOutlet weak var labelContainerView: UIView! + @IBOutlet weak var timeLabel: UILabel! + + override func awakeFromNib() { + super.awakeFromNib() + + // Initialization code + iconImageView.layer.cornerRadius = 16 + iconImageView.layer.masksToBounds = true + + labelContainerView.layer.cornerRadius = 8 + labelContainerView.layer.masksToBounds = true + + // labelContainerView.backgroundColor = .clear + + } + + override func setSelected(_ selected: Bool, animated: Bool) { + super.setSelected(selected, animated: animated) + } + + func configure(with message: Message) { + + + messageLabel.text = message.text + messageLabel.textColor = .white + + let dateFormatterMessage = DateFormatter() + dateFormatterMessage.setLocalizedDateFormatFromTemplate("hh:mm") + timeLabel.text = dateFormatterMessage.string(from: message.date) + timeLabel.textColor = .grey300 + + } +} diff --git a/TrackIT2/TrackIT/TextResponseTableViewCell.xib b/TrackIT2/TrackIT/TextResponseTableViewCell.xib new file mode 100644 index 0000000..e774d5a --- /dev/null +++ b/TrackIT2/TrackIT/TextResponseTableViewCell.xib @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrackIT2/TrackIT/TrackIT.entitlements b/TrackIT2/TrackIT/TrackIT.entitlements new file mode 100644 index 0000000..903def2 --- /dev/null +++ b/TrackIT2/TrackIT/TrackIT.entitlements @@ -0,0 +1,8 @@ + + + + + aps-environment + development + + diff --git a/TrackIT2/TrackIT/URLGenerator.swift b/TrackIT2/TrackIT/URLGenerator.swift new file mode 100644 index 0000000..7b4c94f --- /dev/null +++ b/TrackIT2/TrackIT/URLGenerator.swift @@ -0,0 +1,45 @@ +// +// URLGenerator.swift +// FL_challenge +// +// Created by Enrico Piovesan on 2017-04-01. +// Copyright © 2017 Enrico Piovesan. All rights reserved. +// + +import UIKit + +class URLGenerator { + + static let AIbaseUrl: String = "https://api.api.ai" + static let AIversion: String = "v1" + + static let weatherbaseUrl: String = "https://simple-weather.p.mashape.com" + + static let geocodingbaseUrl: String = "https://maps.googleapis.com/maps/api/geocode" + + class func apiUrlForPath(path: String) -> NSURL { + + let urlString = URLGenerator.AIbaseUrl + "/" + URLGenerator.AIversion + "/" + path + return NSURL(string: urlString)! + + } + + class func aiApiUrlForPathString(path: String) -> String { + + return URLGenerator.AIbaseUrl + "/" + URLGenerator.AIversion + "/" + path + + } + + class func weatherApiUrlForPathString(path: String) -> String { + + return URLGenerator.weatherbaseUrl + "/" + path + + } + + class func geocodingApiUrlForPathString(path: String) -> String { + + return URLGenerator.geocodingbaseUrl + "/" + path + + } + +} diff --git a/TrackIT2/TrackIT/UserTableViewCell.swift b/TrackIT2/TrackIT/UserTableViewCell.swift new file mode 100644 index 0000000..df77186 --- /dev/null +++ b/TrackIT2/TrackIT/UserTableViewCell.swift @@ -0,0 +1,49 @@ +// +// UserTableViewCell.swift +// weatherBot +// +// Created by Enrico Piovesan on 2017-07-16. +// Copyright © 2017 Enrico Piovesan. All rights reserved. +// + +import UIKit + +class UserTableViewCell: UITableViewCell { + + @IBOutlet weak var iconImageView: UIImageView! + @IBOutlet weak var messageLabel: UILabel! + @IBOutlet weak var labelContainerView: UIView! + @IBOutlet weak var timeLabel: UILabel! + + override func awakeFromNib() { + super.awakeFromNib() + // Initialization code + iconImageView.layer.cornerRadius = 16 + iconImageView.layer.masksToBounds = true + + labelContainerView.layer.cornerRadius = 8 + labelContainerView.layer.masksToBounds = true + + + + } + + override func setSelected(_ selected: Bool, animated: Bool) { + super.setSelected(selected, animated: animated) + + // Configure the view for the selected state + } + + func configure(with message: Message) { + + + messageLabel.text = message.text + messageLabel.textColor = .white + + let dateFormatterMessage = DateFormatter() + dateFormatterMessage.setLocalizedDateFormatFromTemplate("hh:mm") + timeLabel.text = dateFormatterMessage.string(from: message.date) + timeLabel.textColor = .mainGreen + + } +} diff --git a/TrackIT2/TrackIT/UserTableViewCell.xib b/TrackIT2/TrackIT/UserTableViewCell.xib new file mode 100644 index 0000000..0cc9b54 --- /dev/null +++ b/TrackIT2/TrackIT/UserTableViewCell.xib @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrackIT2/TrackIT/ViewController.swift b/TrackIT2/TrackIT/ViewController.swift new file mode 100644 index 0000000..50391af --- /dev/null +++ b/TrackIT2/TrackIT/ViewController.swift @@ -0,0 +1,377 @@ +// +// ViewController.swift +// TrackIT +// +// Created by Laima Cernius-Ink on 3/25/20. +// Copyright © 2020 Steve Ink. All rights reserved. +// + +import UIKit +import Lottie +class ViewController: UIViewController { + + let animationView = AnimationView() + let home = UILabel() + let lbl = UILabel() + let screenSize: CGRect = UIScreen.main.bounds + let view1 = UIView() + let view2 = UIView() + let view3 = UIView() + let view4 = UIView() + let lbl1 = UITextView() + let lbl2 = UITextView() + let lbl3 = UITextView() + let lbl4 = UITextView() + + let description1 = UITextView() + let description2 = UITextView() + let description3 = UITextView() + let description4 = UITextView() + + var panGesture2 = UIPanGestureRecognizer() + func hexStringToUIColor (hex:String) -> UIColor { + var cString:String = hex.trimmingCharacters(in: .whitespacesAndNewlines).uppercased() + + if (cString.hasPrefix("#")) { + cString.remove(at: cString.startIndex) + } + + if ((cString.count) != 6) { + return UIColor.gray + } + + var rgbValue:UInt64 = 0 + Scanner(string: cString).scanHexInt64(&rgbValue) + + return UIColor( + red: CGFloat((rgbValue & 0xFF0000) >> 16) / 255.0, + green: CGFloat((rgbValue & 0x00FF00) >> 8) / 255.0, + blue: CGFloat(rgbValue & 0x0000FF) / 255.0, + alpha: CGFloat(1.0) + ) + } + + override var prefersStatusBarHidden: Bool { + return true + } + + override func viewDidLoad() { + super.viewDidLoad() + + let screenWidth = screenSize.width + let screenHeight = screenSize.height + + let color1 = hexStringToUIColor(hex: "#2792FF") + let color2 = hexStringToUIColor(hex: "#7EBFFF") + + + home.text = "Home" + home.textColor = .black + home.frame.size.width = 200 + home.frame.size.height = 75 + home.center.x = 130 + home.center.y = 105 + // home.font = UIFont(name: "Avenir Next", size: 60) + home.font = .boldSystemFont(ofSize: 45) + + + view.addSubview(home) + let animation = Animation.named("lf30_editor_SKZ870", subdirectory: "") + + animationView.animation = animation + animationView.contentMode = .scaleAspectFit + animationView.frame.size.width = 300 + animationView.frame.size.height = 300 + animationView.center.x = view.center.x + animationView.center.y = view.center.y - 100 + + view.addSubview(animationView) + + lbl.text = "Active" + lbl.font = .boldSystemFont(ofSize: 20) + lbl.sizeToFit() + lbl.center.x = view.center.x + lbl.center.y = view.center.y - 100 + + lbl.textColor = .white + + view.addSubview(lbl) + + view1.layer.cornerRadius = 20 + view2.layer.cornerRadius = 20 + view3.layer.cornerRadius = 20 + view4.layer.cornerRadius = 20 + + view1.frame.size.width = screenWidth - 50 + view1.frame.size.height = 200 + view1.center.x = view.center.x + view1.center.y = animationView.center.y + 250 + view1.backgroundColor = color1 + view.addSubview(view1) + + + + + view2.frame.size.width = screenWidth - 50 + view2.frame.size.height = 200 + view2.center.x = view.center.x + view2.center.y = view1.center.y + 250 + view2.backgroundColor = color1 + view.addSubview(view2) + + view3.frame.size.width = screenWidth - 50 + view3.frame.size.height = 200 + view3.center.x = view.center.x + view3.center.y = view2.center.y + 250 + view3.backgroundColor = color1 + view.addSubview(view3) + + + view4.frame.size.width = screenWidth - 50 + view4.frame.size.height = 200 + view4.center.x = view.center.x + view4.center.y = view3.center.y + 250 + view4.backgroundColor = color1 + view.addSubview(view4) + + lbl1.isEditable = false + lbl2.isEditable = false + lbl3.isEditable = false + lbl4.isEditable = false + lbl1.text = "Why do we collect your data?" + lbl1.textColor = .white + lbl1.backgroundColor = .clear + lbl1.font = .boldSystemFont(ofSize: 24) + lbl1.frame.size.width = screenWidth - 70 + lbl1.frame.size.height = 170 + lbl1.center.x = view.center.x - 10 + lbl1.center.y = 90 + + + view1.addSubview(lbl1) + + lbl2.text = "What data do we collect?" + lbl2.textColor = .white + lbl2.backgroundColor = .clear + lbl2.frame.size.width = screenWidth - 70 + lbl2.frame.size.height = 170 + lbl2.center.x = view.center.x - 20 + lbl2.center.y = 90 + + lbl2.font = .boldSystemFont(ofSize: 24) + + + view2.addSubview(lbl2) + + lbl3.text = "Who recieves my data?" + lbl3.textColor = .white + lbl3.backgroundColor = .clear + lbl3.frame.size.width = screenWidth - 70 + lbl3.frame.size.height = 170 + lbl3.center.x = view.center.x - 10 + lbl3.center.y = 90 + + lbl3.font = .boldSystemFont(ofSize: 24) + + + view3.addSubview(lbl3) + + + lbl4.text = "How do you secure my data?" + lbl4.textColor = .white + lbl4.backgroundColor = .clear + lbl4.frame.size.width = screenWidth - 70 + lbl4.frame.size.height = 170 + lbl4.center.x = view.center.x - 10 + lbl4.center.y = 90 + + lbl4.font = .boldSystemFont(ofSize: 24) + + + + view4.addSubview(lbl4) + + + panGesture2 = UIPanGestureRecognizer(target: self, action: #selector(ViewController.draggedView2(_:))) + view.isUserInteractionEnabled = true + view.addGestureRecognizer(panGesture2) + + description1.text = "We strive to enable healthcare officals to save lives all with your help!" + description1.textColor = .white + description1.frame.size.width = 290 + description1.frame.size.height = 125 + description1.center.x = view.center.x - 20 + description1.center.y = 125 + + + description1.font = .systemFont(ofSize: 20) + description1.backgroundColor = .clear + description1.isEditable = false + view1.addSubview(description1) + + + description2.text = "We collect the userid’s of users you have been in contact with and..." + description2.textColor = .white + description2.frame.size.width = 290 + description2.frame.size.height = 125 + + description2.center.x = view.center.x - 20 + description2.center.y = 100 + + description2.font = .systemFont(ofSize: 20) + description2.backgroundColor = .clear + + view2.addSubview(description2) + description2.isEditable = false + description3.text = "Health officals such as WHO and the CDC among other officals recieve your data nonivasivly and securely. " + description3.textColor = .white + description3.frame.size.width = 290 + description3.frame.size.height = 125 + description3.center.x = view.center.x - 20 + description3.center.y = 105 + + + description3.font = .systemFont(ofSize: 20) + description3.backgroundColor = .clear + view3.addSubview(description3) + description3.isEditable = false + description4.text = "We secure our data with..." + description4.textColor = .white + description4.frame.size.width = 290 + description4.frame.size.height = 125 + description4.center.x = view.center.x - 20 + description4.center.y = 125 + + + description4.font = .systemFont(ofSize: 20) + description4.backgroundColor = .clear + description4.isEditable = false + view4.addSubview(description4) + } + + override func viewDidAppear(_ animated: Bool) { + super.viewDidAppear(animated) + animationView.play(fromProgress: 0, + toProgress: 1, + loopMode: LottieLoopMode.loop, + completion: { (finished) in + if finished { + print("Animation Complete") + } else { + print("Animation cancelled") + } + }) + let screenWidth = screenSize.width + let screenHeight = screenSize.height + let timer = Timer.scheduledTimer(withTimeInterval: 0.01, repeats: true) { timer in + if self.home.center.y > 105 { + + + self.home.center.y = 105 + + + + } + + if self.home.center.y < -800 { + + + self.home.center.y = -700 + + + + } + } + + } + @objc func draggedView2(_ sender:UIPanGestureRecognizer){ + let screenWidth = screenSize.width + let screenHeight = screenSize.height + let timer = Timer.scheduledTimer(withTimeInterval: 0.01, repeats: true) { timer in + if self.home.center.y > 105 { + + + self.home.center.y = 105 + + + + } + + if self.home.center.y < -800 { + + + self.home.center.y = -700 + + + + } + } + //if viewDragLong == true { + //self.view.bringSubviewToFront(planet) + let translation = sender.translation(in: self.view) + // one.center = CGPoint(x: one.center.x, y: one.center.y + translation.y ) + sender.setTranslation(CGPoint.zero, in: self.view) + + UIView.animate(withDuration: 0.4, + delay: 0.0, + options: [], + animations: { [weak self] in + self!.home.center = CGPoint(x: self!.home.center.x, y: self!.home.center.y + translation.y * 1.7 ) + + + }, completion: nil) + + UIView.animate(withDuration: 0.4, + delay: 0.05, + options: [], + animations: { [weak self] in + self?.animationView.center.y = self!.home.center.y + 190 + self?.lbl.center.y = self!.home.center.y + 190 + + }, completion: nil) + + UIView.animate(withDuration: 0.3, + delay: 0.1, + options: [], + animations: { [weak self] in + self!.view1.center.y = ((self?.animationView.center.y)!) + 250 + + + }, completion: nil) + + + UIView.animate(withDuration: 0.4, + delay: 0.15, + options: [], + animations: { [weak self] in + self!.view2.center.y = self!.view1.center.y + 250 + + + }, completion: nil) + UIView.animate(withDuration: 0.4, + delay: 0.2, + options: [], + animations: { [weak self] in + self!.view3.center.y = self!.view2.center.y + 250 + + + }, completion: nil) + + UIView.animate(withDuration: 0.3, + delay: 0.25, + options: [], + animations: { [weak self] in + self!.view4.center.y = self!.view3.center.y + 250 + + + }, completion: nil) + + + + + + + // }/ + } +} + diff --git a/TrackIT2/TrackIT/extentions.swift b/TrackIT2/TrackIT/extentions.swift new file mode 100644 index 0000000..5bee8a4 --- /dev/null +++ b/TrackIT2/TrackIT/extentions.swift @@ -0,0 +1,22 @@ +// +// extentions.swift +// weatherBot +// +// Created by Enrico Piovesan on 2017-07-20. +// Copyright © 2017 Enrico Piovesan. All rights reserved. +// + +import Foundation +import UIKit + +extension Date { + var ticks: UInt64 { + return UInt64((self.timeIntervalSince1970 + 62_135_596_800) * 10_000_000) + } +} + +extension String { + var floatValue: CGFloat { + return CGFloat((self as NSString).floatValue) + } +} diff --git a/TrackIT2/TrackIT/settings.swift b/TrackIT2/TrackIT/settings.swift new file mode 100644 index 0000000..cd7d5fd --- /dev/null +++ b/TrackIT2/TrackIT/settings.swift @@ -0,0 +1,80 @@ +// +// settings.swift +// TrackIT +// +// Created by Laima Cernius-Ink on 3/25/20. +// Copyright © 2020 Steve Ink. All rights reserved. +// + +import UIKit + +class settings: UIViewController { + + let home = UILabel() + let lbl = UILabel() + let screenSize: CGRect = UIScreen.main.bounds + let view1 = UIView() + + func hexStringToUIColor (hex:String) -> UIColor { + var cString:String = hex.trimmingCharacters(in: .whitespacesAndNewlines).uppercased() + + if (cString.hasPrefix("#")) { + cString.remove(at: cString.startIndex) + } + + if ((cString.count) != 6) { + return UIColor.gray + } + + var rgbValue:UInt64 = 0 + Scanner(string: cString).scanHexInt64(&rgbValue) + + return UIColor( + red: CGFloat((rgbValue & 0xFF0000) >> 16) / 255.0, + green: CGFloat((rgbValue & 0x00FF00) >> 8) / 255.0, + blue: CGFloat(rgbValue & 0x0000FF) / 255.0, + alpha: CGFloat(1.0) + ) + } + + override var prefersStatusBarHidden: Bool { + return true + } + + + override func viewDidLoad() { + super.viewDidLoad() + + let screenWidth = screenSize.width + let screenHeight = screenSize.height + + let color1 = hexStringToUIColor(hex: "#2792FF") + let color2 = hexStringToUIColor(hex: "#7EBFFF") + + + + home.text = "Settings" + home.textColor = .black + home.frame.size.width = 200 + home.frame.size.height = 75 + home.center.x = 130 + home.center.y = 105 + // home.font = UIFont(name: "Avenir Next", size: 60) + home.font = .boldSystemFont(ofSize: 45) + + + view.addSubview(home) + } + + + /* + // MARK: - Navigation + + // In a storyboard-based application, you will often want to do a little preparation before navigation + override func prepare(for segue: UIStoryboardSegue, sender: Any?) { + // Get the new view controller using segue.destination. + // Pass the selected object to the new view controller. + } + */ + +} diff --git a/TrackIT2/TrackIT/syncPulse.swift b/TrackIT2/TrackIT/syncPulse.swift new file mode 100644 index 0000000..0fcdd74 --- /dev/null +++ b/TrackIT2/TrackIT/syncPulse.swift @@ -0,0 +1,49 @@ +// +// syncPulse.swift +// TrackIT +// +// Created by Laima Cernius-Ink on 3/25/20. +// Copyright © 2020 Steve Ink. All rights reserved. +// + +import UIKit +import Firebase +class syncPulse: UIViewController { + + var time = 0 + override func viewDidLoad() { + super.viewDidLoad() + let timer = Timer.scheduledTimer(withTimeInterval: 30, repeats: true) { timer in + let db = Firestore.firestore() + self.time += 30 + print(self.time) + if 2040 - self.time < 0 { + self.time = 0 + } + db.collection("sync").document("pulse").setData([ + "pulseTime": 2040 - self.time, + + ]) { err in + if let err = err { + print("Error writing document: \(err)") + } else { + print("Document successfully written!") + } + } + } + + // Do any additional setup after loading the view. + } + + + /* + // MARK: - Navigation + + // In a storyboard-based application, you will often want to do a little preparation before navigation + override func prepare(for segue: UIStoryboardSegue, sender: Any?) { + // Get the new view controller using segue.destination. + // Pass the selected object to the new view controller. + } + */ + +} diff --git a/TrackIT2/lf30_editor_SKZ870.json b/TrackIT2/lf30_editor_SKZ870.json new file mode 100644 index 0000000..c19a05b --- /dev/null +++ b/TrackIT2/lf30_editor_SKZ870.json @@ -0,0 +1 @@ +{"v":"5.5.0","fr":29.9700012207031,"ip":0,"op":70.0000028511585,"w":250,"h":250,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":90,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[118.549,117.468,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,2.889]},"t":0,"s":[83.62,83.62,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,-0.549]},"t":27,"s":[105.62,105.62,100]},{"t":52.0000021180034,"s":[83.62,83.62,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[106.672,106.672],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.15294117647058825,0.5725490196078431,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[7.715,9.008],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":72.0000029326201,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"w1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[100]},{"t":25.0000010182709,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[125.156,124.494,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[83.6,83.6,100]},{"t":25.0000010182709,"s":[234.048,234.048,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[69.508,69.508],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.3254901960784314,0.6549019607843137,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-0.187,0.605],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[139.443,139.443],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":70.0000028511585,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"w2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[100]},{"t":30.0000012219251,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[125.326,124.285,0],"ix":2},"a":{"a":0,"k":[-44.248,-66.371,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[92.661,92.661,100]},{"t":30.0000012219251,"s":[229.892,229.892,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[86.801,86.801],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.3254901960784314,0.6549019607843137,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-44.6,-65.6],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":70.0000028511585,"st":0,"bm":0}],"markers":[]} \ No newline at end of file